diff --git a/.gitignore b/.gitignore index d290e8a1276785d083179e7148d0cb28d720abaa..8b56ebd2f21dc5461228474e8e7265e335ac50fa 100644 --- a/.gitignore +++ b/.gitignore @@ -50,6 +50,8 @@ /config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop /config/chroot_local-includes/usr/share/applications/root-terminal.desktop /config/chroot_local-includes/usr/share/applications/tails-documentation.desktop +/config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop +/config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop /config/chroot_local-includes/usr/share/applications/tails-reboot.desktop /config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop /config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop diff --git a/.gitmodules b/.gitmodules index 7e52adf5aa722cdfa223f6bfc44d3e405506f4bb..b3313862495dec63704a489df1c6f8f9e839bacb 100644 --- a/.gitmodules +++ b/.gitmodules @@ -8,9 +8,6 @@ [submodule "submodules/mirror-pool-dispatcher"] path = submodules/mirror-pool-dispatcher url = https://git-tails.immerda.ch/mirror-pool-dispatcher -[submodule "submodules/aufs-standalone"] - path = submodules/aufs-standalone - url = https://github.com/sfjro/aufs5-standalone.git [submodule "submodules/tails-workarounds"] path = submodules/tails-workarounds url = https://git-tails.immerda.ch/tails-workarounds diff --git a/Rakefile b/Rakefile index 4e453b30bc2b8e1594bee602b95e72a62a286b09..6dff3773c6c294e6e1c863b0ed6b38031bf2865e 100644 --- a/Rakefile +++ b/Rakefile @@ -59,8 +59,6 @@ ENV['ARTIFACTS'] ||= '.' ENV['APT_SNAPSHOTS_SERIALS'] ||= '' -ENV['TAILS_WEBSITE_CACHE'] = '1' - class CommandError < StandardError attr_reader :status, :stderr @@ -206,6 +204,8 @@ def system_cpus end end +ENV['TAILS_WEBSITE_CACHE'] = is_release? ? '0' : '1' + task :parse_build_options do options = [] @@ -431,7 +431,7 @@ task :ensure_correct_permissions do on every parent directory of #{ENV['PWD']} up to #{ENV['HOME']} (inclusive): - chmod g+x DIR && setfacl -m user:libvirt-qemu:x DIR + chmod g+rx DIR && setfacl -m user:libvirt-qemu:rx DIR END_OF_MESSAGE end diff --git a/auto/config b/auto/config index ef9eca70e5884796956a45ddc2a07f5c7caa51c4..c1e2b8a581d00b0ccd3509fe6c3e64641a8266ba 100755 --- a/auto/config +++ b/auto/config @@ -203,10 +203,6 @@ install -m 0755 \ submodules/mirror-pool-dispatcher/lib/js/mirror-dispatcher.js \ config/chroot_local-includes/usr/local/lib/nodejs/ -# aufs-standalone -rm -rf config/chroot_local-includes/usr/src/aufs-standalone -cp -a submodules/aufs-standalone config/chroot_local-includes/usr/src/ - # save the original file, shipped by the debootstrap package, # so we can always apply our debian-common.patch to the original # version diff --git a/bin/create-test-iuks b/bin/create-test-iuks index fd00e8043e65d77443b2c7b78c182be0f7060113..6772d3f2ed6daea821cfe819cc5cbb4a25cca414 100755 --- a/bin/create-test-iuks +++ b/bin/create-test-iuks @@ -4,7 +4,7 @@ set -e set -u set -x -VERSIONS="2.0~test 2.2~test 2.3~test" +VERSIONS="2.0~testoverlayfs 2.2~testoverlayfs 2.3~testoverlayfs" export SOURCE_DATE_EPOCH=$(date --utc '+%s') [ -d "$TAILS_CHECKOUT" ] || exit 2 @@ -21,11 +21,16 @@ for version in $VERSIONS; do mkdir -p "$SQUASHFS_SRC"/etc/amnesia "$SQUASHFS_SRC"/usr/share cp -a /usr/share/common-licenses "$SQUASHFS_SRC"/usr/share/ - if [ "$version" != '2.0~test' ]; then + mkdir -p "$SQUASHFS_SRC"/usr/share/doc + if [ "$version" = '2.0~testoverlayfs' ]; then + mkdir -p "$SQUASHFS_SRC"/usr/share/doc/tor + echo "Some content" > "$SQUASHFS_SRC"/usr/share/doc/tor/README.Debian + fi + if [ "$version" != '2.0~testoverlayfs' ]; then echo "Some content" > "$SQUASHFS_SRC"/some_new_file rm "$SQUASHFS_SRC"/usr/share/common-licenses/BSD fi - if [ "$version" = '2.3~test' ]; then + if [ "$version" = '2.3~testoverlayfs' ]; then echo "Some content 2.3" > "$SQUASHFS_SRC"/some_new_file_2.3 rm "$SQUASHFS_SRC"/usr/share/common-licenses/MPL-1.1 fi @@ -43,17 +48,18 @@ EOF mksquashfs \ "$SQUASHFS_SRC" \ "$ISO_SRC"/live/filesystem.squashfs \ - -no-progress -noappend -comp xz -Xbcj x86 -b 1024K -Xdict-size 1024K + -no-progress -noappend -comp xz -Xbcj x86 -b 1024K -Xdict-size 1024K \ + -all-root echo vmlinuz > "$ISO_SRC"/live/vmlinuz echo initrd > "$ISO_SRC"/live/initrd.img echo isolinux > "$ISO_SRC"/isolinux/isolinux.cfg echo 'filesystem.squashfs' > "$ISO_SRC"/live/Tails.module cp /usr/lib/syslinux/mbr/gptmbr.bin "$ISO_SRC"/utils/mbr/mbr.bin - if [ "$version" = '2.0~test' ]; then + if [ "$version" = '2.0~testoverlayfs' ]; then cp /usr/bin/syslinux "$ISO_SRC"/utils/linux fi - if [ "$version" = '2.3~test' ]; then + if [ "$version" = '2.3~testoverlayfs' ]; then rm "$ISO_SRC"/utils/mbr/mbr.bin fi xorriso \ @@ -62,8 +68,8 @@ EOF -o "$WORKDIR/$version.iso" "$ISO_SRC" done -for dest_version in 2.2~test 2.3~test; do - echo "Generating IUK file from 2.0~test to $dest_version" +for dest_version in 2.2~testoverlayfs 2.3~testoverlayfs; do + echo "Generating IUK file from 2.0~testoverlayfs to $dest_version" sudo su -c \ "SOURCE_DATE_EPOCH=$SOURCE_DATE_EPOCH \ LC_ALL=C \ @@ -71,9 +77,9 @@ for dest_version in 2.2~test 2.3~test; do PERL5LIB=\"${TAILS_CHECKOUT:?}/config/chroot_local-includes/usr/src/perl5lib/lib\" \ ${TAILS_CHECKOUT:?}/config/chroot_local-includes/usr/src/iuk/bin/tails-create-iuk \ --squashfs_diff_name \"${dest_version}.squashfs\" \ - --old_iso \"$WORKDIR/2.0~test.iso\" \ + --old_iso \"$WORKDIR/2.0~testoverlayfs.iso\" \ --new_iso \"$WORKDIR/${dest_version}.iso\" \ - --outfile \"$WORKDIR/Tails_amd64_2.0~test_to_${dest_version}.iuk\"" + --outfile \"$WORKDIR/Tails_amd64_2.0~testoverlayfs_to_${dest_version}.iuk\"" done echo "Generated test IUKS:" diff --git a/config/APT_snapshots.d/debian/serial b/config/APT_snapshots.d/debian/serial index c77652462ae35ecf89bc27ec52ea74429ec6ae13..94533aa1efc2f8c2391c1912a215cc184b6cf660 100644 --- a/config/APT_snapshots.d/debian/serial +++ b/config/APT_snapshots.d/debian/serial @@ -1 +1 @@ -2020030101 +2020032503 diff --git a/config/APT_snapshots.d/torproject/serial b/config/APT_snapshots.d/torproject/serial index 2e14d60401429cf424aeb93c47195d4073d53327..94533aa1efc2f8c2391c1912a215cc184b6cf660 100644 --- a/config/APT_snapshots.d/torproject/serial +++ b/config/APT_snapshots.d/torproject/serial @@ -1 +1 @@ -2020032002 +2020032503 diff --git a/config/amnesia b/config/amnesia index eec67315f50323d1d30ce2142342cb2e5a0edccf..f1fa06b6b68dfbfd9ef9de1aa62591f0a47158b0 100644 --- a/config/amnesia +++ b/config/amnesia @@ -17,7 +17,7 @@ export SOURCE_DATE_FAKETIME="$(date --utc --date="$(dpkg-parsechangelog --show-f # Base for the string that will be passed to "lb config --bootappend-live" # FIXME: see [[bugs/sdmem_on_eject_broken_for_CD]] for explanation why we # need to set block.events_dfl_poll_msecs -AMNESIA_APPEND="live-media=removable nopersistence noprompt timezone=Etc/UTC block.events_dfl_poll_msecs=1000 splash noautologin module=Tails slab_nomerge slub_debug=FZP mce=0 vsyscall=none page_poison=1 init_on_alloc=1 init_on_free=1 mds=full,nosmt union=aufs" +AMNESIA_APPEND="live-media=removable nopersistence noprompt timezone=Etc/UTC block.events_dfl_poll_msecs=1000 splash noautologin module=Tails slab_nomerge slub_debug=FZP mce=0 vsyscall=none page_poison=1 init_on_alloc=1 init_on_free=1 mds=full,nosmt" # Options passed to isohybrid AMNESIA_ISOHYBRID_OPTS="-h 255 -s 63 --id 42 --verbose" diff --git a/config/base_branch b/config/base_branch index 2bf5ad0447d3370461c6f32a0a5bc8a3177376aa..038d718da6a1ebbc6a7780a96ed75a70cc2ad6e2 100644 --- a/config/base_branch +++ b/config/base_branch @@ -1 +1 @@ -stable +testing diff --git a/config/binary_local-hooks/10-syslinux_customize b/config/binary_local-hooks/10-syslinux_customize index 6d71ef69accd0b357cb02508edee375ba6a8ec78..d8c9b9da9a9aedee98742d475b46f9919ff81ada 100755 --- a/config/binary_local-hooks/10-syslinux_customize +++ b/config/binary_local-hooks/10-syslinux_customize @@ -37,7 +37,7 @@ perl -pni -E 'exit if m{^label[[:blank:]]+help$}' "${CFG_FILE}" Echo_message "customize syslinux menu" -sed -i -e "s/Boot menu//" "${CFG_FILE}" +sed -i -e "s/Boot menu/SYSLINUX/" "${CFG_FILE}" sed -i -e "s/menu label Live/menu label Tails/" "${SYSLINUX_PATH}"/live*.cfg sed -i -r -e 's/(menu label .* )\(failsafe\)/\1(Troubleshooting Mode)/' \ "${SYSLINUX_PATH}"/live*.cfg diff --git a/config/binary_local-hooks/50-grub-efi b/config/binary_local-hooks/50-grub-efi new file mode 100755 index 0000000000000000000000000000000000000000..197b3a13d4b755f3ce2ba72c9c8697546a289593 --- /dev/null +++ b/config/binary_local-hooks/50-grub-efi @@ -0,0 +1,136 @@ +#! /bin/sh + +# Some of this file was adapted from the Debian Installer's +# build/util/efi-image, which is: +# +# Copyright (C) 2010, 2011 Canonical Ltd. +# Author: Colin Watson <cjwatson@ubuntu.com> +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the Free +# Software Foundation; either version 2, or (at your option) any later +# version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + +set -e +set -x + +# Including common functions +. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh + +# Setting static variables +DESCRIPTION="$(Echo 'including GRUB EFI in the ISO filesystem')" +HELP="" +USAGE="${PROGRAM}" + +# Reading configuration files +Read_conffiles config/all config/bootstrap config/common config/binary +# Import AMNESIA_APPEND +Read_conffiles config/amnesia +Set_defaults + +# Safeguards +[ "${LB_ARCHITECTURE}" = "amd64" ] || exit 0 + +# Seems like we'll have work to do +Echo_message 'including GRUB EFI in the ISO filesystem' + +grub_dir="binary/EFI/debian/grub" +platforms="x86_64-efi i386-efi" + +efi_name () { + local platform="$1" + case "$platform" in + i386-efi) + echo IA32 + ;; + x86_64-efi) + echo X64 + ;; + *) + echo "E: invalid GRUB platform: $platform" >&2 + exit 1 + ;; + esac +} + +grub_cpmodules () { + if [ -z "$1" ] || [ -z "$2" ]; then + echo "usage: $0 OUTPUT-DIRECTORY GRUB-PLATFORM" + return 1 + fi + + local outdir="$1" + local platform="$2" + + # Copy over GRUB modules, except for those already built in. + cp -a "chroot/usr/lib/grub/$platform"/*.lst "$outdir/" + for x in "chroot/usr/lib/grub/$platform"/*.mod; do + # Some of these exclusions are based on knowledge of module + # dependencies. + case $(basename "$x" .mod) in + configfile|search|search_fs_file|search_fs_uuid|search_label|tar|part_gpt|linux|gzio) + # included in boot image + ;; + affs|afs|afs_be|befs|befs_be|minix|nilfs2|sfs|zfs|zfsinfo) + # unnecessary filesystem modules + ;; + example_functional_test|functional_test|hello) + # other cruft + ;; + *) + cp -a "$x" "$outdir/" + ;; + esac + done +} + +for platform in $platforms ; do + echo "I: installing GRUB EFI for $platform" + efi_fallback_dir="binary/EFI/BOOT" + grub_module_dir="$grub_dir/$platform" + efi_name="$(efi_name "$platform")" + + mkdir -p "$efi_fallback_dir" + signed_grub_src="chroot/usr/lib/grub/$platform-signed/grub$(echo "$efi_name" | tr '[:upper:]' '[:lower:]').efi.signed" + signed_shim_src="chroot/usr/lib/shim/shim$(echo "$efi_name" | tr '[:upper:]' '[:lower:]').efi.signed" + if [ -f "$signed_grub_src" ] && [ -f "$signed_shim_src" ]; then + echo "I: copying Debian-signed GRUB and shim EFI binaries for $efi_name" + cp "$signed_grub_src" "${efi_fallback_dir}/GRUB${efi_name}.EFI" + cp "$signed_shim_src" "${efi_fallback_dir}/BOOT${efi_name}.EFI" + else + if [ "$platform" = 'x86_64-efi' ]; then + echo "E: no signed GRUB or shim for ${efi_name}, aborting" >&2 + exit 1 + fi + echo "I: no signed GRUB or shim for ${efi_name}, generating an unsigned GRUB image" + Chroot chroot grub-mkimage -O "$platform" \ + -o "/tmp/BOOT$efi_name.EFI" -p "/efi/debian/grub" \ + search configfile normal tar fat part_gpt linux \ + gzio + mv "chroot/tmp/BOOT$efi_name.EFI" "${efi_fallback_dir}/BOOT${efi_name}.EFI" + fi + + cp chroot/usr/share/tails/bootx64.png "${efi_fallback_dir}/BOOT${efi_name}.PNG" + + mkdir -p "$grub_module_dir" + grub_cpmodules "$grub_module_dir" "$platform" +done + +# Copy unicode fonts +cp "chroot/boot/grub/unicode.pf2" "${grub_dir}" + +# Append our custom kernel command-line parameters +sed -i -E "s#AMNESIA_APPEND#${AMNESIA_APPEND}#g" "binary/EFI/debian/grub.cfg" + +# Copy the configuration for 32-bit EFI, which looks there +# due to -p "/efi/debian/grub" +cp -a "binary/EFI/debian/grub.cfg" "binary/EFI/debian/grub/grub.cfg" diff --git a/config/binary_local-hooks/50-grub-efi-ia32 b/config/binary_local-hooks/50-grub-efi-ia32 deleted file mode 100755 index 6ca3c764fc4b606aa67d4bdc0d99936ac7d9e7f0..0000000000000000000000000000000000000000 --- a/config/binary_local-hooks/50-grub-efi-ia32 +++ /dev/null @@ -1,87 +0,0 @@ -#! /bin/sh - -# Some of this file was adapted from the Debian Installer's -# build/util/efi-image, which is: -# -# Copyright (C) 2010, 2011 Canonical Ltd. -# Author: Colin Watson <cjwatson@ubuntu.com> -# -# This program is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by the Free -# Software Foundation; either version 2, or (at your option) any later -# version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -# for more details. -# -# You should have received a copy of the GNU General Public License along -# with this program; if not, write to the Free Software Foundation, Inc., -# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. - -set -e -set -x - -platform="i386-efi" -outdir="binary/EFI/BOOT/grub/$platform" -efi_name="IA32" - -grub_cpmodules () { - if [ -z "$1" ] || [ -z "$2" ]; then - echo "usage: $0 OUTPUT-DIRECTORY GRUB-PLATFORM" - return 1 - fi - - outdir="$1" - platform="$2" - - # Copy over GRUB modules, except for those already built in. - cp -a "chroot/usr/lib/grub/$platform"/*.lst "$outdir/" - for x in "chroot/usr/lib/grub/$platform"/*.mod; do - # Some of these exclusions are based on knowledge of module - # dependencies. - case $(basename "$x" .mod) in - configfile|search|search_fs_file|search_fs_uuid|search_label|tar|part_gpt|linux|gzio) - # included in boot image - ;; - affs|afs|afs_be|befs|befs_be|minix|nilfs2|sfs|zfs|zfsinfo) - # unnecessary filesystem modules - ;; - example_functional_test|functional_test|hello) - # other cruft - ;; - *) - cp -a "$x" "$outdir/" - ;; - esac - done -} - -# Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh - -# Setting static variables -DESCRIPTION="$(Echo 'including GRUB EFI for ia32 in the ISO filesystem')" -HELP="" -USAGE="${PROGRAM}" - -# Reading configuration files -Read_conffiles config/all config/bootstrap config/common config/binary -Set_defaults - -# Safeguards -[ "${LB_ARCHITECTURE}" = "amd64" ] || exit 0 - -# Seems like we'll have work to do -Echo_message 'including GRUB EFI for ia32 in the ISO filesystem' - -# Build the core image -Chroot chroot grub-mkimage -O "$platform" \ - -o "/tmp/BOOT$efi_name.EFI" -p "/efi/boot/grub" \ - search configfile normal tar fat part_gpt linux \ - gzio -mv "chroot/tmp/BOOT$efi_name.EFI" "binary/EFI/BOOT/BOOT$efi_name.EFI" - -mkdir -p "$outdir" -grub_cpmodules "$outdir" "$platform" diff --git a/config/binary_local-hooks/99-syslinux_uefi b/config/binary_local-hooks/99-syslinux_uefi deleted file mode 100755 index 791c88968160d8a76f09ce5e533e16ef5e7427f4..0000000000000000000000000000000000000000 --- a/config/binary_local-hooks/99-syslinux_uefi +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash - -set -e - -# Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh - -# Setting static variables -DESCRIPTION="$(Echo 'installing syslinux UEFI bootloader')" -HELP="" -USAGE="${PROGRAM}" - -# Reading configuration files -Read_conffiles config/all config/bootstrap config/common config/binary -Set_defaults - -# Safeguards -[ "${LB_BOOTLOADER}" = "syslinux" ] || exit 0 -[ "${LB_ARCHITECTURE}" = "amd64" ] || exit 0 - -# Seems like we'll have work to do -Echo_message "installing syslinux UEFI bootloader" - -# Setting boot method specific variables -case "${LB_BINARY_IMAGES}" in - iso|iso-hybrid) - SYSLINUX_PATH="binary/isolinux" - ;; - usb-hdd) - SYSLINUX_PATH="binary/syslinux" - ;; -esac - -# Main -mkdir -p binary/EFI/BOOT -cp chroot/usr/lib/SYSLINUX.EFI/efi64/syslinux.efi binary/EFI/BOOT/BOOTX64.EFI -cp chroot/usr/share/tails/bootx64.png binary/EFI/BOOT/BOOTX64.PNG -cp "$SYSLINUX_PATH"/* binary/EFI/BOOT/ -mv binary/EFI/BOOT/isolinux.cfg binary/EFI/BOOT/syslinux.cfg -cp -f chroot/usr/lib/syslinux/modules/efi64/* binary/EFI/BOOT/ -sed -r -i -e 's,^(menu background splash\.png)$,\#\1,' binary/EFI/BOOT/stdmenu.cfg diff --git a/config/binary_local-includes/EFI/BOOT/grub/grub.cfg b/config/binary_local-includes/EFI/BOOT/grub/grub.cfg deleted file mode 100644 index 7a5f5a79b7805138eeb3409d152848e2c331caec..0000000000000000000000000000000000000000 --- a/config/binary_local-includes/EFI/BOOT/grub/grub.cfg +++ /dev/null @@ -1,22 +0,0 @@ -function load_video { - if [ x$feature_all_video_module = xy ]; then - insmod all_video - else - insmod efi_gop - insmod efi_uga - insmod ieee1275_fb - insmod vbe - insmod vga - insmod video_bochs - insmod video_cirrus - fi -} - -set linux_gfx_mode= -export linux_gfx_mode -load_video - -insmod syslinuxcfg -insmod cpuid -echo "Loading syslinux configuration..." -syslinux_configfile /efi/boot/syslinux.cfg diff --git a/config/binary_local-includes/EFI/debian/grub.cfg b/config/binary_local-includes/EFI/debian/grub.cfg new file mode 100644 index 0000000000000000000000000000000000000000..26ae70b38a6bbc8c09f1320c89bb1251b62d0366 --- /dev/null +++ b/config/binary_local-includes/EFI/debian/grub.cfg @@ -0,0 +1,53 @@ +# The Debian-signed GRUB binaries have the path of this very configuration file +# (/EFI/debian/grub.cfg) hardcoded. Let's use it instead of adding layers +# of indirection. + +function load_video { + if [ x$feature_all_video_module = xy ]; then + insmod all_video + else + insmod efi_gop + insmod efi_uga + insmod ieee1275_fb + insmod vbe + insmod vga + insmod video_bochs + insmod video_cirrus + fi +} + +set linux_gfx_mode= +export linux_gfx_mode +load_video + +set grub_dir="/EFI/debian/grub" + +# Load background image +insmod gfxterm +insmod png +loadfont ${grub_dir}/unicode.pf2 +terminal_output gfxterm +background_image ${grub_dir}/splash.png + +set timeout=4 + +probe --set rootuuid --fs-uuid ($root) + +# Based on the output of `grub-syslinux2cfg /EFI/BOOT/syslinux.cfg` +menuentry 'Tails' --id 'live' { + echo "Loading the Linux kernel..." + linux /live/vmlinuz initrd=/live/initrd.img boot=live config AMNESIA_APPEND FSUUID=${rootuuid} quiet + echo "Loading the initramfs..." + initrd /live/initrd.img + echo "Booting..." + boot +} + +menuentry 'Tails (Troubleshooting Mode)' --id 'livefailsafe' { + echo "Loading the Linux kernel..." + linux /live/vmlinuz initrd=/live/initrd.img boot=live config AMNESIA_APPEND FSUUID=${rootuuid} noapic noapm nodma nomce nolapic nomodeset nosmp vga=normal + echo "Loading the initramfs..." + initrd /live/initrd.img + echo "Booting..." + boot +} diff --git a/config/binary_local-includes/EFI/debian/grub/splash.png b/config/binary_local-includes/EFI/debian/grub/splash.png new file mode 100644 index 0000000000000000000000000000000000000000..ca2e385bdd0351af3d8d4d0f63c57e983c8fc7f4 Binary files /dev/null and b/config/binary_local-includes/EFI/debian/grub/splash.png differ diff --git a/config/binary_rootfs/squashfs.sort b/config/binary_rootfs/squashfs.sort index c823d0679afc8808b1f9071adfedc3be31451a17..2b5745e6823d3449ff9c4f6288b75ab00db03f8f 100644 --- a/config/binary_rootfs/squashfs.sort +++ b/config/binary_rootfs/squashfs.sort @@ -1,4204 +1,4275 @@ -usr/lib/x86_64-linux-gnu/libacl.so.1.1.2253 32767 -usr/lib/x86_64-linux-gnu/libattr.so.1.1.2448 32766 -usr/bin/tr 32765 -usr/bin/cut 32764 -usr/bin/basename 32763 -usr/sbin/laptop_mode 32762 -usr/bin/flock 32761 -usr/bin/logger 32760 -usr/lib/x86_64-linux-gnu/liblz4.so.1.8.3 32759 -usr/lib/x86_64-linux-gnu/libkmod.so.2.3.4 32758 -usr/lib/x86_64-linux-gnu/libssl.so.1.1 32757 -usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 32756 -usr/lib/x86_64-linux-gnu/libwacom.so.2.6.1 32755 -usr/lib/x86_64-linux-gnu/libgudev-1.0.so.0.2.0 32754 -usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5800.3 32753 -usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5800.3 32752 -usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5800.3 32751 -usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 32750 -usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5800.3 32749 -lib/live/config/0001-sane-clock 32748 -bin/dash 32747 -lib/x86_64-linux-gnu/ld-2.28.so 32746 -etc/ld.so.cache 32745 -lib/x86_64-linux-gnu/libc-2.28.so 32744 -bin/sed 32743 -lib/x86_64-linux-gnu/libselinux.so.1 32742 -lib/x86_64-linux-gnu/libpcre.so.3.13.3 32741 -lib/x86_64-linux-gnu/libdl-2.28.so 32740 -lib/x86_64-linux-gnu/libpthread-2.28.so 32739 -usr/lib/locale/en_US.utf8/LC_IDENTIFICATION 32738 -usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache 32737 -usr/lib/locale/chr_US/LC_MEASUREMENT 32736 -usr/lib/locale/chr_US/LC_TELEPHONE 32735 -usr/lib/locale/en_US.utf8/LC_ADDRESS 32734 -usr/lib/locale/bi_VU/LC_NAME 32733 -usr/lib/locale/chr_US/LC_PAPER 32732 -usr/lib/locale/en_AG/LC_MESSAGES/SYS_LC_MESSAGES 32731 -usr/lib/locale/chr_US/LC_MONETARY 32730 -usr/lib/locale/aa_DJ.utf8/LC_COLLATE 32729 -usr/lib/locale/en_US.utf8/LC_TIME 32728 -usr/lib/locale/aa_ET/LC_NUMERIC 32727 -usr/lib/locale/aa_DJ.utf8/LC_CTYPE 32726 -etc/amnesia/version 32725 -bin/date 32724 -usr/share/zoneinfo/UCT 32723 -lib/live/config/0005-nss-systemd 32722 -bin/grep 32721 -etc/nsswitch.conf 32720 -lib/live/config/0010-debconf 32719 -lib/live/setup-network.sh 32718 -lib/live/config/0020-hostname 32716 -etc/hostname 32715 -bin/cat 32714 -etc/hosts 32713 -bin/hostname 32711 -bin/touch 32710 -lib/live/config/0030-live-debconfig_passwd 32708 -lib/live/config/0030-user-setup 32707 -usr/bin/debconf-set-selections 32704 -usr/bin/perl 32703 -lib/x86_64-linux-gnu/libm-2.28.so 32702 -lib/x86_64-linux-gnu/libcrypt-2.28.so 32701 -usr/share/perl/5.28.1/warnings.pm 32700 -usr/share/perl/5.28.1/strict.pm 32699 -usr/share/perl5/Debconf/Db.pm 32698 -usr/share/perl5/Debconf/Log.pm 32697 -usr/share/perl/5.28.1/base.pm 32696 -usr/share/perl/5.28.1/Exporter.pm 32695 -usr/share/perl5/Debconf/Config.pm 32694 -usr/share/perl5/Debconf/Question.pm 32693 -usr/share/perl5/Debconf/Template.pm 32692 -usr/lib/x86_64-linux-gnu/perl/5.28.1/POSIX.pm 32691 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Fcntl.pm 32690 -usr/share/perl/5.28.1/XSLoader.pm 32689 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Fcntl/Fcntl.so 32688 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/POSIX/POSIX.so 32687 -usr/share/perl/5.28.1/Tie/Hash.pm 32686 -usr/share/perl/5.28.1/Carp.pm 32685 -usr/share/perl/5.28.1/overloading.pm 32684 -usr/share/perl/5.28.1/warnings/register.pm 32683 -usr/share/perl/5.28.1/Exporter/Heavy.pm 32682 -usr/share/perl/5.28.1/FileHandle.pm 32681 -usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/File.pm 32680 -usr/share/perl/5.28.1/Symbol.pm 32679 -usr/share/perl/5.28.1/SelectSaver.pm 32678 -usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Seekable.pm 32677 -usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Handle.pm 32676 -usr/lib/x86_64-linux-gnu/perl/5.28.1/IO.pm 32675 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/IO/IO.so 32674 -usr/share/perl5/Debconf/Gettext.pm 32673 -usr/lib/x86_64-linux-gnu/perl5/5.28/Locale/gettext.pm 32672 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode.pm 32671 -usr/share/perl/5.28.1/constant.pm 32670 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Encode/Encode.so 32669 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode/Alias.pm 32668 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode/MIME/Name.pm 32667 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Storable.pm 32666 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Storable/Storable.so 32665 -usr/share/perl/5.28.1/parent.pm 32664 -usr/share/perl/5.28.1/vars.pm 32663 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode/Encoding.pm 32662 -usr/share/perl/5.28.1/bytes.pm 32661 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode/Config.pm 32660 -usr/lib/x86_64-linux-gnu/perl/5.28.1/DynaLoader.pm 32659 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Config.pm 32658 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Locale/gettext/gettext.so 32657 -usr/share/perl/5.28.1/Text/Wrap.pm 32656 -usr/share/perl/5.28.1/Text/Tabs.pm 32655 -usr/lib/x86_64-linux-gnu/perl/5.28.1/re.pm 32654 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/re/re.so 32653 -usr/share/perl5/Debconf/Iterator.pm 32652 -usr/share/perl5/Debconf/Base.pm 32651 -usr/share/perl/5.28.1/fields.pm 32650 -usr/share/perl5/Debconf/Encoding.pm 32649 -usr/lib/x86_64-linux-gnu/perl5/5.28/Text/Iconv.pm 32648 -usr/share/perl/5.28.1/AutoLoader.pm 32647 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Text/Iconv/Iconv.so 32646 -usr/bin/locale 32645 -usr/share/perl5/Text/WrapI18N.pm 32644 -usr/lib/x86_64-linux-gnu/perl5/5.28/Text/CharWidth.pm 32643 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Text/CharWidth/CharWidth.so 32642 -usr/share/perl/5.28.1/overload.pm 32641 -usr/share/perl5/Debconf/Priority.pm 32640 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Hash/Util.pm 32639 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Scalar/Util.pm 32638 -usr/lib/x86_64-linux-gnu/perl/5.28.1/List/Util.pm 32637 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/List/Util/Util.so 32636 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Hash/Util/Util.so 32635 -lib/x86_64-linux-gnu/libnss_files-2.28.so 32634 -usr/share/perl5/Debconf/DbDriver.pm 32631 -usr/share/perl/5.28.1/Getopt/Long.pm 32630 -etc/debconf.conf 32629 -usr/share/perl5/Debconf/DbDriver/File.pm 32628 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Cwd.pm 32627 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Cwd/Cwd.so 32626 -usr/share/perl5/Debconf/DbDriver/Cache.pm 32625 -usr/share/perl5/Debconf/Format/822.pm 32624 -usr/share/perl5/Debconf/Format.pm 32623 -usr/share/perl5/Debconf/DbDriver/Stack.pm 32620 -usr/share/perl5/Debconf/DbDriver/Copy.pm 32619 -bin/rm 32614 -usr/lib/user-setup/user-setup-apply 32613 -usr/share/debconf/confmodule 32612 -usr/share/debconf/frontend 32611 -usr/share/perl5/Debconf/AutoSelect.pm 32610 -usr/share/perl5/Debconf/ConfModule.pm 32609 -usr/share/perl/5.28.1/IPC/Open2.pm 32608 -usr/share/perl/5.28.1/IPC/Open3.pm 32607 -usr/share/perl5/Debconf/FrontEnd/Noninteractive.pm 32606 -usr/share/perl5/Debconf/FrontEnd.pm 32605 -usr/lib/x86_64-linux-gnu/perl5/5.28/Glib/Object/Introspection.pm 32604 -usr/lib/x86_64-linux-gnu/perl5/5.28/Glib.pm 32603 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Glib/Glib.so 32602 -usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0.5800.3 32601 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Glib/Object/Introspection/Introspection.so 32600 -usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0 32599 -lib/x86_64-linux-gnu/libz.so.1.2.11 32598 -lib/x86_64-linux-gnu/libmount.so.1.1.0 32597 -lib/x86_64-linux-gnu/libresolv-2.28.so 32596 -lib/x86_64-linux-gnu/libblkid.so.1.1.0 32595 -lib/x86_64-linux-gnu/librt-2.28.so 32594 -lib/x86_64-linux-gnu/libuuid.so.1.3.0 32593 -usr/lib/user-setup/functions.sh 32592 -sbin/shadowconfig 32591 -usr/sbin/pwck 32590 -etc/login.defs 32589 -usr/sbin/grpck 32588 -usr/sbin/pwconv 32583 -etc/.pwd.lock 32582 -usr/sbin/grpconv 32577 -bin/chown 32564 -bin/chmod 32563 -usr/bin/dpkg-query 32562 -var/lib/dpkg/status 32561 -var/lib/dpkg/triggers/File 32560 -var/lib/dpkg/triggers/Unincorp 32559 -usr/bin/dpkg 32558 -etc/dpkg/dpkg.cfg 32557 -usr/sbin/usermod 32556 -lib/x86_64-linux-gnu/libaudit.so.1.0.0 32555 -usr/lib/x86_64-linux-gnu/libsemanage.so.1 32554 -lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 32553 -lib/x86_64-linux-gnu/libsepol.so.1 32552 -lib/x86_64-linux-gnu/libbz2.so.1.0.4 32551 -usr/sbin/adduser 32538 -usr/share/perl5/Debian/AdduserCommon.pm 32537 -usr/lib/x86_64-linux-gnu/perl/5.28.1/I18N/Langinfo.pm 32536 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/I18N/Langinfo/Langinfo.so 32535 -etc/adduser.conf 32534 -usr/sbin/groupadd 32533 -usr/sbin/useradd 32528 -etc/default/useradd 32527 -var/log/faillog 32512 -var/log/lastlog 32510 -sbin/pam_tally2 32500 -lib/x86_64-linux-gnu/libpam.so.0.84.2 32499 -usr/bin/find 32498 -etc/skel/.config/Trolltech.conf 32495 -etc/skel/.config/keepassxc/keepassxc.ini 32494 -etc/skel/.config/onionshare/onionshare.json 32493 -etc/skel/.bash_logout 32492 -etc/skel/.bashrc 32491 -etc/skel/.electrum/config 32490 -etc/skel/.gnome2/accels/.placeholder 32489 -etc/skel/.gnome2/keyrings/default 32488 -etc/skel/.gnome2/keyrings/tails.keyring 32487 -etc/skel/.gnome2_private/.placeholder 32486 -etc/skel/.gnupg/dirmngr.conf 32485 -etc/skel/.gnupg/gpg-agent.conf 32484 -etc/skel/.gnupg/gpg.conf 32483 -etc/skel/.local/share/applications/mimeapps.list 32482 -etc/skel/.monkeysphere/monkeysphere.conf 32481 -etc/skel/.poedit/config 32480 -etc/skel/.profile 32479 -etc/skel/.purple/prefs.xml 32478 -etc/skel/.tor-browser/profile.default/bookmarks.html 32477 -etc/skel/.tor-browser/profile.default/chrome/userChrome.css 32476 -etc/skel/.tor-browser/profile.default/prefs.js 32475 -etc/skel/.xsessionrc 32474 -etc/skel/Desktop/Report_an_error.desktop 32473 -etc/skel/Desktop/tails-documentation.desktop 32472 -usr/bin/chfn 32467 -lib/x86_64-linux-gnu/libpam_misc.so.0.82.1 32466 -etc/pam.d/chfn 32465 -lib/x86_64-linux-gnu/security/pam_rootok.so 32464 -etc/pam.d/common-auth 32463 -lib/x86_64-linux-gnu/security/pam_unix.so 32462 -lib/x86_64-linux-gnu/libnsl-2.28.so 32461 -lib/x86_64-linux-gnu/security/pam_deny.so 32460 -lib/x86_64-linux-gnu/security/pam_permit.so 32459 -etc/pam.d/common-account 32458 -etc/pam.d/common-session 32457 -lib/x86_64-linux-gnu/security/pam_systemd.so 32456 -etc/pam.d/other 32455 -etc/pam.d/common-password 32454 -usr/bin/gpasswd 32447 -lib/live/config/0040-sudo 32405 -lib/live/config/0050-locales 32404 -etc/default/locale 32403 -bin/which 32402 -bin/systemctl 32401 -lib/x86_64-linux-gnu/liblzma.so.5.2.4 32400 -lib/x86_64-linux-gnu/libgcrypt.so.20.2.4 32399 -lib/x86_64-linux-gnu/libgpg-error.so.0.26.1 32398 -lib/live/config/0070-tzdata 32396 -etc/timezone 32395 -usr/sbin/dpkg-reconfigure 32393 -var/lib/dpkg/info/format 32392 -var/lib/dpkg/info/tzdata.templates 32391 -var/lib/dpkg/info/tzdata.config 32390 -usr/bin/head 32389 -usr/share/perl5/Debconf/Element/Noninteractive/Select.pm 32388 -usr/share/perl5/Debconf/Element/Noninteractive.pm 32387 -usr/share/perl5/Debconf/Element.pm 32386 -var/lib/dpkg/info/tzdata.postinst 32385 -bin/ln 32384 -bin/mv 32383 -lib/live/config/0080-gdm3 32381 -lib/live/config/0085-sddm 32380 -lib/live/config/0090-kdm 32379 -lib/live/config/0100-lightdm 32378 -lib/live/config/0110-lxdm 32377 -lib/live/config/0120-nodm 32376 -lib/live/config/0130-slim 32375 -lib/live/config/0140-xinit 32374 -lib/live/config/0150-keyboard-configuration 32373 -lib/live/config/1000-remount-procfs 32372 -bin/mount 32371 -etc/fstab 32369 -lib/live/config/1020-gnome-panel-data 32366 -lib/live/config/1030-gnome-power-manager 32365 -usr/bin/sudo 32364 -lib/x86_64-linux-gnu/libutil-2.28.so 32363 -usr/lib/sudo/libsudo_util.so.0.0.0 32362 -usr/lib/sudo/sudoers.so 32361 -etc/sudoers 32360 -etc/sudoers.d/README 32359 -etc/sudoers.d/always-ask-password 32358 -etc/sudoers.d/tails-greeter-cryptsetup 32357 -etc/sudoers.d/tails-greeter-live-persist 32356 -etc/sudoers.d/tails-greeter-umount 32355 -etc/sudoers.d/zzz_boot_profile 32354 -etc/sudoers.d/zzz_gdm 32353 -etc/sudoers.d/zzz_halt 32352 -etc/sudoers.d/zzz_persistence-setup 32351 -etc/sudoers.d/zzz_tails-additional-software 32350 -etc/sudoers.d/zzz_tails-debugging-info 32349 -etc/sudoers.d/zzz_tails-kill-gdm-session 32348 -etc/sudoers.d/zzz_unsafe-browser 32347 -etc/sudoers.d/zzz_upgrade 32346 -etc/host.conf 32345 -etc/resolv.conf 32344 -etc/pam.d/sudo 32343 -etc/pam.d/common-session-noninteractive 32342 -lib/live/config/1040-gnome-screensaver 32340 -lib/live/config/1050-kaboom 32339 -lib/live/config/1060-kde-services 32338 -lib/live/config/1080-policykit 32337 -lib/live/config/1090-ssl-cert 32336 -usr/sbin/make-ssl-cert 32335 -bin/bash 32334 -lib/x86_64-linux-gnu/libtinfo.so.6.1 32333 -bin/mktemp 32332 -usr/share/ssl-cert/ssleay.cnf 32331 -usr/bin/openssl 32330 -etc/ssl/openssl.cnf 32329 -lib/live/config/1110-anacron 32325 -lib/live/config/1120-util-linux 32324 -lib/live/config/1130-login 32322 -lib/live/config/1140-xserver-xorg 32318 -usr/bin/lspci 32317 -lib/x86_64-linux-gnu/libpci.so.3.5.2 32316 -lib/x86_64-linux-gnu/libudev.so.1.6.13 32315 -lib/udev/hwdb.bin 32314 -usr/bin/mawk 32313 -bin/ls 32312 -usr/share/live/config/xserver-xorg/intel.ids 32311 -usr/share/live/config/xserver-xorg/qxl.ids 32310 -lib/live/config/1160-openssh-server 32309 -lib/live/config/1170-xfce4-panel 32308 -lib/live/config/1180-xscreensaver 32307 -lib/live/config/1190-broadcom-sta 32306 -lib/live/config/1500-reconfigure-APT 32305 -lib/live/config/1600-undivert-APT 32277 -usr/bin/dpkg-divert 32276 -usr/bin/apt-get.real 32272 -lib/live/config/2000-aesthetics 32270 -lib/live/config/2000-import-gnupg-key 32269 -usr/bin/gpg 32267 -usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6 32266 -lib/x86_64-linux-gnu/libreadline.so.7.0 32265 -usr/lib/x86_64-linux-gnu/libassuan.so.0.8.2 32264 -usr/share/doc/tails/website/tails-accounting.key 32263 -usr/bin/gpg-agent 32262 -usr/lib/x86_64-linux-gnu/libnpth.so.0.1.2 32261 -usr/share/doc/tails/website/tails-bugs.key 32260 -usr/share/doc/tails/website/tails-email.key 32259 -usr/share/doc/tails/website/tails-foundations.key 32258 -usr/share/doc/tails/website/tails-mirrors.key 32257 -usr/share/doc/tails/website/tails-press.key 32256 -usr/share/doc/tails/website/tails-signing-minimal.key 32255 -usr/share/doc/tails/website/tails-signing.key 32254 -usr/share/doc/tails/website/tails-sysadmins.key 32253 -usr/share/doc/tails/website/tails-translations.key 32252 -lib/live/config/2030-systemd 32245 -bin/systemd-machine-id-setup 32244 -lib/systemd/libsystemd-shared-241.so 32243 -lib/x86_64-linux-gnu/libcap.so.2.25 32242 -lib/x86_64-linux-gnu/libcryptsetup.so.12.4.0 32241 -usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0 32240 -usr/lib/x86_64-linux-gnu/libseccomp.so.2.3.3 32239 -lib/x86_64-linux-gnu/libidn.so.11.6.16 32238 -lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 32237 -usr/lib/x86_64-linux-gnu/libargon2.so.1 32236 -usr/lib/x86_64-linux-gnu/libjson-c.so.3.0.1 32235 -etc/machine-id 32233 -bin/journalctl 32232 -usr/lib/systemd/catalog/systemd.be.catalog 32231 -usr/lib/systemd/catalog/systemd.be@latin.catalog 32230 -usr/lib/systemd/catalog/systemd.bg.catalog 32229 -usr/lib/systemd/catalog/systemd.catalog 32228 -usr/lib/systemd/catalog/systemd.de.catalog 32227 -usr/lib/systemd/catalog/systemd.fr.catalog 32226 -usr/lib/systemd/catalog/systemd.it.catalog 32225 -usr/lib/systemd/catalog/systemd.pl.catalog 32224 -usr/lib/systemd/catalog/systemd.pt_BR.catalog 32223 -usr/lib/systemd/catalog/systemd.ru.catalog 32222 -usr/lib/systemd/catalog/systemd.zh_CN.catalog 32221 -usr/lib/systemd/catalog/systemd.zh_TW.catalog 32220 -lib/live/config/3000-tps-media-directory 32218 -usr/bin/install 32217 -lib/live/config/7000-debug 32215 -lib/live/config/8000-rootpw 32214 -lib/live/config/9000-hosts-file 32213 -etc/live/config.d/hostname.conf 32212 -lib/live/config/9980-permissions 32211 -lib/live/config/9990-hooks 32209 -lib/live/config/9995-nss-systemd 32208 -lib/live/config/9999-unset-user-account-comment 32207 -etc/adjtime 32202 -usr/lib/accountsservice/accounts-daemon 32197 -usr/sbin/memlockd 32196 -etc/init.d/rng-tools 32195 -usr/sbin/alsactl 32193 -usr/lib/x86_64-linux-gnu/libasound.so.2.0.0 32192 -usr/share/alsa/alsa.conf 32190 -usr/share/alsa/alsa.conf.d/10-rate-lav.conf 32189 -usr/share/alsa/alsa.conf.d/10-samplerate.conf 32188 -usr/share/alsa/alsa.conf.d/10-speexrate.conf 32187 -usr/share/alsa/alsa.conf.d/50-arcam-av-ctl.conf 32186 -usr/share/alsa/alsa.conf.d/50-jack.conf 32185 -usr/share/alsa/alsa.conf.d/50-oss.conf 32184 -usr/share/alsa/alsa.conf.d/50-pulseaudio.conf 32183 -usr/share/alsa/alsa.conf.d/60-a52-encoder.conf 32182 -usr/share/alsa/alsa.conf.d/60-upmix.conf 32181 -usr/share/alsa/alsa.conf.d/60-vdownmix.conf 32180 -usr/share/alsa/alsa.conf.d/98-usb-stream.conf 32179 -usr/share/alsa/alsa.conf.d/pulse.conf 32178 -etc/asound.conf 32177 -usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_conf_pulse.so 32176 -usr/lib/x86_64-linux-gnu/libpulse.so.0.20.3 32175 -usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecommon-12.2.so 32174 -lib/x86_64-linux-gnu/libdbus-1.so.3.19.11 32173 -usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0 32172 -usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 32171 -usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0 32170 -usr/lib/x86_64-linux-gnu/libICE.so.6.3.0 32169 -usr/lib/x86_64-linux-gnu/libSM.so.6.0.1 32168 -usr/lib/x86_64-linux-gnu/libXtst.so.6.1.0 32167 -lib/x86_64-linux-gnu/libsystemd.so.0.25.0 32166 -lib/x86_64-linux-gnu/libwrap.so.0.7.6 32165 -usr/lib/x86_64-linux-gnu/libsndfile.so.1.0.28 32164 -usr/lib/x86_64-linux-gnu/libasyncns.so.0.3.1 32163 -usr/lib/x86_64-linux-gnu/libXau.so.6.0.0 32162 -usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0 32161 -usr/lib/x86_64-linux-gnu/libbsd.so.0.9.1 32160 -usr/lib/x86_64-linux-gnu/libXext.so.6.4.0 32159 -usr/lib/x86_64-linux-gnu/libXi.so.6.1.0 32158 -usr/lib/x86_64-linux-gnu/libFLAC.so.8.3.0 32157 -usr/lib/x86_64-linux-gnu/libogg.so.0.8.2 32156 -usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.8 32155 -etc/default/rng-tools 32154 -usr/lib/x86_64-linux-gnu/libvorbisenc.so.2.0.11 32153 -lib/udev/lmt-udev 32152 -etc/pulse/client.conf 32151 -etc/pulse/client.conf.d/00-disable-autospawn.conf 32150 -usr/lib/udisks2/udisksd 32146 -usr/share/alsa/init/00main 32145 -usr/share/alsa/init/hda 32144 -usr/share/alsa/init/default 32143 -sbin/start-stop-daemon 32142 -usr/lib/x86_64-linux-gnu/libblockdev.so.2.0.0 32140 -usr/lib/x86_64-linux-gnu/libbd_utils.so.2.1.0 32139 -usr/lib/x86_64-linux-gnu/libatasmart.so.4.0.5 32138 -usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0 32137 -usr/lib/x86_64-linux-gnu/libudisks2.so.0.0.0 32136 -usr/sbin/rngd 32135 -usr/local/lib/initramfs-restore 32134 -etc/default/cron 32133 -usr/sbin/ModemManager 32129 -usr/local/bin/tails-get-bootinfo 32126 -lib/systemd/systemd-logind 32125 -usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25 32124 -usr/sbin/cron 32122 -usr/bin/env 32121 -usr/bin/python3.7 32120 -lib/x86_64-linux-gnu/libexpat.so.1.6.8 32119 -usr/bin/dbus-daemon 32118 -sbin/wpa_supplicant 32111 -etc/crontab 32108 -usr/lib/x86_64-linux-gnu/libmm-glib.so.0.4.0 32085 -lib/x86_64-linux-gnu/libapparmor.so.1.6.0 32082 -usr/share/dbus-1/system.conf 32081 -usr/local/lib/tails-set-wireless-devices-state 32076 -usr/lib/x86_64-linux-gnu/libqmi-glib.so.5.4.0 32073 -usr/share/dbus-1/system.d/nm-dispatcher.conf 32072 -usr/bin/unmkinitramfs 32071 -usr/local/lib/onion-grater 32070 +bin/sed 32767 +etc/ld.so.cache 32766 +bin/grep 32765 +bin/cat 32764 +bin/dash 32763 +bin/which 32762 +etc/laptop-mode/conf.d/ac97-powersave.conf 32761 +etc/laptop-mode/conf.d/auto-hibernate.conf 32760 +etc/laptop-mode/conf.d/battery-level-polling.conf 32759 +etc/laptop-mode/conf.d/bluetooth.conf 32758 +etc/laptop-mode/conf.d/configuration-file-control.conf 32757 +etc/laptop-mode/conf.d/cpufreq.conf 32756 +etc/laptop-mode/conf.d/cpuhotplug.conf 32755 +etc/laptop-mode/conf.d/dpms-standby.conf 32754 +etc/laptop-mode/conf.d/eee-superhe.conf 32753 +etc/laptop-mode/conf.d/ethernet.conf 32752 +etc/laptop-mode/conf.d/exec-commands.conf 32751 +etc/laptop-mode/conf.d/hal-polling.conf 32750 +etc/laptop-mode/conf.d/intel-hda-powersave.conf 32749 +etc/laptop-mode/conf.d/intel-sata-powermgmt.conf 32748 +etc/laptop-mode/conf.d/intel_pstate.conf 32747 +etc/laptop-mode/conf.d/kbd-backlight.conf 32746 +etc/laptop-mode/conf.d/lcd-brightness.conf 32745 +etc/laptop-mode/conf.d/nmi-watchdog.conf 32744 +etc/laptop-mode/conf.d/pcie-aspm.conf 32743 +etc/laptop-mode/conf.d/radeon-dpm.conf 32742 +etc/laptop-mode/conf.d/runtime-pm.conf 32741 +etc/laptop-mode/conf.d/sched-mc-power-savings.conf 32740 +etc/laptop-mode/conf.d/sched-smt-power-savings.conf 32739 +etc/laptop-mode/conf.d/start-stop-programs.conf 32738 +etc/laptop-mode/conf.d/terminal-blanking.conf 32737 +etc/laptop-mode/conf.d/vgaswitcheroo.conf 32736 +etc/laptop-mode/conf.d/video-out.conf 32735 +etc/laptop-mode/conf.d/wireless-ipw-power.conf 32734 +etc/laptop-mode/conf.d/wireless-iwl-power.conf 32733 +etc/laptop-mode/conf.d/wireless-power.conf 32732 +etc/laptop-mode/laptop-mode.conf 32731 +bin/uname 32730 +bin/mkdir 32729 +bin/touch 32728 +bin/udevadm 32727 +etc/udev/udev.conf 32726 +bin/egrep 32725 +lib/live/config/0001-sane-clock 32724 +lib/x86_64-linux-gnu/ld-2.28.so 32723 +lib/x86_64-linux-gnu/libc-2.28.so 32722 +usr/lib/x86_64-linux-gnu/libacl.so.1.1.2253 32721 +lib/x86_64-linux-gnu/libselinux.so.1 32720 +usr/lib/x86_64-linux-gnu/libattr.so.1.1.2448 32719 +lib/x86_64-linux-gnu/libpcre.so.3.13.3 32718 +lib/x86_64-linux-gnu/libdl-2.28.so 32717 +lib/x86_64-linux-gnu/libpthread-2.28.so 32716 +usr/lib/locale/en_US.utf8/LC_IDENTIFICATION 32715 +usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache 32714 +usr/lib/locale/chr_US/LC_MEASUREMENT 32713 +usr/lib/locale/chr_US/LC_TELEPHONE 32712 +usr/lib/locale/en_US.utf8/LC_ADDRESS 32711 +usr/lib/locale/bi_VU/LC_NAME 32710 +usr/lib/locale/chr_US/LC_PAPER 32709 +usr/lib/locale/en_AG/LC_MESSAGES/SYS_LC_MESSAGES 32708 +usr/lib/locale/chr_US/LC_MONETARY 32707 +usr/lib/locale/aa_DJ.utf8/LC_COLLATE 32706 +usr/lib/locale/en_US.utf8/LC_TIME 32705 +usr/lib/locale/aa_ET/LC_NUMERIC 32704 +usr/lib/locale/aa_DJ.utf8/LC_CTYPE 32703 +etc/amnesia/version 32702 +bin/date 32701 +usr/share/zoneinfo/UCT 32700 +lib/live/config/0005-nss-systemd 32699 +etc/nsswitch.conf 32698 +lib/live/config/0010-debconf 32697 +lib/live/setup-network.sh 32696 +lib/live/config/0020-hostname 32694 +etc/hostname 32693 +etc/hosts 32692 +bin/hostname 32691 +lib/live/config/0030-live-debconfig_passwd 32689 +lib/live/config/0030-user-setup 32688 +usr/bin/debconf-set-selections 32686 +usr/bin/perl 32685 +lib/x86_64-linux-gnu/libm-2.28.so 32684 +lib/x86_64-linux-gnu/libcrypt-2.28.so 32683 +usr/share/perl/5.28.1/warnings.pm 32682 +usr/share/perl/5.28.1/strict.pm 32681 +usr/share/perl5/Debconf/Db.pm 32680 +usr/share/perl5/Debconf/Log.pm 32679 +usr/share/perl/5.28.1/base.pm 32678 +usr/share/perl/5.28.1/Exporter.pm 32677 +usr/share/perl5/Debconf/Config.pm 32676 +usr/share/perl5/Debconf/Question.pm 32675 +usr/share/perl5/Debconf/Template.pm 32674 +usr/lib/x86_64-linux-gnu/perl/5.28.1/POSIX.pm 32673 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Fcntl.pm 32672 +usr/share/perl/5.28.1/XSLoader.pm 32671 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Fcntl/Fcntl.so 32670 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/POSIX/POSIX.so 32669 +usr/share/perl/5.28.1/Tie/Hash.pm 32668 +usr/share/perl/5.28.1/Carp.pm 32667 +usr/share/perl/5.28.1/overloading.pm 32666 +usr/share/perl/5.28.1/warnings/register.pm 32665 +usr/share/perl/5.28.1/Exporter/Heavy.pm 32664 +usr/share/perl/5.28.1/FileHandle.pm 32663 +usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/File.pm 32662 +usr/share/perl/5.28.1/Symbol.pm 32661 +usr/share/perl/5.28.1/SelectSaver.pm 32660 +usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Seekable.pm 32659 +usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Handle.pm 32658 +usr/lib/x86_64-linux-gnu/perl/5.28.1/IO.pm 32657 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/IO/IO.so 32656 +usr/share/perl5/Debconf/Gettext.pm 32655 +usr/lib/x86_64-linux-gnu/perl5/5.28/Locale/gettext.pm 32654 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode.pm 32653 +usr/share/perl/5.28.1/constant.pm 32652 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Encode/Encode.so 32651 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode/Alias.pm 32650 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode/MIME/Name.pm 32649 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Storable.pm 32648 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Storable/Storable.so 32647 +usr/share/perl/5.28.1/parent.pm 32646 +usr/share/perl/5.28.1/vars.pm 32645 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode/Encoding.pm 32644 +usr/share/perl/5.28.1/bytes.pm 32643 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode/Config.pm 32642 +usr/lib/x86_64-linux-gnu/perl/5.28.1/DynaLoader.pm 32641 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Config.pm 32640 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Locale/gettext/gettext.so 32639 +usr/share/perl/5.28.1/Text/Wrap.pm 32638 +usr/share/perl/5.28.1/Text/Tabs.pm 32637 +usr/lib/x86_64-linux-gnu/perl/5.28.1/re.pm 32636 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/re/re.so 32635 +usr/share/perl5/Debconf/Iterator.pm 32634 +usr/share/perl5/Debconf/Base.pm 32633 +usr/share/perl/5.28.1/fields.pm 32632 +usr/share/perl5/Debconf/Encoding.pm 32631 +usr/lib/x86_64-linux-gnu/perl5/5.28/Text/Iconv.pm 32630 +usr/share/perl/5.28.1/AutoLoader.pm 32629 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Text/Iconv/Iconv.so 32628 +usr/bin/locale 32627 +usr/share/perl5/Text/WrapI18N.pm 32626 +usr/lib/x86_64-linux-gnu/perl5/5.28/Text/CharWidth.pm 32625 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Text/CharWidth/CharWidth.so 32624 +usr/share/perl/5.28.1/overload.pm 32623 +usr/share/perl5/Debconf/Priority.pm 32622 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Hash/Util.pm 32621 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Scalar/Util.pm 32620 +usr/lib/x86_64-linux-gnu/perl/5.28.1/List/Util.pm 32619 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/List/Util/Util.so 32618 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Hash/Util/Util.so 32617 +lib/x86_64-linux-gnu/libnss_files-2.28.so 32616 +usr/share/perl5/Debconf/DbDriver.pm 32614 +usr/share/perl/5.28.1/Getopt/Long.pm 32613 +etc/debconf.conf 32612 +usr/share/perl5/Debconf/DbDriver/File.pm 32611 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Cwd.pm 32610 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Cwd/Cwd.so 32609 +usr/share/perl5/Debconf/DbDriver/Cache.pm 32608 +usr/share/perl5/Debconf/Format/822.pm 32607 +usr/share/perl5/Debconf/Format.pm 32606 +usr/share/perl5/Debconf/DbDriver/Stack.pm 32603 +usr/share/perl5/Debconf/DbDriver/Copy.pm 32602 +bin/rm 32597 +usr/lib/user-setup/user-setup-apply 32596 +usr/share/debconf/confmodule 32595 +usr/share/debconf/frontend 32594 +usr/share/perl5/Debconf/AutoSelect.pm 32593 +usr/share/perl5/Debconf/ConfModule.pm 32592 +usr/share/perl/5.28.1/IPC/Open2.pm 32591 +usr/share/perl/5.28.1/IPC/Open3.pm 32590 +usr/share/perl5/Debconf/FrontEnd/Noninteractive.pm 32589 +usr/share/perl5/Debconf/FrontEnd.pm 32588 +usr/lib/x86_64-linux-gnu/perl5/5.28/Glib/Object/Introspection.pm 32587 +usr/lib/x86_64-linux-gnu/perl5/5.28/Glib.pm 32586 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Glib/Glib.so 32585 +usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5800.3 32584 +usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5800.3 32583 +usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0.5800.3 32582 +usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 32581 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Glib/Object/Introspection/Introspection.so 32580 +usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0 32579 +usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5800.3 32578 +usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5800.3 32577 +lib/x86_64-linux-gnu/libz.so.1.2.11 32576 +lib/x86_64-linux-gnu/libmount.so.1.1.0 32575 +lib/x86_64-linux-gnu/libresolv-2.28.so 32574 +lib/x86_64-linux-gnu/libblkid.so.1.1.0 32573 +lib/x86_64-linux-gnu/librt-2.28.so 32572 +lib/x86_64-linux-gnu/libuuid.so.1.3.0 32571 +usr/lib/user-setup/functions.sh 32570 +sbin/shadowconfig 32569 +usr/sbin/pwck 32568 +etc/login.defs 32567 +usr/sbin/grpck 32566 +usr/sbin/pwconv 32563 +etc/.pwd.lock 32562 +usr/sbin/grpconv 32559 +bin/chown 32552 +bin/chmod 32551 +usr/bin/cut 32550 +usr/bin/dpkg-query 32549 +var/lib/dpkg/status 32548 +var/lib/dpkg/triggers/File 32547 +var/lib/dpkg/triggers/Unincorp 32546 +usr/bin/dpkg 32545 +etc/dpkg/dpkg.cfg 32544 +usr/sbin/usermod 32543 +lib/x86_64-linux-gnu/libaudit.so.1.0.0 32542 +usr/lib/x86_64-linux-gnu/libsemanage.so.1 32541 +lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 32540 +lib/x86_64-linux-gnu/libsepol.so.1 32539 +lib/x86_64-linux-gnu/libbz2.so.1.0.4 32538 +usr/sbin/adduser 32531 +usr/share/perl5/Debian/AdduserCommon.pm 32530 +usr/lib/x86_64-linux-gnu/perl/5.28.1/I18N/Langinfo.pm 32529 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/I18N/Langinfo/Langinfo.so 32528 +etc/adduser.conf 32527 +usr/sbin/groupadd 32526 +usr/sbin/useradd 32523 +etc/default/useradd 32522 +var/log/faillog 32513 +var/log/lastlog 32512 +sbin/pam_tally2 32507 +lib/x86_64-linux-gnu/libpam.so.0.84.2 32506 +usr/bin/find 32505 +etc/skel/.bash_logout 32504 +etc/skel/.bashrc 32503 +etc/skel/.config/Trolltech.conf 32502 +etc/skel/.config/keepassxc/keepassxc.ini 32501 +etc/skel/.config/onionshare/onionshare.json 32500 +etc/skel/.electrum/config 32498 +etc/skel/.gnome2/accels/.placeholder 32497 +etc/skel/.gnome2/keyrings/default 32496 +etc/skel/.gnome2/keyrings/tails.keyring 32495 +etc/skel/.gnome2_private/.placeholder 32494 +etc/skel/.gnupg/dirmngr.conf 32493 +etc/skel/.gnupg/gpg-agent.conf 32492 +etc/skel/.gnupg/gpg.conf 32491 +etc/skel/.local/share/applications/mimeapps.list 32490 +etc/skel/.monkeysphere/monkeysphere.conf 32489 +etc/skel/.poedit/config 32488 +etc/skel/.profile 32487 +etc/skel/.purple/prefs.xml 32486 +etc/skel/.tor-browser/profile.default/bookmarks.html 32485 +etc/skel/.tor-browser/profile.default/chrome/userChrome.css 32484 +etc/skel/.tor-browser/profile.default/prefs.js 32483 +etc/skel/.xsessionrc 32482 +etc/skel/Desktop/Report_an_error.desktop 32481 +etc/skel/Desktop/tails-documentation.desktop 32480 +usr/bin/chfn 32477 +lib/x86_64-linux-gnu/libpam_misc.so.0.82.1 32476 +etc/pam.d/chfn 32475 +lib/x86_64-linux-gnu/security/pam_rootok.so 32474 +etc/pam.d/common-auth 32473 +lib/x86_64-linux-gnu/security/pam_unix.so 32472 +lib/x86_64-linux-gnu/libnsl-2.28.so 32471 +lib/x86_64-linux-gnu/security/pam_deny.so 32470 +lib/x86_64-linux-gnu/security/pam_permit.so 32469 +etc/pam.d/common-account 32468 +etc/pam.d/common-session 32467 +lib/x86_64-linux-gnu/security/pam_systemd.so 32466 +etc/pam.d/other 32465 +etc/pam.d/common-password 32464 +usr/bin/gpasswd 32460 +lib/live/config/0040-sudo 32438 +lib/live/config/0050-locales 32437 +etc/default/locale 32436 +bin/systemctl 32435 +lib/x86_64-linux-gnu/liblzma.so.5.2.4 32434 +usr/lib/x86_64-linux-gnu/liblz4.so.1.8.3 32433 +lib/x86_64-linux-gnu/libgcrypt.so.20.2.4 32432 +lib/x86_64-linux-gnu/libgpg-error.so.0.26.1 32431 +lib/live/config/0070-tzdata 32429 +etc/timezone 32428 +usr/sbin/dpkg-reconfigure 32427 +var/lib/dpkg/info/format 32426 +var/lib/dpkg/info/tzdata.templates 32425 +var/lib/dpkg/info/tzdata.config 32424 +usr/bin/head 32423 +usr/share/perl5/Debconf/Element/Noninteractive/Select.pm 32422 +usr/share/perl5/Debconf/Element/Noninteractive.pm 32421 +usr/share/perl5/Debconf/Element.pm 32420 +var/lib/dpkg/info/tzdata.postinst 32419 +bin/ln 32418 +bin/mv 32417 +lib/live/config/0080-gdm3 32414 +lib/live/config/0085-sddm 32413 +lib/live/config/0090-kdm 32412 +lib/live/config/0100-lightdm 32411 +lib/live/config/0110-lxdm 32410 +lib/live/config/0120-nodm 32409 +lib/live/config/0130-slim 32408 +lib/live/config/0140-xinit 32407 +lib/live/config/0150-keyboard-configuration 32406 +lib/live/config/1000-remount-procfs 32405 +bin/mount 32404 +etc/fstab 32403 +lib/live/config/1020-gnome-panel-data 32400 +lib/live/config/1030-gnome-power-manager 32399 +usr/bin/sudo 32398 +lib/x86_64-linux-gnu/libutil-2.28.so 32397 +usr/lib/sudo/libsudo_util.so.0.0.0 32396 +usr/lib/sudo/sudoers.so 32395 +etc/sudoers 32394 +etc/sudoers.d/README 32393 +etc/sudoers.d/always-ask-password 32392 +etc/sudoers.d/tails-greeter-cryptsetup 32391 +etc/sudoers.d/tails-greeter-live-persist 32390 +etc/sudoers.d/tails-greeter-umount 32389 +etc/sudoers.d/zzz_boot_profile 32388 +etc/sudoers.d/zzz_gdm 32387 +etc/sudoers.d/zzz_halt 32386 +etc/sudoers.d/zzz_persistence-setup 32385 +etc/sudoers.d/zzz_tails-additional-software 32384 +etc/sudoers.d/zzz_tails-debugging-info 32383 +etc/sudoers.d/zzz_tails-kill-gdm-session 32382 +etc/sudoers.d/zzz_unsafe-browser 32381 +etc/sudoers.d/zzz_upgrade 32380 +etc/host.conf 32379 +etc/resolv.conf 32378 +etc/pam.d/sudo 32377 +etc/pam.d/common-session-noninteractive 32376 +lib/live/config/1040-gnome-screensaver 32374 +lib/live/config/1050-kaboom 32373 +lib/live/config/1060-kde-services 32372 +lib/live/config/1080-policykit 32371 +lib/live/config/1090-ssl-cert 32370 +usr/sbin/make-ssl-cert 32369 +bin/bash 32368 +lib/x86_64-linux-gnu/libtinfo.so.6.1 32367 +bin/mktemp 32366 +usr/share/ssl-cert/ssleay.cnf 32365 +usr/bin/openssl 32364 +usr/lib/x86_64-linux-gnu/libssl.so.1.1 32363 +usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 32362 +etc/ssl/openssl.cnf 32361 +lib/live/config/1110-anacron 32357 +lib/live/config/1120-util-linux 32356 +lib/live/config/1130-login 32354 +lib/live/config/1140-xserver-xorg 32350 +usr/bin/lspci 32349 +lib/x86_64-linux-gnu/libpci.so.3.5.2 32348 +usr/lib/x86_64-linux-gnu/libkmod.so.2.3.4 32347 +lib/x86_64-linux-gnu/libudev.so.1.6.13 32346 +usr/bin/tr 32345 +lib/udev/hwdb.bin 32344 +usr/bin/mawk 32343 +bin/ls 32342 +usr/share/live/config/xserver-xorg/intel.ids 32341 +usr/share/live/config/xserver-xorg/qxl.ids 32340 +lib/live/config/1160-openssh-server 32339 +lib/live/config/1170-xfce4-panel 32338 +lib/live/config/1180-xscreensaver 32337 +lib/live/config/1190-broadcom-sta 32336 +lib/live/config/1500-reconfigure-APT 32335 +lib/live/config/1600-undivert-APT 32307 +usr/bin/dpkg-divert 32306 +lib/live/config/2000-aesthetics 32301 +lib/live/config/2000-import-gnupg-key 32300 +usr/bin/gpg 32298 +usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6 32297 +lib/x86_64-linux-gnu/libreadline.so.7.0 32296 +usr/lib/x86_64-linux-gnu/libassuan.so.0.8.2 32295 +usr/share/doc/tails/website/tails-accounting.key 32294 +usr/bin/gpg-agent 32293 +usr/lib/x86_64-linux-gnu/libnpth.so.0.1.2 32292 +usr/share/doc/tails/website/tails-bugs.key 32291 +usr/share/doc/tails/website/tails-email.key 32290 +usr/share/doc/tails/website/tails-foundations.key 32289 +usr/share/doc/tails/website/tails-mirrors.key 32288 +usr/share/doc/tails/website/tails-press.key 32287 +usr/share/doc/tails/website/tails-signing-minimal.key 32286 +usr/share/doc/tails/website/tails-signing.key 32285 +usr/share/doc/tails/website/tails-sysadmins.key 32284 +usr/share/doc/tails/website/tails-translations.key 32283 +lib/live/config/2030-systemd 32276 +bin/systemd-machine-id-setup 32275 +lib/systemd/libsystemd-shared-241.so 32274 +lib/x86_64-linux-gnu/libcap.so.2.25 32273 +lib/x86_64-linux-gnu/libcryptsetup.so.12.4.0 32272 +usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0 32271 +usr/lib/x86_64-linux-gnu/libseccomp.so.2.3.3 32270 +lib/x86_64-linux-gnu/libidn.so.11.6.16 32269 +lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 32268 +usr/lib/x86_64-linux-gnu/libargon2.so.1 32267 +usr/lib/x86_64-linux-gnu/libjson-c.so.3.0.1 32266 +etc/machine-id 32265 +bin/journalctl 32264 +usr/lib/systemd/catalog/systemd.be.catalog 32263 +usr/lib/systemd/catalog/systemd.be@latin.catalog 32262 +usr/lib/systemd/catalog/systemd.bg.catalog 32261 +usr/lib/systemd/catalog/systemd.catalog 32260 +usr/lib/systemd/catalog/systemd.de.catalog 32259 +usr/lib/systemd/catalog/systemd.fr.catalog 32258 +usr/lib/systemd/catalog/systemd.it.catalog 32257 +usr/lib/systemd/catalog/systemd.pl.catalog 32256 +usr/lib/systemd/catalog/systemd.pt_BR.catalog 32255 +usr/lib/systemd/catalog/systemd.ru.catalog 32254 +usr/lib/systemd/catalog/systemd.zh_CN.catalog 32253 +usr/lib/systemd/catalog/systemd.zh_TW.catalog 32252 +lib/live/config/3000-tps-media-directory 32250 +usr/bin/install 32249 +lib/live/config/7000-debug 32247 +lib/live/config/8000-rootpw 32246 +lib/live/config/9000-hosts-file 32245 +etc/live/config.d/hostname.conf 32244 +lib/live/config/9980-permissions 32243 +lib/live/config/9990-hooks 32241 +lib/live/config/9995-nss-systemd 32240 +lib/live/config/9999-unset-user-account-comment 32239 +etc/adjtime 32236 +usr/bin/dbus-daemon 32233 +lib/x86_64-linux-gnu/libdbus-1.so.3.19.11 32232 +lib/x86_64-linux-gnu/libsystemd.so.0.25.0 32231 +lib/x86_64-linux-gnu/libexpat.so.1.6.8 32230 +lib/x86_64-linux-gnu/libapparmor.so.1.6.0 32229 +usr/share/dbus-1/system.conf 32226 +usr/lib/udisks2/udisksd 32223 +etc/init.d/rng-tools 32222 +usr/share/dbus-1/system.d/nm-dispatcher.conf 32221 +usr/share/dbus-1/system.d/org.freedesktop.ColorManager.conf 32220 +usr/share/dbus-1/system.d/org.freedesktop.NetworkManager.conf 32219 +usr/share/dbus-1/system.d/org.freedesktop.PolicyKit1.conf 32218 +usr/share/dbus-1/system.d/org.freedesktop.UDisks2.conf 32217 +usr/local/lib/tails-set-wireless-devices-state 32215 +usr/share/dbus-1/system.d/org.freedesktop.UPower.conf 32214 +usr/share/dbus-1/system.d/org.freedesktop.hostname1.conf 32213 +usr/share/dbus-1/system.d/org.freedesktop.locale1.conf 32212 +usr/share/dbus-1/system.d/org.freedesktop.login1.conf 32211 +usr/share/dbus-1/system.d/org.freedesktop.network1.conf 32210 +usr/share/dbus-1/system.d/org.freedesktop.resolve1.conf 32209 +usr/share/dbus-1/system.d/org.freedesktop.systemd1.conf 32208 +usr/share/dbus-1/system.d/org.freedesktop.timedate1.conf 32207 +usr/share/dbus-1/system.d/org.freedesktop.timesync1.conf 32206 +etc/dbus-1/system.d/com.hp.hplip.conf 32205 +etc/dbus-1/system.d/com.redhat.NewPrinterNotification.conf 32204 +etc/dbus-1/system.d/com.redhat.PrinterDriversInstaller.conf 32203 +etc/dbus-1/system.d/gdm.conf 32202 +etc/default/rng-tools 32201 +lib/systemd/systemd-logind 32200 +usr/sbin/alsactl 32198 +usr/lib/x86_64-linux-gnu/libasound.so.2.0.0 32197 +etc/dbus-1/system.d/org.freedesktop.Accounts.conf 32196 +etc/dbus-1/system.d/org.freedesktop.ModemManager1.conf 32195 +etc/dbus-1/system.d/org.freedesktop.bolt.conf 32194 +etc/dbus-1/system.d/org.opensuse.CupsPkHelper.Mechanism.conf 32193 +etc/dbus-1/system.d/pulseaudio-system.conf 32192 +etc/dbus-1/system.d/wpa_supplicant.conf 32191 +usr/share/dbus-1/system-services/com.hp.hplip.service 32190 +usr/share/dbus-1/system-services/fi.epitest.hostap.WPASupplicant.service 32189 +usr/share/dbus-1/system-services/fi.w1.wpa_supplicant1.service 32188 +usr/share/dbus-1/system-services/org.freedesktop.Accounts.service 32187 +usr/share/dbus-1/system-services/org.freedesktop.ColorManager.service 32186 +usr/share/dbus-1/system-services/org.freedesktop.ModemManager1.service 32185 +usr/share/dbus-1/system-services/org.freedesktop.PolicyKit1.service 32184 +usr/share/dbus-1/system-services/org.freedesktop.UDisks2.service 32183 +usr/share/dbus-1/system-services/org.freedesktop.UPower.service 32182 +usr/share/dbus-1/system-services/org.freedesktop.bolt.service 32181 +usr/share/dbus-1/system-services/org.freedesktop.hostname1.service 32180 +usr/share/dbus-1/system-services/org.freedesktop.locale1.service 32179 +usr/share/dbus-1/system-services/org.freedesktop.login1.service 32178 +usr/share/dbus-1/system-services/org.freedesktop.network1.service 32177 +usr/share/dbus-1/system-services/org.freedesktop.nm_dispatcher.service 32176 +usr/share/dbus-1/system-services/org.freedesktop.resolve1.service 32175 +usr/share/dbus-1/system-services/org.freedesktop.systemd1.service 32174 +usr/share/dbus-1/system-services/org.freedesktop.timedate1.service 32173 +usr/share/dbus-1/system-services/org.freedesktop.timesync1.service 32172 +usr/share/dbus-1/system-services/org.opensuse.CupsPkHelper.Mechanism.service 32171 +lib/udev/lmt-udev 32169 +usr/share/alsa/alsa.conf 32167 +usr/share/alsa/alsa.conf.d/10-rate-lav.conf 32166 +usr/share/alsa/alsa.conf.d/10-samplerate.conf 32165 +usr/share/alsa/alsa.conf.d/10-speexrate.conf 32164 +usr/share/alsa/alsa.conf.d/50-arcam-av-ctl.conf 32163 +usr/share/alsa/alsa.conf.d/50-jack.conf 32162 +usr/share/alsa/alsa.conf.d/50-oss.conf 32161 +usr/share/alsa/alsa.conf.d/50-pulseaudio.conf 32160 +usr/share/alsa/alsa.conf.d/60-a52-encoder.conf 32159 +usr/share/alsa/alsa.conf.d/60-upmix.conf 32158 +usr/share/alsa/alsa.conf.d/60-vdownmix.conf 32157 +usr/share/alsa/alsa.conf.d/98-usb-stream.conf 32156 +usr/share/alsa/alsa.conf.d/pulse.conf 32155 +etc/asound.conf 32154 +usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_conf_pulse.so 32153 +usr/lib/x86_64-linux-gnu/libpulse.so.0.20.3 32152 +usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecommon-12.2.so 32151 +usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0 32150 +usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 32149 +usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0 32148 +usr/lib/x86_64-linux-gnu/libICE.so.6.3.0 32147 +usr/lib/x86_64-linux-gnu/libSM.so.6.0.1 32146 +usr/lib/x86_64-linux-gnu/libXtst.so.6.1.0 32145 +lib/x86_64-linux-gnu/libwrap.so.0.7.6 32144 +usr/lib/x86_64-linux-gnu/libsndfile.so.1.0.28 32143 +usr/lib/x86_64-linux-gnu/libasyncns.so.0.3.1 32142 +usr/lib/x86_64-linux-gnu/libXau.so.6.0.0 32141 +usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0 32140 +usr/lib/x86_64-linux-gnu/libbsd.so.0.9.1 32139 +usr/lib/x86_64-linux-gnu/libXext.so.6.4.0 32138 +usr/lib/x86_64-linux-gnu/libXi.so.6.1.0 32137 +usr/lib/x86_64-linux-gnu/libFLAC.so.8.3.0 32136 +usr/lib/x86_64-linux-gnu/libogg.so.0.8.2 32135 +usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.8 32134 +usr/lib/x86_64-linux-gnu/libvorbisenc.so.2.0.11 32133 +sbin/wpa_supplicant 32129 +usr/sbin/memlockd 32128 +usr/local/lib/onion-grater 32127 +usr/local/lib/initramfs-restore 32126 +usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25 32125 +usr/bin/python3.7 32124 +usr/lib/x86_64-linux-gnu/libgudev-1.0.so.0.2.0 32123 +usr/lib/x86_64-linux-gnu/libblockdev.so.2.0.0 32122 +usr/lib/x86_64-linux-gnu/libbd_utils.so.2.1.0 32121 +usr/lib/x86_64-linux-gnu/libatasmart.so.4.0.5 32120 +usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0 32119 +usr/lib/x86_64-linux-gnu/libudisks2.so.0.0.0 32118 +sbin/start-stop-daemon 32117 +etc/pulse/client.conf 32116 +etc/default/cron 32113 +usr/lib/accountsservice/accounts-daemon 32112 +etc/pulse/client.conf.d/00-disable-autospawn.conf 32111 +usr/share/alsa/init/00main 32110 +usr/share/alsa/init/hda 32109 +usr/share/alsa/init/default 32108 +usr/sbin/rngd 32106 +etc/systemd/logind.conf 32105 +usr/local/bin/tails-get-bootinfo 32102 +usr/bin/env 32101 +usr/sbin/ModemManager 32091 +etc/libblockdev/conf.d/00-default.cfg 32082 +usr/lib/x86_64-linux-gnu/gio/modules/giomodule.cache 32081 +usr/sbin/laptop_mode 32079 +usr/lib/systemd/logind.conf.d/lower-NAutoVTs.conf 32077 +usr/bin/unmkinitramfs 32076 +usr/sbin/cron 32075 +usr/lib/x86_64-linux-gnu/libbd_swap.so.2.0.0 32074 +usr/lib/x86_64-linux-gnu/libbd_loop.so.2.0.0 32073 +usr/lib/x86_64-linux-gnu/libbd_crypto.so.2.0.0 32072 +usr/bin/getopt 32070 lib/x86_64-linux-gnu/libgcc_s.so.1 32069 -usr/lib/python3.7/argparse.py 32068 -etc/memlockd.cfg 32067 -usr/share/dbus-1/system.d/org.freedesktop.ColorManager.conf 32066 -usr/share/dbus-1/system.d/org.freedesktop.NetworkManager.conf 32065 -usr/share/dbus-1/system.d/org.freedesktop.PolicyKit1.conf 32064 -usr/share/dbus-1/system.d/org.freedesktop.UDisks2.conf 32063 -usr/share/dbus-1/system.d/org.freedesktop.UPower.conf 32062 -usr/share/dbus-1/system.d/org.freedesktop.hostname1.conf 32061 -usr/share/dbus-1/system.d/org.freedesktop.locale1.conf 32060 -usr/share/dbus-1/system.d/org.freedesktop.login1.conf 32059 -usr/share/dbus-1/system.d/org.freedesktop.network1.conf 32058 -usr/share/dbus-1/system.d/org.freedesktop.resolve1.conf 32057 -usr/share/dbus-1/system.d/org.freedesktop.systemd1.conf 32056 -usr/share/dbus-1/system.d/org.freedesktop.timedate1.conf 32055 -usr/share/dbus-1/system.d/org.freedesktop.timesync1.conf 32054 -usr/bin/getopt 32053 -etc/dbus-1/system.d/com.hp.hplip.conf 32052 -etc/dbus-1/system.d/com.redhat.NewPrinterNotification.conf 32051 -etc/dbus-1/system.d/com.redhat.PrinterDriversInstaller.conf 32050 -etc/dbus-1/system.d/gdm.conf 32049 -etc/dbus-1/system.d/org.freedesktop.Accounts.conf 32048 -etc/dbus-1/system.d/org.freedesktop.ModemManager1.conf 32047 -etc/dbus-1/system.d/org.freedesktop.bolt.conf 32046 -etc/dbus-1/system.d/org.opensuse.CupsPkHelper.Mechanism.conf 32045 -etc/dbus-1/system.d/pulseaudio-system.conf 32044 -etc/dbus-1/system.d/wpa_supplicant.conf 32043 -usr/share/dbus-1/system-services/com.hp.hplip.service 32042 -usr/share/dbus-1/system-services/fi.epitest.hostap.WPASupplicant.service 32041 -usr/share/dbus-1/system-services/fi.w1.wpa_supplicant1.service 32040 -usr/share/dbus-1/system-services/org.freedesktop.Accounts.service 32039 -usr/share/dbus-1/system-services/org.freedesktop.ColorManager.service 32038 -usr/share/dbus-1/system-services/org.freedesktop.ModemManager1.service 32037 -usr/share/dbus-1/system-services/org.freedesktop.PolicyKit1.service 32036 -usr/share/dbus-1/system-services/org.freedesktop.UDisks2.service 32035 -usr/share/dbus-1/system-services/org.freedesktop.UPower.service 32034 -usr/share/dbus-1/system-services/org.freedesktop.bolt.service 32033 -usr/share/dbus-1/system-services/org.freedesktop.hostname1.service 32032 -usr/share/dbus-1/system-services/org.freedesktop.locale1.service 32031 -usr/share/dbus-1/system-services/org.freedesktop.login1.service 32030 -usr/share/dbus-1/system-services/org.freedesktop.network1.service 32029 -usr/share/dbus-1/system-services/org.freedesktop.nm_dispatcher.service 32028 -usr/share/dbus-1/system-services/org.freedesktop.resolve1.service 32027 -usr/share/dbus-1/system-services/org.freedesktop.systemd1.service 32026 -usr/share/dbus-1/system-services/org.freedesktop.timedate1.service 32025 -usr/share/dbus-1/system-services/org.freedesktop.timesync1.service 32024 -usr/share/dbus-1/system-services/org.opensuse.CupsPkHelper.Mechanism.service 32023 -usr/bin/ldd 32022 -bin/dd 32020 -etc/laptop-mode/conf.d/ac97-powersave.conf 32018 -etc/laptop-mode/conf.d/auto-hibernate.conf 32017 -etc/laptop-mode/conf.d/battery-level-polling.conf 32016 -etc/laptop-mode/conf.d/bluetooth.conf 32015 -etc/laptop-mode/conf.d/configuration-file-control.conf 32014 -etc/laptop-mode/conf.d/cpufreq.conf 32013 -etc/laptop-mode/conf.d/cpuhotplug.conf 32012 -etc/laptop-mode/conf.d/dpms-standby.conf 32011 -etc/laptop-mode/conf.d/eee-superhe.conf 32010 -etc/laptop-mode/conf.d/ethernet.conf 32009 -etc/laptop-mode/conf.d/exec-commands.conf 32008 -etc/laptop-mode/conf.d/hal-polling.conf 32007 -etc/laptop-mode/conf.d/intel-hda-powersave.conf 32006 -etc/laptop-mode/conf.d/intel-sata-powermgmt.conf 32005 -etc/laptop-mode/conf.d/intel_pstate.conf 32004 -etc/laptop-mode/conf.d/kbd-backlight.conf 32003 -etc/laptop-mode/conf.d/lcd-brightness.conf 32002 -etc/laptop-mode/conf.d/nmi-watchdog.conf 32001 -etc/laptop-mode/conf.d/pcie-aspm.conf 32000 -etc/laptop-mode/conf.d/radeon-dpm.conf 31999 -etc/laptop-mode/conf.d/runtime-pm.conf 31998 -etc/laptop-mode/conf.d/sched-mc-power-savings.conf 31997 -etc/laptop-mode/conf.d/sched-smt-power-savings.conf 31996 -etc/laptop-mode/conf.d/start-stop-programs.conf 31995 -etc/laptop-mode/conf.d/terminal-blanking.conf 31994 -etc/laptop-mode/conf.d/vgaswitcheroo.conf 31993 -etc/laptop-mode/conf.d/video-out.conf 31992 -etc/laptop-mode/conf.d/wireless-ipw-power.conf 31991 -etc/laptop-mode/conf.d/wireless-iwl-power.conf 31990 -etc/laptop-mode/conf.d/wireless-power.conf 31989 -etc/laptop-mode/laptop-mode.conf 31988 -etc/systemd/logind.conf 31987 -etc/libblockdev/conf.d/00-default.cfg 31986 -usr/lib/systemd/logind.conf.d/lower-NAutoVTs.conf 31985 -usr/lib/x86_64-linux-gnu/gio/modules/giomodule.cache 31946 -usr/lib/x86_64-linux-gnu/gio/modules/libgvfsdbus.so 31945 -usr/lib/x86_64-linux-gnu/gvfs/libgvfscommon.so 31944 -usr/lib/python3.7/gettext.py 31943 -usr/lib/x86_64-linux-gnu/libbd_swap.so.2.0.0 31942 -etc/shells 31941 -var/log/wtmp 31936 -lib/systemd/system/polkit.service 31935 -usr/lib/x86_64-linux-gnu/libbd_loop.so.2.0.0 31930 -usr/lib/x86_64-linux-gnu/libbd_crypto.so.2.0.0 31929 -usr/lib/python3.7/ipaddress.py 31928 -bin/uname 31924 -usr/lib/x86_64-linux-gnu/libnss3.so 31923 -bin/echo 31922 -usr/lib/python3/dist-packages/psutil/__init__.py 31921 -usr/lib/policykit-1/polkitd 31918 -lib/x86_64-linux-gnu/libnl-3.so.200.26.0 31917 -lib/x86_64-linux-gnu/libnl-genl-3.so.200.26.0 31916 -usr/lib/x86_64-linux-gnu/libnl-route-3.so.200.26.0 31915 -usr/lib/x86_64-linux-gnu/libpolkit-backend-1.so.0.0.0 31913 -usr/lib/x86_64-linux-gnu/polkit-1/extensions/libnullbackend.so 31911 -usr/lib/x86_64-linux-gnu/libpcsclite.so.1.0.0 31910 -etc/polkit-1/nullbackend.conf.d/50-nullbackend.conf 31909 -usr/lib/python3.7/__future__.py 31908 -usr/lib/python3.7/contextlib.py 31907 -etc/gdm3/daemon.conf 31906 -usr/lib/x86_64-linux-gnu/libmbim-glib.so.4.4.0 31904 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-altair-lte.so 31879 -usr/lib/python3/dist-packages/psutil/_common.py 31878 -usr/lib/python3/dist-packages/psutil/_compat.py 31874 -usr/lib/python3.7/lib-dynload/_bz2.cpython-37m-x86_64-linux-gnu.so 31867 -usr/lib/python3.7/lib-dynload/_lzma.cpython-37m-x86_64-linux-gnu.so 31864 -usr/lib/python3/dist-packages/psutil/_pslinux.py 31863 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-anydata.so 31862 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-cinterion.so 31861 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-dell.so 31860 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-ericsson-mbm.so 31859 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-fibocom.so 31858 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-generic.so 31857 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-haier.so 31856 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-huawei.so 31855 -usr/lib/x86_64-linux-gnu/libnssutil3.so 31852 -lib/systemd/systemd-user-sessions 31851 -bin/kill 31849 -bin/mkdir 31848 -usr/lib/python3.7/base64.py 31847 -bin/plymouth 31845 +etc/crontab 32068 +usr/lib/x86_64-linux-gnu/libnss3.so 32067 +usr/lib/x86_64-linux-gnu/gio/modules/libgvfsdbus.so 32055 +usr/lib/python3.7/argparse.py 32054 +usr/lib/x86_64-linux-gnu/gvfs/libgvfscommon.so 32053 +etc/memlockd.cfg 32050 +usr/bin/ldd 32049 +lib/x86_64-linux-gnu/libnl-3.so.200.26.0 32048 +lib/x86_64-linux-gnu/libnl-genl-3.so.200.26.0 32047 +usr/lib/x86_64-linux-gnu/libnl-route-3.so.200.26.0 32046 +bin/dd 32044 +etc/shells 32030 +usr/lib/x86_64-linux-gnu/libmm-glib.so.0.4.0 32029 +usr/lib/x86_64-linux-gnu/libpcsclite.so.1.0.0 32028 +bin/echo 32027 +usr/bin/flock 32025 +usr/lib/python3.7/gettext.py 32019 +usr/lib/x86_64-linux-gnu/libqmi-glib.so.5.4.0 32015 +usr/lib/python3.7/ipaddress.py 32014 +var/log/wtmp 32013 +lib/systemd/system/polkit.service 32012 +usr/lib/python3/dist-packages/psutil/__init__.py 32011 +usr/lib/policykit-1/polkitd 32008 +usr/lib/x86_64-linux-gnu/libpolkit-backend-1.so.0.0.0 32007 +usr/lib/x86_64-linux-gnu/polkit-1/extensions/libnullbackend.so 32006 +usr/lib/python3.7/__future__.py 32005 +usr/lib/python3.7/contextlib.py 32004 +etc/polkit-1/nullbackend.conf.d/50-nullbackend.conf 31991 +usr/bin/logger 31988 +etc/gdm3/daemon.conf 31987 +usr/bin/basename 31985 +usr/lib/python3/dist-packages/psutil/_common.py 31984 +usr/lib/x86_64-linux-gnu/libnssutil3.so 31981 +usr/lib/x86_64-linux-gnu/libsmime3.so 31980 +usr/share/laptop-mode-tools/modules/ac97-powersave 31979 +usr/lib/x86_64-linux-gnu/libmbim-glib.so.4.4.0 31978 +usr/lib/python3/dist-packages/psutil/_compat.py 31977 +usr/lib/python3.7/lib-dynload/_bz2.cpython-37m-x86_64-linux-gnu.so 31973 +usr/lib/x86_64-linux-gnu/libssl3.so 31971 +usr/lib/python3.7/lib-dynload/_lzma.cpython-37m-x86_64-linux-gnu.so 31970 +usr/lib/python3/dist-packages/psutil/_pslinux.py 31969 +bin/kill 31967 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-altair-lte.so 31966 +usr/share/laptop-mode-tools/modules/battery-level-polling 31965 +lib/x86_64-linux-gnu/libprocps.so.7.1.0 31964 +usr/lib/python3.7/base64.py 31963 +bin/loginctl 31961 +usr/lib/python3/dist-packages/psutil/_psposix.py 31959 +usr/lib/python3/dist-packages/psutil/_psutil_linux.cpython-37m-x86_64-linux-gnu.so 31958 +lib/systemd/systemd-user-sessions 31957 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-anydata.so 31956 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-cinterion.so 31955 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-dell.so 31954 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-ericsson-mbm.so 31953 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-fibocom.so 31952 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-generic.so 31951 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-haier.so 31950 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-huawei.so 31949 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-iridium.so 31948 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-linktop.so 31947 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-longcheer.so 31946 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-motorola.so 31945 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-mtk.so 31944 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-nokia-icera.so 31943 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-nokia.so 31942 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-novatel-lte.so 31941 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-novatel.so 31940 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-option-hso.so 31939 +usr/share/laptop-mode-tools/modules/bluetooth 31938 +usr/lib/python3/dist-packages/psutil/_psutil_posix.cpython-37m-x86_64-linux-gnu.so 31937 +usr/lib/python3.7/socketserver.py 31936 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-option.so 31935 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-pantech.so 31934 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-quectel.so 31933 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-samsung.so 31932 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-sierra-legacy.so 31931 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-sierra.so 31930 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-simtech.so 31929 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-telit.so 31928 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-thuraya.so 31927 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-ublox.so 31926 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-via.so 31925 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-wavecom.so 31924 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-x22x.so 31923 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-zte.so 31922 +usr/lib/x86_64-linux-gnu/libplds4.so 31921 +usr/share/laptop-mode-tools/modules/configuration-file-control 31869 +usr/lib/python3/dist-packages/stem/__init__.py 31858 +bin/plymouth 31846 +lib/x86_64-linux-gnu/libply.so.4.0.0 31845 usr/share/gdm/generate-config 31842 -lib/x86_64-linux-gnu/libply.so.4.0.0 31840 -usr/bin/dconf 31839 -usr/lib/x86_64-linux-gnu/libsmime3.so 31837 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-iridium.so 31834 -lib/x86_64-linux-gnu/libprocps.so.7.1.0 31832 -usr/share/laptop-mode-tools/modules/ac97-powersave 31831 -usr/lib/python3/dist-packages/psutil/_psposix.py 31830 -usr/lib/python3/dist-packages/psutil/_psutil_linux.cpython-37m-x86_64-linux-gnu.so 31829 -usr/lib/python3/dist-packages/psutil/_psutil_posix.cpython-37m-x86_64-linux-gnu.so 31828 -usr/lib/x86_64-linux-gnu/libssl3.so 31827 -usr/lib/x86_64-linux-gnu/libplds4.so 31826 -usr/lib/x86_64-linux-gnu/libdconf.so.1.0.0 31825 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-linktop.so 31824 -bin/loginctl 31821 -etc/gdm3/greeter.dconf-defaults 31820 -usr/lib/python3.7/socketserver.py 31819 -usr/share/gdm/dconf/50-tails 31818 -usr/share/gdm/dconf/00-upstream-settings 31817 -usr/share/gdm/dconf/locks/00-upstream-settings-locks 31816 -usr/lib/x86_64-linux-gnu/libplc4.so 31814 -usr/bin/pgrep 31813 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-longcheer.so 31812 -usr/share/laptop-mode-tools/modules/battery-level-polling 31811 -usr/lib/python3/dist-packages/stem/__init__.py 31810 -usr/lib/python3/dist-packages/stem/util/__init__.py 31809 -usr/lib/x86_64-linux-gnu/libnspr4.so 31808 -usr/lib/x86_64-linux-gnu/libvolume_key.so.1.2.3 31807 -usr/lib/x86_64-linux-gnu/libgpgme.so.11.21.0 31806 -bin/chgrp 31804 -usr/lib/python3/dist-packages/stem/prereq.py 31803 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-motorola.so 31802 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-mtk.so 31801 -usr/lib/python3.7/inspect.py 31800 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-nokia-icera.so 31799 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-nokia.so 31798 -usr/lib/x86_64-linux-gnu/libbd_part.so.2.0.0 31797 -usr/sbin/gdm3 31794 -usr/lib/x86_64-linux-gnu/libaccountsservice.so.0.0.0 31793 -usr/lib/python3.7/dis.py 31792 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-novatel-lte.so 31791 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-novatel.so 31790 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-option-hso.so 31789 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-option.so 31788 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-pantech.so 31787 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-quectel.so 31786 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-samsung.so 31785 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-sierra-legacy.so 31784 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-sierra.so 31783 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-simtech.so 31782 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-telit.so 31781 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-thuraya.so 31780 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-ublox.so 31779 -usr/lib/python3.7/opcode.py 31778 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-via.so 31777 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-wavecom.so 31776 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-x22x.so 31775 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-zte.so 31774 -usr/share/gdm/gdm.schemas 31715 -usr/lib/x86_64-linux-gnu/libbd_part_err.so.2.0.0 31701 -lib/x86_64-linux-gnu/libparted.so.2.0.1 31700 -lib/x86_64-linux-gnu/libparted-fs-resize.so.0.0.1 31699 -usr/share/laptop-mode-tools/modules/bluetooth 31697 -usr/lib/python3.7/lib-dynload/_opcode.cpython-37m-x86_64-linux-gnu.so 31678 -usr/lib/python3.7/importlib/__init__.py 31677 -usr/lib/python3.7/importlib/machinery.py 31676 -usr/sbin/dmidecode 31675 -usr/lib/x86_64-linux-gnu/libbd_fs.so.2.0.0 31674 -etc/udisks2/udisks2.conf 31673 -usr/lib/python3.7/platform.py 31660 -usr/lib/gdm3/gdm-session-worker 31639 -usr/share/laptop-mode-tools/modules/configuration-file-control 31631 -usr/lib/python3/dist-packages/stem/util/enum.py 31630 -usr/lib/python3/dist-packages/stem/util/str_tools.py 31629 -usr/share/laptop-mode-tools/modules/cpufreq 31628 -etc/pam.d/gdm-launch-environment 31627 -lib/x86_64-linux-gnu/security/pam_nologin.so 31626 -lib/x86_64-linux-gnu/security/pam_keyinit.so 31625 -lib/x86_64-linux-gnu/security/pam_limits.so 31624 -lib/x86_64-linux-gnu/security/pam_env.so 31623 -usr/lib/python3/dist-packages/stem/util/connection.py 31622 -usr/lib/python3.7/lib-dynload/_hashlib.cpython-37m-x86_64-linux-gnu.so 31619 -usr/share/polkit-1/actions/com.hp.hplip.policy 31618 -usr/share/polkit-1/actions/com.ubuntu.pkexec.synaptic.policy 31617 -usr/share/polkit-1/actions/org.boum.tails.additional-software.policy 31616 -usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy 31615 -usr/share/polkit-1/actions/org.boum.tails.tor-launcher.policy 31614 -usr/share/polkit-1/actions/org.dpkg.pkexec.update-alternatives.policy 31613 -usr/share/polkit-1/actions/org.freedesktop.ModemManager1.policy 31612 -usr/share/polkit-1/actions/org.freedesktop.NetworkManager.policy 31611 -usr/share/polkit-1/actions/org.freedesktop.UDisks2.policy 31610 -sbin/dumpe2fs 31609 -usr/lib/python3.7/hmac.py 31608 -lib/x86_64-linux-gnu/libext2fs.so.2.4 31607 -usr/lib/python3/dist-packages/stem/util/proc.py 31606 -usr/lib/python3/dist-packages/stem/util/log.py 31605 -usr/share/polkit-1/actions/org.freedesktop.accounts.policy 31598 -usr/share/polkit-1/actions/org.freedesktop.bolt.policy 31597 -usr/share/polkit-1/actions/org.freedesktop.color.policy 31596 -usr/share/polkit-1/actions/org.freedesktop.hostname1.policy 31595 -usr/share/polkit-1/actions/org.freedesktop.locale1.policy 31594 -usr/share/polkit-1/actions/org.freedesktop.login1.policy 31593 -usr/share/polkit-1/actions/org.freedesktop.policykit.policy 31592 -usr/share/polkit-1/actions/org.freedesktop.resolve1.policy 31591 -usr/lib/python3/dist-packages/stem/util/system.py 31590 -usr/share/polkit-1/actions/org.freedesktop.systemd1.policy 31589 -usr/share/polkit-1/actions/org.freedesktop.timedate1.policy 31588 -usr/share/polkit-1/actions/org.gnome.controlcenter.datetime.policy 31587 -usr/share/polkit-1/actions/org.gnome.controlcenter.remote-login-helper.policy 31586 -usr/share/polkit-1/actions/org.gnome.controlcenter.user-accounts.policy 31585 -usr/share/polkit-1/actions/org.gnome.gnome-system-monitor.policy 31584 -usr/share/polkit-1/actions/org.gnome.settings-daemon.plugins.power.policy 31583 -usr/share/polkit-1/actions/org.gnome.settings-daemon.plugins.wacom.policy 31582 -usr/share/polkit-1/actions/org.gtk.vfs.file-operations.policy 31581 -usr/share/polkit-1/actions/org.linux.lmt.gui.policy 31580 -usr/share/polkit-1/actions/org.opensuse.cupspkhelper.mechanism.policy 31579 -usr/share/laptop-mode-tools/modules/cpuhotplug 31578 -usr/share/polkit-1/actions/org.x.xf86-video-intel.backlight-helper.policy 31577 -etc/security/limits.conf 31574 -etc/security/pam_env.conf 31573 -etc/environment 31572 -lib/systemd/system/user@.service 31568 -lib/systemd/system/user-.slice.d/10-defaults.conf 31567 -lib/systemd/system/user-runtime-dir@.service 31566 -usr/lib/python3.7/lib-dynload/_ctypes.cpython-37m-x86_64-linux-gnu.so 31565 -lib/x86_64-linux-gnu/libcom_err.so.2.1 31560 -lib/x86_64-linux-gnu/libe2p.so.2.3 31559 -usr/lib/python3.7/mimetypes.py 31552 -usr/lib/python3.7/urllib/__init__.py 31550 -usr/lib/python3.7/urllib/parse.py 31549 -usr/share/laptop-mode-tools/modules/dpms-standby 31547 -lib/systemd/systemd-user-runtime-dir 31545 -usr/lib/python3.7/multiprocessing/__init__.py 31544 -usr/lib/python3.7/multiprocessing/context.py 31543 -usr/lib/python3.7/multiprocessing/process.py 31527 -usr/lib/python3.7/multiprocessing/reduction.py 31522 -usr/lib/python3.7/pickle.py 31521 -usr/share/laptop-mode-tools/modules/eee-superhe 31520 -etc/pam.d/systemd-user 31518 -lib/x86_64-linux-gnu/security/pam_selinux.so 31517 -lib/x86_64-linux-gnu/security/pam_loginuid.so 31516 -lib/systemd/systemd 31515 -usr/lib/python3.7/_compat_pickle.py 31514 -usr/lib/python3.7/tarfile.py 31513 -usr/share/laptop-mode-tools/modules/ethernet 31512 -etc/systemd/user.conf 31511 -usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator 31509 -usr/share/laptop-mode-tools/modules/exec-commands 31508 -etc/environment.d/90atk-adaptor.conf 31507 -etc/environment.d/90qt-a11y.conf 31506 -usr/lib/python3.7/copy.py 31505 -usr/lib/systemd/user-environment-generators/90gpg-agent 31504 -usr/lib/python3/dist-packages/stem/util/conf.py 31503 -usr/share/laptop-mode-tools/modules/hal-polling 31502 -usr/lib/python3/dist-packages/stem/control.py 31501 -usr/bin/gpgconf 31500 -usr/share/laptop-mode-tools/modules/hdparm 31499 -usr/lib/python3.7/calendar.py 31496 -usr/lib/systemd/user/default.target 31495 -usr/lib/systemd/user/shutdown.target 31494 -usr/lib/systemd/user/basic.target 31493 -usr/lib/systemd/user/tails-create-tor-browser-directories.service 31492 -usr/lib/systemd/user/paths.target 31491 -usr/lib/systemd/user/timers.target 31490 -usr/lib/systemd/user/sockets.target 31489 -usr/lib/systemd/user/pulseaudio.socket 31488 -usr/lib/systemd/user/pulseaudio.service 31487 -usr/lib/systemd/user/gpg-agent.socket 31486 -usr/lib/systemd/user/gpg-agent.service 31485 -usr/lib/systemd/user/gpg-agent-ssh.socket 31484 -usr/lib/systemd/user/gpg-agent-extra.socket 31483 -usr/lib/systemd/user/gpg-agent-browser.socket 31482 -usr/lib/systemd/user/dirmngr.socket 31481 -usr/lib/systemd/user/dirmngr.service 31480 -usr/lib/systemd/user/dbus.socket 31479 -usr/lib/systemd/user/dbus.service 31478 -bin/udevadm 31476 -usr/share/laptop-mode-tools/modules/intel-hda-powersave 31475 -usr/bin/dirmngr 31474 -etc/udev/udev.conf 31473 -usr/bin/pulseaudio 31472 -usr/lib/python3.7/queue.py 31471 -usr/lib/python3.7/lib-dynload/_queue.cpython-37m-x86_64-linux-gnu.so 31469 -usr/lib/python3/dist-packages/stem/descriptor/__init__.py 31468 -bin/sleep 31467 -usr/lib/gdm3/gdm-x-session.tails 31461 -usr/share/laptop-mode-tools/modules/intel-sata-powermgmt 31458 -usr/lib/python3/dist-packages/stem/descriptor/server_descriptor.py 31457 -usr/lib/gdm3/gdm-x-session.real 31456 -usr/lib/python3/dist-packages/stem/descriptor/certificate.py 31455 -usr/lib/python3/dist-packages/stem/descriptor/extrainfo_descriptor.py 31454 -bin/egrep 31453 -usr/bin/Xorg 31452 -usr/lib/xorg/Xorg.wrap 31451 -etc/X11/Xwrapper.config 31450 -usr/lib/xorg/Xorg 31449 -usr/lib/python3/dist-packages/stem/exit_policy.py 31448 -usr/share/laptop-mode-tools/modules/intel_pstate 31447 -usr/lib/python3/dist-packages/stem/util/tor_tools.py 31446 -usr/lib/python3/dist-packages/stem/version.py 31445 -usr/lib/python3/dist-packages/stem/descriptor/router_status_entry.py 31444 -usr/lib/python3/dist-packages/stem/descriptor/networkstatus.py 31443 -usr/share/laptop-mode-tools/modules/kbd-backlight 31442 -lib/systemd/system-shutdown/tails 31441 -usr/lib/python3/dist-packages/stem/descriptor/microdescriptor.py 31440 -usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1 31439 -usr/lib/python3/dist-packages/stem/descriptor/tordnsel.py 31438 -lib/systemd/systemd-shutdown 31437 -usr/lib/python3/dist-packages/stem/descriptor/hidden_service_descriptor.py 31436 -usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1 31435 -usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0 31434 -usr/lib/x86_64-linux-gnu/libpixman-1.so.0.36.0 31433 -usr/lib/python3/dist-packages/stem/descriptor/reader.py 31432 -usr/lib/python3/dist-packages/stem/response/__init__.py 31431 -usr/share/laptop-mode-tools/modules/laptop-mode 31430 -sbin/blockdev 31429 -usr/lib/python3/dist-packages/stem/socket.py 31428 -usr/lib/python3.7/ssl.py 31427 -usr/lib/python3.7/lib-dynload/_ssl.cpython-37m-x86_64-linux-gnu.so 31426 -usr/share/laptop-mode-tools/modules/lcd-brightness 31425 -usr/lib/python3/dist-packages/stem/response/events.py 31424 -usr/lib/python3/dist-packages/stem/connection.py 31423 -usr/bin/eject 31422 -usr/lib/x86_64-linux-gnu/libXfont2.so.2.0.0 31421 -usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0 31420 -usr/lib/x86_64-linux-gnu/libfontenc.so.1.0.0 31419 -usr/lib/x86_64-linux-gnu/libfreetype.so.6.16.1 31418 -usr/lib/x86_64-linux-gnu/libpng16.so.16.36.0 31417 -usr/share/laptop-mode-tools/modules/nmi-watchdog 31416 -usr/share/laptop-mode-tools/modules/pcie-aspm 31415 -usr/share/laptop-mode-tools/modules/radeon-dpm 31414 -usr/share/laptop-mode-tools/modules/runtime-pm 31413 -usr/lib/python3.7/getpass.py 31412 -usr/lib/python3.7/lib-dynload/termios.cpython-37m-x86_64-linux-gnu.so 31411 -usr/lib/python3.7/textwrap.py 31410 -usr/lib/xorg/protocol.txt 31409 -usr/lib/python3/dist-packages/yaml/__init__.py 31408 -usr/share/X11/xorg.conf.d/10-amdgpu.conf 31407 -usr/share/X11/xorg.conf.d/10-quirks.conf 31406 -usr/share/X11/xorg.conf.d/10-radeon.conf 31405 -usr/share/X11/xorg.conf.d/40-libinput.conf 31404 -usr/share/X11/xorg.conf.d/90-tails.conf 31403 -usr/share/laptop-mode-tools/modules/sched-mc-power-savings 31402 -usr/lib/python3/dist-packages/yaml/error.py 31401 -usr/lib/python3/dist-packages/yaml/tokens.py 31399 -usr/lib/python3/dist-packages/yaml/events.py 31398 -usr/lib/python3/dist-packages/yaml/nodes.py 31397 -usr/lib/python3/dist-packages/yaml/loader.py 31396 -usr/lib/python3/dist-packages/yaml/reader.py 31395 -bin/cpio 31393 -usr/lib/xorg/modules/extensions/libglx.so 31392 -usr/lib/x86_64-linux-gnu/libGL.so.1.7.0 31391 -usr/local/sbin/udev-watchdog 31390 -usr/share/laptop-mode-tools/modules/sched-smt-power-savings 31389 -usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0 31388 -usr/lib/x86_64-linux-gnu/libGLdispatch.so.0.0.0 31387 -usr/lib/python3/dist-packages/yaml/scanner.py 31386 -usr/lib/python3/dist-packages/yaml/parser.py 31385 -usr/lib/python3/dist-packages/yaml/composer.py 31384 -usr/lib/python3/dist-packages/yaml/constructor.py 31383 -usr/lib/python3/dist-packages/yaml/resolver.py 31382 -usr/lib/python3/dist-packages/yaml/dumper.py 31381 -usr/lib/python3/dist-packages/yaml/emitter.py 31380 -usr/lib/xorg/modules/drivers/modesetting_drv.so 31379 -usr/lib/python3/dist-packages/yaml/serializer.py 31378 -usr/lib/python3/dist-packages/yaml/representer.py 31377 -usr/share/laptop-mode-tools/modules/start-stop-programs 31376 -usr/lib/python3/dist-packages/yaml/cyaml.py 31375 -usr/lib/python3/dist-packages/_yaml.cpython-37m-x86_64-linux-gnu.so 31374 -usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5 31373 -usr/lib/xorg/modules/drivers/fbdev_drv.so 31372 -usr/lib/xorg/modules/drivers/vesa_drv.so 31371 -usr/lib/xorg/modules/libfbdevhw.so 31369 -usr/lib/xorg/modules/libglamoregl.so 31368 -usr/lib/x86_64-linux-gnu/libgbm.so.1.0.0 31367 -usr/lib/x86_64-linux-gnu/libepoxy.so.0.0.0 31366 -usr/lib/x86_64-linux-gnu/libwayland-server.so.0.1.0 31365 -usr/share/drirc.d/00-mesa-defaults.conf 31364 -usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0 31363 -usr/lib/x86_64-linux-gnu/dri/i965_dri.so 31362 -usr/share/laptop-mode-tools/modules/syslog-conf 31361 -usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0 31360 -usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1 31359 -usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0 31358 -usr/share/laptop-mode-tools/modules/terminal-blanking 31357 -usr/share/laptop-mode-tools/modules/vgaswitcheroo 31356 -usr/share/laptop-mode-tools/modules/video-out 31355 -usr/share/laptop-mode-tools/modules/wireless-ipw-power 31354 -usr/share/laptop-mode-tools/modules/wireless-iwl-power 31353 -usr/share/glvnd/egl_vendor.d/50_mesa.json 31352 -usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0 31351 -usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0 31350 -usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0.0.0 31349 -usr/lib/x86_64-linux-gnu/libwayland-client.so.0.3.0 31348 -usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0 31347 -usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0 31346 -usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0 31345 -usr/share/laptop-mode-tools/modules/wireless-power 31344 -sbin/iw 31343 -usr/lib/xorg/modules/libfb.so 31341 -usr/share/fonts/X11/Type1/fonts.dir 31340 -usr/share/X11/xkb/rules/evdev 31339 -usr/bin/xkbcomp 31338 -usr/lib/x86_64-linux-gnu/libxkbfile.so.1.0.2 31337 -usr/share/X11/xkb/keycodes/evdev 31336 -usr/share/X11/xkb/keycodes/aliases 31335 -usr/share/X11/xkb/geometry/pc 31334 -usr/share/X11/xkb/types/complete 31333 -usr/share/X11/xkb/types/basic 31332 -usr/share/X11/xkb/types/mousekeys 31331 -usr/share/X11/xkb/types/pc 31330 -usr/share/X11/xkb/types/iso9995 31329 -usr/share/X11/xkb/types/level5 31328 -usr/share/X11/xkb/types/extra 31327 -usr/share/X11/xkb/types/numpad 31326 -usr/share/X11/xkb/compat/complete 31325 -usr/share/X11/xkb/compat/basic 31324 -usr/share/X11/xkb/compat/ledcaps 31323 -usr/share/X11/xkb/compat/lednum 31322 -usr/share/X11/xkb/compat/iso9995 31321 -usr/share/X11/xkb/compat/mousekeys 31320 -usr/share/X11/xkb/compat/accessx 31319 -usr/share/X11/xkb/compat/misc 31318 -usr/share/X11/xkb/compat/ledscroll 31317 -usr/share/X11/xkb/compat/xfree86 31316 -usr/share/X11/xkb/compat/level5 31315 -usr/share/X11/xkb/compat/caps 31314 -usr/share/X11/xkb/symbols/pc 31313 -usr/share/X11/xkb/symbols/srvr_ctrl 31312 -usr/share/X11/xkb/symbols/keypad 31311 -usr/share/X11/xkb/symbols/altwin 31310 -usr/share/X11/xkb/symbols/us 31309 -usr/share/X11/xkb/symbols/inet 31308 -usr/lib/xorg/modules/input/libinput_drv.so 31284 -usr/lib/x86_64-linux-gnu/libinput.so.10.13.0 31283 -usr/lib/x86_64-linux-gnu/libmtdev.so.1.0.0 31282 -usr/lib/x86_64-linux-gnu/libevdev.so.2.2.0 31281 -usr/share/libinput/10-generic-keyboard.quirks 31279 -usr/share/libinput/10-generic-lid.quirks 31278 -usr/share/libinput/10-generic-trackball.quirks 31277 -usr/share/libinput/30-vendor-aiptek.quirks 31276 -usr/share/libinput/30-vendor-alps.quirks 31275 -usr/share/libinput/30-vendor-contour.quirks 31274 -usr/share/libinput/30-vendor-cyapa.quirks 31273 -usr/share/libinput/30-vendor-elantech.quirks 31272 -usr/share/libinput/30-vendor-huion.quirks 31271 -usr/share/libinput/30-vendor-ibm.quirks 31270 -usr/share/libinput/30-vendor-kensington.quirks 31269 -usr/share/libinput/30-vendor-logitech.quirks 31268 -usr/share/libinput/30-vendor-microsoft.quirks 31267 -usr/share/libinput/30-vendor-razer.quirks 31266 -usr/share/libinput/30-vendor-synaptics.quirks 31265 -usr/share/libinput/30-vendor-vmware.quirks 31264 -usr/share/libinput/30-vendor-wacom.quirks 31263 -usr/share/libinput/50-system-acer.quirks 31262 -usr/share/libinput/50-system-apple.quirks 31261 -usr/share/libinput/50-system-asus.quirks 31260 -usr/share/libinput/50-system-chicony.quirks 31259 -usr/share/libinput/50-system-cyborg.quirks 31258 -usr/share/libinput/50-system-dell.quirks 31257 -usr/share/libinput/50-system-google.quirks 31256 -usr/share/libinput/50-system-hp.quirks 31255 -usr/share/libinput/50-system-lenovo.quirks 31254 -usr/share/libinput/50-system-system76.quirks 31253 -usr/share/dbus-1/session.conf 31237 -etc/dbus-1/session.d/im.pidgin.purple.PurpleService.conf 31236 -usr/share/dbus-1/services/ca.desrt.dconf.service 31235 -usr/share/dbus-1/services/org.a11y.Bus.service 31234 -usr/share/dbus-1/services/org.fedoraproject.Config.Printing.service 31233 -usr/share/dbus-1/services/org.freedesktop.ColorHelper.service 31232 -usr/share/dbus-1/services/org.freedesktop.FileManager1.service 31231 -usr/share/dbus-1/services/org.freedesktop.IBus.service 31230 -usr/share/dbus-1/services/org.freedesktop.Tracker1.service 31229 -usr/share/dbus-1/services/org.freedesktop.impl.portal.PermissionStore.service 31228 -usr/share/dbus-1/services/org.freedesktop.portal.Desktop.service 31227 -usr/share/dbus-1/services/org.freedesktop.portal.Documents.service 31226 -usr/share/dbus-1/services/org.freedesktop.portal.IBus.service 31225 -usr/share/dbus-1/services/org.freedesktop.secrets.service 31224 -usr/share/dbus-1/services/org.gnome.Calculator.SearchProvider.service 31223 -usr/share/dbus-1/services/org.gnome.ControlCenter.SearchProvider.service 31222 -usr/share/dbus-1/services/org.gnome.ControlCenter.service 31221 -usr/share/dbus-1/services/org.gnome.DiskUtility.service 31220 -usr/share/dbus-1/services/org.gnome.FileRoller.ArchiveManager1.service 31219 -usr/share/dbus-1/services/org.gnome.FileRoller.service 31218 -usr/share/dbus-1/services/org.gnome.Nautilus.service 31217 -usr/share/dbus-1/services/org.gnome.Screenshot.service 31216 -usr/share/dbus-1/services/org.gnome.Shell.CalendarServer.service 31215 -usr/share/dbus-1/services/org.gnome.Shell.HotplugSniffer.service 31214 -usr/share/dbus-1/services/org.gnome.Shell.PortalHelper.service 31213 -usr/share/dbus-1/services/org.gnome.SoundJuicer.service 31212 -usr/share/dbus-1/services/org.gnome.Terminal.service 31211 -usr/share/dbus-1/services/org.gnome.Totem.service 31210 -usr/share/dbus-1/services/org.gnome.evince.Daemon.service 31209 -usr/share/dbus-1/services/org.gnome.evolution.dataserver.AddressBook.service 31208 -usr/share/dbus-1/services/org.gnome.evolution.dataserver.Calendar.service 31207 -usr/share/dbus-1/services/org.gnome.evolution.dataserver.Sources.service 31206 -usr/share/dbus-1/services/org.gnome.evolution.dataserver.UserPrompter.service 31205 -usr/share/dbus-1/services/org.gnome.gedit.service 31204 -usr/share/dbus-1/services/org.gnome.keyring.PrivatePrompter.service 31203 -usr/share/dbus-1/services/org.gnome.keyring.SystemPrompter.service 31202 -usr/share/dbus-1/services/org.gnome.keyring.service 31201 -usr/share/dbus-1/services/org.gnome.seahorse.Application.service 31200 -usr/share/dbus-1/services/org.gnome.seahorse.service 31199 -usr/share/dbus-1/services/org.gtk.GLib.PACRunner.service 31198 -usr/share/dbus-1/services/org.gtk.vfs.AfcVolumeMonitor.service 31197 -usr/share/dbus-1/services/org.gtk.vfs.Daemon.service 31196 -usr/share/dbus-1/services/org.gtk.vfs.GPhoto2VolumeMonitor.service 31195 -usr/share/dbus-1/services/org.gtk.vfs.GoaVolumeMonitor.service 31194 -usr/share/dbus-1/services/org.gtk.vfs.MTPVolumeMonitor.service 31193 -usr/share/dbus-1/services/org.gtk.vfs.Metadata.service 31192 -usr/share/dbus-1/services/org.gtk.vfs.UDisks2VolumeMonitor.service 31191 -usr/bin/gnome-session 31189 -usr/bin/gsettings 31188 -usr/share/glib-2.0/schemas/gschemas.compiled 31187 -usr/lib/x86_64-linux-gnu/gio/modules/libdconfsettings.so 31186 -usr/share/dconf/profile/gdm 31185 -usr/lib/gnome-session/gnome-session-binary 31183 -usr/lib/x86_64-linux-gnu/libgnome-desktop-3.so.17.0.3 31182 -usr/lib/x86_64-linux-gnu/libjson-glib-1.0.so.0.400.4 31181 -usr/lib/x86_64-linux-gnu/libgtk-3.so.0.2404.1 31180 -usr/lib/x86_64-linux-gnu/libgdk-3.so.0.2404.1 31179 -usr/lib/x86_64-linux-gnu/libcairo.so.2.11600.0 31178 -usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.3800.1 31177 -usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0.4200.3 31176 -usr/lib/x86_64-linux-gnu/libXcomposite.so.1.0.0 31175 -usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0 31174 -usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0 31173 -usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2.11600.0 31172 -usr/lib/x86_64-linux-gnu/libatk-1.0.so.0.23009.1 31171 -usr/lib/x86_64-linux-gnu/libatk-bridge-2.0.so.0.0.0 31170 -usr/lib/x86_64-linux-gnu/libxkbcommon.so.0.0.0 31169 -usr/lib/x86_64-linux-gnu/libwayland-cursor.so.0.0.0 31168 -usr/lib/x86_64-linux-gnu/libwayland-egl.so.1.0.0 31167 -usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.20301.0 31166 -usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0.4200.3 31165 -usr/lib/x86_64-linux-gnu/libpango-1.0.so.0.4200.3 31164 -usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0 31163 -usr/lib/x86_64-linux-gnu/libXinerama.so.1.0.0 31162 -usr/lib/x86_64-linux-gnu/libXrandr.so.2.2.0 31161 -usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2 31160 -usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0 31159 -usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0 31158 -usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0 31157 -usr/lib/x86_64-linux-gnu/libatspi.so.0.0.1 31156 -usr/lib/x86_64-linux-gnu/libgraphite2.so.3.2.1 31155 -usr/lib/x86_64-linux-gnu/libthai.so.0.3.1 31154 -usr/lib/x86_64-linux-gnu/libfribidi.so.0.4.0 31153 -usr/lib/x86_64-linux-gnu/libdatrie.so.1.3.5 31152 -usr/lib/gnome-session/gnome-session-check-accelerated 31150 -usr/share/locale/en/LC_MESSAGES/gtk30.mo 31149 -usr/share/locale/en/LC_MESSAGES/gtk30-properties.mo 31148 -usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 31147 -usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0 31146 -usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0 31145 -usr/lib/systemd/user/at-spi-dbus-bus.service 31144 -usr/lib/at-spi2-core/at-spi-bus-launcher 31142 -etc/dconf/profile/user 31141 -bin/gzip 31139 -usr/bin/xz 31138 -usr/share/defaults/at-spi2/accessibility.conf 31137 -usr/share/dbus-1/accessibility-services/org.a11y.atspi.Registry.service 31136 -usr/lib/gnome-session/gnome-session-check-accelerated-gl-helper 31135 -usr/lib/at-spi2-core/at-spi2-registryd 31134 -usr/share/gnome-session/hardware-compatibility 31133 -usr/share/gnome-session/sessions/gdm-tails.session 31130 -usr/share/gdm/greeter/applications/gdm-shell-tails.desktop 31129 -usr/share/applications/tails-greeter.desktop 31128 -etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop 31127 -etc/xdg/autostart/org.gnome.SettingsDaemon.Clipboard.desktop 31126 -etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop 31125 -etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop 31124 -etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop 31123 -etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop 31122 -etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop 31121 -etc/xdg/autostart/org.gnome.SettingsDaemon.Mouse.desktop 31120 -etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop 31119 -etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop 31118 -etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop 31117 -etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop 31116 -etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop 31115 -etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop 31114 -etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop 31113 -etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop 31112 -etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop 31111 -usr/share/gdm/greeter/autostart/orca-autostart.desktop 31110 -etc/xdg/autostart/spice-vdagent.desktop 31109 -usr/lib/x86_64-linux-gnu/glib-2.0/gio-launch-desktop 31106 -usr/bin/gnome-shell 31105 -usr/lib/gnome-shell/libgnome-shell.so 31104 -usr/lib/libgjs.so.0.0.0 31103 -usr/lib/x86_64-linux-gnu/mutter/libmutter-clutter-3.so 31102 -usr/lib/x86_64-linux-gnu/mutter/libmutter-cogl-pango-3.so 31101 -usr/lib/x86_64-linux-gnu/libmutter-3.so.0.0.0 31100 -usr/lib/gnome-shell/libgnome-shell-menu.so 31099 -usr/lib/gnome-shell/libst-1.0.so 31098 -usr/lib/x86_64-linux-gnu/mutter/libmutter-cogl-3.so 31097 -usr/lib/x86_64-linux-gnu/libstartup-notification-1.so.0.0.0 31096 -usr/lib/x86_64-linux-gnu/libcanberra.so.0.2.5 31095 -usr/lib/x86_64-linux-gnu/libcanberra-gtk3.so.0.1.9 31094 -usr/lib/x86_64-linux-gnu/libpolkit-agent-1.so.0.0.0 31093 -usr/lib/x86_64-linux-gnu/libgcr-base-3.so.1.0.0 31092 -usr/lib/x86_64-linux-gnu/libnm.so.0.1.0 31091 -usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0 31090 -usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0.1404.0 31089 -usr/lib/x86_64-linux-gnu/libgstbase-1.0.so.0.1404.0 31088 -usr/lib/x86_64-linux-gnu/libmozjs-60.so.0.0.0 31087 -usr/lib/x86_64-linux-gnu/mutter/libmutter-cogl-path-3.so 31086 -usr/lib/x86_64-linux-gnu/libEGL.so.1.1.0 31085 -usr/lib/x86_64-linux-gnu/libxkbcommon-x11.so.0.0.0 31084 -usr/lib/x86_64-linux-gnu/libxcb-randr.so.0.1.0 31083 -usr/lib/x86_64-linux-gnu/libxcb-res.so.0.0.0 31082 -usr/lib/x86_64-linux-gnu/libpipewire-0.2.so.1.205.0 31081 -usr/lib/x86_64-linux-gnu/libcroco-0.6.so.3.0.1 31080 -usr/lib/x86_64-linux-gnu/libxcb-util.so.0.0.0 31079 -usr/lib/x86_64-linux-gnu/libvorbisfile.so.3.3.7 31078 -usr/lib/x86_64-linux-gnu/libtdb.so.1.3.16 31077 -usr/lib/x86_64-linux-gnu/libltdl.so.7.3.1 31076 -usr/lib/x86_64-linux-gnu/libgck-1.so.0.0.0 31075 -usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0 31074 -usr/lib/x86_64-linux-gnu/libgnutls.so.30.23.2 31073 -usr/lib/x86_64-linux-gnu/libicui18n.so.63.1 31072 -usr/lib/x86_64-linux-gnu/libicuuc.so.63.1 31071 -usr/lib/x86_64-linux-gnu/libicudata.so.63.1 31070 -usr/lib/x86_64-linux-gnu/libxcb-xkb.so.1.0.0 31069 -usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4 31068 -usr/lib/x86_64-linux-gnu/libidn2.so.0.3.4 31067 -usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0 31066 -usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5 31065 -usr/lib/x86_64-linux-gnu/libnettle.so.6.5 31064 -usr/lib/x86_64-linux-gnu/libhogweed.so.4.5 31063 -usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2 31062 -usr/share/libwacom/xp-pen-star03.tablet 31061 -usr/share/libwacom/serial-wacf004.tablet 31060 -usr/share/libwacom/one-by-wacom-s-p.tablet 31059 -usr/share/libwacom/one-by-wacom-s-p2.tablet 31058 -usr/share/libwacom/one-by-wacom-m-p.tablet 31057 -usr/share/libwacom/one-by-wacom-m-p2.tablet 31056 -usr/share/libwacom/n-trig-pen.tablet 31055 -usr/share/libwacom/mobilestudio-pro-16.tablet 31054 -usr/share/libwacom/mobilestudio-pro-13.tablet 31053 -usr/share/libwacom/isdv4-ef.tablet 31052 -usr/share/libwacom/isdv4-ed.tablet 31051 -usr/share/libwacom/isdv4-ec.tablet 31050 -usr/share/libwacom/isdv4-e6.tablet 31049 -usr/share/libwacom/isdv4-e5.tablet 31048 -usr/share/libwacom/isdv4-e3.tablet 31047 -usr/share/libwacom/isdv4-e2.tablet 31046 -usr/share/libwacom/isdv4-93.tablet 31045 -usr/share/libwacom/isdv4-90.tablet 31044 -usr/share/libwacom/isdv4-516b.tablet 31043 -usr/share/libwacom/isdv4-5150.tablet 31042 -usr/share/libwacom/isdv4-5146.tablet 31041 -usr/share/libwacom/isdv4-5122.tablet 31040 -usr/share/libwacom/isdv4-5110.tablet 31039 -usr/share/libwacom/isdv4-50fd.tablet 31038 -usr/share/libwacom/isdv4-50f8.tablet 31037 -usr/share/libwacom/isdv4-50f1.tablet 31036 -usr/share/libwacom/isdv4-50b8.tablet 31035 -usr/share/libwacom/isdv4-50b6.tablet 31034 -usr/share/libwacom/isdv4-50b4.tablet 31033 -usr/share/libwacom/isdv4-509d.tablet 31032 -usr/share/libwacom/isdv4-5099.tablet 31031 -usr/share/libwacom/isdv4-5090.tablet 31030 -usr/share/libwacom/isdv4-504a.tablet 31029 -usr/share/libwacom/isdv4-5048.tablet 31028 -usr/share/libwacom/isdv4-5044.tablet 31027 -usr/share/libwacom/isdv4-5040.tablet 31026 -usr/share/libwacom/isdv4-503f.tablet 31025 -usr/share/libwacom/isdv4-503e.tablet 31024 -usr/share/libwacom/isdv4-502a.tablet 31023 -usr/share/libwacom/isdv4-5014.tablet 31022 -usr/share/libwacom/isdv4-5013.tablet 31021 -usr/share/libwacom/isdv4-5010.tablet 31020 -usr/share/libwacom/isdv4-5002.tablet 31019 -usr/share/libwacom/isdv4-5000.tablet 31018 -usr/share/libwacom/isdv4-486a.tablet 31017 -usr/share/libwacom/isdv4-485e.tablet 31016 -usr/share/libwacom/isdv4-484c.tablet 31015 -usr/share/libwacom/isdv4-4831.tablet 31014 -usr/share/libwacom/isdv4-4824.tablet 31013 -usr/share/libwacom/isdv4-4822.tablet 31012 -usr/share/libwacom/isdv4-481a.tablet 31011 -usr/share/libwacom/isdv4-4814.tablet 31010 -usr/share/libwacom/isdv4-4809.tablet 31009 -usr/share/libwacom/isdv4-4807.tablet 31008 -usr/share/libwacom/isdv4-4800.tablet 31007 -usr/share/libwacom/isdv4-4004.tablet 31006 -usr/share/libwacom/isdv4-12c.tablet 31005 -usr/share/libwacom/isdv4-124.tablet 31004 -usr/share/libwacom/isdv4-117.tablet 31003 -usr/share/libwacom/isdv4-116.tablet 31002 -usr/share/libwacom/isdv4-114.tablet 31001 -usr/share/libwacom/isdv4-10f.tablet 31000 -usr/share/libwacom/isdv4-10e.tablet 30999 -usr/share/libwacom/isdv4-10d.tablet 30998 -usr/share/libwacom/isdv4-104.tablet 30997 -usr/share/libwacom/isdv4-101.tablet 30996 -usr/share/libwacom/isdv4-100.tablet 30995 -usr/share/libwacom/intuos-s-pt.tablet 30994 -usr/share/libwacom/intuos-s-p.tablet 30993 -usr/share/libwacom/intuos-s-pt2.tablet 30992 -usr/share/libwacom/intuos-s-p3-wl.tablet 30991 -usr/share/libwacom/intuos-s-p3.tablet 30990 -usr/share/libwacom/intuos-s-p2.tablet 30989 -usr/share/libwacom/intuos-pro-s.tablet 30988 -usr/share/libwacom/intuos-pro-m.tablet 30987 -usr/share/libwacom/intuos-pro-l.tablet 30986 -usr/share/libwacom/intuos-pro-2-m-wl.tablet 30985 -usr/share/libwacom/intuos-pro-2-m.tablet 30984 -usr/share/libwacom/intuos-pro-2-l-wl.tablet 30983 -usr/share/libwacom/intuos-pro-2-l.tablet 30982 -usr/share/libwacom/intuos-m-pt.tablet 30981 -usr/share/libwacom/intuos-m-p.tablet 30980 -usr/share/libwacom/intuos-m-pt2.tablet 30979 -usr/share/libwacom/intuos-m-p3-wl.tablet 30978 -usr/share/libwacom/intuos-m-p3.tablet 30977 -usr/share/libwacom/intuos-m-p2.tablet 30976 -usr/share/libwacom/intuos-9x12.tablet 30975 -usr/share/libwacom/intuos-6x8.tablet 30974 -usr/share/libwacom/intuos5-touch-s.tablet 30973 -usr/share/libwacom/intuos5-touch-m.tablet 30972 -usr/share/libwacom/intuos5-touch-l.tablet 30971 -usr/share/libwacom/intuos5-s.tablet 30970 -usr/share/libwacom/intuos5-m.tablet 30969 -usr/share/libwacom/intuos-4x5.tablet 30968 -usr/share/libwacom/intuos4-8x13.tablet 30967 -usr/share/libwacom/intuos4-6x9-wl.tablet 30966 -usr/share/libwacom/intuos4-6x9.tablet 30965 -usr/share/libwacom/intuos4-4x6.tablet 30964 -usr/share/libwacom/intuos4-12x19.tablet 30963 -usr/share/libwacom/intuos3-9x12.tablet 30962 -usr/share/libwacom/intuos3-6x8.tablet 30961 -usr/share/libwacom/intuos3-6x11.tablet 30960 -usr/share/libwacom/intuos3-4x6.tablet 30959 -usr/share/libwacom/intuos3-4x5.tablet 30958 -usr/share/libwacom/intuos3-12x19.tablet 30957 -usr/share/libwacom/intuos3-12x12.tablet 30956 -usr/share/libwacom/intuos2-9x12.tablet 30955 -usr/share/libwacom/intuos2-6x8.tablet 30954 -usr/share/libwacom/intuos2-4x5.tablet 30953 -usr/share/libwacom/intuos2-12x18.tablet 30952 -usr/share/libwacom/intuos2-12x12.tablet 30951 -usr/share/libwacom/intuos-12x18.tablet 30950 -usr/share/libwacom/intuos-12x12.tablet 30949 -usr/share/libwacom/huion-h610-pro.tablet 30948 -usr/share/libwacom/graphire-wireless-8x6.tablet 30947 -usr/share/libwacom/graphire-usb.tablet 30946 -usr/share/libwacom/graphire4-6x8.tablet 30945 -usr/share/libwacom/graphire4-4x5.tablet 30944 -usr/share/libwacom/graphire3-6x8.tablet 30943 -usr/share/libwacom/graphire3-4x5.tablet 30942 -usr/share/libwacom/graphire2-5x7.tablet 30941 -usr/share/libwacom/graphire2-4x5.tablet 30940 -usr/share/libwacom/generic.tablet 30939 -usr/share/libwacom/elan-2537.tablet 30938 -usr/share/libwacom/elan-24db.tablet 30937 -usr/share/libwacom/elan-22e2.tablet 30936 -usr/share/libwacom/ek-remote.tablet 30935 -usr/share/libwacom/dtu-2231.tablet 30934 -usr/share/libwacom/dtu-1931.tablet 30933 -usr/share/libwacom/dtu-1631.tablet 30932 -usr/share/libwacom/dtu-1141.tablet 30931 -usr/share/libwacom/dtu-1141b.tablet 30930 -usr/share/libwacom/dtu-1031x.tablet 30929 -usr/share/libwacom/dtu-1031.tablet 30928 -usr/share/libwacom/dtk-2451.tablet 30927 -usr/share/libwacom/dtk-2241.tablet 30926 -usr/share/libwacom/dtk-1651.tablet 30925 -usr/share/libwacom/dti-520.tablet 30924 -usr/share/libwacom/dth-2452.tablet 30923 -usr/share/libwacom/dth-2242.tablet 30922 -usr/share/libwacom/dth-1152.tablet 30921 -usr/share/libwacom/dtf-720.tablet 30920 -usr/share/libwacom/dell-canvas-27.tablet 30919 -usr/share/libwacom/cintiq-pro-32.tablet 30918 -usr/share/libwacom/cintiq-pro-24-pt.tablet 30917 -usr/share/libwacom/cintiq-pro-24-p.tablet 30916 -usr/share/libwacom/cintiq-pro-16.tablet 30915 -usr/share/libwacom/cintiq-pro-13.tablet 30914 -usr/share/libwacom/cintiq-companion.tablet 30913 -usr/share/libwacom/cintiq-companion-hybrid.tablet 30912 -usr/share/libwacom/cintiq-companion-2.tablet 30911 -usr/share/libwacom/cintiq-27hdt.tablet 30910 -usr/share/libwacom/cintiq-27hd.tablet 30909 -usr/share/libwacom/cintiq-24hd-touch.tablet 30908 -usr/share/libwacom/cintiq-24hd.tablet 30907 -usr/share/libwacom/cintiq-22hdt.tablet 30906 -usr/share/libwacom/cintiq-22hd.tablet 30905 -usr/share/libwacom/cintiq-21ux.tablet 30904 -usr/share/libwacom/cintiq-21ux2.tablet 30903 -usr/share/libwacom/cintiq-20wsx.tablet 30902 -usr/share/libwacom/cintiq-13hdt.tablet 30901 -usr/share/libwacom/cintiq-13hd.tablet 30900 -usr/share/libwacom/cintiq-12wx.tablet 30899 -usr/share/libwacom/bamboo-pad-wireless.tablet 30898 -usr/share/libwacom/bamboo-pad.tablet 30897 -usr/share/libwacom/bamboo-one.tablet 30896 -usr/share/libwacom/bamboo-4fg-s-t.tablet 30895 -usr/share/libwacom/bamboo-4fg-s-pt.tablet 30894 -usr/share/libwacom/bamboo-4fg-se-s-pt.tablet 30893 -usr/share/libwacom/bamboo-4fg-se-m-pt.tablet 30892 -usr/share/libwacom/bamboo-4fg-fun-s.tablet 30891 -usr/share/libwacom/bamboo-4fg-fun-m.tablet 30890 -usr/share/libwacom/bamboo-2fg-s-t.tablet 30889 -usr/share/libwacom/bamboo-2fg-s-pt.tablet 30888 -usr/share/libwacom/bamboo-2fg-s-p.tablet 30887 -usr/share/libwacom/bamboo-2fg-m-p.tablet 30886 -usr/share/libwacom/bamboo-2fg-fun-s-pt.tablet 30885 -usr/share/libwacom/bamboo-2fg-fun-m-pt.tablet 30884 -usr/share/libwacom/bamboo-16fg-s-t.tablet 30883 -usr/share/libwacom/bamboo-16fg-s-pt.tablet 30882 -usr/share/libwacom/bamboo-16fg-s-p.tablet 30881 -usr/share/libwacom/bamboo-16fg-m-pt.tablet 30880 -usr/share/libwacom/bamboo-0fg-s-p.tablet 30879 -usr/share/libwacom/libwacom.stylus 30878 -usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders.cache 30877 -usr/lib/x86_64-linux-gnu/libcanberra-0.30/libcanberra-pulse.so 30876 -usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecore-12.2.so 30874 -usr/lib/x86_64-linux-gnu/liborc-0.4.so.0.28.0 30873 -usr/lib/x86_64-linux-gnu/libspeexdsp.so.1.5.0 30872 -usr/lib/x86_64-linux-gnu/libsoxr.so.0.1.1 30871 -usr/lib/x86_64-linux-gnu/libgomp.so.1.0.0 30870 -etc/pulse/daemon.conf 30869 -etc/pulse/default.pa 30868 -usr/lib/pulse-12.2/modules/module-device-restore.so 30867 -usr/lib/pulse-12.2/modules/libprotocol-native.so 30866 -usr/lib/pulse-12.2/modules/module-stream-restore.so 30865 -usr/lib/pulse-12.2/modules/module-card-restore.so 30864 -usr/lib/pulse-12.2/modules/module-augment-properties.so 30863 -usr/lib/pulse-12.2/modules/module-switch-on-port-available.so 30862 -usr/lib/pulse-12.2/modules/module-udev-detect.so 30861 -usr/lib/pulse-12.2/modules/module-alsa-card.so 30860 -usr/lib/pulse-12.2/modules/libalsa-util.so 30859 -usr/share/pulseaudio/alsa-mixer/profile-sets/default.conf 30858 -usr/share/alsa/cards/aliases.conf 30857 -usr/share/alsa/pcm/default.conf 30856 -usr/share/alsa/pcm/dmix.conf 30855 -usr/share/alsa/pcm/dsnoop.conf 30854 -usr/share/alsa/cards/HDA-Intel.conf 30853 -usr/share/alsa/pcm/front.conf 30852 -usr/share/alsa/pcm/surround21.conf 30851 -usr/share/alsa/pcm/surround40.conf 30850 -usr/share/alsa/pcm/surround41.conf 30849 -usr/share/alsa/pcm/surround50.conf 30848 -usr/share/alsa/pcm/surround51.conf 30847 -usr/share/alsa/pcm/surround71.conf 30846 -usr/share/alsa/pcm/iec958.conf 30845 -usr/share/alsa/pcm/hdmi.conf 30844 -usr/share/alsa/pcm/modem.conf 30843 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-front-mic.conf 30842 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-mic.conf.common 30841 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-rear-mic.conf 30840 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-internal-mic.conf 30839 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-dock-mic.conf 30838 -usr/share/pulseaudio/alsa-mixer/paths/analog-input.conf 30837 -usr/share/pulseaudio/alsa-mixer/paths/analog-input.conf.common 30836 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-mic.conf 30835 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-linein.conf 30834 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-aux.conf 30833 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-video.conf 30832 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-tvtuner.conf 30831 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-fm.conf 30830 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-mic-line.conf 30829 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-headphone-mic.conf 30828 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-headset-mic.conf 30827 -usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf 30826 -usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf.common 30825 -usr/share/pulseaudio/alsa-mixer/paths/analog-output-lineout.conf 30824 -usr/share/pulseaudio/alsa-mixer/paths/analog-output-speaker.conf 30823 -usr/share/pulseaudio/alsa-mixer/paths/analog-output-headphones.conf 30822 -usr/share/pulseaudio/alsa-mixer/paths/analog-output-headphones-2.conf 30821 -usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_pcm_a52.so 30820 -usr/lib/x86_64-linux-gnu/libavcodec.so.58.35.100 30819 -usr/lib/x86_64-linux-gnu/libavutil.so.56.22.100 30818 -usr/lib/x86_64-linux-gnu/libavresample.so.4.0.0 30817 -usr/lib/x86_64-linux-gnu/libswresample.so.3.3.100 30816 -usr/lib/x86_64-linux-gnu/libvpx.so.5.0.0 30815 -usr/lib/x86_64-linux-gnu/libwebpmux.so.3.0.1 30814 -usr/lib/x86_64-linux-gnu/libwebp.so.6.0.2 30813 -usr/lib/x86_64-linux-gnu/libcrystalhd.so.3.6 30812 -usr/lib/x86_64-linux-gnu/librsvg-2.so.2.44.10 30811 -usr/lib/x86_64-linux-gnu/libzvbi.so.0.13.2 30810 -usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7 30809 -usr/lib/x86_64-linux-gnu/libaom.so.0 30808 -usr/lib/x86_64-linux-gnu/libcodec2.so.0.8.1 30807 -usr/lib/x86_64-linux-gnu/libgsm.so.1.0.18 30806 -usr/lib/x86_64-linux-gnu/libmp3lame.so.0.0.0 30805 -usr/lib/x86_64-linux-gnu/libopenjp2.so.2.3.0 30804 -usr/lib/x86_64-linux-gnu/libopus.so.0.7.0 30803 -usr/lib/x86_64-linux-gnu/libshine.so.3.0.1 30802 -usr/lib/x86_64-linux-gnu/libspeex.so.1.5.0 30801 -usr/lib/x86_64-linux-gnu/libtheoraenc.so.1.1.2 30800 -usr/lib/x86_64-linux-gnu/libtheoradec.so.1.1.4 30799 -usr/lib/x86_64-linux-gnu/libtwolame.so.0.0.0 30798 -usr/lib/x86_64-linux-gnu/libwavpack.so.1.2.0 30797 -usr/lib/x86_64-linux-gnu/libx264.so.155 30796 -usr/lib/x86_64-linux-gnu/libx265.so.165 30795 -usr/lib/x86_64-linux-gnu/libxvidcore.so.4.3 30794 -usr/lib/x86_64-linux-gnu/libva.so.2.400.0 30793 -usr/lib/x86_64-linux-gnu/libva-drm.so.2.400.0 30792 -usr/lib/x86_64-linux-gnu/libva-x11.so.2.400.0 30791 -usr/lib/x86_64-linux-gnu/libvdpau.so.1.0.0 30790 -usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0 30789 -usr/share/pulseaudio/alsa-mixer/paths/hdmi-output-0.conf 30788 -usr/share/pulseaudio/alsa-mixer/paths/hdmi-output-1.conf 30787 -usr/share/pulseaudio/alsa-mixer/paths/hdmi-output-2.conf 30786 -usr/lib/pulse-12.2/modules/module-native-protocol-unix.so 30785 -usr/lib/pulse-12.2/modules/module-default-device-restore.so 30784 -usr/lib/pulse-12.2/modules/module-rescue-streams.so 30783 -usr/lib/pulse-12.2/modules/module-always-sink.so 30782 -usr/lib/pulse-12.2/modules/module-intended-roles.so 30781 -usr/lib/pulse-12.2/modules/module-suspend-on-idle.so 30780 -usr/lib/pulse-12.2/modules/module-console-kit.so 30779 -usr/lib/pulse-12.2/modules/module-systemd-login.so 30778 -usr/lib/pulse-12.2/modules/module-position-event-sounds.so 30777 -usr/lib/pulse-12.2/modules/module-role-cork.so 30776 -usr/lib/pulse-12.2/modules/module-filter-heuristics.so 30775 -usr/lib/pulse-12.2/modules/module-filter-apply.so 30774 -usr/share/icons/Adwaita/cursor.theme 30773 -usr/share/icons/Adwaita/cursors/left_ptr 30772 -usr/lib/x86_64-linux-gnu/mutter/Clutter-3.typelib 30771 -usr/lib/x86_64-linux-gnu/girepository-1.0/Clutter-1.0.typelib 30770 -usr/lib/x86_64-linux-gnu/girepository-1.0/cairo-1.0.typelib 30769 -usr/lib/x86_64-linux-gnu/girepository-1.0/Json-1.0.typelib 30768 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gio-2.0.typelib 30767 -usr/lib/x86_64-linux-gnu/girepository-1.0/GObject-2.0.typelib 30766 -usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib 30765 -usr/lib/x86_64-linux-gnu/girepository-1.0/GL-1.0.typelib 30764 -usr/lib/x86_64-linux-gnu/mutter/CoglPango-3.typelib 30763 -usr/lib/x86_64-linux-gnu/girepository-1.0/PangoCairo-1.0.typelib 30762 -usr/lib/x86_64-linux-gnu/girepository-1.0/Pango-1.0.typelib 30761 -usr/lib/x86_64-linux-gnu/mutter/Cogl-3.typelib 30760 -usr/lib/x86_64-linux-gnu/girepository-1.0/Atk-1.0.typelib 30759 -usr/lib/gjs/girepository-1.0/GjsPrivate-1.0.typelib 30758 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gtk-3.0.typelib 30757 -usr/lib/x86_64-linux-gnu/girepository-1.0/xlib-2.0.typelib 30756 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gdk-3.0.typelib 30755 -usr/lib/x86_64-linux-gnu/girepository-1.0/GdkPixbuf-2.0.typelib 30754 -usr/lib/x86_64-linux-gnu/girepository-1.0/GModule-2.0.typelib 30753 -usr/lib/gnome-shell/Shell-0.1.typelib 30752 -usr/lib/gnome-shell/St-1.0.typelib 30751 -usr/lib/x86_64-linux-gnu/mutter/Cally-3.typelib 30750 -usr/lib/gnome-shell/ShellMenu-0.1.typelib 30749 -usr/lib/x86_64-linux-gnu/girepository-1.0/PolkitAgent-1.0.typelib 30748 -usr/lib/x86_64-linux-gnu/girepository-1.0/Polkit-1.0.typelib 30747 -usr/lib/x86_64-linux-gnu/girepository-1.0/NM-1.0.typelib 30746 -usr/lib/x86_64-linux-gnu/mutter/Meta-3.typelib 30745 -usr/lib/x86_64-linux-gnu/girepository-1.0/xfixes-4.0.typelib 30744 -usr/lib/x86_64-linux-gnu/girepository-1.0/GDesktopEnums-3.0.typelib 30743 -usr/lib/gnome-shell/Gvc-1.0.typelib 30742 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gcr-3.typelib 30741 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gck-1.typelib 30740 -usr/lib/x86_64-linux-gnu/mutter/ClutterX11-3.typelib 30739 -usr/lib/x86_64-linux-gnu/girepository-1.0/GnomeDesktop-3.0.typelib 30738 -usr/share/gnome-shell/gnome-shell-dbus-interfaces.gresource 30737 -usr/lib/girepository-1.0/AccountsService-1.0.typelib 30736 -usr/lib/x86_64-linux-gnu/girepository-1.0/Soup-2.4.typelib 30735 -usr/lib/x86_64-linux-gnu/girepository-1.0/IBus-1.0.typelib 30734 -usr/lib/x86_64-linux-gnu/girepository-1.0/Atspi-2.0.typelib 30733 -usr/lib/x86_64-linux-gnu/girepository-1.0/DBus-1.0.typelib 30732 -usr/lib/x86_64-linux-gnu/girepository-1.0/Rsvg-2.0.typelib 30731 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gdm-1.0.typelib 30730 -usr/lib/x86_64-linux-gnu/girepository-1.0/GWeather-3.0.typelib 30729 -usr/lib/x86_64-linux-gnu/girepository-1.0/Geoclue-2.0.typelib 30728 -usr/lib/x86_64-linux-gnu/girepository-1.0/Cogl-1.0.typelib 30727 -usr/lib/x86_64-linux-gnu/girepository-1.0/Cogl-2.0.typelib 30726 -usr/share/gnome-shell/modes/classic.json 30725 -usr/share/gnome-shell/modes/gdm-tails.json 30724 -etc/xdg/gnome-mimeapps.list 30723 -usr/local/share/mime/mime.cache 30722 -usr/share/mime/mime.cache 30721 -usr/share/gdm/greeter/applications/mimeapps.list 30720 -usr/share/applications/gnome-mimeapps.list 30719 -usr/share/applications/mimeinfo.cache 30718 -usr/share/gdm/greeter/applications/mime-dummy-handler.desktop 30717 -usr/share/applications/gnome-bluetooth-panel.desktop 30716 -usr/share/applications/gnome-info-overview-panel.desktop 30715 -usr/share/applications/gnome-wifi-panel.desktop 30714 -usr/share/applications/libreoffice-xsltfilter.desktop 30713 -usr/share/applications/org.gnome.Screenshot.desktop 30712 -usr/share/applications/org.gnome.Evince.desktop 30711 -usr/share/applications/pidgin.desktop 30710 -usr/share/applications/seahorse-pgp-keys.desktop 30709 -usr/share/applications/org.gnome.Evolution-alarm-notify.desktop 30708 -usr/share/applications/simple-scan.desktop 30707 -usr/share/applications/org.gnome.Shell.desktop 30706 -usr/share/applications/python3.7.desktop 30705 -usr/share/applications/gnome-sound-panel.desktop 30704 -usr/share/applications/synaptic.desktop 30703 -usr/share/applications/tails-persistence-delete.desktop 30702 -usr/share/applications/gnome-disk-image-mounter.desktop 30701 -usr/share/applications/thunderbird.desktop 30700 -usr/share/applications/org.gnome.Totem.desktop 30699 -usr/share/applications/ibus-setup-chewing.desktop 30698 -usr/share/applications/ibus-setup-anthy.desktop 30697 -usr/share/applications/gcr-prompter.desktop 30696 -usr/share/applications/net.poedit.PoeditURI.desktop 30695 -usr/share/applications/gcr-viewer.desktop 30694 -usr/share/applications/gnome-wacom-panel.desktop 30693 -usr/share/applications/tails-about.desktop 30692 -usr/share/applications/org.gnome.PowerStats.desktop 30691 -usr/share/applications/python2.7.desktop 30690 -usr/share/applications/gnome-thunderbolt-panel.desktop 30689 -usr/share/applications/libreoffice-startcenter.desktop 30688 -usr/share/applications/tails-documentation.desktop 30687 -usr/share/applications/gnome-control-center.desktop 30686 -usr/share/applications/org.freedesktop.IBus.Panel.Extension.Gtk3.desktop 30685 -usr/share/applications/gnome-search-panel.desktop 30684 -usr/share/applications/org.gnome.FileRoller.desktop 30683 -usr/share/applications/tails-installer.desktop 30682 -usr/share/applications/vim.desktop 30681 -usr/share/applications/unlock-veracrypt-volumes.desktop 30680 -usr/share/applications/yelp.desktop 30679 -usr/share/applications/tor-browser.desktop 30678 -usr/share/applications/brasero.desktop 30677 -usr/share/applications/unsafe-browser.desktop 30676 -usr/share/applications/org.gnome.Terminal.desktop 30675 -usr/share/applications/org.gnome.SoundJuicer.desktop 30674 -usr/share/applications/org.gnome.Shell.PortalHelper.desktop 30673 -usr/share/applications/gnome-power-panel.desktop 30672 -usr/share/applications/audacity.desktop 30671 -usr/share/applications/org.gnome.gedit.desktop 30670 -usr/share/applications/ibus-setup-libpinyin.desktop 30669 -usr/share/applications/tails-persistence-setup.desktop 30668 -usr/share/applications/nm-applet.desktop 30667 -usr/share/applications/gnome-region-panel.desktop 30666 -usr/share/applications/ibus-setup.desktop 30665 -usr/share/applications/gnome-keyboard-panel.desktop 30664 -usr/share/applications/gnome-notifications-panel.desktop 30663 -usr/share/applications/gkbd-keyboard-display.desktop 30662 -usr/share/applications/seahorse.desktop 30661 -usr/share/applications/libreoffice-calc.desktop 30660 -usr/share/applications/brasero-nautilus.desktop 30659 -usr/share/applications/gnome-shell-extension-prefs.desktop 30658 -usr/share/applications/bookletimposer.desktop 30657 -usr/share/applications/libreoffice-impress.desktop 30656 -usr/share/applications/ibus-setup-hangul.desktop 30655 -usr/share/applications/gnome-datetime-panel.desktop 30654 -usr/share/applications/org.gnome.SoundRecorder.desktop 30653 -usr/share/applications/gnome-universal-access-panel.desktop 30652 -usr/share/applications/eog.desktop 30651 -usr/share/applications/electrum.desktop 30650 -usr/share/applications/onioncircuits.desktop 30649 -usr/share/applications/org.keepassxc.KeePassXC.desktop 30648 -usr/share/applications/gnome-color-panel.desktop 30647 -usr/share/applications/dasher.desktop 30646 -usr/share/applications/gnome-mouse-panel.desktop 30645 -usr/share/applications/gnome-system-monitor.desktop 30644 -usr/share/applications/libreoffice-writer.desktop 30643 -usr/share/applications/seahorse-pgp-encrypted.desktop 30642 -usr/share/applications/gnome-disk-image-writer.desktop 30641 -usr/share/applications/gnome-printers-panel.desktop 30640 -usr/share/applications/org.gnome.Calculator.desktop 30639 -usr/share/applications/gtkhash.desktop 30638 -usr/share/applications/ibus-setup-libbopomofo.desktop 30637 -usr/share/applications/gnome-default-apps-panel.desktop 30636 -usr/share/applications/seahorse-pgp-signature.desktop 30635 -usr/share/applications/gimp.desktop 30634 -usr/share/applications/whisperback.desktop 30633 -usr/share/applications/gnome-removable-media-panel.desktop 30632 -usr/share/applications/gnome-display-panel.desktop 30631 -usr/share/applications/gnome-sharing-panel.desktop 30630 -usr/share/applications/display-im6.q16.desktop 30629 -usr/share/applications/libreoffice-draw.desktop 30628 -usr/share/applications/org.boum.tails.additional-software-config.desktop 30627 -usr/share/applications/evolution-calendar.desktop 30626 -usr/share/applications/gnome-network-panel.desktop 30625 -usr/share/applications/gnome-privacy-panel.desktop 30624 -usr/share/applications/net.poedit.Poedit.desktop 30623 -usr/share/applications/gnome-background-panel.desktop 30622 -usr/share/applications/inkscape.desktop 30621 -usr/share/applications/nautilus-autorun-software.desktop 30620 -usr/share/applications/gnome-user-accounts-panel.desktop 30619 -usr/share/applications/gnome-system-monitor-kde.desktop 30618 -usr/share/applications/org.gnome.Nautilus.desktop 30617 -usr/share/applications/org.freedesktop.IBus.Panel.Emojier.desktop 30616 -usr/share/applications/org.gnome.DiskUtility.desktop 30615 -usr/share/applications/mutter.desktop 30614 -usr/share/applications/org.gnome.Evince-previewer.desktop 30613 -usr/share/applications/onionshare.desktop 30612 -usr/share/applications/root-terminal.desktop 30611 -usr/share/gnome-shell/gnome-shell-theme.gresource 30610 -usr/share/gnome-shell/gnome-shell-osk-layouts.gresource 30609 -usr/share/gnome-shell/theme/gnome-classic.css 30608 -usr/share/locale/en/LC_MESSAGES/gnome-desktop-3.0.mo 30607 -usr/share/tails/desktop_wallpaper.png 30606 -usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so 30605 -etc/fonts/fonts.conf 30604 -usr/share/fontconfig/conf.avail/10-hinting-slight.conf 30603 -usr/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf 30602 -usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf 30601 -etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans-mono.conf 30600 -etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans.conf 30599 -etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-serif.conf 30598 -etc/fonts/conf.avail/20-unhint-small-dejavu-sans-mono.conf 30597 -etc/fonts/conf.avail/20-unhint-small-dejavu-sans.conf 30596 -etc/fonts/conf.avail/20-unhint-small-dejavu-serif.conf 30595 -usr/share/fontconfig/conf.avail/20-unhint-small-vera.conf 30594 -usr/share/fontconfig/conf.avail/30-metric-aliases.conf 30593 -usr/share/fontconfig/conf.avail/30-opensymbol.conf 30592 -usr/share/fontconfig/conf.avail/40-nonlatin.conf 30591 -usr/share/fontconfig/conf.avail/45-generic.conf 30590 -usr/share/fontconfig/conf.avail/45-latin.conf 30589 -usr/share/fontconfig/conf.avail/49-sansserif.conf 30588 -usr/share/fontconfig/conf.avail/50-user.conf 30587 -usr/share/fontconfig/conf.avail/51-local.conf 30586 -etc/fonts/conf.avail/57-dejavu-sans-mono.conf 30585 -etc/fonts/conf.avail/57-dejavu-sans.conf 30584 -etc/fonts/conf.avail/57-dejavu-serif.conf 30583 -etc/fonts/conf.avail/58-dejavu-lgc-sans-mono.conf 30582 -etc/fonts/conf.avail/58-dejavu-lgc-sans.conf 30581 -etc/fonts/conf.avail/58-dejavu-lgc-serif.conf 30580 -usr/share/fontconfig/conf.avail/60-generic.conf 30579 -usr/share/fontconfig/conf.avail/60-latin.conf 30578 -etc/fonts/conf.avail/65-culmus.conf 30577 -usr/share/fontconfig/conf.avail/65-fonts-persian.conf 30576 -usr/share/fontconfig/conf.avail/65-nonlatin.conf 30575 -usr/share/fontconfig/conf.avail/69-unifont.conf 30574 -usr/share/fontconfig/conf.avail/70-fonts-noto-cjk.conf 30573 -usr/share/fontconfig/conf.avail/70-no-bitmaps.conf 30572 -usr/share/fontconfig/conf.avail/80-delicious.conf 30571 -usr/share/fontconfig/conf.avail/90-fonts-linux-libertine.conf 30570 -usr/share/fontconfig/conf.avail/90-synthetic.conf 30569 -usr/share/fontconfig/conf.avail/10-autohint.conf 30568 -usr/share/fontconfig/conf.avail/10-hinting-full.conf 30567 -usr/share/fontconfig/conf.avail/10-hinting-medium.conf 30566 -usr/share/fontconfig/conf.avail/10-hinting-none.conf 30565 -usr/share/fontconfig/conf.avail/10-no-sub-pixel.conf 30564 -usr/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf 30563 -usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf 30562 -usr/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf 30561 -usr/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf 30560 -usr/share/fontconfig/conf.avail/10-unhinted.conf 30559 -usr/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf 30558 -usr/share/fontconfig/conf.avail/11-lcdfilter-light.conf 30557 -usr/share/fontconfig/conf.avail/25-unhint-nonlatin.conf 30556 -usr/share/fontconfig/conf.avail/65-khmer.conf 30555 -usr/share/fontconfig/conf.avail/70-force-bitmaps.conf 30554 -usr/share/fontconfig/conf.avail/70-yes-bitmaps.conf 30553 -usr/share/fonts/.uuid 30552 -var/cache/fontconfig/ad3800a6-0853-5900-ac2b-6a45e906a034-le64.cache-7 30551 -usr/local/share/fonts/.uuid 30550 -var/cache/fontconfig/a19c77ef-2b6e-5d56-80fa-aa461c22a33c-le64.cache-7 30549 -usr/share/fonts/X11/.uuid 30548 -var/cache/fontconfig/635775a3-6681-5500-bfb3-fc75bae7ab71-le64.cache-7 30547 -usr/share/fonts/cMap/.uuid 30546 -var/cache/fontconfig/e0df4ba7-1e1e-53f4-99ac-034e136dea90-le64.cache-7 30545 -usr/share/fonts/cmap/.uuid 30544 -var/cache/fontconfig/8c262b76-19e2-5a0e-970a-3c6be641c3de-le64.cache-7 30543 -usr/share/fonts/opentype/.uuid 30542 -var/cache/fontconfig/c53c919e-4688-5813-a778-9497aaad292b-le64.cache-7 30541 -usr/share/fonts/truetype/.uuid 30540 -var/cache/fontconfig/ad91de03-2bc9-5cbd-baed-449447b4cef2-le64.cache-7 30539 -usr/share/fonts/X11/100dpi/.uuid 30538 -var/cache/fontconfig/c3eb68e6-f2df-5253-bdea-96baf8b64c94-le64.cache-7 30537 -usr/share/fonts/X11/75dpi/.uuid 30536 -var/cache/fontconfig/9b10e8b4-c6f7-5d9a-b62d-df9dfe9f040e-le64.cache-7 30535 -usr/share/fonts/X11/Type1/.uuid 30534 -var/cache/fontconfig/7037cf17-dab7-5805-ac14-89407957a70b-le64.cache-7 30533 -usr/share/fonts/X11/encodings/.uuid 30532 -var/cache/fontconfig/932c83c7-a3fe-5e2e-af19-99a73a1218b0-le64.cache-7 30531 -usr/share/fonts/X11/misc/.uuid 30530 -var/cache/fontconfig/0573c588-4384-5d77-a629-20cf4267681a-le64.cache-7 30529 -usr/share/fonts/X11/util/.uuid 30528 -var/cache/fontconfig/d6a528ca-d9d3-528a-bbf0-657522efbfb9-le64.cache-7 30527 -usr/share/poppler/cMap/Adobe-CNS1/.uuid 30526 -var/cache/fontconfig/fe110b8d-52e9-50d6-93d5-7350b6dc3ffc-le64.cache-7 30525 -usr/share/poppler/cMap/Adobe-GB1/.uuid 30524 -var/cache/fontconfig/cba3b8e3-c250-50f8-9d30-dd9cdff6726c-le64.cache-7 30523 -usr/share/poppler/cMap/Adobe-Japan1/.uuid 30522 -var/cache/fontconfig/209cd66f-9cd8-59b1-a557-ee9a5b16532d-le64.cache-7 30521 -usr/share/poppler/cMap/Adobe-Japan2/.uuid 30520 -var/cache/fontconfig/79b9b38c-66eb-5231-ac1a-75f0230ccdac-le64.cache-7 30519 -usr/share/poppler/cMap/Adobe-Korea1/.uuid 30518 -var/cache/fontconfig/977ff0f2-7245-568d-9f74-ec94f3fe3b0c-le64.cache-7 30517 -usr/share/fonts/opentype/cantarell/.uuid 30516 -var/cache/fontconfig/be6c95a9-9096-58da-8f8e-7737a63fdb01-le64.cache-7 30515 -usr/share/fonts/opentype/linux-libertine/.uuid 30514 -var/cache/fontconfig/a4e606c3-ee03-5a47-a10f-679845537ed9-le64.cache-7 30513 -usr/share/fonts/opentype/noto/.uuid 30512 -var/cache/fontconfig/7b04aff5-85ee-51c9-95e7-77727a319b86-le64.cache-7 30511 -usr/share/fonts/truetype/culmus/.uuid 30510 -var/cache/fontconfig/806bd331-c6ac-5da7-b38d-caee6037f4ad-le64.cache-7 30509 -usr/share/fonts/truetype/dejavu/.uuid 30508 -var/cache/fontconfig/8f19a5e0-002f-559a-908f-50a33ba095ed-le64.cache-7 30507 -usr/share/fonts/truetype/liberation/.uuid 30506 -var/cache/fontconfig/d9291cff-b790-56da-811c-af0e14399de4-le64.cache-7 30505 -usr/share/fonts/truetype/noto/.uuid 30504 -var/cache/fontconfig/891027b1-67fe-5175-bb2b-a5d071b33c64-le64.cache-7 30503 -usr/share/fonts/truetype/openoffice/.uuid 30502 -var/cache/fontconfig/b8caebf3-f9ac-5ac9-90ed-cc558bb5e64e-le64.cache-7 30501 -usr/share/fonts/truetype/quicksand/.uuid 30500 -var/cache/fontconfig/aa54cff1-1622-5d6d-b9ef-589d2941d6ad-le64.cache-7 30499 -usr/share/fonts/truetype/ttf-dejavu/.uuid 30498 -var/cache/fontconfig/d36ee6b2-cc19-5653-9dd7-39240bf3fae0-le64.cache-7 30497 -usr/share/fonts/truetype/unifont/.uuid 30496 -var/cache/fontconfig/8037c361-ee31-5e54-bc56-f9ba74a0ef52-le64.cache-7 30495 -usr/share/fonts/X11/encodings/large/.uuid 30494 -var/cache/fontconfig/e8b11c96-1f85-5c63-8bb8-ae0627615d20-le64.cache-7 30493 -usr/share/fonts/truetype/dejavu/DejaVuSans.ttf 30492 -usr/lib/x86_64-linux-gnu/girepository-1.0/Cally-1.0.typelib 30491 -usr/share/desktop-base/futureprototype-theme/lockscreen/gnome-background.xml 30490 -usr/lib/x86_64-linux-gnu/libibus-1.0.so.5.0.519 30489 -usr/share/X11/xkb/rules/evdev.xml 30488 -usr/share/xml/iso-codes/iso_639-2.xml 30487 -usr/share/xml/iso-codes/iso_639-3.xml 30486 -usr/share/xml/iso-codes/iso_3166-1.xml 30485 -usr/bin/ibus-daemon 30484 -usr/share/ibus/keymaps/us 30483 -usr/share/ibus/keymaps/common 30482 -usr/share/ibus/keymaps/modifiers 30481 -usr/share/ibus/component/anthy.xml 30480 -usr/lib/ibus/ibus-engine-anthy 30479 -usr/lib/x86_64-linux-gnu/libgweather-3.so.15.0.0 30478 -usr/lib/x86_64-linux-gnu/libsoup-2.4.so.1.8.0 30477 -usr/lib/systemd/user/xdg-permission-store.service 30476 -usr/lib/x86_64-linux-gnu/libgeocode-glib.so.0.0.0 30475 -usr/share/ibus-anthy/engine/main.py 30474 -usr/libexec/xdg-permission-store 30472 -usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2 30471 -usr/lib/x86_64-linux-gnu/libpsl.so.5.3.1 30470 -usr/lib/x86_64-linux-gnu/libkrb5.so.3.3 30469 -usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1 30468 -usr/lib/python3.7/getopt.py 30467 -usr/lib/python3.7/xml/__init__.py 30466 -usr/lib/python3.7/xml/dom/__init__.py 30465 -usr/lib/python3.7/xml/dom/domreg.py 30464 -usr/lib/python3.7/xml/dom/minidom.py 30463 -usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1 30462 -lib/x86_64-linux-gnu/libkeyutils.so.1.8 30461 -usr/share/libgweather/Locations.xml 30460 -usr/lib/python3.7/xml/dom/minicompat.py 30459 -usr/lib/python3.7/xml/dom/xmlbuilder.py 30458 -usr/lib/python3.7/xml/dom/NodeFilter.py 30457 -usr/share/zoneinfo/Etc/GMT+12 30456 -usr/share/zoneinfo/Africa/Algiers 30455 -usr/share/zoneinfo/Africa/Bangui 30454 -usr/share/zoneinfo/Africa/Blantyre 30453 -usr/share/zoneinfo/Africa/Abidjan 30452 -usr/share/zoneinfo/Atlantic/Cape_Verde 30451 -usr/share/zoneinfo/Africa/Ndjamena 30450 -usr/share/zoneinfo/Africa/Addis_Ababa 30449 -usr/share/zoneinfo/Egypt 30448 -usr/share/zoneinfo/Indian/Kerguelen 30447 -usr/share/zoneinfo/Africa/Accra 30446 -usr/share/zoneinfo/Africa/Bissau 30445 -usr/share/zoneinfo/Africa/Johannesburg 30444 -usr/share/zoneinfo/Africa/Monrovia 30443 -usr/share/zoneinfo/Libya 30442 -usr/share/zoneinfo/Indian/Mauritius 30441 -usr/share/zoneinfo/Africa/Casablanca 30440 -usr/share/zoneinfo/Africa/Windhoek 30439 -usr/share/zoneinfo/Indian/Reunion 30438 -usr/share/zoneinfo/Africa/Sao_Tome 30437 -usr/share/zoneinfo/Indian/Mahe 30436 -usr/share/zoneinfo/Africa/Khartoum 30435 -usr/share/zoneinfo/Africa/Tunis 30434 -usr/share/zoneinfo/Africa/El_Aaiun 30433 -usr/share/zoneinfo/Antarctica/Palmer 30432 -usr/share/zoneinfo/Antarctica/Rothera 30431 -usr/share/zoneinfo/Antarctica/Syowa 30430 -usr/share/zoneinfo/Antarctica/Mawson 30429 -usr/share/zoneinfo/Antarctica/Vostok 30428 -usr/share/zoneinfo/Antarctica/Davis 30427 -usr/share/zoneinfo/Antarctica/Casey 30426 -usr/share/zoneinfo/Antarctica/DumontDUrville 30425 -usr/share/zoneinfo/NZ 30424 -usr/share/zoneinfo/Asia/Kabul 30423 -usr/share/zoneinfo/Asia/Yerevan 30422 -usr/share/zoneinfo/Asia/Baku 30421 -usr/share/zoneinfo/Asia/Dacca 30420 -usr/share/zoneinfo/Asia/Thimbu 30419 -usr/share/zoneinfo/Asia/Brunei 30418 -usr/share/zoneinfo/Asia/Bangkok 30417 -usr/share/zoneinfo/PRC 30416 -usr/share/zoneinfo/Asia/Tbilisi 30415 -usr/share/zoneinfo/Hongkong 30414 -usr/share/zoneinfo/Asia/Calcutta 30413 -usr/lib/python3/dist-packages/gi/__init__.py 30412 -usr/lib/python3.7/pkgutil.py 30411 -usr/lib/python3.7/importlib/util.py 30410 -usr/lib/python3.7/importlib/abc.py 30409 -usr/share/zoneinfo/Japan 30408 -usr/share/zoneinfo/Asia/Almaty 30407 -usr/share/zoneinfo/Asia/Aqtobe 30406 -usr/share/zoneinfo/Asia/Bishkek 30405 -usr/share/zoneinfo/Asia/Macao 30404 -usr/share/zoneinfo/Asia/Kuala_Lumpur 30403 -usr/share/zoneinfo/Indian/Maldives 30402 -usr/share/zoneinfo/Asia/Choibalsan 30401 -usr/share/zoneinfo/Asia/Hovd 30400 -usr/share/zoneinfo/Asia/Ulaanbaatar 30399 -usr/share/zoneinfo/Asia/Rangoon 30398 -usr/share/zoneinfo/Asia/Kathmandu 30397 -usr/share/zoneinfo/Asia/Pyongyang 30396 -usr/share/zoneinfo/Asia/Karachi 30395 -usr/share/zoneinfo/Asia/Manila 30394 -usr/share/zoneinfo/Singapore 30393 -usr/share/zoneinfo/ROK 30392 -usr/share/zoneinfo/Asia/Colombo 30391 -usr/share/zoneinfo/ROC 30390 -usr/share/zoneinfo/Asia/Dushanbe 30389 -usr/share/zoneinfo/Asia/Ashgabat 30388 -usr/share/zoneinfo/Asia/Tashkent 30387 -usr/share/zoneinfo/Asia/Ho_Chi_Minh 30386 -usr/share/zoneinfo/America/Anguilla 30385 -usr/share/zoneinfo/America/Barbados 30384 -usr/share/zoneinfo/Atlantic/Bermuda 30383 -usr/share/zoneinfo/America/Danmarkshavn 30382 -usr/share/zoneinfo/America/Godthab 30381 -usr/share/zoneinfo/America/Scoresbysund 30380 -usr/share/zoneinfo/America/Thule 30379 -usr/share/zoneinfo/America/Puerto_Rico 30378 -usr/share/zoneinfo/Pacific/Midway 30377 -usr/share/zoneinfo/Australia/Perth 30376 -usr/share/zoneinfo/Australia/Eucla 30375 -usr/share/zoneinfo/Australia/Adelaide 30374 -usr/share/zoneinfo/Australia/Broken_Hill 30373 -usr/share/zoneinfo/Australia/Darwin 30372 -usr/share/zoneinfo/Australia/Hobart 30371 -usr/share/zoneinfo/Australia/Melbourne 30370 -usr/share/zoneinfo/Australia/ACT 30369 -usr/share/zoneinfo/Australia/Brisbane 30368 -usr/share/zoneinfo/Australia/LHI 30367 -usr/share/zoneinfo/Indian/Chagos 30366 -usr/share/zoneinfo/Indian/Christmas 30365 -usr/share/zoneinfo/Indian/Cocos 30364 -usr/share/zoneinfo/Pacific/Rarotonga 30363 -usr/share/zoneinfo/Pacific/Fiji 30362 -usr/share/zoneinfo/Pacific/Tahiti 30361 -usr/share/zoneinfo/Pacific/Marquesas 30360 -usr/share/zoneinfo/Pacific/Gambier 30359 -usr/share/zoneinfo/Pacific/Guam 30358 -usr/share/zoneinfo/Asia/Jakarta 30357 -usr/share/zoneinfo/Asia/Makassar 30356 -usr/share/zoneinfo/Asia/Jayapura 30355 -usr/share/zoneinfo/Pacific/Tarawa 30354 -usr/share/zoneinfo/Pacific/Enderbury 30353 -usr/share/zoneinfo/Pacific/Kiritimati 30352 -usr/share/zoneinfo/Pacific/Majuro 30351 -usr/share/zoneinfo/Pacific/Pohnpei 30350 -usr/share/zoneinfo/Pacific/Chuuk 30349 -usr/share/zoneinfo/Pacific/Nauru 30348 -usr/share/zoneinfo/Pacific/Noumea 30347 -usr/share/zoneinfo/NZ-CHAT 30346 -usr/share/zoneinfo/Pacific/Niue 30345 -usr/share/zoneinfo/Pacific/Norfolk 30344 -usr/share/zoneinfo/Pacific/Palau 30343 -usr/share/zoneinfo/Pacific/Port_Moresby 30342 -usr/share/zoneinfo/Pacific/Pitcairn 30341 -usr/share/zoneinfo/Pacific/Apia 30340 -usr/share/zoneinfo/Pacific/Guadalcanal 30339 -usr/share/zoneinfo/Asia/Dili 30338 -usr/share/zoneinfo/Pacific/Fakaofo 30337 -usr/share/zoneinfo/Pacific/Tongatapu 30336 -usr/share/zoneinfo/Pacific/Funafuti 30335 -usr/share/zoneinfo/Pacific/Honolulu 30334 -usr/share/zoneinfo/Pacific/Wake 30333 -usr/share/zoneinfo/Pacific/Efate 30332 -usr/share/zoneinfo/Pacific/Wallis 30331 -usr/share/zoneinfo/America/Buenos_Aires 30330 -usr/share/zoneinfo/America/Aruba 30329 -usr/share/zoneinfo/America/Nassau 30328 -usr/share/zoneinfo/America/Belize 30327 -usr/share/zoneinfo/America/La_Paz 30326 -usr/share/zoneinfo/America/Araguaina 30325 -usr/share/zoneinfo/America/Bahia 30324 -usr/share/zoneinfo/America/Belem 30323 -usr/share/zoneinfo/America/Boa_Vista 30322 -usr/share/zoneinfo/America/Campo_Grande 30321 -usr/share/zoneinfo/America/Cuiaba 30320 -usr/share/zoneinfo/America/Eirunepe 30319 -usr/share/zoneinfo/America/Fortaleza 30318 -usr/share/zoneinfo/America/Maceio 30317 -usr/share/zoneinfo/America/Manaus 30316 -usr/share/zoneinfo/America/Noronha 30315 -usr/share/zoneinfo/America/Porto_Velho 30314 -usr/share/zoneinfo/America/Recife 30313 -usr/share/zoneinfo/America/Porto_Acre 30312 -usr/share/zoneinfo/America/Sao_Paulo 30311 -usr/lib/python3/dist-packages/gi/_gi.cpython-37m-x86_64-linux-gnu.so 30310 -usr/share/zoneinfo/America/Cayman 30309 -usr/share/zoneinfo/America/Santiago 30308 -usr/share/zoneinfo/Chile/EasterIsland 30307 -usr/share/zoneinfo/America/Bogota 30306 -usr/share/zoneinfo/America/Costa_Rica 30305 -usr/share/zoneinfo/Cuba 30304 -usr/share/zoneinfo/America/Santo_Domingo 30303 -usr/share/zoneinfo/America/Guayaquil 30302 -usr/share/zoneinfo/Pacific/Galapagos 30301 -usr/share/zoneinfo/America/El_Salvador 30300 -usr/share/zoneinfo/Atlantic/Stanley 30299 -usr/share/zoneinfo/America/Cayenne 30298 -usr/share/zoneinfo/America/Guatemala 30297 -usr/share/zoneinfo/America/Guyana 30296 -usr/share/zoneinfo/America/Port-au-Prince 30295 -usr/share/zoneinfo/America/Tegucigalpa 30294 -usr/share/zoneinfo/Jamaica 30293 -usr/share/zoneinfo/America/Martinique 30292 -usr/share/zoneinfo/America/Managua 30291 -usr/lib/python3/dist-packages/gi/_error.py 30290 -usr/share/zoneinfo/America/Asuncion 30289 -usr/share/zoneinfo/America/Lima 30288 -usr/share/zoneinfo/Atlantic/South_Georgia 30287 -usr/share/zoneinfo/America/Paramaribo 30286 -usr/share/zoneinfo/America/Grand_Turk 30285 -usr/share/zoneinfo/America/Montevideo 30284 -usr/share/zoneinfo/America/Caracas 30283 -usr/share/zoneinfo/Europe/Tirane 30282 -usr/share/zoneinfo/Europe/Andorra 30281 -usr/share/zoneinfo/Europe/Vienna 30280 -usr/share/zoneinfo/Europe/Minsk 30279 -usr/share/zoneinfo/Europe/Brussels 30278 -usr/share/zoneinfo/Europe/Belgrade 30277 -usr/share/zoneinfo/Europe/Sofia 30276 -usr/share/zoneinfo/Asia/Nicosia 30275 -usr/share/zoneinfo/Europe/Bratislava 30274 -usr/share/zoneinfo/Europe/Copenhagen 30273 -usr/share/zoneinfo/Europe/Tallinn 30272 -usr/share/zoneinfo/Atlantic/Faeroe 30271 -usr/share/zoneinfo/Europe/Helsinki 30270 -usr/share/zoneinfo/Europe/Paris 30269 -usr/share/zoneinfo/Europe/Berlin 30268 -usr/share/zoneinfo/Europe/Gibraltar 30267 -usr/share/zoneinfo/Europe/Athens 30266 -usr/share/zoneinfo/GB 30265 -usr/share/zoneinfo/Europe/Budapest 30264 -usr/share/zoneinfo/Iceland 30263 -usr/share/zoneinfo/Eire 30262 -usr/share/zoneinfo/Europe/Rome 30261 -usr/share/zoneinfo/CET 30260 -usr/share/zoneinfo/Europe/Riga 30259 -usr/lib/python3/dist-packages/gi/_compat.py 30258 -usr/lib/python3/dist-packages/gi/_gi_cairo.cpython-37m-x86_64-linux-gnu.so 30257 -usr/lib/python3/dist-packages/cairo/__init__.py 30256 -usr/lib/python3/dist-packages/cairo/_cairo.cpython-37m-x86_64-linux-gnu.so 30255 -usr/lib/python3/dist-packages/gi/repository/__init__.py 30254 -usr/lib/python3/dist-packages/gi/importer.py 30253 -usr/lib/python3/dist-packages/gi/module.py 30252 -usr/lib/python3/dist-packages/gi/types.py 30251 -usr/lib/python3/dist-packages/gi/_constants.py 30250 -usr/lib/python3/dist-packages/gi/docstring.py 30249 -usr/lib/python3/dist-packages/gi/_propertyhelper.py 30248 -usr/lib/python3/dist-packages/gi/_signalhelper.py 30247 -usr/share/zoneinfo/Europe/Busingen 30246 -usr/share/zoneinfo/Europe/Vilnius 30245 -usr/share/zoneinfo/Europe/Luxembourg 30244 -usr/share/zoneinfo/Europe/Malta 30243 -usr/share/zoneinfo/Europe/Chisinau 30242 -usr/share/zoneinfo/Europe/Monaco 30241 -usr/share/zoneinfo/Europe/Amsterdam 30240 -usr/share/zoneinfo/Arctic/Longyearbyen 30239 -usr/share/zoneinfo/Poland 30238 -usr/share/zoneinfo/Atlantic/Azores 30237 -usr/share/zoneinfo/Atlantic/Madeira 30236 -usr/share/zoneinfo/Portugal 30235 -usr/share/zoneinfo/Europe/Bucharest 30234 -usr/share/zoneinfo/Europe/Kaliningrad 30233 -usr/share/zoneinfo/W-SU 30232 -usr/share/zoneinfo/Europe/Samara 30231 -usr/share/zoneinfo/Asia/Yekaterinburg 30230 -usr/share/zoneinfo/Asia/Omsk 30229 -usr/share/zoneinfo/Asia/Novosibirsk 30228 -usr/share/zoneinfo/Asia/Krasnoyarsk 30227 -usr/share/zoneinfo/Asia/Irkutsk 30226 -usr/share/zoneinfo/Asia/Yakutsk 30225 -usr/share/zoneinfo/Asia/Vladivostok 30224 -usr/share/zoneinfo/Asia/Magadan 30223 -usr/share/zoneinfo/Asia/Kamchatka 30222 -usr/lib/python3/dist-packages/gi/overrides/__init__.py 30221 -usr/share/zoneinfo/Atlantic/Canary 30220 -usr/share/zoneinfo/Europe/Madrid 30219 -usr/share/zoneinfo/Africa/Ceuta 30218 -usr/share/zoneinfo/Europe/Stockholm 30217 -usr/lib/python3/dist-packages/gi/overrides/GLib.py 30216 -usr/share/zoneinfo/Turkey 30215 -usr/share/zoneinfo/Europe/Kiev 30214 -usr/lib/python3/dist-packages/gi/_ossighelper.py 30213 -usr/share/zoneinfo/Asia/Bahrain 30212 -usr/share/zoneinfo/Iran 30211 -usr/share/zoneinfo/Asia/Baghdad 30210 -usr/share/zoneinfo/Israel 30209 -usr/share/zoneinfo/Asia/Amman 30208 -usr/share/zoneinfo/Asia/Aden 30207 -usr/share/zoneinfo/Asia/Beirut 30206 -usr/share/zoneinfo/Asia/Dubai 30205 -usr/share/zoneinfo/Asia/Gaza 30204 -usr/share/zoneinfo/Asia/Damascus 30203 -usr/share/zoneinfo/America/Vancouver 30202 -usr/share/zoneinfo/America/Edmonton 30201 -usr/share/zoneinfo/America/Dawson_Creek 30200 -usr/share/zoneinfo/America/Winnipeg 30199 -usr/share/zoneinfo/America/Regina 30198 -usr/share/zoneinfo/America/Montreal 30197 -usr/share/zoneinfo/America/Atikokan 30196 -usr/share/zoneinfo/America/Halifax 30195 -usr/share/zoneinfo/America/Blanc-Sablon 30194 -usr/share/zoneinfo/America/St_Johns 30193 -usr/lib/python3/dist-packages/gi/_option.py 30192 -usr/lib/python3.7/optparse.py 30191 -usr/share/zoneinfo/America/Ensenada 30190 -usr/share/zoneinfo/America/Mazatlan 30189 -usr/share/zoneinfo/America/Mexico_City 30188 -usr/share/zoneinfo/America/Miquelon 30187 -usr/share/zoneinfo/America/Adak 30186 -usr/share/zoneinfo/America/Anchorage 30185 -usr/share/zoneinfo/America/Los_Angeles 30184 -usr/share/zoneinfo/Navajo 30183 -usr/share/zoneinfo/America/Phoenix 30182 -usr/share/zoneinfo/America/Chicago 30181 -usr/share/zoneinfo/posixrules 30180 -usr/lib/python3/dist-packages/gi/overrides/GObject.py 30179 -usr/lib/python3/dist-packages/gi/overrides/Gio.py 30178 -usr/lib/python3/dist-packages/gi/overrides/IBus.py 30177 -usr/share/ibus-anthy/engine/_config.py 30176 -usr/share/ibus-anthy/engine/factory.py 30175 -usr/share/ibus-anthy/engine/engine.py 30174 -usr/lib/girepository-1.0/Anthy-9000.typelib 30173 -usr/share/ibus-anthy/engine/tables.py 30172 -usr/share/ibus-anthy/engine/jastring.py 30171 -usr/share/ibus-anthy/engine/romaji.py 30170 -usr/share/ibus-anthy/engine/segment.py 30169 -usr/share/ibus-anthy/engine/kana.py 30168 -usr/share/ibus-anthy/engine/thumb.py 30167 -usr/share/ibus-anthy/setup/anthyprefs.py 30166 -usr/share/ibus-anthy/setup/prefs.py 30165 -usr/share/ibus-anthy/engine/default.xml 30164 -usr/share/ibus/component/chewing.xml 30163 -usr/share/ibus/component/dconf.xml 30162 -usr/share/ibus/component/gtkextension.xml 30161 -usr/share/ibus/component/gtkpanel.xml 30160 -usr/share/ibus/component/hangul.xml 30159 -usr/share/ibus/component/libpinyin.xml 30158 -usr/share/ibus/component/simple.xml 30157 -usr/share/ibus/component/unikey.xml 30156 -usr/lib/ibus/ibus-engine-unikey 30155 -usr/lib/ibus/ibus-dconf 30154 -usr/lib/ibus/ibus-extension-gtk3 30153 -usr/lib/ibus/ibus-x11 30152 -usr/share/X11/xkb/rules/evdev.lst 30149 -usr/lib/ibus/ibus-portal 30148 -usr/lib/x86_64-linux-gnu/girepository-1.0/NMA-1.0.typelib 30147 -usr/lib/x86_64-linux-gnu/girepository-1.0/GnomeBluetooth-1.0.typelib 30146 -usr/lib/x86_64-linux-gnu/libgnome-bluetooth.so.13.0.1 30145 -usr/lib/x86_64-linux-gnu/libnotify.so.4.0.0 30144 -usr/lib/x86_64-linux-gnu/girepository-1.0/UPowerGlib-1.0.typelib 30143 -lib/systemd/system/upower.service 30142 -usr/share/ibus/dicts/emoji-en.dict 30140 -usr/lib/gnome-shell/libgvc.so 30139 -usr/lib/x86_64-linux-gnu/libpulse-mainloop-glib.so.0.0.5 30138 -usr/lib/upower/upowerd 30137 -usr/lib/x86_64-linux-gnu/libupower-glib.so.3.0.1 30136 -lib/x86_64-linux-gnu/libusb-1.0.so.0.1.0 30135 -usr/lib/x86_64-linux-gnu/libimobiledevice.so.6.0.0 30134 -usr/lib/x86_64-linux-gnu/libgdm.so.1.0.0 30133 -usr/share/xsessions/gnome-classic.desktop 30132 -etc/systemd/sleep.conf 30131 -lib/systemd/system/suspend.target 30130 -lib/systemd/system/systemd-suspend.service 30129 -lib/systemd/system/sleep.target 30128 -usr/share/xsessions/gnome.desktop 30127 -var/lib/polkit-1/localauthority/10-vendor.d/systemd-networkd.pkla 30126 -var/lib/polkit-1/localauthority/10-vendor.d/org.freedesktop.NetworkManager.pkla 30125 -var/lib/polkit-1/localauthority/10-vendor.d/gnome-control-center.pkla 30124 -etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.pkla 30123 -etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.cups.pkla 30122 -etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.accounts.pkla 30121 -usr/share/gdm/BuiltInSessions/default.desktop 30120 -usr/lib/x86_64-linux-gnu/libplist.so.3.1.0 30119 -usr/lib/x86_64-linux-gnu/libusbmuxd.so.4.1.0 30118 -etc/UPower/UPower.conf 30117 -usr/lib/x86_64-linux-gnu/gio/modules/libgiognutls.so 30116 -etc/ssl/certs/ca-certificates.crt 30115 -usr/lib/gnome-settings-daemon/gsd-wacom 30112 -usr/lib/gnome-settings-daemon-3.0/libgsd.so 30111 -usr/lib/x86_64-linux-gnu/gio/modules/libgiolibproxy.so 30110 -usr/lib/gnome-settings-daemon/gsd-xsettings 30107 -usr/lib/gnome-settings-daemon/gsd-a11y-settings 30104 -usr/lib/gnome-settings-daemon/gsd-clipboard 30101 -usr/lib/gnome-settings-daemon/gsd-color 30096 -usr/lib/x86_64-linux-gnu/libcolord.so.2.0.5 30095 -usr/lib/x86_64-linux-gnu/liblcms2.so.2.0.8 30094 -usr/lib/x86_64-linux-gnu/libgeoclue-2.so.0.0.0 30093 -usr/lib/gnome-settings-daemon/gsd-datetime 30092 -usr/lib/gnome-settings-daemon/gsd-housekeeping 30089 -usr/lib/x86_64-linux-gnu/libproxy.so.1.0.0 30086 -usr/lib/x86_64-linux-gnu/gio/modules/libgiognomeproxy.so 30085 -usr/lib/gnome-settings-daemon/gsd-keyboard 30084 -usr/lib/gnome-settings-daemon/gsd-media-keys 30081 -usr/lib/x86_64-linux-gnu/gio/modules/libgioremote-volume-monitor.so 30078 -usr/lib/gnome-settings-daemon/gsd-mouse 30077 -usr/lib/gnome-settings-daemon/gsd-power 30074 -usr/share/X11/locale/locale.alias 30073 -usr/share/X11/locale/locale.dir 30072 -usr/share/X11/locale/en_US.UTF-8/XLC_LOCALE 30071 -usr/lib/x86_64-linux-gnu/gconv/ISO8859-1.so 30070 -usr/lib/gnome-settings-daemon/gsd-print-notifications 30067 -usr/lib/x86_64-linux-gnu/libcups.so.2 30064 -usr/lib/gnome-settings-daemon/gsd-rfkill 30063 -usr/lib/gnome-settings-daemon/gsd-screensaver-proxy 30060 -usr/lib/gnome-settings-daemon/gsd-sharing 30057 -usr/lib/gnome-settings-daemon/gsd-smartcard 30054 -usr/lib/gnome-settings-daemon-3.0/gtk-modules/at-spi2-atk.desktop 30051 -usr/lib/gnome-settings-daemon/gsd-sound 30050 -lib/systemd/system/systemd-localed.service 30047 -usr/lib/dconf/dconf-service 30046 -usr/lib/x86_64-linux-gnu/nss/libsoftokn3.so 30045 -usr/lib/x86_64-linux-gnu/libavahi-common.so.3.5.3 30044 -usr/lib/x86_64-linux-gnu/libavahi-client.so.3.2.9 30043 -lib/systemd/system/colord.service 30041 -usr/lib/colord/colord 30039 -lib/systemd/system/systemd-hostnamed.service 30036 -usr/lib/x86_64-linux-gnu/nss/libfreeblpriv3.so 30035 -usr/bin/spice-vdagent 30032 -usr/lib/x86_64-linux-gnu/libcolordprivate.so.2.0.5 30031 -usr/lib/x86_64-linux-gnu/libgusb.so.2.0.10 30030 -usr/local/lib/tails-greeter 30022 -usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_camera.so 30021 -usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_sane.so 30020 -usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_scanner.so 30019 -usr/share/tails/greeter/set-cursor.py 30018 -lib/systemd/systemd-localed 30017 -usr/share/color/icc/colord/BestRGB.icc 30016 -usr/share/color/icc/colord/BetaRGB.icc 30015 -etc/default/keyboard 30014 -usr/share/color/icc/colord/BruceRGB.icc 30013 -usr/share/icons/Adwaita/index.theme 30012 -usr/share/color/icc/colord/Crayons.icc 30011 -usr/share/color/icc/colord/DonRGB4.icc 30010 -usr/share/color/icc/colord/ECI-RGBv1.icc 30009 -lib/systemd/systemd-hostnamed 30008 -usr/share/color/icc/colord/ECI-RGBv2.icc 30007 -usr/share/color/icc/colord/EktaSpacePS5.icc 30006 -etc/os-release 30005 -usr/share/color/icc/colord/Gamma5000K.icc 30004 -usr/share/icons/gnome/index.theme 30003 -usr/share/color/icc/colord/Gamma5500K.icc 30002 -usr/share/color/icc/colord/Gamma6500K.icc 30001 -usr/share/color/icc/colord/Rec709.icc 30000 -usr/share/icons/hicolor/index.theme 29999 -usr/share/color/icc/colord/WideGamutRGB.icc 29998 -usr/share/color/icc/ghostscript/a98.icc 29997 -usr/share/color/icc/ghostscript/default_cmyk.icc 29996 -usr/lib/python3/dist-packages/gi/overrides/Pango.py 29995 -usr/lib/python3/dist-packages/gi/overrides/GdkPixbuf.py 29994 -usr/lib/python3/dist-packages/gi/overrides/Gdk.py 29993 -usr/lib/x86_64-linux-gnu/girepository-1.0/GdkX11-3.0.typelib 29992 -usr/share/color/icc/ghostscript/default_gray.icc 29991 -usr/lib/python3/dist-packages/gi/overrides/Gtk.py 29990 -usr/share/color/icc/ghostscript/default_rgb.icc 29989 -usr/share/color/icc/ghostscript/esrgb.icc 29988 -usr/lib/python3/dist-packages/gi/_gtktemplate.py 29987 -usr/share/color/icc/ghostscript/gray_to_k.icc 29986 -usr/share/color/icc/ghostscript/lab.icc 29985 -usr/share/color/icc/ghostscript/ps_cmyk.icc 29984 -usr/share/color/icc/ghostscript/ps_gray.icc 29983 -usr/share/color/icc/ghostscript/ps_rgb.icc 29982 -usr/share/color/icc/ghostscript/rommrgb.icc 29981 -usr/share/color/icc/ghostscript/scrgb.icc 29980 -usr/share/color/icc/ghostscript/sgray.icc 29979 -usr/share/color/icc/ghostscript/srgb.icc 29978 -usr/share/icons/Adwaita/16x16/apps/preferences-desktop-accessibility-symbolic.symbolic.png 29977 -usr/share/icons/Adwaita/48x48/actions/pan-down-symbolic.symbolic.png 29976 -usr/share/icons/Adwaita/16x16/actions/find-location-symbolic.symbolic.png 29975 -usr/lib/colord/colord-sane 29974 -usr/lib/x86_64-linux-gnu/libsane.so.1.0.27 29973 -usr/lib/x86_64-linux-gnu/libieee1284.so.3.2.2 29972 -usr/share/icons/Adwaita/cursors/watch 29971 -usr/share/fonts/opentype/cantarell/Cantarell-Regular.otf 29970 -usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf 29969 -usr/lib/x86_64-linux-gnu/libtiff.so.5.5.0 29968 -usr/lib/x86_64-linux-gnu/libjpeg.so.62.2.0 29967 -usr/lib/x86_64-linux-gnu/libgphoto2.so.6.1.0 29966 -usr/share/tails/greeter/tails-greeter.py 29965 -usr/lib/x86_64-linux-gnu/libgphoto2_port.so.12.0.0 29964 -usr/lib/x86_64-linux-gnu/libzstd.so.1.3.8 29963 -usr/lib/x86_64-linux-gnu/libjbig.so.0 29962 -usr/lib/x86_64-linux-gnu/libexif.so.12.3.3 29961 -etc/sane.d/dll.d/hplip 29960 -etc/sane.d/dll.conf 29959 -usr/lib/x86_64-linux-gnu/sane/libsane-xerox_mfp.so.1.0.27 29958 -etc/sane.d/xerox_mfp.conf 29957 -usr/lib/ibus/ibus-engine-simple 29956 -usr/lib/x86_64-linux-gnu/sane/libsane-umax1220u.so.1.0.27 29955 -etc/sane.d/umax1220u.conf 29954 -usr/lib/x86_64-linux-gnu/sane/libsane-umax.so.1.0.27 29953 -etc/sane.d/umax.conf 29952 -usr/lib/x86_64-linux-gnu/sane/libsane-u12.so.1.0.27 29951 -etc/sane.d/u12.conf 29950 -usr/lib/x86_64-linux-gnu/sane/libsane-teco3.so.1.0.27 29949 -etc/sane.d/teco3.conf 29948 -usr/lib/x86_64-linux-gnu/sane/libsane-teco2.so.1.0.27 29947 -etc/sane.d/teco2.conf 29946 -usr/lib/x86_64-linux-gnu/sane/libsane-teco1.so.1.0.27 29945 -usr/share/icons/Adwaita/16x16/status/battery-full-symbolic.symbolic.png 29944 -usr/share/icons/Adwaita/48x48/status/battery-full-symbolic.symbolic.png 29943 -usr/lib/gnome-settings-daemon/gsd-backlight-helper 29942 -usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/1920x1080.svg 29941 -usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so 29940 -etc/sane.d/teco1.conf 29939 -usr/lib/x86_64-linux-gnu/sane/libsane-tamarack.so.1.0.27 29938 -etc/sane.d/tamarack.conf 29937 -usr/lib/x86_64-linux-gnu/sane/libsane-sp15c.so.1.0.27 29936 -etc/sane.d/sp15c.conf 29935 -usr/lib/x86_64-linux-gnu/sane/libsane-snapscan.so.1.0.27 29934 -etc/sane.d/snapscan.conf 29933 -usr/lib/x86_64-linux-gnu/sane/libsane-sm3840.so.1.0.27 29932 -usr/lib/x86_64-linux-gnu/sane/libsane-sm3600.so.1.0.27 29931 -usr/lib/x86_64-linux-gnu/sane/libsane-sharp.so.1.0.27 29930 -etc/sane.d/sharp.conf 29929 -usr/lib/x86_64-linux-gnu/sane/libsane-sceptre.so.1.0.27 29928 -etc/sane.d/sceptre.conf 29927 -usr/lib/x86_64-linux-gnu/sane/libsane-s9036.so.1.0.27 29926 -etc/sane.d/s9036.conf 29925 -usr/lib/x86_64-linux-gnu/sane/libsane-rts8891.so.1.0.27 29924 -usr/share/themes/Default/gtk-3.0/gtk-keys.css 29923 -usr/lib/python3.7/logging/config.py 29922 -usr/share/icons/Adwaita/48x48/devices/audio-speakers-symbolic.symbolic.png 29921 -usr/share/icons/Adwaita/16x16/status/audio-volume-medium-symbolic.symbolic.png 29920 -usr/lib/python3.7/logging/handlers.py 29919 -etc/sane.d/rts8891.conf 29918 -usr/lib/x86_64-linux-gnu/sane/libsane-ricoh.so.1.0.27 29917 -etc/sane.d/ricoh.conf 29916 -usr/lib/x86_64-linux-gnu/sane/libsane-qcam.so.1.0.27 29915 -etc/sane.d/qcam.conf 29914 -usr/lib/x86_64-linux-gnu/sane/libsane-plustek.so.1.0.27 29913 -etc/sane.d/plustek.conf 29912 -usr/lib/x86_64-linux-gnu/sane/libsane-pixma.so.1.0.27 29911 -etc/sane.d/pixma.conf 29910 -usr/lib/python3/dist-packages/tailsgreeter/__init__.py 29909 -usr/lib/python3/dist-packages/tailsgreeter/errors.py 29908 -usr/lib/python3/dist-packages/tailsgreeter/greeter.py 29907 -usr/lib/python3/dist-packages/tailsgreeter/gdmclient.py 29906 -usr/lib/python3/dist-packages/tailsgreeter/config.py 29904 -usr/lib/python3/dist-packages/tailsgreeter/settings/__init__.py 29903 -usr/lib/python3/dist-packages/tailsgreeter/settings/localization.py 29901 -usr/lib/python3/dist-packages/pycountry/__init__.py 29900 -usr/lib/python3/dist-packages/pycountry/db.py 29899 -usr/lib/python3.7/json/__init__.py 29898 -usr/lib/python3.7/json/decoder.py 29897 -usr/lib/python3.7/json/scanner.py 29896 -usr/lib/python3.7/lib-dynload/_json.cpython-37m-x86_64-linux-gnu.so 29895 -usr/lib/python3.7/json/encoder.py 29894 -usr/lib/python3/dist-packages/pkg_resources/__init__.py 29893 -usr/lib/python3.7/zipfile.py 29892 -usr/lib/python3.7/plistlib.py 29891 -usr/lib/python3.7/xml/parsers/__init__.py 29890 -usr/lib/python3.7/xml/parsers/expat.py 29889 -usr/lib/x86_64-linux-gnu/sane/libsane-pie.so.1.0.27 29888 -etc/sane.d/pie.conf 29887 -usr/lib/x86_64-linux-gnu/sane/libsane-niash.so.1.0.27 29886 -usr/lib/x86_64-linux-gnu/sane/libsane-nec.so.1.0.27 29885 -etc/sane.d/nec.conf 29884 -usr/lib/x86_64-linux-gnu/sane/libsane-mustek_usb2.so.1.0.27 29882 -usr/lib/x86_64-linux-gnu/sane/libsane-mustek_usb.so.1.0.27 29881 -etc/sane.d/mustek_usb.conf 29880 -usr/lib/x86_64-linux-gnu/sane/libsane-mustek.so.1.0.27 29879 -etc/sane.d/mustek.conf 29878 -usr/lib/x86_64-linux-gnu/sane/libsane-microtek2.so.1.0.27 29877 -etc/sane.d/microtek2.conf 29876 -usr/lib/x86_64-linux-gnu/sane/libsane-microtek.so.1.0.27 29875 -etc/sane.d/microtek.conf 29874 -usr/lib/x86_64-linux-gnu/sane/libsane-matsushita.so.1.0.27 29873 -etc/sane.d/matsushita.conf 29872 -usr/lib/python3.7/email/__init__.py 29871 -usr/lib/python3.7/email/parser.py 29870 -usr/lib/python3.7/email/feedparser.py 29869 -usr/lib/x86_64-linux-gnu/sane/libsane-magicolor.so.1.0.27 29868 -usr/lib/x86_64-linux-gnu/libnetsnmp.so.30.0.3 29867 -etc/sane.d/magicolor.conf 29866 -etc/snmp/snmp.conf 29865 -usr/local/lib/udev-watchdog-wrapper 29864 -usr/share/snmp/mibs/GNOME-SMI.txt 29863 -usr/share/snmp/mibs/IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt 29862 -usr/share/snmp/mibs/IANA-LANGUAGE-MIB.txt 29861 -usr/share/snmp/mibs/IANA-RTPROTO-MIB.txt 29860 -usr/share/snmp/mibs/IANAifType-MIB.txt 29859 -usr/share/snmp/mibs/LM-SENSORS-MIB.txt 29858 -usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt 29857 -usr/share/snmp/mibs/NET-SNMP-EXAMPLES-MIB.txt 29856 -usr/share/snmp/mibs/NET-SNMP-EXTEND-MIB.txt 29855 -usr/share/snmp/mibs/NET-SNMP-MIB.txt 29854 -usr/share/snmp/mibs/NET-SNMP-MONITOR-MIB.txt 29853 -usr/share/snmp/mibs/NET-SNMP-PASS-MIB.txt 29852 -usr/share/snmp/mibs/NET-SNMP-PERIODIC-NOTIFY-MIB.txt 29851 -usr/share/snmp/mibs/NET-SNMP-SYSTEM-MIB.txt 29850 -usr/share/snmp/mibs/NET-SNMP-TC.txt 29849 -usr/share/snmp/mibs/NET-SNMP-VACM-MIB.txt 29848 -usr/share/snmp/mibs/RFC-1215.txt 29847 -usr/share/snmp/mibs/SNMP-TLS-TM-MIB.txt 29846 -usr/share/snmp/mibs/SNMP-TSM-MIB.txt 29845 -usr/share/snmp/mibs/UCD-DEMO-MIB.txt 29844 -usr/share/snmp/mibs/UCD-DISKIO-MIB.txt 29843 -usr/share/snmp/mibs/UCD-DLMOD-MIB.txt 29842 -usr/share/snmp/mibs/UCD-IPFILTER-MIB.txt 29841 -usr/share/snmp/mibs/UCD-IPFWACC-MIB.txt 29840 -usr/share/snmp/mibs/UCD-SNMP-MIB-OLD.txt 29839 -usr/share/snmp/mibs/UCD-SNMP-MIB.txt 29838 -usr/share/snmp/mibs/miblist.txt 29837 -usr/lib/x86_64-linux-gnu/sane/libsane-ma1509.so.1.0.27 29836 -etc/sane.d/ma1509.conf 29835 -usr/lib/x86_64-linux-gnu/sane/libsane-lexmark.so.1.0.27 29834 -etc/sane.d/lexmark.conf 29833 -usr/lib/x86_64-linux-gnu/sane/libsane-leo.so.1.0.27 29832 -etc/sane.d/leo.conf 29831 -usr/lib/python3.7/email/errors.py 29830 -usr/lib/x86_64-linux-gnu/sane/libsane-kvs20xx.so.1.0.27 29829 -usr/lib/python3.7/email/_policybase.py 29828 -usr/lib/python3.7/email/header.py 29827 -usr/lib/python3.7/email/quoprimime.py 29826 -usr/lib/python3.7/email/base64mime.py 29825 -usr/lib/python3.7/email/charset.py 29824 -usr/lib/python3.7/email/encoders.py 29823 -usr/lib/x86_64-linux-gnu/sane/libsane-kvs1025.so.1.0.27 29822 -usr/lib/x86_64-linux-gnu/sane/libsane-kodakaio.so.1.0.27 29821 -etc/sane.d/kodakaio.conf 29820 -usr/lib/x86_64-linux-gnu/sane/libsane-kodak.so.1.0.27 29819 -etc/sane.d/kodak.conf 29818 -usr/lib/x86_64-linux-gnu/sane/libsane-ibm.so.1.0.27 29817 -etc/sane.d/ibm.conf 29816 -usr/lib/x86_64-linux-gnu/sane/libsane-hs2p.so.1.0.27 29815 -etc/sane.d/hs2p.conf 29814 -usr/lib/x86_64-linux-gnu/sane/libsane-hpljm1005.so.1.0.27 29813 -usr/lib/x86_64-linux-gnu/sane/libsane-hp5590.so.1.0.27 29812 -usr/lib/x86_64-linux-gnu/sane/libsane-hp5400.so.1.0.27 29811 -etc/sane.d/hp5400.conf 29810 -usr/lib/x86_64-linux-gnu/sane/libsane-hp4200.so.1.0.27 29809 -etc/sane.d/hp4200.conf 29808 -usr/lib/x86_64-linux-gnu/sane/libsane-hp3500.so.1.0.27 29807 -usr/lib/x86_64-linux-gnu/sane/libsane-hpsj5s.so.1.0.27 29806 -etc/sane.d/hpsj5s.conf 29805 -usr/lib/x86_64-linux-gnu/sane/libsane-hp3900.so.1.0.27 29804 -usr/lib/python3.7/quopri.py 29803 -usr/lib/python3.7/email/utils.py 29802 -etc/sane.d/hp3900.conf 29801 -usr/lib/x86_64-linux-gnu/sane/libsane-hp.so.1.0.27 29800 -etc/sane.d/hp.conf 29799 -usr/lib/x86_64-linux-gnu/sane/libsane-gt68xx.so.1.0.27 29798 -etc/sane.d/gt68xx.conf 29797 -usr/lib/x86_64-linux-gnu/sane/libsane-genesys.so.1.0.27 29796 -usr/lib/python3.7/email/_parseaddr.py 29795 -etc/sane.d/genesys.conf 29794 -usr/lib/x86_64-linux-gnu/sane/libsane-fujitsu.so.1.0.27 29793 -etc/sane.d/fujitsu.conf 29792 -usr/lib/x86_64-linux-gnu/sane/libsane-epsonds.so.1.0.27 29791 -etc/sane.d/epsonds.conf 29790 -usr/lib/python3.7/ntpath.py 29789 -usr/lib/python3/dist-packages/pkg_resources/extern/__init__.py 29788 -usr/lib/python3/dist-packages/pkg_resources/_vendor/__init__.py 29787 -usr/lib/python3/dist-packages/pkg_resources/_vendor/six.py 29786 -usr/lib/python3/dist-packages/pkg_resources/py31compat.py 29785 -usr/lib/python3/dist-packages/pkg_resources/_vendor/appdirs.py 29784 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/__init__.py 29783 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/__about__.py 29782 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/version.py 29781 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_structures.py 29780 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/specifiers.py 29779 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_compat.py 29778 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/requirements.py 29777 -usr/lib/python3/dist-packages/pkg_resources/_vendor/pyparsing.py 29776 -usr/lib/python3.7/pprint.py 29775 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/markers.py 29774 -usr/lib/python3.7/sysconfig.py 29773 -usr/lib/python3/dist-packages/yarl-1.3.0.egg-info/PKG-INFO 29772 -usr/lib/python3/dist-packages/whisperback-1.8.1.egg-info 29771 -usr/lib/python3/dist-packages/Werkzeug-0.14.1.egg-info/PKG-INFO 29770 -usr/lib/python3/dist-packages/urllib3-1.24.1.egg-info/PKG-INFO 29769 -usr/lib/python3/dist-packages/trezor-0.9.0.egg-info/PKG-INFO 29768 -usr/lib/python3/dist-packages/systemd_python-234.egg-info 29767 -usr/lib/python3/dist-packages/stem-1.7.1.egg-info 29766 -usr/lib/python3/dist-packages/six-1.12.0.egg-info/PKG-INFO 29765 -usr/lib/python3/dist-packages/sh-1.12.14.egg-info/PKG-INFO 29764 -usr/lib/python3/dist-packages/requests-2.21.0.egg-info/PKG-INFO 29763 -usr/lib/python3/dist-packages/reportlab-3.5.13.egg-info/PKG-INFO 29762 -usr/lib/python3/dist-packages/regex-2019.02.07.egg-info 29761 -usr/lib/python3/dist-packages/qrcode-6.1.egg-info/PKG-INFO 29760 -usr/lib/python3/dist-packages/PyYAML-3.13.egg-info 29759 -usr/lib/python3/dist-packages/pyxdg-0.25.egg-info 29758 -usr/lib/python3/dist-packages/pytz-2019.1.egg-info/PKG-INFO 29757 -usr/lib/python3/dist-packages/python_pam-1.8.4.egg-info/PKG-INFO 29756 -usr/lib/python3/dist-packages/python_gnupg-0.4.4.egg-info 29755 -usr/lib/python3/dist-packages/python_apt-1.8.4.1.egg-info 29754 -usr/lib/python3/dist-packages/PySocks-1.6.8.egg-info/PKG-INFO 29753 -usr/lib/python3/dist-packages/pyserial-3.4.egg-info/PKG-INFO 29752 -usr/lib/python3/dist-packages/pyinotify-0.9.6.egg-info 29751 -usr/lib/python3/dist-packages/PyGObject-3.30.4.egg-info/PKG-INFO 29750 -usr/lib/python3/dist-packages/pydbus-0.6.0.egg-info/PKG-INFO 29749 -usr/lib/python3/dist-packages/pycups-1.9.73.egg-info 29748 -usr/lib/python3/dist-packages/pycountry-17.5.14.egg-info/PKG-INFO 29747 -usr/lib/python3/dist-packages/pycairo-1.16.2.egg-info 29746 -usr/lib/python3/dist-packages/pyaes-1.6.1.egg-info 29745 -usr/lib/python3/dist-packages/psutil-5.5.1.egg-info 29744 -usr/lib/python3/dist-packages/protobuf-3.6.1.egg-info/PKG-INFO 29743 -usr/lib/python3/dist-packages/Pillow-5.4.1.egg-info/PKG-INFO 29742 -usr/lib/python3/dist-packages/pexpect-4.6.0.egg-info 29741 -usr/lib/python3/dist-packages/pbkdf2-1.3.egg-info/PKG-INFO 29740 -usr/lib/python3/dist-packages/onionshare-1.3.2.egg-info 29739 -usr/lib/python3/dist-packages/onioncircuits-0.6.egg-info 29738 -usr/lib/python3/dist-packages/mutagen-1.40.0.egg-info 29737 -usr/lib/python3/dist-packages/multidict-4.5.2.egg-info/PKG-INFO 29736 -usr/lib/python3/dist-packages/mnemonic-0.18.egg-info/PKG-INFO 29735 -usr/lib/python3/dist-packages/MarkupSafe-1.1.0.egg-info/PKG-INFO 29734 -usr/lib/python3/dist-packages/louis-3.8.0.egg-info 29733 -usr/lib/python3/dist-packages/libusb1-1.7.egg-info/PKG-INFO 29732 -usr/lib/python3/dist-packages/jsonrpclib_pelix-0.3.1.egg-info/PKG-INFO 29731 -usr/lib/python3/dist-packages/Jinja2-2.10.egg-info/PKG-INFO 29730 -usr/lib/python3/dist-packages/itsdangerous-0.24.egg-info/PKG-INFO 29729 -usr/lib/python3/dist-packages/idna-2.6.egg-info/PKG-INFO 29728 -usr/lib/python3/dist-packages/hidapi-0.7.99.post21.egg-info/PKG-INFO 29727 -usr/lib/python3/dist-packages/Flask-1.0.2.egg-info/PKG-INFO 29726 -usr/lib/python3/dist-packages/Electrum-3.3.8.egg-info/PKG-INFO 29725 -usr/lib/python3/dist-packages/ecdsa-0.13.egg-info 29724 -usr/lib/python3/dist-packages/dogtail-0.9.11.egg-info/PKG-INFO 29723 -usr/lib/python3/dist-packages/dnspython-1.16.0.egg-info/PKG-INFO 29722 -usr/lib/python3/dist-packages/distro-1.3.0.egg-info/PKG-INFO 29721 -usr/lib/python3/dist-packages/cupshelpers-1.0.egg-info 29720 -usr/lib/python3/dist-packages/colorama-0.3.7.egg-info/PKG-INFO 29719 -usr/lib/python3/dist-packages/Click-7.0.egg-info/PKG-INFO 29718 -usr/lib/python3/dist-packages/chardet-3.0.4.egg-info/PKG-INFO 29717 -usr/lib/python3/dist-packages/certifi-2018.8.24.egg-info/PKG-INFO 29716 -usr/lib/python3/dist-packages/Brlapi-0.6.7.egg-info 29715 -usr/lib/python3/dist-packages/attrs-18.2.0.egg-info/PKG-INFO 29714 -usr/lib/python3/dist-packages/atomicwrites-1.1.5.egg-info/PKG-INFO 29713 -usr/lib/python3/dist-packages/async_timeout-3.0.1.egg-info/PKG-INFO 29712 -usr/lib/python3/dist-packages/aiorpcX-0.18.4.egg-info/PKG-INFO 29711 -usr/lib/python3/dist-packages/aiohttp-3.5.1.egg-info/PKG-INFO 29710 -usr/lib/python3/dist-packages/aiohttp_socks-0.3.3.egg-info/PKG-INFO 29709 -usr/lib/python3/dist-packages/protobuf-3.6.1.egg-info/namespace_packages.txt 29708 -usr/lib/python3.7/typing.py 29707 -usr/lib/python3/dist-packages/tailsgreeter/settings/admin.py 29706 -usr/lib/python3.7/pipes.py 29705 -usr/lib/python3.7/shlex.py 29704 -usr/lib/python3/dist-packages/tailsgreeter/settings/localization_settings.py 29703 -usr/lib/python3/dist-packages/tailsgreeter/settings/formats.py 29702 -usr/lib/python3/dist-packages/tailsgreeter/settings/keyboard.py 29701 -usr/lib/python3/dist-packages/tailsgreeter/settings/language.py 29700 -usr/lib/python3/dist-packages/tailsgreeter/settings/macspoof.py 29699 -usr/lib/python3/dist-packages/tailsgreeter/settings/network.py 29698 -usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py 29697 -usr/lib/python3/dist-packages/tailsgreeter/utils.py 29696 -usr/lib/python3/dist-packages/tailsgreeter/translatable_window.py 29695 -usr/lib/python3/dist-packages/tailsgreeter/ui/__init__.py 29694 -usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py 29693 -usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py 29692 -usr/lib/python3/dist-packages/tailsgreeter/ui/popover.py 29691 -usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py 29690 -usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py 29689 -usr/lib/python3/dist-packages/tailsgreeter/ui/help_window.py 29688 -usr/lib/python3.7/webbrowser.py 29687 -usr/lib/x86_64-linux-gnu/girepository-1.0/WebKit2-4.0.typelib 29686 -usr/lib/x86_64-linux-gnu/girepository-1.0/JavaScriptCore-4.0.typelib 29685 -usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py 29684 -usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py 29683 -usr/lib/python3/dist-packages/tailsgreeter/ui/settings_collection.py 29682 -usr/lib/python3.7/configparser.py 29681 -usr/share/tails/greeter/tails-logging.conf 29680 -usr/share/tails/greeter/supported_locales 29679 -usr/lib/locale/he_IL/LC_MESSAGES/SYS_LC_MESSAGES 29678 -usr/share/locale/he/LC_MESSAGES/iso_639-2.mo 29676 -usr/lib/locale/mk_MK/LC_MESSAGES/SYS_LC_MESSAGES 29675 -usr/share/locale/mk/LC_MESSAGES/iso_639-2.mo 29674 -usr/lib/locale/bho_IN/LC_MESSAGES/SYS_LC_MESSAGES 29673 -usr/share/locale/hi/LC_MESSAGES/iso_639-2.mo 29672 -usr/lib/locale/en_AU/LC_MESSAGES/SYS_LC_MESSAGES 29671 -usr/lib/locale/zh_CN/LC_MESSAGES/SYS_LC_MESSAGES 29670 -usr/share/locale/zh_CN/LC_MESSAGES/iso_639-2.mo 29669 -usr/lib/locale/af_ZA/LC_MESSAGES/SYS_LC_MESSAGES 29668 -usr/share/locale/nl/LC_MESSAGES/iso_639-2.mo 29667 -usr/lib/locale/ca_ES/LC_MESSAGES/SYS_LC_MESSAGES 29666 -usr/share/locale/ca/LC_MESSAGES/iso_639-2.mo 29665 -usr/lib/locale/el_CY/LC_MESSAGES/SYS_LC_MESSAGES 29664 -usr/share/locale/el/LC_MESSAGES/iso_639-2.mo 29663 -usr/lib/locale/ru_RU/LC_MESSAGES/SYS_LC_MESSAGES 29662 -usr/share/locale/ru/LC_MESSAGES/iso_639-2.mo 29661 -usr/lib/locale/cs_CZ/LC_MESSAGES/SYS_LC_MESSAGES 29660 -usr/share/locale/cs/LC_MESSAGES/iso_639-2.mo 29659 -usr/lib/locale/tr_CY/LC_MESSAGES/SYS_LC_MESSAGES 29658 -usr/share/locale/tr/LC_MESSAGES/iso_639-2.mo 29657 -usr/lib/locale/da_DK/LC_MESSAGES/SYS_LC_MESSAGES 29656 -usr/share/locale/da/LC_MESSAGES/iso_639-2.mo 29655 -usr/lib/locale/fa_IR/LC_MESSAGES/SYS_LC_MESSAGES 29654 -usr/share/locale/fa/LC_MESSAGES/iso_639-2.mo 29653 -usr/lib/locale/ar_AE/LC_MESSAGES/SYS_LC_MESSAGES 29652 -usr/share/locale/ar/LC_MESSAGES/iso_639-2.mo 29651 -usr/lib/locale/ro_RO/LC_MESSAGES/SYS_LC_MESSAGES 29650 -usr/share/locale/ro/LC_MESSAGES/iso_639-2.mo 29649 -usr/lib/locale/es_AR/LC_MESSAGES/SYS_LC_MESSAGES 29648 -usr/share/locale/es/LC_MESSAGES/iso_639-2.mo 29647 -usr/lib/locale/lt_LT/LC_MESSAGES/SYS_LC_MESSAGES 29646 -usr/share/locale/lt/LC_MESSAGES/iso_639-2.mo 29645 -usr/lib/locale/hu_HU/LC_MESSAGES/SYS_LC_MESSAGES 29644 -usr/share/locale/hu/LC_MESSAGES/iso_639-2.mo 29643 -usr/lib/locale/it_IT/LC_MESSAGES/SYS_LC_MESSAGES 29642 -usr/share/locale/it/LC_MESSAGES/iso_639-2.mo 29641 -usr/lib/locale/zh_TW/LC_MESSAGES/SYS_LC_MESSAGES 29640 -usr/share/locale/zh_TW/LC_MESSAGES/iso_639-2.mo 29639 -usr/lib/locale/km_KH/LC_MESSAGES/SYS_LC_MESSAGES 29638 -usr/lib/locale/fr_CA/LC_MESSAGES/SYS_LC_MESSAGES 29637 -usr/share/locale/fr/LC_MESSAGES/iso_639-2.mo 29636 -usr/lib/locale/pl_PL/LC_MESSAGES/SYS_LC_MESSAGES 29635 -usr/share/locale/pl/LC_MESSAGES/iso_639-2.mo 29634 -usr/lib/locale/fi_FI/LC_MESSAGES/SYS_LC_MESSAGES 29633 -usr/share/locale/fi/LC_MESSAGES/iso_639-2.mo 29632 -usr/lib/locale/sv_FI/LC_MESSAGES/SYS_LC_MESSAGES 29631 -usr/share/locale/sv/LC_MESSAGES/iso_639-2.mo 29630 -usr/lib/locale/pt_BR/LC_MESSAGES/SYS_LC_MESSAGES 29629 -usr/share/locale/pt/LC_MESSAGES/iso_639-2.mo 29628 -usr/lib/locale/id_ID/LC_MESSAGES/SYS_LC_MESSAGES 29627 -usr/share/locale/id/LC_MESSAGES/iso_639-2.mo 29626 -usr/lib/locale/de_AT/LC_MESSAGES/SYS_LC_MESSAGES 29625 -usr/share/locale/de/LC_MESSAGES/iso_639-2.mo 29624 -usr/lib/locale/ga_IE/LC_MESSAGES/SYS_LC_MESSAGES 29623 -usr/share/locale/ga/LC_MESSAGES/iso_639-2.mo 29622 -usr/share/tails/greeter/setting.ui 29621 -lib/systemd/systemd-update-utmp 29619 -usr/share/locale/id/LC_MESSAGES/iso_3166-1.mo 29618 -usr/share/locale/ca/LC_MESSAGES/iso_3166-1.mo 29617 -usr/lib/locale/an_ES/LC_MESSAGES/SYS_LC_MESSAGES 29616 -usr/share/locale/km/LC_MESSAGES/iso_3166-1.mo 29615 -usr/share/locale/da/LC_MESSAGES/iso_3166-1.mo 29614 -usr/share/locale/de/LC_MESSAGES/iso_3166-1.mo 29613 -usr/lib/locale/en_CA/LC_MESSAGES/SYS_LC_MESSAGES 29612 -usr/lib/locale/en_DK/LC_MESSAGES/SYS_LC_MESSAGES 29611 -usr/lib/locale/bem_ZM/LC_MESSAGES/SYS_LC_MESSAGES 29610 -usr/share/locale/es/LC_MESSAGES/iso_3166-1.mo 29609 -usr/lib/locale/an_ES.utf8/LC_MESSAGES/SYS_LC_MESSAGES 29608 -usr/share/locale/fr/LC_MESSAGES/iso_3166-1.mo 29607 -usr/lib/locale/fr_BE/LC_MESSAGES/SYS_LC_MESSAGES 29606 -usr/lib/locale/fr_CH/LC_MESSAGES/SYS_LC_MESSAGES 29605 -usr/share/locale/ga/LC_MESSAGES/iso_3166-1.mo 29604 -usr/share/locale/it/LC_MESSAGES/iso_3166-1.mo 29603 -usr/lib/locale/it_CH/LC_MESSAGES/SYS_LC_MESSAGES 29602 -usr/share/locale/lt/LC_MESSAGES/iso_3166-1.mo 29601 -usr/share/locale/hu/LC_MESSAGES/iso_3166-1.mo 29600 -usr/share/locale/nl/LC_MESSAGES/iso_3166-1.mo 29599 -usr/lib/locale/af_ZA.utf8/LC_MESSAGES/SYS_LC_MESSAGES 29598 -usr/share/locale/pl/LC_MESSAGES/iso_3166-1.mo 29597 -usr/share/locale/pt_BR/LC_MESSAGES/iso_639-2.mo 29596 -usr/share/locale/pt_BR/LC_MESSAGES/iso_3166-1.mo 29595 -usr/share/locale/pt/LC_MESSAGES/iso_3166-1.mo 29594 -usr/share/locale/ro/LC_MESSAGES/iso_3166-1.mo 29593 -usr/share/locale/fi/LC_MESSAGES/iso_3166-1.mo 29592 -usr/share/locale/sv/LC_MESSAGES/iso_3166-1.mo 29591 -usr/share/locale/tr/LC_MESSAGES/iso_3166-1.mo 29590 -usr/share/locale/cs/LC_MESSAGES/iso_3166-1.mo 29589 -usr/share/locale/el/LC_MESSAGES/iso_3166-1.mo 29588 -usr/share/locale/mk/LC_MESSAGES/iso_3166-1.mo 29587 -usr/share/locale/ru/LC_MESSAGES/iso_3166-1.mo 29586 -usr/lib/locale/ru_UA/LC_MESSAGES/SYS_LC_MESSAGES 29585 -usr/share/locale/he/LC_MESSAGES/iso_3166-1.mo 29584 -usr/share/locale/ar/LC_MESSAGES/iso_3166-1.mo 29583 -usr/lib/locale/ar_AE.utf8/LC_MESSAGES/SYS_LC_MESSAGES 29582 -usr/share/locale/fa/LC_MESSAGES/iso_3166-1.mo 29581 -usr/share/locale/hi/LC_MESSAGES/iso_3166-1.mo 29580 -usr/share/locale/zh_CN/LC_MESSAGES/iso_3166-1.mo 29579 -usr/lib/locale/zh_HK/LC_MESSAGES/SYS_LC_MESSAGES 29578 -usr/share/locale/zh_HK/LC_MESSAGES/iso_639-2.mo 29577 -usr/share/locale/zh_HK/LC_MESSAGES/iso_3166-1.mo 29576 -usr/share/locale/zh_TW/LC_MESSAGES/iso_3166-1.mo 29575 -usr/share/tails/greeter/region_settings.ui 29574 -usr/share/tails/greeter/additional_settings.ui 29573 -usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules.cache 29572 -usr/share/tails/greeter/greeter.css 29571 -usr/share/tails/greeter/main.ui 29570 -usr/local/sbin/live-persist 29569 -lib/live/boot/9990-cmdline-old 29568 -lib/live/boot/9990-misc-helpers.sh 29567 -sbin/cryptsetup 29564 -usr/lib/x86_64-linux-gnu/libpopt.so.0.0.0 29563 -usr/share/fonts/opentype/cantarell/Cantarell-Bold.otf 29560 -usr/lib/x86_64-linux-gnu/sane/libsane-epson2.so.1.0.27 29558 -etc/sane.d/epson2.conf 29557 -usr/share/icons/hicolor/scalable/actions/tails-help.svg 29556 -usr/share/icons/hicolor/scalable/actions/tails-language.svg 29555 -usr/share/icons/hicolor/scalable/actions/tails-keyboard-layout.svg 29554 -usr/share/icons/hicolor/scalable/actions/tails-formats.svg 29553 -usr/share/icons/Adwaita/16x16/actions/list-add-symbolic.symbolic.png 29552 -usr/share/icons/Adwaita/cursors/top_left_corner 29551 -usr/share/icons/Adwaita/cursors/top_side 29550 -usr/share/icons/Adwaita/cursors/top_right_corner 29549 -usr/share/icons/Adwaita/cursors/left_side 29548 -usr/share/icons/Adwaita/cursors/right_side 29547 -usr/share/icons/Adwaita/cursors/bottom_left_corner 29546 -usr/share/icons/Adwaita/cursors/bottom_side 29545 -usr/share/icons/Adwaita/cursors/bottom_right_corner 29544 -usr/share/icons/hicolor/32x32/apps/gdm-setup.png 29543 -usr/share/icons/Adwaita/cursors/hand2 29542 -usr/lib/x86_64-linux-gnu/sane/libsane-epjitsu.so.1.0.27 29541 -etc/sane.d/epjitsu.conf 29540 -usr/lib/x86_64-linux-gnu/sane/libsane-dmc.so.1.0.27 29539 -etc/sane.d/dmc.conf 29538 -usr/lib/x86_64-linux-gnu/sane/libsane-dell1600n_net.so.1.0.27 29537 -etc/sane.d/dell1600n_net.conf 29536 -usr/lib/x86_64-linux-gnu/sane/libsane-coolscan3.so.1.0.27 29535 -etc/sane.d/coolscan3.conf 29534 -usr/lib/x86_64-linux-gnu/sane/libsane-coolscan.so.1.0.27 29533 -etc/sane.d/coolscan.conf 29532 -usr/lib/x86_64-linux-gnu/sane/libsane-cardscan.so.1.0.27 29531 -etc/sane.d/cardscan.conf 29530 -usr/lib/x86_64-linux-gnu/sane/libsane-canon_dr.so.1.0.27 29529 -etc/sane.d/canon_dr.conf 29528 -usr/lib/x86_64-linux-gnu/sane/libsane-canon630u.so.1.0.27 29527 -etc/sane.d/canon630u.conf 29526 -usr/lib/x86_64-linux-gnu/sane/libsane-canon.so.1.0.27 29525 -etc/sane.d/canon.conf 29524 -usr/lib/x86_64-linux-gnu/sane/libsane-bh.so.1.0.27 29523 -etc/sane.d/bh.conf 29522 -usr/lib/x86_64-linux-gnu/sane/libsane-as6e.so.1.0.27 29521 -usr/lib/x86_64-linux-gnu/sane/libsane-artec_eplus48u.so.1.0.27 29520 -etc/sane.d/artec_eplus48u.conf 29519 -usr/lib/x86_64-linux-gnu/sane/libsane-artec.so.1.0.27 29518 -etc/sane.d/artec.conf 29517 -usr/lib/x86_64-linux-gnu/sane/libsane-avision.so.1.0.27 29516 -etc/sane.d/avision.conf 29515 -usr/lib/x86_64-linux-gnu/sane/libsane-apple.so.1.0.27 29514 -etc/sane.d/apple.conf 29513 -usr/lib/x86_64-linux-gnu/sane/libsane-agfafocus.so.1.0.27 29512 -etc/sane.d/agfafocus.conf 29511 -usr/lib/x86_64-linux-gnu/sane/libsane-abaton.so.1.0.27 29510 -etc/sane.d/abaton.conf 29509 -usr/lib/x86_64-linux-gnu/sane/libsane-net.so.1.0.27 29508 -etc/sane.d/net.conf 29507 -usr/lib/x86_64-linux-gnu/sane/libsane-hpaio.so.1.0.0 29506 -usr/lib/x86_64-linux-gnu/libhpip.so.0.0.1 29505 -usr/lib/x86_64-linux-gnu/libhpmud.so.0.0.6 29504 -usr/lib/x86_64-linux-gnu/libhpdiscovery.so.0.0.1 29503 -etc/pam.d/gdm-password 29497 -usr/share/xsessions/gnome-xorg.desktop 29496 -lib/x86_64-linux-gnu/security/pam_succeed_if.so 29495 -etc/securetty 29494 -lib/systemd/system/user@1000.service.d/timeout.conf 29491 -usr/local/lib/create-tor-browser-directories 29475 -usr/local/lib/tails-shell-library/tails-greeter.sh 29474 -etc/gdm3/PostLogin/Default 29473 -etc/live/config.d/username.conf 29467 -usr/local/lib/tails-unblock-network 29466 -lib/systemd/system/tails-unblock-network.service 29465 -bin/sync 29460 -bin/kmod 29457 -lib/modules/5.4.0-4-amd64/modules.softdep 29456 -lib/modprobe.d/aliases.conf 29453 -etc/modprobe.d/amd64-microcode-blacklist.conf 29452 -lib/modprobe.d/fbdev-blacklist.conf 29451 -etc/modprobe.d/intel-microcode-blacklist.conf 29450 -etc/modprobe.d/loop.conf 29449 -etc/modprobe.d/no-bluetooth.conf 29448 -etc/modprobe.d/no-conntrack-helper.conf 29447 -etc/modprobe.d/no-mei.conf 29446 -etc/modprobe.d/no-n-hdlc.conf 29445 -etc/modprobe.d/no-pc-speaker.conf 29444 -lib/modprobe.d/systemd.conf 29443 -etc/modprobe.d/uncommon-network-protocols.conf 29442 -lib/modules/5.4.0-4-amd64/modules.dep.bin 29441 -lib/modules/5.4.0-4-amd64/modules.alias.bin 29440 -lib/modules/5.4.0-4-amd64/modules.symbols.bin 29439 -lib/modules/5.4.0-4-amd64/modules.builtin.bin 29438 -lib/systemd/network/99-default.link 29437 -etc/udev/rules.d/00-mac-spoof.rules 29436 -lib/udev/rules.d/39-usbmuxd.rules 29435 -lib/udev/rules.d/40-usb_modeswitch.rules 29434 -lib/udev/rules.d/50-firmware.rules 29433 -lib/udev/rules.d/50-udev-default.rules 29432 -lib/udev/rules.d/55-dm.rules 29431 -lib/udev/rules.d/56-hpmud.rules 29430 -lib/udev/rules.d/56-lvm.rules 29429 -lib/udev/rules.d/60-block.rules 29428 -lib/udev/rules.d/60-cdrom_id.rules 29427 -lib/udev/rules.d/60-crda.rules 29426 -lib/udev/rules.d/60-drm.rules 29425 -lib/udev/rules.d/60-evdev.rules 29424 -lib/udev/rules.d/60-gobi-loader.rules 29423 -lib/udev/rules.d/60-input-id.rules 29422 -lib/udev/rules.d/60-libgphoto2-6.rules 29421 -lib/udev/rules.d/60-libsane.rules 29420 -lib/udev/rules.d/60-open-vm-tools.rules 29419 -lib/udev/rules.d/60-persistent-alsa.rules 29418 -lib/udev/rules.d/60-persistent-input.rules 29417 -lib/udev/rules.d/60-persistent-storage-dm.rules 29416 -lib/udev/rules.d/60-persistent-storage-tape.rules 29415 -lib/udev/rules.d/60-persistent-storage.rules 29414 -lib/udev/rules.d/60-persistent-v4l.rules 29413 -lib/udev/rules.d/60-scdaemon.rules 29412 -lib/udev/rules.d/60-sensor.rules 29411 -lib/udev/rules.d/60-serial.rules 29410 -lib/udev/rules.d/60-trezor.rules 29409 -lib/udev/rules.d/60-virtualbox-guest-utils.rules 29408 -lib/udev/rules.d/61-gdm.rules 29407 -lib/udev/rules.d/61-gnome-settings-daemon-rfkill.rules 29406 -lib/udev/rules.d/64-btrfs.rules 29405 -lib/udev/rules.d/64-xorg-xkb.rules 29404 -lib/udev/rules.d/65-libwacom.rules 29403 -lib/udev/rules.d/66-bilibop.rules 29402 -lib/udev/rules.d/69-cd-sensors.rules 29401 -lib/udev/rules.d/69-libmtp.rules 29400 -lib/udev/rules.d/69-lvm-metad.rules 29398 -lib/udev/rules.d/70-joystick.rules 29397 -lib/udev/rules.d/70-mouse.rules 29396 -lib/udev/rules.d/70-power-switch.rules 29395 -etc/udev/rules.d/70-protect-boot-medium-for-udisks.rules 29394 -lib/udev/rules.d/70-spice-vdagentd.rules 29393 -lib/udev/rules.d/70-touchpad.rules 29392 -lib/udev/rules.d/70-uaccess.rules 29391 -lib/udev/rules.d/71-seat.rules 29390 -lib/udev/rules.d/73-seat-late.rules 29389 -lib/udev/rules.d/73-special-net-names.rules 29388 -lib/udev/rules.d/73-usb-net-by-mac.rules 29387 -lib/udev/rules.d/75-net-description.rules 29386 -lib/udev/rules.d/75-probe_mtd.rules 29385 -lib/udev/rules.d/77-mm-cinterion-port-types.rules 29384 -lib/udev/rules.d/77-mm-dell-port-types.rules 29383 -lib/udev/rules.d/77-mm-ericsson-mbm.rules 29382 -lib/udev/rules.d/77-mm-fibocom-port-types.rules 29380 -lib/udev/rules.d/77-mm-haier-port-types.rules 29379 -lib/udev/rules.d/77-mm-huawei-net-port-types.rules 29378 -lib/udev/rules.d/77-mm-longcheer-port-types.rules 29377 -lib/udev/rules.d/77-mm-mtk-port-types.rules 29375 -lib/udev/rules.d/77-mm-nokia-port-types.rules 29374 -lib/udev/rules.d/77-mm-pcmcia-device-blacklist.rules 29373 -lib/udev/rules.d/77-mm-qdl-device-blacklist.rules 29372 -lib/udev/rules.d/77-mm-sierra.rules 29371 -lib/udev/rules.d/77-mm-simtech-port-types.rules 29370 -lib/udev/rules.d/77-mm-telit-port-types.rules 29369 -lib/udev/rules.d/77-mm-ublox-port-types.rules 29368 -lib/udev/rules.d/77-mm-usb-device-blacklist.rules 29367 -lib/udev/rules.d/77-mm-usb-serial-adapters-greylist.rules 29366 -lib/udev/rules.d/77-mm-x22x-port-types.rules 29365 -lib/udev/rules.d/77-mm-zte-port-types.rules 29364 -lib/udev/rules.d/78-sound-card.rules 29363 -lib/udev/rules.d/80-debian-compat.rules 29362 -lib/udev/rules.d/80-drivers.rules 29361 -lib/udev/rules.d/80-ifupdown.rules 29360 -lib/udev/rules.d/80-libinput-device-groups.rules 29359 -lib/udev/rules.d/80-mm-candidate.rules 29358 -lib/udev/rules.d/80-udisks2.rules 29357 -lib/udev/rules.d/84-nm-drivers.rules 29356 -lib/udev/rules.d/85-hdparm.rules 29355 -lib/udev/rules.d/85-hwclock.rules 29354 -lib/udev/rules.d/85-nm-unmanaged.rules 29353 -lib/udev/rules.d/85-regulatory.rules 29352 -lib/udev/rules.d/89-alsa-ucm.rules 29351 -lib/udev/rules.d/90-alsa-restore.rules 29350 -lib/udev/rules.d/90-bolt.rules 29349 -lib/udev/rules.d/90-console-setup.rules 29348 -lib/udev/rules.d/90-iphone-tether.rules 29347 -lib/udev/rules.d/90-libinput-model-quirks.rules 29346 -lib/udev/rules.d/90-nm-thunderbolt.rules 29345 -lib/udev/rules.d/90-pulseaudio.rules 29344 -lib/udev/rules.d/92-libccid.rules 29343 -lib/udev/rules.d/95-cd-devices.rules 29342 -lib/udev/rules.d/95-dm-notify.rules 29340 -lib/udev/rules.d/95-upower-csr.rules 29339 -lib/udev/rules.d/95-upower-hid.rules 29338 -lib/udev/rules.d/95-upower-wup.rules 29335 -etc/udev/rules.d/99-hide-TailsData.rules 29334 -lib/udev/rules.d/99-laptop-mode.rules 29333 -etc/udev/rules.d/99-make-removable-devices-user-writable.rules 29332 -lib/udev/rules.d/99-systemd.rules 29330 -lib/udev/rules.d/99-vmware-scsi-udev.rules 29328 -lib/modules/5.4.0-4-amd64/kernel/drivers/cpufreq/acpi-cpufreq.ko 29221 -lib/udev/libinput-device-group 29191 -lib/modules/5.4.0-4-amd64/kernel/drivers/cpufreq/pcc-cpufreq.ko 29190 -lib/modules/5.4.0-4-amd64/kernel/drivers/net/ethernet/intel/e1000e/e1000e.ko 29153 -lib/modules/5.4.0-4-amd64/kernel/drivers/net/wireless/intel/iwlwifi/iwlwifi.ko 29092 -bin/true 29070 -lib/systemd/system/systemd-udev-settle.service 29051 -lib/udev/ata_id 29030 -lib/firmware/iwlwifi-6000g2a-6.ucode 29029 -lib/udev/hwclock-set 28997 -lib/udev/libinput-model-quirks 28992 -lib/modules/5.4.0-4-amd64/kernel/lib/crypto/libarc4.ko 28991 -lib/udev/hdparm 28987 -lib/hdparm/hdparm-functions 28986 -lib/modules/5.4.0-4-amd64/kernel/net/mac80211/mac80211.ko 28945 -etc/hdparm.conf 28856 -sbin/ethtool 28810 -lib/udev/ifupdown-hotplug 28762 -etc/console-setup/cached_setup_terminal.sh 28750 -etc/console-setup/cached_setup_font.sh 28739 -bin/setfont 28731 -usr/share/consolefonts/Uni1-Fixed16.psf.gz 28717 -lib/modules/5.4.0-4-amd64/kernel/drivers/net/wireless/intel/iwlwifi/dvm/iwldvm.ko 28715 -usr/local/lib/tails-spoof-mac 28710 -usr/local/lib/tails-shell-library/hardware.sh 28709 -usr/local/lib/tails-shell-library/log.sh 28708 -usr/bin/gettext.sh 28707 -usr/bin/macchanger 28705 -usr/share/macchanger/OUI.list 28704 -lib/crda/setregdomain 28701 -etc/default/crda 28700 -lib/systemd/systemd-rfkill 28697 -usr/share/macchanger/wireless.list 28695 -bin/readlink 28694 -lib/udev/v4l_id 28683 -lib/bilibop/test 28673 -lib/bilibop/common.sh 28672 -bin/df 28659 -etc/bilibop/bilibop.conf 28658 -lib/systemd/system/NetworkManager.service 28640 -lib/systemd/system/NetworkManager-wait-online.service 28639 -lib/systemd/system/NetworkManager-dispatcher.service 28638 -etc/systemd/system.conf 28637 -lib/systemd/system.conf.d/lower-DefaultTimeoutStopSec.conf 28636 -lib/systemd/system-generators/live-config-getty-generator 28635 -lib/live/init-config.sh 28634 -etc/live/config.d/noroot.conf 28633 -etc/live/config.d/user-default-groups.conf 28632 -lib/systemd/system-generators/systemd-hibernate-resume-generator 28631 -lib/systemd/system-generators/systemd-cryptsetup-generator 28630 -lib/systemd/system-generators/systemd-fstab-generator 28629 -lib/systemd/system-generators/systemd-gpt-auto-generator 28628 -lib/systemd/system-generators/lvm2-activation-generator 28627 -lib/systemd/system-generators/systemd-debug-generator 28626 -lib/systemd/system-generators/systemd-rc-local-generator 28625 -lib/systemd/system-generators/systemd-veritysetup-generator 28624 -lib/systemd/system-generators/systemd-bless-boot-generator 28623 -lib/systemd/system-generators/systemd-system-update-generator 28622 -lib/systemd/system-generators/tor-generator 28621 -lib/systemd/system-generators/systemd-run-generator 28620 -lib/systemd/system-generators/systemd-sysv-generator 28619 -lib/systemd/system-generators/systemd-getty-generator 28618 -sbin/lvm 28617 -lib/x86_64-linux-gnu/libdevmapper-event.so.1.02.1 28616 -lib/x86_64-linux-gnu/libreadline.so.5.2 28615 -usr/lib/x86_64-linux-gnu/libaio.so.1.0.1 28614 -etc/lvm/lvm.conf 28613 -etc/lvm/lvmlocal.conf 28612 -etc/init.d/gdomap 28611 -lib/systemd/system/systemd-backlight@.service 28610 -lib/systemd/system/systemd-journald.socket 28609 -lib/systemd/system/systemd-journald.service 28608 -lib/systemd/system/syslog.socket 28607 -lib/systemd/system/emergency.service 28606 -lib/systemd/system/rescue.service 28605 -lib/systemd/system/plymouth-start.service 28604 -lib/systemd/system/systemd-ask-password-plymouth.service 28603 -lib/systemd/system/keyboard-setup.service 28602 -lib/systemd/system/local-fs-pre.target 28601 -lib/systemd/system/systemd-udevd.service 28600 -lib/systemd/system/systemd-udevd-kernel.socket 28599 -lib/systemd/system/systemd-udevd-control.socket 28598 -lib/systemd/system/systemd-hwdb-update.service 28597 -lib/systemd/system/systemd-sysusers.service 28596 -lib/systemd/system/systemd-udev-trigger.service 28595 -lib/systemd/system/systemd-ask-password-plymouth.path 28594 -lib/systemd/system/basic.target 28593 -lib/systemd/system/var-tmp.mount 28592 -lib/systemd/system/local-fs.target 28591 -lib/systemd/system/run-initramfs.mount 28590 -lib/systemd/system/initramfs-shutdown.service 28589 -lib/systemd/system/emergency.target 28588 -lib/systemd/system/umount.target 28587 -lib/systemd/system/live-config.service 28586 -lib/systemd/system/live-config.service.d/after-tmpfiles.conf 28585 -lib/systemd/system/systemd-tmpfiles-setup.service 28584 -lib/systemd/system/swap.target 28583 -lib/systemd/system/slices.target 28582 -lib/systemd/system/paths.target 28581 -lib/systemd/system/timers.target 28580 -lib/systemd/system/systemd-tmpfiles-clean.timer 28579 -lib/systemd/system/systemd-tmpfiles-clean.service 28578 -lib/systemd/system/time-sync.target 28577 -lib/systemd/system/logrotate.timer 28576 -lib/systemd/system/logrotate.service 28575 -lib/systemd/system/apt-daily-upgrade.timer 28574 -lib/systemd/system/apt-daily-upgrade.service 28573 -lib/systemd/system/dbus.socket 28572 -lib/systemd/system/dbus.service 28571 -lib/systemd/system/network-pre.target 28570 -lib/systemd/system/network-online.target 28569 -lib/systemd/system/networking.service 28568 -lib/systemd/system/systemd-modules-load.service 28567 -lib/systemd/system/systemd-sysctl.service 28566 -lib/systemd/system/apparmor.service 28565 -lib/systemd/system/ifupdown-pre.service 28564 -lib/systemd/system/network.target 28563 -lib/systemd/system/apt-daily.service 28562 -lib/systemd/system/systemd-journald-audit.socket 28561 -lib/systemd/system/systemd-journald-dev-log.socket 28560 -lib/systemd/system/sockets.target 28559 -lib/systemd/system/systemd-initctl.socket 28558 -lib/systemd/system/systemd-initctl.service 28557 -lib/systemd/system/spice-vdagentd.socket 28556 -lib/systemd/system/spice-vdagentd.service 28555 -lib/systemd/system/pcscd.socket 28554 -lib/systemd/system/pcscd.service 28553 -lib/systemd/system/dm-event.socket 28552 -lib/systemd/system/dm-event.service 28551 -lib/systemd/system/cups.socket 28550 -lib/systemd/system/cups.service 28549 -lib/systemd/system/cups.service.d/after-AppArmor.conf 28548 -lib/systemd/system/sysinit.target 28547 -lib/systemd/system/systemd-update-utmp.service 28546 -lib/systemd/system/systemd-tmpfiles-setup-dev.service 28545 -lib/systemd/system/systemd-random-seed.service 28544 -lib/systemd/system/systemd-machine-id-commit.service 28543 -lib/systemd/system/systemd-journal-flush.service 28542 -lib/systemd/system/systemd-binfmt.service 28541 -lib/systemd/system/systemd-ask-password-console.path 28540 -lib/systemd/system/systemd-ask-password-console.service 28539 -lib/systemd/system/sys-kernel-debug.mount 28538 -lib/systemd/system/sys-kernel-config.mount 28537 -lib/systemd/system/sys-fs-fuse-connections.mount 28536 -lib/systemd/system/proc-sys-fs-binfmt_misc.automount 28535 -lib/systemd/system/proc-sys-fs-binfmt_misc.mount 28534 -lib/systemd/system/plymouth-read-write.service 28533 -lib/systemd/system/lvm2-monitor.service 28532 -lib/systemd/system/lvm2-lvmpolld.socket 28531 -lib/systemd/system/lvm2-lvmpolld.service 28530 -lib/systemd/system/kmod-static-nodes.service 28529 -lib/systemd/system/ferm.service 28528 -lib/systemd/system/dev-mqueue.mount 28527 -lib/systemd/system/dev-hugepages.mount 28526 -lib/systemd/system/cryptsetup.target 28525 -lib/systemd/system/blk-availability.service 28524 -lib/systemd/system/systemd-remount-fs.service 28523 -lib/systemd/system/systemd-fsck-root.service 28522 -lib/systemd/system/systemd-fsckd.socket 28521 -lib/systemd/system/systemd-fsckd.service 28520 -lib/systemd/system/shutdown.target 28519 -lib/systemd/system/sound.target 28517 -lib/systemd/system/alsa-state.service 28516 -lib/systemd/system/alsa-restore.service 28515 -lib/systemd/system/alsa-restore.service.d/dont-store-state-on-shutdown.conf 28514 -lib/systemd/system/systemd-rfkill.socket 28512 -lib/systemd/system/systemd-rfkill.service 28511 -lib/systemd/system/getty.target 28510 -lib/systemd/system/getty@.service 28509 -lib/systemd/system/rc-local.service 28508 -lib/systemd/system/rc-local.service.d/debian.conf 28507 -lib/systemd/system/getty-pre.target 28506 -lib/systemd/system/plymouth-quit-wait.service 28505 -lib/systemd/system/systemd-user-sessions.service 28504 -lib/systemd/system/nss-user-lookup.target 28503 -lib/systemd/system/remote-fs.target 28502 -lib/systemd/system/remote-fs-pre.target 28501 -lib/systemd/system/getty-static.service 28500 -lib/systemd/system/vgauth.service 28499 -lib/systemd/system/open-vm-tools.service 28498 -lib/systemd/system/rsync.service 28497 -lib/systemd/system/lmt-poll.service 28496 -lib/systemd/system/rescue.target 28495 -lib/systemd/system/systemd-update-utmp-runlevel.service 28494 -lib/systemd/system/graphical.target 28493 -lib/systemd/system/udisks2.service 28492 -lib/systemd/system/accounts-daemon.service 28491 -lib/systemd/system/gdm.service 28490 -lib/systemd/system/gdm.service.d/failure.conf 28489 -lib/systemd/system/gdm.service.d/permissions.conf 28488 -lib/systemd/system/gdm.service.d/restart.conf 28487 -lib/systemd/system/tails-gdm-failed-to-start.service 28486 -lib/systemd/system/plymouth-quit.service 28485 -lib/systemd/system/multi-user.target 28484 -lib/systemd/system/wpa_supplicant.service 28483 -lib/systemd/system/virtualbox-guest-utils.service 28482 -lib/systemd/system/tails-synchronize-data-to-new-persistent-volume-on-shutdown.service 28481 -lib/systemd/system/tails-shutdown-on-media-removal.service 28480 -lib/systemd/system/tails-set-wireless-devices-state.service 28479 -lib/systemd/system/tails-autotest-remote-shell.service 28478 -lib/systemd/system/tails-autotest-broken-Xorg.service 28477 -lib/systemd/system/systemd-logind.service 28476 -lib/systemd/system/user.slice 28475 -lib/systemd/system/systemd-ask-password-wall.path 28474 -lib/systemd/system/systemd-ask-password-wall.service 28473 -lib/systemd/system/onion-grater.service 28472 -lib/systemd/system/memlockd.service 28471 -lib/systemd/system/memlockd.service.d/oom.conf 28470 -lib/systemd/system/laptop-mode.timer 28469 -lib/systemd/system/laptop-mode.service 28468 -lib/systemd/system/cron.service 28467 -lib/systemd/system/console-setup.service 28466 -lib/systemd/system/ModemManager.service 28465 -lib/systemd/system/haveged.service 28464 -usr/lib/NetworkManager/nm-dispatcher 28462 -usr/sbin/NetworkManager 28460 -usr/lib/x86_64-linux-gnu/libndp.so.0.1.0 28459 -usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4.5.0 28458 -usr/lib/x86_64-linux-gnu/libnghttp2.so.14.17.1 28457 -usr/lib/x86_64-linux-gnu/librtmp.so.1 28456 -usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1 28455 -usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10 28454 -usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10 28453 -usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25 28452 -usr/lib/NetworkManager/conf.d/no-mac-addr-change.conf 28451 -etc/NetworkManager/NetworkManager.conf 28450 -etc/NetworkManager/conf.d/dns.conf 28449 -etc/NetworkManager/conf.d/spoof-mac.conf 28448 -usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-settings-plugin-ifupdown.so 28446 -etc/network/interfaces 28444 -usr/bin/nm-online 28442 -usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-adsl.so 28441 -usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-bluetooth.so 28440 -usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-wwan.so 28439 -usr/lib/x86_64-linux-gnu/libbluetooth.so.3.18.16 28438 -usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-team.so 28437 -usr/lib/x86_64-linux-gnu/libteamdctl.so.0.1.5 28436 -usr/lib/x86_64-linux-gnu/libjansson.so.4.11.1 28435 -usr/bin/localectl 28434 -etc/NetworkManager/dispatcher.d/00-firewall.sh 28433 -usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-wifi.so 28432 -usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-wwan.so 28431 -etc/NetworkManager/dispatcher.d/00-resolv-over-clearnet 28430 -etc/NetworkManager/dispatcher.d/01-ifupdown 28427 -usr/share/systemd/language-fallback-map 28426 -etc/NetworkManager/dispatcher.d/01-wait-for-notification-recipient.sh 28425 -etc/NetworkManager/dispatcher.d/10-tor.sh 28424 -etc/NetworkManager/dispatcher.d/20-time.sh 28423 -usr/local/lib/tails-shell-library/gnome.sh 28422 -usr/local/lib/tails-shell-library/tor.sh 28421 -etc/NetworkManager/dispatcher.d/60-tor-ready.sh 28420 -etc/NetworkManager/dispatcher.d/70-upgrade-additional-software.sh 28419 -etc/dconf/db/ibus.d/00-upstream-settings 28417 -etc/dconf/db/local.d/00_Tails_defaults 28414 -usr/sbin/deluser 28411 -usr/share/perl/5.28.1/File/Find.pm 28410 -usr/share/perl/5.28.1/File/Basename.pm 28409 -usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Spec.pm 28408 -usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Spec/Unix.pm 28407 -usr/share/perl/5.28.1/File/Temp.pm 28406 -usr/share/perl/5.28.1/File/Path.pm 28405 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Errno.pm 28404 -usr/share/perl/5.28.1/Carp/Heavy.pm 28403 -etc/deluser.conf 28402 -usr/bin/passwd 28401 -etc/gdm3/PreSession/Default 28397 -etc/gdm3/Xsession 28383 -etc/profile 28382 -usr/bin/id 28381 -etc/profile.d/bash_completion.sh 28380 -etc/profile.d/vte-2.91.sh 28379 -usr/bin/expr 28378 -etc/X11/Xsession.d/20dbus_xdg-runtime 28377 -usr/bin/dbus-update-activation-environment 28376 -etc/X11/Xsession.d/20x11-common_process-args 28375 -etc/X11/Xsession.options 28374 -etc/X11/Xsession.d/30x11-common_xresources 28373 -bin/run-parts 28372 -usr/bin/xrdb 28371 -usr/lib/x86_64-linux-gnu/libXmuu.so.1.0.0 28370 -etc/X11/Xresources/x11-common 28369 -usr/bin/x86_64-linux-gnu-cpp-8 28368 -usr/lib/gcc/x86_64-linux-gnu/8/cc1 28367 -usr/lib/x86_64-linux-gnu/libisl.so.19.1.0 28366 -usr/lib/x86_64-linux-gnu/libmpc.so.3.1.0 28364 -usr/lib/x86_64-linux-gnu/libmpfr.so.6.0.2 28363 -etc/dhcp/dhclient.conf 28362 -sbin/dhclient 28360 -lib/x86_64-linux-gnu/libdns-export.so.1104.0.2 28359 -etc/X11/Xsession.d/35x11-common_xhost-local 28358 -usr/bin/xhost 28357 -etc/X11/Xsession.d/40x11-common_xsessionrc 28356 -lib/x86_64-linux-gnu/libisc-export.so.1100.0.0 28355 -etc/amnesia/environment 28354 -etc/X11/Xsession.d/50x11-common_determine-startup 28353 -etc/X11/Xsession.d/55gnome-session_gnomerc 28352 -etc/X11/Xsession.d/75dbus_dbus-launch 28351 -etc/X11/Xsession.d/90atk-adaptor 28350 -etc/X11/Xsession.d/90gpg-agent 28349 -etc/X11/Xsession.d/90qt-a11y 28348 -etc/services 28347 -usr/lib/NetworkManager/nm-dhcp-helper 28344 -etc/X11/Xsession.d/90x11-common_ssh-agent 28343 -etc/X11/Xsession.d/92tails-set-SSH_AUTH_SOCK 28342 -etc/X11/Xsession.d/95dbus_update-activation-env 28341 -etc/X11/Xsession.d/98vboxadd-xclient 28340 -etc/X11/Xsession.d/99x11-common_start 28339 -usr/share/gnome-session/sessions/gnome.session 28335 -etc/xdg/autostart/at-spi-dbus-bus.desktop 28334 -etc/xdg/autostart/gnome-keyring-pkcs11.desktop 28333 -etc/xdg/autostart/gnome-keyring-secrets.desktop 28332 -etc/xdg/autostart/gnome-keyring-ssh.desktop 28331 -etc/xdg/autostart/gnome-shell-overrides-migration.desktop 28330 -etc/xdg/autostart/nm-applet.desktop 28329 -etc/xdg/autostart/openpgp-applet.desktop 28328 -etc/xdg/autostart/orca-autostart.desktop 28327 -etc/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop 28326 -etc/xdg/autostart/org.gnome.SettingsDaemon.DiskUtilityNotify.desktop 28325 -etc/xdg/autostart/pulseaudio.desktop 28324 -etc/xdg/autostart/systemd-desktop-target.desktop 28323 -etc/xdg/autostart/systemd-gnome-early-initialization-target.desktop 28322 -etc/xdg/autostart/tracker-store.desktop 28321 -etc/xdg/autostart/user-dirs-update-gtk.desktop 28320 -etc/xdg/autostart/xdg-user-dirs.desktop 28319 -usr/lib/systemd/user/gnome-early-initialization.target 28316 -usr/lib/systemd/user/tails-configure-keyboard.service 28315 -usr/lib/systemd/user/tails-add-GNOME-bookmarks.service 28314 -usr/lib/systemd/user/gvfs-metadata.service 28313 -usr/lib/gvfs/gvfsd-metadata 28311 -usr/local/lib/tails-configure-keyboard 28309 -usr/local/lib/add-GNOME-bookmarks 28307 -usr/bin/dirname 28306 -usr/bin/gio 28305 -usr/lib/systemd/user/gvfs-daemon.service 28302 -usr/lib/gvfs/gvfsd 28300 -usr/lib/x86_64-linux-gnu/gvfs/libgvfsdaemon.so 28299 -usr/share/gvfs/mounts/admin.mount 28298 -usr/share/gvfs/mounts/afc.mount 28297 -usr/share/gvfs/mounts/afp-browse.mount 28296 -usr/share/gvfs/mounts/afp.mount 28295 -usr/share/gvfs/mounts/archive.mount 28294 -usr/share/gvfs/mounts/burn.mount 28293 -usr/share/gvfs/mounts/cdda.mount 28292 -usr/share/gvfs/mounts/computer.mount 28291 -usr/share/gvfs/mounts/dav+sd.mount 28290 -usr/share/gvfs/mounts/dav.mount 28289 -usr/share/gvfs/mounts/dns-sd.mount 28288 -usr/share/gvfs/mounts/ftp.mount 28287 -usr/share/gvfs/mounts/ftpis.mount 28286 -usr/share/gvfs/mounts/ftps.mount 28285 -usr/share/gvfs/mounts/google.mount 28284 -usr/share/gvfs/mounts/gphoto2.mount 28283 -usr/share/gvfs/mounts/http.mount 28282 -usr/share/gvfs/mounts/localtest.mount 28281 -usr/share/gvfs/mounts/mtp.mount 28280 -usr/share/gvfs/mounts/network.mount 28279 -usr/share/gvfs/mounts/nfs.mount 28278 -usr/share/gvfs/mounts/recent.mount 28277 -usr/share/gvfs/mounts/sftp.mount 28276 -usr/share/gvfs/mounts/smb-browse.mount 28275 -usr/share/gvfs/mounts/smb.mount 28274 -usr/share/gvfs/mounts/trash.mount 28273 -usr/bin/gnome-keyring-daemon 28270 -usr/share/gnome/applications/vim.desktop 28262 -usr/share/gnome/applications/display-im6.q16.desktop 28261 -usr/share/tails/screensaver_background.png 28260 -bin/false 28256 -etc/dconf/profile/ibus 28253 -usr/share/wayland-sessions/gnome.desktop 28252 -usr/share/gvfs/remote-volume-monitors/afc.monitor 28251 -usr/share/gvfs/remote-volume-monitors/goa.monitor 28250 -usr/share/gvfs/remote-volume-monitors/gphoto2.monitor 28249 -usr/share/gvfs/remote-volume-monitors/mtp.monitor 28248 -usr/share/gvfs/remote-volume-monitors/udisks2.monitor 28247 -usr/lib/systemd/user/gvfs-udisks2-volume-monitor.service 28246 -usr/lib/gvfs/gvfs-udisks2-volume-monitor 28244 -usr/lib/x86_64-linux-gnu/libbluray.so.2.1.0 28243 -usr/lib/systemd/user/gvfs-mtp-volume-monitor.service 28242 -usr/lib/gvfs/gvfs-mtp-volume-monitor 28240 -usr/sbin/ferm 28238 -usr/lib/systemd/user/gvfs-gphoto2-volume-monitor.service 28237 -usr/lib/gvfs/gvfs-gphoto2-volume-monitor 28235 -usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Glob.pm 28234 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/File/Glob/Glob.so 28233 -usr/lib/systemd/user/gvfs-goa-volume-monitor.service 28232 -usr/lib/gvfs/gvfs-goa-volume-monitor 28230 -usr/lib/x86_64-linux-gnu/libgoa-1.0.so.0.0.0 28229 -etc/ferm/ferm.conf 28228 -usr/sbin/xtables-nft-multi 28227 -lib/x86_64-linux-gnu/libmnl.so.0.2.0 28226 -usr/lib/x86_64-linux-gnu/libnftnl.so.11.0.0 28225 -usr/lib/x86_64-linux-gnu/libnetfilter_conntrack.so.3.7.0 28224 -usr/lib/x86_64-linux-gnu/libnfnetlink.so.0.2.0 28223 -usr/lib/x86_64-linux-gnu/libxtables.so.12.2.0 28222 -usr/lib/x86_64-linux-gnu/xtables/libxt_conntrack.so 28221 -usr/lib/x86_64-linux-gnu/xtables/libxt_standard.so 28220 -etc/protocols 28219 -usr/lib/x86_64-linux-gnu/xtables/libxt_tcp.so 28218 -usr/lib/x86_64-linux-gnu/xtables/libxt_owner.so 28217 -usr/lib/x86_64-linux-gnu/xtables/libxt_multiport.so 28216 -usr/lib/x86_64-linux-gnu/xtables/libxt_udp.so 28215 -usr/lib/x86_64-linux-gnu/xtables/libipt_LOG.so 28214 -usr/lib/x86_64-linux-gnu/xtables/libipt_REJECT.so 28213 -usr/lib/x86_64-linux-gnu/xtables/libipt_REDIRECT.so 28212 -usr/lib/systemd/user/gvfs-afc-volume-monitor.service 28211 -usr/lib/gvfs/gvfs-afc-volume-monitor 28209 -usr/lib/x86_64-linux-gnu/xtables/libip6t_LOG.so 28208 -usr/lib/x86_64-linux-gnu/xtables/libip6t_REJECT.so 28207 -usr/lib/x86_64-linux-gnu/xtables/libxt_state.so 28206 -usr/share/gnome-shell/search-providers/gnome-control-center-search-provider.ini 28205 -usr/share/gnome-shell/search-providers/gnome-terminal-search-provider.ini 28204 -usr/share/gnome-shell/search-providers/org.gnome.Calculator-search-provider.ini 28203 -usr/share/gnome-shell/search-providers/org.gnome.Nautilus.search-provider.ini 28202 -usr/share/gnome-shell/search-providers/seahorse-search-provider.ini 28201 -etc/network/if-up.d/ethtool 28200 -etc/wpa_supplicant/ifupdown.sh 28189 -etc/wpa_supplicant/functions.sh 28188 -usr/share/gnome-shell/extensions/TopIcons@phocean.net/metadata.json 28187 -usr/share/gnome-shell/extensions/TopIcons@phocean.net/extension.js 28182 -usr/share/gnome-shell/extensions/TopIcons@phocean.net/convenience.js 28181 -usr/bin/seq 28180 -usr/bin/xdg-user-dirs-update 28171 -usr/share/gnome-shell/extensions/alternate-tab@gnome-shell-extensions.gcampax.github.com/metadata.json 28169 -etc/xdg/user-dirs.conf 28167 -etc/xdg/user-dirs.defaults 28166 -usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 28161 -usr/bin/start-pulseaudio-x11 28158 -usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/extension.js 28155 -usr/bin/pactl 28154 -usr/lib/x86_64-linux-gnu/girepository-1.0/GMenu-3.0.typelib 28151 -lib/systemd/system/tor@default.service 28146 -usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/convenience.js 28145 -usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/stylesheet.css 28144 -lib/systemd/system/tor@default.service.d/fix-obfs4proxy.conf 28143 -lib/systemd/system/tor@default.service.d/writable-etc-tor.conf 28142 -lib/systemd/system/tails-wait-until-tor-has-bootstrapped.service 28139 -usr/lib/x86_64-linux-gnu/libgnome-menu-3.so.0.0.1 28138 -lib/systemd/system/tails-tor-has-bootstrapped.target 28137 -etc/xdg/menus/gnome-applications.menu 28136 -etc/xdg/menus/applications-merged/Tails.menu 28135 -lib/systemd/system/tails-tor-has-bootstrapped-flag-file.service 28134 -lib/systemd/system/tor.service 28133 -lib/systemd/system/nss-lookup.target 28132 -usr/lib/pulse-12.2/modules/module-x11-publish.so 28131 -usr/lib/pulse-12.2/modules/module-x11-cork-request.so 28130 -usr/sbin/cupsd 28128 -usr/lib/x86_64-linux-gnu/libpaper.so.1.1.2 28127 -usr/share/desktop-directories/ActionGames.directory 28126 -usr/share/desktop-directories/AdventureGames.directory 28125 -usr/share/desktop-directories/ArcadeGames.directory 28124 -usr/share/desktop-directories/AudioVideo.directory 28123 -usr/share/desktop-directories/BlocksGames.directory 28122 -usr/share/desktop-directories/BoardGames.directory 28121 -usr/share/desktop-directories/CardGames.directory 28120 -usr/share/desktop-directories/Debian.directory 28119 -usr/share/desktop-directories/Development.directory 28118 -usr/share/desktop-directories/Education.directory 28117 -usr/share/desktop-directories/Game.directory 28116 -usr/share/desktop-directories/GnomeScience.directory 28115 -usr/share/desktop-directories/Graphics.directory 28114 -usr/share/desktop-directories/KidsGames.directory 28113 -usr/share/desktop-directories/LogicGames.directory 28112 -usr/share/desktop-directories/Network.directory 28111 -usr/share/desktop-directories/Office.directory 28110 -usr/share/desktop-directories/RolePlayingGames.directory 28109 -usr/share/desktop-directories/Settings-System.directory 28108 -usr/share/desktop-directories/Settings.directory 28107 -usr/share/desktop-directories/SimulationGames.directory 28106 -usr/share/desktop-directories/SportsGames.directory 28105 -usr/share/desktop-directories/StrategyGames.directory 28104 -usr/share/desktop-directories/System-Tools.directory 28103 -usr/share/desktop-directories/Tails.directory 28102 -usr/share/desktop-directories/Utility-Accessibility.directory 28101 -usr/share/desktop-directories/Utility.directory 28100 -usr/share/desktop-directories/X-GNOME-Menu-Applications.directory 28099 -usr/share/desktop-directories/X-GNOME-Other.directory 28098 -usr/share/desktop-directories/X-GNOME-SystemSettings.directory 28097 -usr/share/desktop-directories/X-GNOME-Utilities.directory 28096 -usr/share/desktop-directories/X-GNOME-WebApplications.directory 28095 -usr/lib/pulse-12.2/modules/module-x11-xsmp.so 28094 -etc/cups/cups-files.conf 28093 -etc/cups/cupsd.conf 28092 -etc/papersize 28091 -usr/share/cups/mime/braille.types 28090 -usr/share/cups/mime/command.types 28089 -usr/share/cups/mime/cupsfilters.types 28088 -usr/share/cups/mime/mime.types 28087 -usr/share/cups/mime/pstotiff.types 28086 -etc/cups/raw.types 28085 -usr/share/cups/mime/braille.convs 28084 -usr/share/cups/mime/cupsfilters-ghostscript.convs 28083 -usr/share/cups/mime/cupsfilters-mupdf.convs 28082 -usr/share/cups/mime/cupsfilters-poppler.convs 28081 -usr/share/cups/mime/cupsfilters.convs 28080 -usr/share/cups/mime/mime.convs 28079 -usr/share/cups/mime/pstotiff.convs 28078 -usr/lib/gnome-settings-daemon/gsd-printer 28074 -usr/local/lib/end-profile 28071 -usr/lib/gnome-disk-utility/gsd-disk-utility-notify 28068 -usr/bin/gdbus 28065 -usr/bin/xdg-user-dirs-gtk-update 28062 -usr/lib/gnome-shell/gnome-shell-overrides-migration.sh 28059 -usr/lib/systemd/user/tracker-store.service 28056 -usr/bin/torsocks 28055 -usr/lib/tracker/tracker-store 28053 -usr/lib/x86_64-linux-gnu/tracker-2.0/libtracker-data.so.0.0.0 28052 -usr/lib/evolution/evolution-data-server/evolution-alarm-notify 28049 -usr/lib/x86_64-linux-gnu/libedataserverui-1.2.so.2.0.0 28048 -usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0 28047 -usr/lib/x86_64-linux-gnu/libical.so.3.0.4 28046 -usr/local/lib/start-systemd-desktop-target 28043 -sbin/getcap 28042 -usr/bin/openpgp-applet 28041 -usr/lib/x86_64-linux-gnu/torsocks/libtorsocks.so.0.0.0 28040 -etc/tor/torsocks.conf 28039 -usr/share/gnome-shell/extensions/auto-move-windows@gnome-shell-extensions.gcampax.github.com/metadata.json 28038 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/metadata.json 28037 -usr/bin/xargs 28036 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/extension.js 28035 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/prefs.js 28034 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopManager.js 28033 -usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.23.0.0 28030 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopGrid.js 28029 -usr/share/perl5/Gtk3.pm 28028 -usr/lib/x86_64-linux-gnu/tracker-2.0/libtracker-common.so.0.0.0 28027 -usr/lib/x86_64-linux-gnu/libgcr-ui-3.so.1.0.0 28026 -usr/local/sbin/restart-tor 28025 -usr/lib/x86_64-linux-gnu/libtracker-sparql-2.0.so.0.108.0 28024 -usr/lib/systemd/user/desktop.target 28023 -usr/lib/x86_64-linux-gnu/libwebkit2gtk-4.0.so.37.39.5 28022 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/createFolderDialog.js 28021 -usr/lib/x86_64-linux-gnu/libstemmer.so.0d.0.0 28020 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopIconsUtil.js 28019 -usr/lib/x86_64-linux-gnu/perl5/5.28/Cairo/GObject.pm 28018 -usr/lib/locale/C.UTF-8/LC_CTYPE 28017 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/fileItem.js 28016 -bin/tempfile 28015 -usr/share/tracker/domain-ontologies/default.rule 28014 -usr/lib/systemd/user/tails-wait-until-tor-has-bootstrapped.service 28013 -usr/lib/python3/dist-packages/sh.py 28012 -usr/lib/x86_64-linux-gnu/perl5/5.28/Cairo.pm 28011 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/dbusUtils.js 28010 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Cairo/Cairo.so 28009 -usr/lib/x86_64-linux-gnu/libcamel-1.2.so.62.0.0 28008 -usr/lib/systemd/user/tails-virt-notify-user.service 28007 -bin/su 28006 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Cairo/GObject/GObject.so 28005 -usr/lib/systemd/user/tails-upgrade-frontend.service 28004 -usr/share/tracker/ontologies/nepomuk/30-nie.ontology 28003 -usr/share/tor/tor-service-defaults-torrc 28002 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/stylesheet.css 28001 -etc/pam.d/su 28000 -usr/bin/tail 27999 -lib/x86_64-linux-gnu/security/pam_mail.so 27998 -usr/lib/systemd/user/tails-security-check.service 27997 -usr/share/tracker/ontologies/nepomuk/32-nco.ontology 27996 -usr/share/tracker/ontologies/nepomuk/33-nfo.ontology 27995 -usr/share/tracker/ontologies/nepomuk/34-nmo.ontology 27988 -usr/share/tracker/ontologies/nepomuk/35-ncal.ontology 27987 -usr/share/tracker/ontologies/nepomuk/36-scal.ontology 27986 -usr/share/gnome-shell/extensions/drive-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 27985 -usr/local/lib/tails-htp-notify-user 27984 -usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com/metadata.json 27981 -usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-extensions.gcampax.github.com/metadata.json 27980 -usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 27979 -usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/extension.js 27978 -usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/convenience.js 27977 -usr/share/tracker/ontologies/nepomuk/37-nid3.ontology 27970 -usr/share/tracker/ontologies/nepomuk/38-nmm.ontology 27969 -usr/share/tracker/ontologies/nepomuk/39-mto.ontology 27968 -usr/lib/x86_64-linux-gnu/libgdata.so.22.3.0 27967 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Data/Dumper.pm 27966 -usr/lib/systemd/user/tails-kill-gdm-session.service 27963 -usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/placeDisplay.js 27960 -usr/lib/x86_64-linux-gnu/libxslt.so.1.1.32 27959 -usr/lib/x86_64-linux-gnu/libjavascriptcoregtk-4.0.so.18.14.9 27958 -usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/stylesheet.css 27957 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Data/Dumper/Dumper.so 27952 -usr/lib/python3.7/ast.py 27951 -usr/share/gnome-shell/extensions/screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com/metadata.json 27950 -usr/share/perl5/Desktop/Notify.pm 27949 -usr/lib/python3.7/pty.py 27944 -usr/lib/systemd/user/tails-additional-software-install.service 27941 -usr/lib/python3.7/tty.py 27940 -usr/share/tracker/ontologies/nepomuk/40-mlo.ontology 27939 -usr/share/tracker/ontologies/nepomuk/41-mfo.ontology 27938 -usr/share/tracker/ontologies/nepomuk/89-mtp.ontology 27937 -usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/metadata.json 27936 -usr/share/tracker/ontologies/nepomuk/90-tracker.ontology 27935 -usr/share/tracker/ontologies/nepomuk/91-maemo.ontology 27934 -usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js 27933 -usr/share/tracker/ontologies/nepomuk/92-slo.ontology 27932 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus.pm 27931 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/DBus/DBus.so 27930 -usr/share/tracker/ontologies/nepomuk/93-libosinfo.ontology 27929 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Bus.pm 27926 -usr/lib/python3.7/lib-dynload/resource.cpython-37m-x86_64-linux-gnu.so 27925 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Connection.pm 27924 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message/MethodCall.pm 27923 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message.pm 27922 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Iterator.pm 27921 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message/Signal.pm 27920 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message/MethodReturn.pm 27919 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message/Error.pm 27918 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/PendingCall.pm 27917 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Service.pm 27916 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/RemoteService.pm 27915 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/RemoteObject.pm 27914 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Introspector.pm 27913 -usr/share/perl5/XML/Twig.pm 27912 -usr/share/perl/5.28.1/UNIVERSAL.pm 27911 -usr/local/lib/tails-virt-notify-user 27908 -usr/share/perl/5.28.1/utf8.pm 27907 -usr/lib/x86_64-linux-gnu/girepository-1.0/GdkPixdata-2.0.typelib 27905 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/Parser.pm 27903 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/Parser/Expat.pm 27902 -usr/lib/python3/dist-packages/tailslib/__init__.py 27901 -usr/lib/python3/dist-packages/tailslib/systemd.py 27900 -usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/lib.js 27899 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/XML/Parser/Expat/Expat.so 27898 -usr/lib/python3/dist-packages/tailslib/exceptions.py 27897 -usr/share/gnome-shell/extensions/torstatus@tails.boum.org/metadata.json 27896 -usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js 27895 -usr/share/perl/5.28.1/integer.pm 27894 -usr/share/tor/geoip 27893 -usr/share/perl/5.28.1/Math/BigInt/Calc.pm 27892 -usr/share/perl5/GnuPG/Options.pm 27891 -usr/share/perl5/MooX/HandlesVia.pm 27890 -usr/share/perl5/Moo/Role.pm 27889 -usr/share/perl5/Role/Tiny.pm 27888 -usr/share/icons/hicolor/scalable/status/tor-disconnected-symbolic.svg 27887 -usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf 27886 -usr/share/perl5/GnuPG/HashInit.pm 27885 -usr/share/perl5/Type/Utils.pm 27884 -usr/share/perl5/Type/Library.pm 27883 -usr/share/icons/Adwaita/16x16/places/folder-documents-symbolic.symbolic.png 27882 -usr/share/icons/Adwaita/16x16/places/folder-pictures-symbolic.symbolic.png 27881 -usr/share/icons/Adwaita/16x16/places/folder-music-symbolic.symbolic.png 27880 -usr/share/icons/Adwaita/16x16/places/folder-download-symbolic.symbolic.png 27879 -usr/share/tracker/stop-words/stopwords.en 27878 -usr/share/icons/Adwaita/16x16/places/folder-videos-symbolic.symbolic.png 27877 -usr/share/icons/Adwaita/16x16/places/user-desktop-symbolic.symbolic.png 27876 -usr/share/icons/Adwaita/16x16/mimetypes/inode-directory-symbolic.symbolic.png 27875 -usr/share/icons/Adwaita/16x16/places/user-home-symbolic.symbolic.png 27874 -usr/share/perl5/Eval/TypeTiny.pm 27873 -usr/share/perl5/Exporter/Tiny.pm 27872 -usr/bin/xxd 27871 -usr/share/perl5/Type/Tiny.pm 27870 -bin/nc.openbsd 27869 -usr/share/perl5/Types/TypeTiny.pm 27868 -usr/lib/x86_64-linux-gnu/perl5/5.28/Type/Tiny/XS.pm 27867 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Type/Tiny/XS/XS.so 27866 -usr/share/perl5/Type/Registry.pm 27865 -usr/share/perl5/Type/Parser.pm 27864 -usr/share/perl5/Types/Standard.pm 27863 -usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc 27862 -usr/share/tor/geoip6 27861 -usr/share/perl5/Type/Coercion.pm 27860 -usr/lib/systemd/user/evolution-source-registry.service 27859 -usr/lib/evolution/evolution-source-registry 27857 -usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0 27856 -usr/share/perl5/Data/Perl/Collection/Array/MooseLike.pm 27855 -usr/share/perl5/strictures.pm 27854 -usr/share/perl5/Role/Tiny/With.pm 27853 -usr/lib/x86_64-linux-gnu/libdb-5.3.so 27852 -usr/share/perl5/Class/Method/Modifiers.pm 27851 -usr/share/perl5/Data/Perl/Role/Collection/Array.pm 27850 -usr/lib/x86_64-linux-gnu/perl5/5.28/List/MoreUtils.pm 27849 -usr/lib/x86_64-linux-gnu/perl5/5.28/List/MoreUtils/PP.pm 27848 -usr/lib/x86_64-linux-gnu/perl5/5.28/List/MoreUtils/XS.pm 27847 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/List/MoreUtils/MoreUtils.so 27846 -usr/share/perl5/GnuPG/Handles.pm 27845 -usr/share/perl5/GnuPG/Interface.pm 27844 -usr/share/perl5/DateTime/Locale/FromData.pm 27843 -usr/share/perl5/DateTime/Locale/Util.pm 27842 -usr/share/perl5/DateTime/Locale.pm 27841 -usr/share/perl5/DateTime/TimeZone.pm 27840 -usr/share/perl5/DateTime/TimeZone/Catalog.pm 27839 -usr/share/perl5/DateTime/TimeZone/Floating.pm 27838 -usr/share/perl5/Class/Singleton.pm 27837 -usr/share/perl5/DateTime/TimeZone/OffsetOnly.pm 27836 -usr/share/perl5/DateTime/TimeZone/UTC.pm 27835 -usr/share/perl5/DateTime/TimeZone/Local.pm 27834 -usr/share/perl5/DateTime/TimeZone/OlsonDB/Change.pm 27833 -usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime.pm 27832 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/DateTime/DateTime.so 27831 -usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime/Infinite.pm 27830 -usr/lib/systemd/user/evolution-calendar-factory.service 27829 -usr/lib/evolution/evolution-calendar-factory 27827 -usr/lib/x86_64-linux-gnu/libedata-cal-1.2.so.29.0.0 27826 -usr/lib/x86_64-linux-gnu/liboauth.so.0.8.7 27825 -usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Select.pm 27824 -usr/share/perl5/Locale/TextDomain.pm 27823 -usr/share/perl5/Locale/Messages.pm 27822 -usr/share/perl5/Locale/gettext_pp.pm 27821 -usr/share/perl/5.28.1/locale.pm 27820 -usr/share/perl5/Locale/Recode.pm 27819 -usr/share/perl5/Locale/Recode/_Conversions.pm 27818 -usr/lib/evolution-data-server/calendar-backends/libecalbackendcaldav.so 27817 -usr/lib/evolution-data-server/calendar-backends/libecalbackendcontacts.so 27816 -usr/lib/x86_64-linux-gnu/libebook-1.2.so.19.1.3 27815 -usr/share/perl5/Method/Generate/BuildAll.pm 27814 -usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0 27813 -usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0 27812 -usr/lib/x86_64-linux-gnu/libphonenumber.so.7.0 27811 -usr/share/X11/xkb/symbols/kr 27810 -usr/lib/x86_64-linux-gnu/libprotobuf.so.17.0.0 27809 -usr/share/icons/Adwaita/16x16/devices/network-wired-symbolic.symbolic.png 27808 -usr/share/icons/hicolor/16x16/apps/seahorse.png 27807 -usr/share/icons/Adwaita/16x16/status/dialog-information-symbolic.symbolic.png 27806 -usr/lib/x86_64-linux-gnu/libboost_date_time.so.1.67.0 27805 -usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.67.0 27804 -usr/share/perl5/auto/share/dist/OpenPGP_Applet/LocaleData/en/LC_MESSAGES/OpenPGP_Applet.mo 27803 -usr/lib/x86_64-linux-gnu/libboost_system.so.1.67.0 27802 -usr/lib/x86_64-linux-gnu/libboost_thread.so.1.67.0 27801 -usr/lib/x86_64-linux-gnu/libboost_chrono.so.1.67.0 27800 -usr/lib/x86_64-linux-gnu/libboost_atomic.so.1.67.0 27799 -usr/share/icons/Adwaita/16x16/actions/window-close-symbolic.symbolic.png 27798 -usr/share/perl5/auto/share/dist/OpenPGP_Applet/pixmaps/22x22/OpenPGP_Applet-text.png 27797 -usr/lib/evolution-data-server/calendar-backends/libecalbackendfile.so 27796 -usr/lib/evolution-data-server/calendar-backends/libecalbackendgtasks.so 27795 -usr/lib/evolution-data-server/calendar-backends/libecalbackendhttp.so 27794 -usr/lib/evolution-data-server/calendar-backends/libecalbackendweather.so 27793 -usr/lib/evolution-data-server/camel-providers/libcamelimapx.urls 27792 -usr/lib/evolution-data-server/camel-providers/libcamellocal.urls 27791 -usr/lib/evolution-data-server/camel-providers/libcamelnntp.urls 27790 -usr/lib/evolution-data-server/camel-providers/libcamelpop3.urls 27789 -usr/lib/evolution-data-server/camel-providers/libcamelsendmail.urls 27788 -usr/lib/evolution-data-server/camel-providers/libcamelsmtp.urls 27787 -usr/lib/evolution-data-server/camel-providers/libcamellocal.so 27786 -usr/lib/evolution-data-server/camel-providers/libcamelimapx.so 27785 -usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so 27784 -usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so 27783 -usr/lib/evolution-data-server/camel-providers/libcamelnntp.so 27782 -usr/lib/evolution-data-server/camel-providers/libcamelpop3.so 27781 -bin/chvt 27780 -usr/lib/systemd/user/evolution-addressbook-factory.service 27779 -usr/share/zoneinfo/zone.tab 27778 -usr/lib/evolution/evolution-addressbook-factory 27776 -usr/lib/evolution-data-server/addressbook-backends/libebookbackendcarddav.so 27775 -usr/lib/evolution-data-server/addressbook-backends/libebookbackendfile.so 27774 -usr/lib/evolution-data-server/addressbook-backends/libebookbackendgoogle.so 27773 -usr/lib/evolution-data-server/addressbook-backends/libebookbackendldap.so 27772 -var/log/tor/log 27770 -usr/bin/nautilus 27765 -usr/lib/gvfs/gvfsd-trash 27764 -usr/lib/x86_64-linux-gnu/libnautilus-extension.so.1.5.0 27763 -usr/lib/x86_64-linux-gnu/libgnome-autoar-0.so.0.0.0 27762 -usr/lib/x86_64-linux-gnu/libarchive.so.13.3.3 27761 -usr/share/thumbnailers/evince.thumbnailer 27760 -usr/share/thumbnailers/gdk-pixbuf-thumbnailer.thumbnailer 27759 -usr/share/thumbnailers/librsvg.thumbnailer 27758 -usr/share/thumbnailers/totem.thumbnailer 27757 -usr/share/icons/Adwaita/48x48/places/user-trash.png 27756 -usr/share/icons/Adwaita/24x24/emblems/emblem-symbolic-link.png 27755 -usr/share/pixmaps/whisperback.svg 27754 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libevince-properties-page.so 27753 -usr/lib/x86_64-linux-gnu/libevdocument3.so.4.0.0 27752 -usr/lib/x86_64-linux-gnu/libsynctex.so.2.0.0 27751 -usr/lib/x86_64-linux-gnu/evince/4/backends/comicsdocument.evince-backend 27750 -usr/lib/x86_64-linux-gnu/evince/4/backends/djvudocument.evince-backend 27749 -usr/lib/x86_64-linux-gnu/evince/4/backends/dvidocument.evince-backend 27748 -usr/lib/x86_64-linux-gnu/evince/4/backends/pdfdocument.evince-backend 27747 -usr/lib/x86_64-linux-gnu/evince/4/backends/psdocument.evince-backend 27746 -usr/lib/x86_64-linux-gnu/evince/4/backends/tiffdocument.evince-backend 27745 -usr/lib/x86_64-linux-gnu/evince/4/backends/xpsdocument.evince-backend 27744 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libgtkhash-properties-nautilus.so 27743 -usr/lib/x86_64-linux-gnu/libb2.so.1.0.4 27742 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-fileroller.so 27741 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-image-properties.so 27740 -usr/lib/x86_64-linux-gnu/libgexiv2.so.2.0.0 27739 -usr/lib/x86_64-linux-gnu/libexiv2.so.14.0.0 27738 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-python.so 27737 -usr/lib/x86_64-linux-gnu/libpython2.7.so.1.0 27736 -usr/lib/python2.7/site.py 27735 -usr/lib/python2.7/os.py 27734 -usr/bin/inotifywait 27733 -usr/lib/python2.7/posixpath.py 27732 -usr/lib/x86_64-linux-gnu/libinotifytools.so.0.4.1 27731 -usr/lib/python2.7/stat.py 27730 -usr/lib/python2.7/genericpath.py 27729 -usr/lib/python2.7/warnings.py 27728 -usr/lib/python2.7/linecache.py 27727 -usr/lib/python2.7/types.py 27726 -usr/lib/python2.7/UserDict.py 27725 -usr/lib/python2.7/_abcoll.py 27724 -usr/lib/python2.7/abc.py 27723 -usr/lib/python2.7/_weakrefset.py 27722 -usr/lib/python2.7/copy_reg.py 27721 -usr/lib/python2.7/traceback.py 27720 -usr/lib/python2.7/sysconfig.py 27719 -usr/lib/python2.7/re.py 27718 -usr/lib/python2.7/sre_compile.py 27717 -usr/lib/python2.7/sre_parse.py 27716 -usr/lib/python2.7/sre_constants.py 27715 -usr/lib/python2.7/_sysconfigdata.py 27714 -usr/lib/python2.7/plat-x86_64-linux-gnu/_sysconfigdata_nd.py 27713 -etc/python2.7/sitecustomize.py 27712 -usr/lib/python2.7/encodings/__init__.py 27711 -usr/lib/python2.7/codecs.py 27710 -usr/lib/python2.7/encodings/aliases.py 27709 -usr/lib/python2.7/encodings/utf_8.py 27708 -usr/lib/python2.7/dist-packages/gi/__init__.py 27707 -usr/lib/python2.7/__future__.py 27706 -usr/lib/python2.7/pkgutil.py 27705 -usr/lib/python2.7/importlib/__init__.py 27704 -usr/lib/python2.7/dist-packages/gi/_gi.x86_64-linux-gnu.so 27703 -usr/lib/python2.7/dist-packages/gi/_error.py 27702 -usr/lib/python2.7/dist-packages/gi/_compat.py 27701 -usr/lib/python2.7/StringIO.py 27700 -usr/lib/python2.7/UserList.py 27699 -usr/lib/python2.7/collections.py 27698 -usr/lib/python2.7/keyword.py 27697 -usr/lib/python2.7/heapq.py 27696 -usr/lib/x86_64-linux-gnu/girepository-1.0/Nautilus-3.0.typelib 27695 -usr/lib/python2.7/dist-packages/gi/repository/__init__.py 27694 -usr/lib/python2.7/dist-packages/gi/importer.py 27693 -usr/lib/python2.7/contextlib.py 27692 -usr/lib/python2.7/functools.py 27691 -usr/lib/python2.7/dist-packages/gi/module.py 27690 -usr/lib/python2.7/string.py 27689 -usr/lib/python2.7/dist-packages/gi/types.py 27688 -usr/lib/python2.7/dist-packages/gi/_constants.py 27687 -usr/lib/python2.7/dist-packages/gi/docstring.py 27686 -usr/lib/python2.7/dist-packages/gi/_propertyhelper.py 27685 -usr/lib/python2.7/dist-packages/gi/_signalhelper.py 27684 -usr/lib/python2.7/dist-packages/gi/overrides/__init__.py 27683 -usr/lib/python2.7/dist-packages/gi/overrides/GLib.py 27682 -usr/lib/python2.7/socket.py 27681 -usr/lib/python2.7/lib-dynload/_ssl.x86_64-linux-gnu.so 27680 -usr/lib/python2.7/dist-packages/gi/_ossighelper.py 27679 -usr/lib/python2.7/threading.py 27678 -usr/lib/python2.7/dist-packages/gi/_option.py 27677 -usr/lib/python2.7/optparse.py 27676 -usr/lib/python2.7/textwrap.py 27675 -usr/lib/python2.7/gettext.py 27674 -usr/lib/python2.7/locale.py 27673 -usr/lib/python2.7/copy.py 27672 -usr/lib/python2.7/weakref.py 27671 -usr/lib/python2.7/struct.py 27669 -usr/lib/python2.7/dist-packages/gi/overrides/GObject.py 27668 -usr/lib/python2.7/dist-packages/gi/overrides/Pango.py 27666 -usr/lib/python2.7/dist-packages/gi/overrides/Gio.py 27664 -usr/lib/python2.7/dist-packages/gi/overrides/GdkPixbuf.py 27663 -usr/lib/python2.7/dist-packages/gi/overrides/Gdk.py 27662 -usr/lib/python2.7/dist-packages/gi/overrides/Gtk.py 27661 -usr/lib/python2.7/dist-packages/gi/_gtktemplate.py 27660 -usr/share/nautilus-python/extensions/mat2.py 27659 -usr/bin/sort 27658 -usr/lib/python2.7/Queue.py 27657 -usr/lib/python2.7/urlparse.py 27656 -usr/lib/python2.7/subprocess.py 27655 -usr/lib/python2.7/pickle.py 27654 -usr/lib/python2.7/mimetypes.py 27653 -usr/lib/python2.7/urllib.py 27652 -usr/lib/python2.7/base64.py 27651 -usr/lib/python2.7/ssl.py 27650 -usr/share/nautilus-python/extensions/onionshare-nautilus.py 27649 -usr/lib/python2.7/json/__init__.py 27648 -usr/lib/python2.7/json/decoder.py 27647 -usr/lib/python2.7/json/scanner.py 27646 -usr/lib/python2.7/lib-dynload/_json.x86_64-linux-gnu.so 27645 -usr/lib/python2.7/json/encoder.py 27644 -usr/share/onionshare/locale/cs.json 27643 -usr/share/onionshare/locale/da.json 27642 -usr/share/onionshare/locale/de.json 27641 -usr/share/onionshare/locale/en.json 27640 -usr/share/onionshare/locale/eo.json 27639 -usr/share/onionshare/locale/es.json 27638 -usr/share/onionshare/locale/fi.json 27637 -usr/share/onionshare/locale/fr.json 27636 -usr/share/onionshare/locale/it.json 27635 -usr/share/onionshare/locale/nl.json 27634 -usr/share/onionshare/locale/no.json 27633 -usr/share/onionshare/locale/pt.json 27632 -usr/share/onionshare/locale/ru.json 27631 -usr/share/onionshare/locale/tr.json 27630 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-seahorse.so 27629 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-sendto.so 27628 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-wipe.so 27627 -usr/lib/x86_64-linux-gnu/libgsecuredelete.so.0.1.0 27626 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libterminal-nautilus.so 27625 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libtotem-properties-page.so 27624 -usr/lib/x86_64-linux-gnu/libgstpbutils-1.0.so.0.1404.0 27623 -usr/lib/x86_64-linux-gnu/libgstvideo-1.0.so.0.1404.0 27622 -usr/lib/x86_64-linux-gnu/libgstaudio-1.0.so.0.1404.0 27621 -usr/lib/x86_64-linux-gnu/libgsttag-1.0.so.0.1404.0 27620 -usr/share/icons/hicolor/scalable/status/tor-connected-symbolic.svg 27614 -usr/local/bin/tails-upgrade-frontend-wrapper 27612 -usr/local/bin/tails-security-check 27610 -usr/share/perl5/Carp/Assert/More.pm 27609 -usr/share/perl5/Carp/Assert.pm 27608 -usr/share/perl/5.28.1/Fatal.pm 27607 -usr/share/perl/5.28.1/Tie/RefHash.pm 27606 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl 27605 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_git.pl 27604 -usr/share/perl/5.28.1/autodie/Util.pm 27603 -usr/share/perl/5.28.1/autodie/Scope/GuardStack.pm 27602 -usr/share/perl/5.28.1/autodie/Scope/Guard.pm 27601 -usr/local/share/perl/5.28.1/Tails/Download/HTTPS.pm 27596 -usr/share/perl5/Moo/sification.pm 27595 -usr/share/perl5/Moo/_strictures.pm 27594 -usr/share/perl5/Devel/GlobalDestruction.pm 27593 -usr/share/perl5/Sub/Exporter/Progressive.pm 27592 -usr/share/perl5/Moo.pm 27591 -usr/share/perl5/Moo/_mro.pm 27590 -usr/lib/x86_64-linux-gnu/perl/5.28.1/mro.pm 27589 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/mro/mro.so 27588 -usr/share/perl5/Moo/_Utils.pm 27587 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Sub/Util.pm 27586 -usr/share/perl5/Module/Runtime.pm 27585 -usr/share/perl5/Moo/HandleMoose/_TypeMap.pm 27584 -usr/share/perl5/Moo/Object.pm 27583 -usr/share/perl/5.28.1/autodie.pm 27582 -usr/share/perl5/IPC/System/Simple.pm 27581 -usr/share/perl/5.28.1/autodie/exception/system.pm 27580 -usr/share/perl/5.28.1/autodie/exception.pm 27579 -usr/lib/x86_64-linux-gnu/perl5/5.28/Function/Parameters.pm 27578 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Function/Parameters/Parameters.so 27565 -usr/lib/x86_64-linux-gnu/perl5/5.28/WWW/Curl/Easy.pm 27556 -usr/lib/x86_64-linux-gnu/perl5/5.28/WWW/Curl.pm 27555 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/WWW/Curl/Curl.so 27554 -usr/share/perl5/namespace/clean.pm 27553 -usr/share/perl5/B/Hooks/EndOfScope.pm 27552 -usr/share/perl5/Module/Implementation.pm 27551 -usr/share/perl5/Try/Tiny.pm 27550 -usr/share/perl5/B/Hooks/EndOfScope/XS.pm 27549 -usr/lib/x86_64-linux-gnu/perl5/5.28/Variable/Magic.pm 27548 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Variable/Magic/Magic.so 27547 -usr/share/perl5/Package/Stash.pm 27546 -usr/lib/x86_64-linux-gnu/perl5/5.28/Package/Stash/XS.pm 27545 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Package/Stash/XS/XS.so 27544 -usr/share/perl5/namespace/clean/_Util.pm 27543 -usr/share/perl5/Method/Generate/Constructor.pm 27542 -usr/share/perl5/Sub/Quote.pm 27541 -usr/share/perl5/Sub/Defer.pm 27540 -usr/lib/x86_64-linux-gnu/perl/5.28.1/B.pm 27539 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/B/B.so 27538 -usr/share/perl5/Method/Generate/Accessor.pm 27537 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/XSAccessor.pm 27536 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/XSAccessor/Heavy.pm 27535 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Class/XSAccessor/XSAccessor.so 27534 -usr/share/perl5/XML/Atom.pm 27533 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML.pm 27532 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/Error.pm 27531 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/NodeList.pm 27530 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/Boolean.pm 27529 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/Number.pm 27528 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/Literal.pm 27527 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/XPathContext.pm 27526 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/XML/LibXML/LibXML.so 27525 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/AttributeHash.pm 27524 -usr/share/perl5/XML/SAX/Exception.pm 27523 -usr/share/perl5/XML/Atom/ErrorHandler.pm 27522 -usr/share/perl5/XML/Atom/Feed.pm 27521 -usr/share/perl5/XML/Atom/Thing.pm 27520 -usr/share/perl5/XML/Atom/Base.pm 27519 -usr/share/perl5/Class/Data/Inheritable.pm 27518 -usr/share/perl5/XML/Atom/Util.pm 27517 -usr/share/perl5/XML/Atom/Category.pm 27516 -usr/share/perl5/XML/Atom/Link.pm 27515 -usr/share/perl5/LWP/UserAgent.pm 27514 -usr/share/perl5/LWP/MemberMixin.pm 27513 -usr/share/perl5/HTTP/Request.pm 27512 -usr/share/perl5/HTTP/Message.pm 27511 -usr/share/perl5/HTTP/Headers.pm 27510 -usr/share/perl5/URI.pm 27509 -usr/share/perl5/URI/Escape.pm 27508 -usr/share/perl5/HTTP/Response.pm 27507 -usr/share/perl5/HTTP/Status.pm 27506 -usr/share/perl5/HTTP/Date.pm 27505 -usr/share/perl/5.28.1/Time/Local.pm 27504 -usr/share/perl5/LWP.pm 27503 -usr/share/perl5/LWP/Protocol.pm 27502 -usr/share/perl5/XML/Atom/Entry.pm 27501 -usr/lib/x86_64-linux-gnu/perl/5.28.1/MIME/Base64.pm 27500 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/MIME/Base64/Base64.so 27499 -usr/share/perl5/XML/Atom/Person.pm 27498 -usr/share/perl5/XML/Atom/Content.pm 27497 -lib/systemd/system/htpdate.service 27495 -etc/default/htpdate.pools 27494 -usr/local/sbin/htpdate 27486 -usr/share/perl/5.28.1/version.pm 27485 -usr/share/perl/5.28.1/version/regex.pm 27484 -usr/share/perl5/namespace/autoclean.pm 27483 -usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime/Duration.pm 27482 -usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime/Helpers.pm 27481 -usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime/Types.pm 27480 -usr/share/perl5/Specio/Exporter.pm 27479 -usr/share/perl5/Specio/Helpers.pm 27478 -usr/share/perl5/Specio/Registry.pm 27477 -usr/share/perl5/Specio.pm 27476 -usr/share/perl5/Specio/Declare.pm 27475 -usr/share/perl5/Specio/Coercion.pm 27474 -usr/share/perl5/Specio/OO.pm 27473 -usr/share/perl5/MRO/Compat.pm 27472 -usr/share/perl5/Specio/PartialDump.pm 27471 -usr/share/perl5/Specio/TypeChecks.pm 27470 -usr/share/perl5/Specio/Role/Inlinable.pm 27469 -usr/share/perl5/Eval/Closure.pm 27468 -usr/share/perl5/Specio/Constraint/Simple.pm 27467 -usr/share/perl5/Specio/Constraint/Role/Interface.pm 27466 -usr/share/perl5/Specio/Exception.pm 27465 -usr/share/perl5/Devel/StackTrace.pm 27464 -usr/share/perl5/Devel/StackTrace/Frame.pm 27463 -usr/share/perl5/Specio/DeclaredAt.pm 27462 -usr/share/perl5/Specio/Library/Builtins.pm 27461 -usr/share/perl5/Specio/Constraint/Parameterizable.pm 27460 -usr/share/perl5/Specio/Constraint/Parameterized.pm 27459 -usr/local/etc/ssl/certs/tails.boum.org-CA.pem 27458 -usr/share/perl5/Specio/Library/Numeric.pm 27457 -usr/share/perl5/Specio/Library/String.pm 27456 -usr/lib/x86_64-linux-gnu/perl5/5.28/Sub/Identify.pm 27455 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Sub/Identify/Identify.so 27454 -usr/share/perl5/Specio/Constraint/AnyCan.pm 27453 -usr/share/perl5/Specio/Constraint/Role/CanType.pm 27452 -usr/share/perl5/Specio/Constraint/ObjectIsa.pm 27451 -usr/share/perl5/Specio/Constraint/Role/IsaType.pm 27450 -usr/share/perl5/Specio/Constraint/Enum.pm 27449 -usr/share/perl5/Specio/Constraint/Union.pm 27448 -usr/share/perl5/Specio/Constraint/ObjectCan.pm 27447 -usr/share/perl5/Params/ValidationCompiler.pm 27446 -usr/share/perl5/Params/ValidationCompiler/Compiler.pm 27445 -usr/share/perl5/Params/ValidationCompiler/Exceptions.pm 27444 -usr/share/perl5/Exception/Class.pm 27443 -usr/share/perl5/Exception/Class/Base.pm 27442 -usr/share/perl5/DateTime/Locale/Data.pm 27441 -usr/share/perl5/File/ShareDir.pm 27440 -usr/share/perl5/Class/Inspector.pm 27439 -usr/lib/x86_64-linux-gnu/perl5/5.28/Params/Util.pm 27438 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Params/Util/Util.so 27437 -usr/share/perl5/DateTime/Format/DateParse.pm 27436 -usr/share/perl5/Date/Parse.pm 27435 -usr/share/perl5/Time/Zone.pm 27434 -usr/share/perl/5.28.1/English.pm 27433 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Tie/Hash/NamedCapture.pm 27432 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Tie/Hash/NamedCapture/NamedCapture.so 27431 -usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Spec/Functions.pm 27430 -usr/share/perl5/Getopt/Long/Descriptive.pm 27429 -usr/lib/x86_64-linux-gnu/perl5/5.28/Params/Validate.pm 27428 -usr/lib/x86_64-linux-gnu/perl5/5.28/Params/Validate/Constants.pm 27427 -usr/lib/x86_64-linux-gnu/perl5/5.28/Params/Validate/XS.pm 27426 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Params/Validate/XS/XS.so 27425 -usr/share/perl5/Getopt/Long/Descriptive/Opts.pm 27424 -usr/share/perl5/Getopt/Long/Descriptive/Usage.pm 27423 -usr/share/perl5/Sub/Exporter/Util.pm 27422 -usr/share/perl5/Data/OptList.pm 27421 -usr/share/perl5/Sub/Install.pm 27420 -usr/share/perl5/Sub/Exporter.pm 27419 -usr/share/perl/5.28.1/open.pm 27418 -usr/lib/x86_64-linux-gnu/perl/5.28.1/threads.pm 27417 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/threads/threads.so 27416 -usr/bin/curl 27415 -usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0 27414 -usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R2.crt 27413 -usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt 27412 -usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt 27410 -usr/local/lib/tails-shell-library/systemd.sh 27405 -usr/bin/gettext 27404 -usr/local/sbin/tails-notify-user 27403 -lib/systemd/system/tails-additional-software-upgrade.path 27402 -lib/systemd/system/tails-additional-software-upgrade.service 27401 -lib/systemd/system/tails-additional-software-install.service 27400 -usr/bin/notify-send 27392 -usr/local/lib/tor-browser/browser/chrome/icons/default/default128.png 27385 -usr/share/icons/hicolor/32x32/apps/thunderbird.png 27384 -usr/share/icons/hicolor/32x32/apps/pidgin.png 27383 -usr/share/icons/hicolor/32x32/apps/keepassxc.png 27382 -usr/share/icons/hicolor/32x32/apps/org.gnome.Nautilus.png 27381 -usr/share/icons/Adwaita/32x32/apps/utilities-terminal.png 27380 -usr/share/icons/Adwaita/16x16/devices/drive-harddisk-symbolic.symbolic.png 27379 -usr/share/icons/Adwaita/16x16/places/network-workgroup-symbolic.symbolic.png 27378 -usr/local/bin/tor-browser 27376 -usr/local/lib/tails-shell-library/tor-browser.sh 27375 -etc/tor-browser/locale-profiles/en-US.js 27374 -usr/local/lib/tor-browser/firefox.real 27373 -usr/local/lib/tor-browser/dependentlibs.list 27372 -usr/local/lib/tor-browser/libnspr4.so 27371 -usr/local/lib/tor-browser/libplc4.so 27370 -usr/local/lib/tor-browser/libplds4.so 27369 -usr/local/lib/tor-browser/libmozsandbox.so 27368 -usr/local/lib/tor-browser/liblgpllibs.so 27367 -usr/local/lib/tor-browser/libnssutil3.so 27366 -usr/local/lib/tor-browser/libnss3.so 27365 -usr/local/lib/tor-browser/libsmime3.so 27364 -usr/local/lib/tor-browser/libmozsqlite3.so 27363 -usr/local/lib/tor-browser/libssl3.so 27362 -usr/local/lib/tor-browser/libmozgtk.so 27361 -usr/local/lib/tor-browser/libxul.so 27360 -usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2.3.4 27359 -usr/lib/x86_64-linux-gnu/libXt.so.6.0.0 27358 -usr/lib/x86_64-linux-gnu/dri/i915_dri.so 27357 -usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 27356 -usr/lib/x86_64-linux-gnu/libLLVM-7.so.1 27355 -usr/local/lib/tor-browser/TorBrowser/Data/Browser/profiles.ini 27354 -usr/lib/x86_64-linux-gnu/libsensors.so.5.0.0 27353 -usr/lib/x86_64-linux-gnu/libelf-0.176.so 27352 -usr/lib/x86_64-linux-gnu/libdrm_amdgpu.so.1.0.0 27351 -usr/lib/x86_64-linux-gnu/libedit.so.2.0.59 27350 -usr/local/lib/tor-browser/omni.ja 27349 -usr/local/lib/tor-browser/browser/omni.ja 27348 -usr/local/lib/tor-browser/defaults/pref/channel-prefs.js 27347 -etc/ld.so.conf 27346 -etc/ld.so.conf.d/libc.conf 27345 -etc/ld.so.conf.d/x86_64-linux-gnu.conf 27344 -usr/bin/lsb_release 27343 -usr/local/share/tor-browser-extensions/{73a6fe31-595d-460b-a920-fcc0f8843232}.xpi 27342 -usr/local/lib/tor-browser/libsoftokn3.so 27341 -usr/local/lib/tor-browser/libfreeblpriv3.so 27340 -usr/local/lib/tor-browser/libnssckbi.so 27339 -usr/local/lib/tor-browser/browser/blocklist.xml 27338 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/manifest.json 27337 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/en/messages.json 27336 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ar/messages.json 27335 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/az/messages.json 27334 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/bg/messages.json 27333 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/bn/messages.json 27332 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/bs/messages.json 27331 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ca/messages.json 27330 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/cs/messages.json 27329 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/cv/messages.json 27328 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/da/messages.json 27327 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/de/messages.json 27326 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/el/messages.json 27325 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/en_GB/messages.json 27324 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/eo/messages.json 27323 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/es/messages.json 27322 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/et/messages.json 27321 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/eu/messages.json 27320 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fa/messages.json 27319 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fi/messages.json 27318 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fil/messages.json 27317 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fr/messages.json 27316 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fy/messages.json 27315 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/gl/messages.json 27314 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/he/messages.json 27313 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/hi/messages.json 27312 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/hr/messages.json 27311 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/hu/messages.json 27310 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/id/messages.json 27309 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/it/messages.json 27308 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ja/messages.json 27307 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ka/messages.json 27306 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/kk/messages.json 27305 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/kn/messages.json 27304 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ko/messages.json 27303 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/lt/messages.json 27302 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/lv/messages.json 27301 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ml/messages.json 27300 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/mr/messages.json 27299 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ms/messages.json 27298 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/nb/messages.json 27297 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/nl/messages.json 27296 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/no/messages.json 27295 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/pl/messages.json 27294 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/pt_BR/messages.json 27293 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/pt_PT/messages.json 27292 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ro/messages.json 27291 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ru/messages.json 27290 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sk/messages.json 27289 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sl/messages.json 27288 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sq/messages.json 27287 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sr/messages.json 27286 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sv/messages.json 27285 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ta/messages.json 27284 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/te/messages.json 27283 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/th/messages.json 27282 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/tr/messages.json 27281 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/uk/messages.json 27280 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ur/messages.json 27279 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/vi/messages.json 27278 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/zh_CN/messages.json 27277 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/zh_TW/messages.json 27276 -usr/local/share/tor-browser-extensions/langpack-zh-TW@firefox.mozilla.org.xpi 27275 -usr/local/share/tor-browser-extensions/langpack-zh-CN@firefox.mozilla.org.xpi 27274 -usr/local/share/tor-browser-extensions/langpack-vi@firefox.mozilla.org.xpi 27273 -usr/local/share/tor-browser-extensions/langpack-tr@firefox.mozilla.org.xpi 27272 -usr/local/share/tor-browser-extensions/langpack-sv-SE@firefox.mozilla.org.xpi 27271 -usr/local/share/tor-browser-extensions/langpack-ru@firefox.mozilla.org.xpi 27270 -usr/local/share/tor-browser-extensions/langpack-ro@firefox.mozilla.org.xpi 27269 -usr/local/share/tor-browser-extensions/langpack-pt-BR@firefox.mozilla.org.xpi 27268 -usr/local/share/tor-browser-extensions/langpack-pl@firefox.mozilla.org.xpi 27267 -usr/local/share/tor-browser-extensions/langpack-nl@firefox.mozilla.org.xpi 27266 -usr/local/share/tor-browser-extensions/langpack-nb-NO@firefox.mozilla.org.xpi 27265 -usr/local/share/tor-browser-extensions/langpack-mk@firefox.mozilla.org.xpi 27264 -usr/local/share/tor-browser-extensions/langpack-ko@firefox.mozilla.org.xpi 27263 -usr/local/share/tor-browser-extensions/langpack-ka@firefox.mozilla.org.xpi 27262 -usr/local/share/tor-browser-extensions/langpack-ja@firefox.mozilla.org.xpi 27261 -usr/local/share/tor-browser-extensions/langpack-it@firefox.mozilla.org.xpi 27260 -usr/local/share/tor-browser-extensions/langpack-is@firefox.mozilla.org.xpi 27259 -usr/local/share/tor-browser-extensions/langpack-id@firefox.mozilla.org.xpi 27258 -usr/local/share/tor-browser-extensions/langpack-hu@firefox.mozilla.org.xpi 27257 -usr/local/share/tor-browser-extensions/langpack-he@firefox.mozilla.org.xpi 27256 -usr/local/share/tor-browser-extensions/langpack-ga-IE@firefox.mozilla.org.xpi 27255 -usr/local/share/tor-browser-extensions/langpack-fr@firefox.mozilla.org.xpi 27254 -usr/local/share/tor-browser-extensions/langpack-fa@firefox.mozilla.org.xpi 27253 -usr/local/share/tor-browser-extensions/langpack-es-ES@firefox.mozilla.org.xpi 27252 -usr/local/share/tor-browser-extensions/langpack-es-AR@firefox.mozilla.org.xpi 27251 -usr/local/share/tor-browser-extensions/langpack-el@firefox.mozilla.org.xpi 27250 -usr/local/share/tor-browser-extensions/langpack-de@firefox.mozilla.org.xpi 27249 -usr/local/share/tor-browser-extensions/langpack-da@firefox.mozilla.org.xpi 27248 -usr/local/share/tor-browser-extensions/langpack-cs@firefox.mozilla.org.xpi 27247 -usr/local/share/tor-browser-extensions/langpack-ca@firefox.mozilla.org.xpi 27246 -usr/local/share/tor-browser-extensions/langpack-ar@firefox.mozilla.org.xpi 27245 -usr/local/share/tor-browser-extensions/https-everywhere-eff@eff.org.xpi 27244 -usr/local/lib/tor-browser/browser/features/onboarding@mozilla.org.xpi 27243 -usr/local/lib/tor-browser/TorBrowser/Data/fontconfig/fonts.conf 27242 -usr/local/lib/tor-browser/fonts/Arimo-Bold.ttf 27241 -usr/local/lib/tor-browser/fonts/Arimo-BoldItalic.ttf 27240 -usr/local/lib/tor-browser/fonts/Arimo-Italic.ttf 27239 -usr/local/lib/tor-browser/fonts/Arimo-Regular.ttf 27238 -usr/local/lib/tor-browser/fonts/Cousine-Regular.ttf 27237 -usr/local/lib/tor-browser/fonts/NotoEmoji-Regular.ttf 27236 -usr/local/lib/tor-browser/fonts/NotoNaskhArabic-Regular.ttf 27235 -usr/local/lib/tor-browser/fonts/NotoSansArmenian-Regular.ttf 27234 -usr/local/lib/tor-browser/fonts/NotoSansBengali-Regular.ttf 27233 -usr/local/lib/tor-browser/fonts/NotoSansBuginese-Regular.ttf 27232 -usr/local/lib/tor-browser/fonts/NotoSansCanadianAboriginal-Regular.ttf 27231 -usr/local/lib/tor-browser/fonts/NotoSansCherokee-Regular.ttf 27230 -usr/local/lib/tor-browser/fonts/NotoSansDevanagari-Regular.ttf 27229 -usr/local/lib/tor-browser/fonts/NotoSansEthiopic-Regular.ttf 27228 -usr/local/lib/tor-browser/fonts/NotoSansGeorgian-Regular.ttf 27227 -usr/local/lib/tor-browser/fonts/NotoSansGujarati-Regular.ttf 27226 -usr/local/lib/tor-browser/fonts/NotoSansGurmukhi-Regular.ttf 27225 -usr/local/lib/tor-browser/fonts/NotoSansHebrew-Regular.ttf 27224 -usr/local/lib/tor-browser/fonts/NotoSansJP-Regular.otf 27223 -usr/local/lib/tor-browser/fonts/NotoSansKR-Regular.otf 27222 -usr/local/lib/tor-browser/fonts/NotoSansKannada-Regular.ttf 27221 -usr/local/lib/tor-browser/fonts/NotoSansKhmer-Regular.ttf 27220 -usr/local/lib/tor-browser/fonts/NotoSansLao-Regular.ttf 27219 -usr/local/lib/tor-browser/fonts/NotoSansMalayalam-Regular.ttf 27218 -usr/local/lib/tor-browser/fonts/NotoSansMongolian-Regular.ttf 27217 -usr/local/lib/tor-browser/fonts/NotoSansMyanmar-Regular.ttf 27216 -usr/local/lib/tor-browser/fonts/NotoSansOriya-Regular.ttf 27215 -usr/local/lib/tor-browser/fonts/NotoSansSC-Regular.otf 27214 -usr/local/lib/tor-browser/fonts/NotoSansSinhala-Regular.ttf 27213 -usr/local/lib/tor-browser/fonts/NotoSansTC-Regular.otf 27212 -usr/local/lib/tor-browser/fonts/NotoSansTamil-Regular.ttf 27211 -usr/local/lib/tor-browser/fonts/NotoSansTelugu-Regular.ttf 27210 -usr/local/lib/tor-browser/fonts/NotoSansThaana-Regular.ttf 27209 -usr/local/lib/tor-browser/fonts/NotoSansThai-Regular.ttf 27208 -usr/local/lib/tor-browser/fonts/NotoSansTibetan-Regular.ttf 27207 -usr/local/lib/tor-browser/fonts/NotoSansYi-Regular.ttf 27206 -usr/local/lib/tor-browser/fonts/NotoSerifArmenian-Regular.ttf 27205 -usr/local/lib/tor-browser/fonts/NotoSerifKhmer-Regular.ttf 27204 -usr/local/lib/tor-browser/fonts/NotoSerifLao-Regular.ttf 27203 -usr/local/lib/tor-browser/fonts/NotoSerifThai-Regular.ttf 27202 -usr/local/lib/tor-browser/fonts/STIXMath-Regular.otf 27201 -usr/local/lib/tor-browser/fonts/Tinos-Bold.ttf 27200 -usr/local/lib/tor-browser/fonts/Tinos-BoldItalic.ttf 27199 -usr/local/lib/tor-browser/fonts/Tinos-Italic.ttf 27198 -usr/local/lib/tor-browser/fonts/Tinos-Regular.ttf 27197 -usr/local/lib/tor-browser/fonts/TwemojiMozilla.ttf 27196 -usr/lib/locale/C.UTF-8/LC_IDENTIFICATION 27195 -usr/lib/locale/C.UTF-8/LC_MEASUREMENT 27194 -usr/lib/locale/C.UTF-8/LC_TELEPHONE 27193 -usr/lib/locale/C.UTF-8/LC_ADDRESS 27192 -usr/lib/locale/C.UTF-8/LC_NAME 27191 -usr/lib/locale/C.UTF-8/LC_PAPER 27190 -usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES 27189 -usr/lib/locale/C.UTF-8/LC_MONETARY 27188 -usr/lib/locale/C.UTF-8/LC_COLLATE 27187 -usr/lib/locale/C.UTF-8/LC_TIME 27186 -usr/lib/locale/C.UTF-8/LC_NUMERIC 27185 -etc/mime.types 27184 -usr/share/mime/application/pdf.xml 27183 -usr/local/lib/tor-browser/browser/chrome/icons/default/default16.png 27182 -usr/local/lib/tor-browser/browser/chrome/icons/default/default32.png 27181 -usr/local/lib/tor-browser/browser/chrome/icons/default/default48.png 27180 -usr/local/lib/tor-browser/browser/chrome/icons/default/default64.png 27179 -usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules/im-ibus.so 27178 -etc/onion-grater.d/onioncircuits.yml 27177 -etc/onion-grater.d/onionshare.yml 27176 -etc/onion-grater.d/tor-browser.yml 27175 -etc/onion-grater.d/tor-launcher.yml 27174 -usr/lib/python3/dist-packages/stem/response/add_onion.py 27173 -usr/lib/python3/dist-packages/stem/response/authchallenge.py 27172 -usr/lib/python3/dist-packages/stem/response/getinfo.py 27171 -usr/lib/python3/dist-packages/stem/response/getconf.py 27170 -usr/lib/python3/dist-packages/stem/response/mapaddress.py 27169 -usr/lib/python3/dist-packages/stem/response/protocolinfo.py 27168 -usr/lib/x86_64-linux-gnu/libXss.so.1.0.0 27167 -usr/share/icons/Adwaita/16x16/actions/window-maximize-symbolic.symbolic.png 27166 -usr/share/icons/Adwaita/16x16/actions/window-minimize-symbolic.symbolic.png 27165 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/img/icon_16.png 27164 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/background.html 27163 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/console.js 27162 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/lib/lz4/lz4-block-codec-any.js 27161 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/lib/punycode.js 27160 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/lib/publicsuffixlist/publicsuffixlist.js 27159 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/vapi.js 27158 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/vapi-common.js 27157 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/vapi-background.js 27156 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/vapi-webrequest.js 27155 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/background.js 27154 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/traffic.js 27153 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/hntrie.js 27152 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/strie.js 27151 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/utils.js 27150 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/uritools.js 27149 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/lz4.js 27148 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/cachestorage.js 27147 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/assets.js 27146 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/filtering-context.js 27145 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/redirect-engine.js 27144 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/dynamic-net-filtering.js 27143 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/static-net-filtering.js 27142 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/url-net-filtering.js 27141 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/static-ext-filtering.js 27140 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/cosmetic-filtering.js 27139 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/scriptlet-filtering.js 27138 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/html-filtering.js 27137 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/hnswitches.js 27136 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/ublock.js 27135 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/messaging.js 27134 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/storage.js 27133 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/logger.js 27132 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/pagestore.js 27131 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/tab.js 27130 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/text-encode.js 27129 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/contextmenu.js 27128 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/reverselookup.js 27127 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/start.js 27126 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/commands.js 27125 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/assets.json 27124 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat 27123 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/resources/scriptlets.js 27122 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/1x1.gif 27121 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/2x2.png 27120 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/3x2.png 27119 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/32x32.png 27118 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/empty 27117 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noeval.js 27116 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noeval-silent.js 27115 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/nobab.js 27114 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/nofab.js 27113 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noop-0.1s.mp3 27112 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noop-1s.mp4 27111 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noop.js 27110 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noop.txt 27109 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/popads.js 27108 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/popads-dummy.js 27107 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/window.open-defuser.js 27106 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/thirdparties/www.malwaredomainlist.com/hostslist/hosts.txt 27105 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/thirdparties/easylist-downloads.adblockplus.org/easyprivacy.txt 27104 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/thirdparties/easylist-downloads.adblockplus.org/easylist.txt 27103 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/ublock/unbreak.txt 27102 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/ublock/resource-abuse.txt 27101 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/ublock/privacy.txt 27100 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/ublock/badware.txt 27099 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/ublock/filters.txt 27098 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/vapi-client.js 27097 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/contentscript.js 27096 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/scriptlets/should-inject-contentscript.js 27094 -usr/lib/ibus/ibus-engine-libpinyin 27093 -usr/lib/x86_64-linux-gnu/libpinyin.so.13.0.0 27092 -usr/lib/ibus/ibus-engine-hangul 27091 -usr/lib/x86_64-linux-gnu/libhangul.so.1.0.0 27090 -usr/lib/ibus/ibus-engine-chewing 27089 -usr/share/libhangul/hanja/hanja.txt 27088 -usr/lib/x86_64-linux-gnu/libchewing.so.3.3.1 27087 -usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0.2400.32 27086 -usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0.2400.32 27085 -usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libgail.so 27084 -usr/lib/x86_64-linux-gnu/libgailutil.so.18.0.1 27083 -usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libatk-bridge.so 27082 -usr/share/themes/Adwaita/gtk-2.0/gtkrc 27081 -usr/share/themes/Adwaita/gtk-2.0/main.rc 27080 -usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libadwaita.so 27079 -usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libpixmap.so 27078 -usr/share/themes/Adwaita/gtk-2.0/apps.rc 27077 -usr/share/themes/Adwaita/gtk-2.0/hacks.rc 27076 -usr/share/themes/Default/gtk-2.0-key/gtkrc 27075 -usr/share/ibus-hangul/data/symbol.txt 27074 -usr/local/lib/tor-browser/libmozavutil.so 27073 -usr/local/lib/tor-browser/libmozavcodec.so 27072 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/scriptlets/subscriber.js 27071 -usr/local/bin/tails-upgrade-frontend 27070 -usr/share/perl/5.28.1/FindBin.pm 27069 -usr/lib/x86_64-linux-gnu/perl/5.28.1/lib.pm 27068 -usr/local/share/perl/5.28.1/Tails/IUK/Frontend.pm 27067 -usr/share/perl/5.28.1/Env.pm 27066 -usr/share/perl/5.28.1/Tie/Array.pm 27065 -usr/share/perl5/IPC/Run.pm 27064 -usr/share/perl5/IPC/Run/Debug.pm 27063 -usr/share/perl5/IPC/Run/IO.pm 27062 -usr/share/perl5/IPC/Run/Timer.pm 27061 -usr/share/perl5/Number/Format.pm 27060 -usr/share/perl5/Path/Tiny.pm 27059 -usr/share/perl5/String/Errf.pm 27058 -usr/share/perl5/String/Formatter.pm 27057 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Time/Piece.pm 27056 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Time/Seconds.pm 27055 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Time/Piece/Piece.so 27054 -usr/local/share/perl/5.28.1/Tails/RunningSystem.pm 27053 -usr/share/perl5/Sys/Statistics/Linux/MemStats.pm 27052 -usr/local/share/perl/5.28.1/Tails/Constants.pm 27051 -usr/share/perl5/MooX/late.pm 27050 -usr/local/share/perl/5.28.1/Tails/UDisks.pm 27049 -usr/share/perl/5.28.1/File/stat.pm 27048 -usr/share/perl/5.28.1/Class/Struct.pm 27047 -usr/share/perl5/Syntax/Keyword/Junction.pm 27046 -usr/share/perl5/Syntax/Keyword/Junction/All.pm 27045 -usr/share/perl5/Syntax/Keyword/Junction/Base.pm 27044 -usr/share/perl/5.28.1/if.pm 27043 -usr/share/perl5/Syntax/Keyword/Junction/Any.pm 27042 -usr/share/perl5/Syntax/Keyword/Junction/None.pm 27041 -usr/share/perl5/Syntax/Keyword/Junction/One.pm 27040 -usr/share/perl5/Types/Path/Tiny.pm 27039 -usr/share/perl5/Type/Tiny/Class.pm 27038 -usr/share/perl5/Type/Tiny/Intersection.pm 27037 -usr/lib/x86_64-linux-gnu/perl5/5.28/Unix/Mknod.pm 27036 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Unix/Mknod/Mknod.so 27035 -usr/local/share/perl/5.28.1/Tails/Role/HasDBus/System.pm 27034 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/ASyncReply.pm 27033 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Annotation.pm 27032 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Test/MockConnection.pm 27031 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Error.pm 27030 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Test/MockMessage.pm 27029 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Test/MockIterator.pm 27028 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Value.pm 27027 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/GLib.pm 27026 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/DBus/GLib/GLib.so 27025 -usr/local/share/perl/5.28.1/Tails.pm 27024 -usr/local/share/perl/5.28.1/Tails/Role/HasEncoding.pm 27023 -usr/local/share/perl/5.28.1/Tails/Role/HasCodeset.pm 27022 -usr/share/perl5/Type/Tiny/Union.pm 27021 -usr/local/share/perl/5.28.1/Tails/Role/DisplayError/Gtk3.pm 27020 -usr/local/share/perl/5.28.1/Tails/IUK/UpgradeDescriptionFile.pm 27019 -usr/share/perl5/Dpkg/Version.pm 27018 -usr/share/perl5/Dpkg/Gettext.pm 27017 -usr/share/perl/5.28.1/feature.pm 27016 -usr/share/perl5/Dpkg/ErrorHandling.pm 27015 -usr/share/perl5/Dpkg.pm 27014 -usr/share/perl5/YAML/Any.pm 27013 -usr/lib/x86_64-linux-gnu/perl5/5.28/YAML/XS.pm 27012 -usr/lib/x86_64-linux-gnu/perl5/5.28/YAML/XS/LibYAML.pm 27011 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/YAML/XS/LibYAML/LibYAML.so 27010 -usr/local/share/perl/5.28.1/Tails/IUK/Utils.pm 27009 -usr/share/perl/5.28.1/Math/BigInt.pm 27008 -usr/share/perl/5.28.1/Math/BigInt/Lib.pm 27007 -usr/lib/x86_64-linux-gnu/perl5/5.28/Filesys/Df.pm 27006 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Filesys/Df/Df.so 27005 -usr/local/share/perl/5.28.1/Tails/MirrorPool.pm 27004 -usr/share/perl5/MooX/Options.pm 27003 -usr/share/perl5/MooX/Options/Role.pm 27002 -usr/share/perl5/MooX/Options/Descriptive.pm 27001 -usr/share/perl5/MooX/Options/Descriptive/Usage.pm 27000 -usr/lib/x86_64-linux-gnu/perl5/5.28/Text/LineFold.pm 26999 -usr/share/perl5/MIME/Charset.pm 26998 -usr/lib/x86_64-linux-gnu/perl5/5.28/Unicode/LineBreak.pm 26997 -usr/lib/x86_64-linux-gnu/perl5/5.28/Unicode/GCString.pm 26996 -usr/lib/x86_64-linux-gnu/perl5/5.28/Unicode/LineBreak/Constants.pm 26995 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Unicode/LineBreak/LineBreak.so 26994 -usr/lib/x86_64-linux-gnu/libsombok.so.3.1.7 26993 -usr/share/perl5/MooX/Locale/Passthrough.pm 26992 -usr/local/bin/tails-iuk-get-upgrade-description-file 26991 -usr/local/share/perl/5.28.1/Tails/IUK/UpgradeDescriptionFile/Download.pm 26990 +usr/share/laptop-mode-tools/modules/cpufreq 31822 +usr/lib/x86_64-linux-gnu/libplc4.so 31821 +usr/lib/x86_64-linux-gnu/libnspr4.so 31820 +usr/lib/x86_64-linux-gnu/libvolume_key.so.1.2.3 31819 +usr/lib/x86_64-linux-gnu/libgpgme.so.11.21.0 31818 +usr/lib/python3/dist-packages/stem/util/__init__.py 31817 +usr/lib/python3/dist-packages/stem/prereq.py 31816 +usr/lib/python3.7/inspect.py 31815 +usr/share/laptop-mode-tools/modules/cpuhotplug 31813 +usr/lib/x86_64-linux-gnu/libbd_part.so.2.0.0 31812 +usr/lib/x86_64-linux-gnu/libbd_part_err.so.2.0.0 31811 +lib/x86_64-linux-gnu/libparted.so.2.0.1 31810 +usr/bin/dconf 31809 +usr/lib/x86_64-linux-gnu/libdconf.so.1.0.0 31806 +etc/gdm3/greeter.dconf-defaults 31805 +usr/share/gdm/dconf/50-tails 31804 +usr/share/gdm/dconf/00-upstream-settings 31803 +usr/share/gdm/dconf/locks/00-upstream-settings-locks 31802 +usr/bin/pgrep 31800 +usr/lib/python3.7/dis.py 31799 +bin/chgrp 31798 +usr/share/laptop-mode-tools/modules/dpms-standby 31796 +lib/x86_64-linux-gnu/libparted-fs-resize.so.0.0.1 31795 +usr/lib/python3.7/opcode.py 31794 +usr/sbin/gdm3 31793 +usr/lib/x86_64-linux-gnu/libaccountsservice.so.0.0.0 31792 +usr/sbin/dmidecode 31789 +usr/lib/python3.7/lib-dynload/_opcode.cpython-37m-x86_64-linux-gnu.so 31788 +usr/lib/python3.7/importlib/__init__.py 31787 +usr/lib/python3.7/importlib/machinery.py 31786 +usr/share/laptop-mode-tools/modules/eee-superhe 31785 +usr/share/gdm/gdm.schemas 31784 +usr/lib/python3.7/platform.py 31783 +usr/lib/python3/dist-packages/stem/util/enum.py 31782 +usr/lib/python3/dist-packages/stem/util/str_tools.py 31781 +usr/lib/x86_64-linux-gnu/libbd_fs.so.2.0.0 31780 +etc/udisks2/udisks2.conf 31778 +usr/share/laptop-mode-tools/modules/ethernet 31776 +bin/sleep 31761 +usr/lib/python3/dist-packages/stem/util/connection.py 31760 +usr/share/laptop-mode-tools/modules/exec-commands 31734 +usr/lib/python3.7/lib-dynload/_hashlib.cpython-37m-x86_64-linux-gnu.so 31732 +usr/lib/python3.7/hmac.py 31731 +usr/lib/python3/dist-packages/stem/util/proc.py 31730 +usr/lib/python3/dist-packages/stem/util/log.py 31729 +usr/share/laptop-mode-tools/modules/hal-polling 31727 +usr/lib/python3/dist-packages/stem/util/system.py 31724 +sbin/dumpe2fs 31723 +etc/pam.d/gdm-launch-environment 31722 +lib/x86_64-linux-gnu/security/pam_nologin.so 31721 +lib/x86_64-linux-gnu/security/pam_keyinit.so 31720 +lib/x86_64-linux-gnu/security/pam_limits.so 31719 +lib/x86_64-linux-gnu/security/pam_env.so 31718 +usr/lib/python3.7/lib-dynload/_ctypes.cpython-37m-x86_64-linux-gnu.so 31716 +usr/share/polkit-1/actions/com.hp.hplip.policy 31715 +usr/share/polkit-1/actions/com.ubuntu.pkexec.synaptic.policy 31714 +usr/share/polkit-1/actions/org.boum.tails.additional-software.policy 31713 +usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy 31712 +usr/share/polkit-1/actions/org.boum.tails.tor-launcher.policy 31710 +usr/share/polkit-1/actions/org.dpkg.pkexec.update-alternatives.policy 31709 +usr/share/polkit-1/actions/org.freedesktop.ModemManager1.policy 31708 +usr/share/polkit-1/actions/org.freedesktop.NetworkManager.policy 31706 +usr/share/polkit-1/actions/org.freedesktop.UDisks2.policy 31703 +lib/x86_64-linux-gnu/libext2fs.so.2.4 31701 +usr/share/laptop-mode-tools/modules/hdparm 31700 +usr/lib/python3.7/mimetypes.py 31699 +usr/lib/python3.7/urllib/__init__.py 31698 +usr/lib/python3.7/urllib/parse.py 31697 +usr/share/polkit-1/actions/org.freedesktop.accounts.policy 31696 +usr/share/polkit-1/actions/org.freedesktop.bolt.policy 31695 +usr/share/polkit-1/actions/org.freedesktop.color.policy 31694 +usr/share/polkit-1/actions/org.freedesktop.hostname1.policy 31693 +usr/share/polkit-1/actions/org.freedesktop.locale1.policy 31692 +usr/share/polkit-1/actions/org.freedesktop.login1.policy 31691 +usr/share/polkit-1/actions/org.freedesktop.policykit.policy 31690 +usr/share/polkit-1/actions/org.freedesktop.resolve1.policy 31689 +usr/share/polkit-1/actions/org.freedesktop.systemd1.policy 31688 +usr/share/polkit-1/actions/org.freedesktop.timedate1.policy 31687 +usr/share/polkit-1/actions/org.gnome.controlcenter.datetime.policy 31686 +usr/share/polkit-1/actions/org.gnome.controlcenter.remote-login-helper.policy 31685 +usr/share/polkit-1/actions/org.gnome.controlcenter.user-accounts.policy 31684 +usr/share/polkit-1/actions/org.gnome.gnome-system-monitor.policy 31683 +usr/share/polkit-1/actions/org.gnome.settings-daemon.plugins.power.policy 31682 +usr/share/polkit-1/actions/org.gnome.settings-daemon.plugins.wacom.policy 31681 +usr/share/polkit-1/actions/org.gtk.vfs.file-operations.policy 31680 +usr/share/polkit-1/actions/org.linux.lmt.gui.policy 31679 +usr/share/polkit-1/actions/org.opensuse.cupspkhelper.mechanism.policy 31678 +usr/share/polkit-1/actions/org.x.xf86-video-intel.backlight-helper.policy 31677 +etc/security/limits.conf 31674 +etc/security/pam_env.conf 31673 +etc/environment 31672 +lib/systemd/system/user@.service 31670 +lib/systemd/system/user-.slice.d/10-defaults.conf 31669 +lib/systemd/system/user-runtime-dir@.service 31668 +usr/lib/python3.7/multiprocessing/__init__.py 31667 +usr/lib/python3.7/multiprocessing/context.py 31666 +usr/lib/python3.7/multiprocessing/process.py 31665 +usr/lib/python3.7/multiprocessing/reduction.py 31664 +usr/share/laptop-mode-tools/modules/intel-hda-powersave 31663 +lib/systemd/system/tails-remove-overlayfs-dirs.service 31662 +lib/systemd/system-shutdown/tails 31661 +usr/lib/python3.7/pickle.py 31660 +lib/x86_64-linux-gnu/libcom_err.so.2.1 31659 +lib/x86_64-linux-gnu/libe2p.so.2.3 31658 +lib/systemd/systemd-shutdown 31654 +lib/systemd/systemd-user-runtime-dir 31635 +usr/lib/python3.7/_compat_pickle.py 31633 +usr/lib/python3.7/tarfile.py 31632 +usr/share/laptop-mode-tools/modules/intel-sata-powermgmt 31631 +etc/pam.d/systemd-user 31629 +lib/x86_64-linux-gnu/security/pam_selinux.so 31628 +lib/x86_64-linux-gnu/security/pam_loginuid.so 31627 +usr/bin/eject 31626 +lib/systemd/systemd 31625 +usr/share/laptop-mode-tools/modules/intel_pstate 31624 +usr/lib/python3.7/copy.py 31623 +etc/systemd/user.conf 31622 +usr/lib/python3/dist-packages/stem/util/conf.py 31621 +usr/lib/python3/dist-packages/stem/control.py 31620 +usr/share/laptop-mode-tools/modules/kbd-backlight 31619 +usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator 31618 +etc/environment.d/90atk-adaptor.conf 31617 +etc/environment.d/90qt-a11y.conf 31616 +usr/lib/systemd/user-environment-generators/90gpg-agent 31615 +usr/share/laptop-mode-tools/modules/laptop-mode 31614 +usr/lib/python3.7/calendar.py 31613 +sbin/blockdev 31612 +usr/lib/python3.7/queue.py 31611 +usr/lib/python3.7/lib-dynload/_queue.cpython-37m-x86_64-linux-gnu.so 31610 +usr/lib/python3/dist-packages/stem/descriptor/__init__.py 31609 +usr/bin/gpgconf 31608 +usr/lib/python3/dist-packages/stem/descriptor/server_descriptor.py 31607 +usr/share/laptop-mode-tools/modules/lcd-brightness 31606 +usr/lib/python3/dist-packages/stem/descriptor/certificate.py 31605 +usr/lib/python3/dist-packages/stem/descriptor/extrainfo_descriptor.py 31604 +usr/local/sbin/udev-watchdog 31601 +usr/lib/systemd/user/default.target 31600 +usr/lib/systemd/user/shutdown.target 31599 +usr/lib/systemd/user/basic.target 31598 +usr/lib/systemd/user/tails-create-tor-browser-directories.service 31597 +usr/lib/systemd/user/paths.target 31596 +usr/lib/systemd/user/timers.target 31595 +usr/lib/systemd/user/sockets.target 31594 +usr/lib/systemd/user/pulseaudio.socket 31593 +usr/lib/systemd/user/pulseaudio.service 31592 +usr/lib/systemd/user/gpg-agent.socket 31591 +usr/lib/systemd/user/gpg-agent.service 31590 +usr/lib/systemd/user/gpg-agent-ssh.socket 31589 +usr/lib/systemd/user/gpg-agent-extra.socket 31588 +usr/share/laptop-mode-tools/modules/nmi-watchdog 31587 +usr/lib/systemd/user/gpg-agent-browser.socket 31586 +usr/lib/systemd/user/dirmngr.socket 31585 +usr/lib/systemd/user/dirmngr.service 31584 +usr/lib/systemd/user/dbus.socket 31583 +usr/lib/systemd/user/dbus.service 31582 +usr/lib/python3/dist-packages/stem/exit_policy.py 31580 +usr/lib/python3/dist-packages/stem/util/tor_tools.py 31579 +usr/bin/pulseaudio 31578 +usr/bin/dirmngr 31577 +usr/lib/python3/dist-packages/stem/version.py 31576 +usr/lib/python3/dist-packages/stem/descriptor/router_status_entry.py 31569 +usr/lib/gdm3/gdm-x-session.tails 31568 +usr/lib/gdm3/gdm-x-session.real 31565 +usr/lib/python3/dist-packages/stem/descriptor/networkstatus.py 31564 +usr/bin/Xorg 31563 +usr/lib/xorg/Xorg.wrap 31562 +usr/share/laptop-mode-tools/modules/pcie-aspm 31561 +etc/X11/Xwrapper.config 31560 +usr/lib/xorg/Xorg 31559 +usr/lib/python3/dist-packages/stem/descriptor/microdescriptor.py 31558 +usr/lib/python3/dist-packages/stem/descriptor/tordnsel.py 31557 +usr/lib/python3/dist-packages/stem/descriptor/hidden_service_descriptor.py 31556 +usr/lib/python3/dist-packages/stem/descriptor/reader.py 31555 +usr/lib/python3/dist-packages/stem/response/__init__.py 31554 +usr/lib/python3/dist-packages/stem/socket.py 31553 +usr/share/laptop-mode-tools/modules/radeon-dpm 31552 +usr/lib/python3.7/ssl.py 31551 +usr/lib/python3.7/lib-dynload/_ssl.cpython-37m-x86_64-linux-gnu.so 31550 +usr/lib/python3/dist-packages/stem/response/events.py 31549 +usr/lib/python3/dist-packages/stem/connection.py 31548 +usr/lib/python3.7/getpass.py 31547 +usr/share/laptop-mode-tools/modules/runtime-pm 31546 +usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1 31545 +usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1 31544 +usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0 31543 +usr/lib/x86_64-linux-gnu/libpixman-1.so.0.36.0 31542 +usr/lib/python3.7/lib-dynload/termios.cpython-37m-x86_64-linux-gnu.so 31541 +usr/lib/python3.7/textwrap.py 31540 +usr/lib/python3/dist-packages/yaml/__init__.py 31539 +usr/lib/python3/dist-packages/yaml/error.py 31538 +usr/lib/python3/dist-packages/yaml/tokens.py 31537 +usr/lib/python3/dist-packages/yaml/events.py 31536 +usr/lib/python3/dist-packages/yaml/nodes.py 31535 +usr/lib/python3/dist-packages/yaml/loader.py 31534 +usr/lib/python3/dist-packages/yaml/reader.py 31533 +usr/lib/x86_64-linux-gnu/libXfont2.so.2.0.0 31532 +usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0 31531 +usr/lib/x86_64-linux-gnu/libfontenc.so.1.0.0 31530 +usr/lib/x86_64-linux-gnu/libfreetype.so.6.16.1 31529 +usr/share/laptop-mode-tools/modules/sched-mc-power-savings 31528 +usr/lib/python3/dist-packages/yaml/scanner.py 31527 +usr/lib/python3/dist-packages/yaml/parser.py 31526 +usr/lib/python3/dist-packages/yaml/composer.py 31525 +usr/lib/python3/dist-packages/yaml/constructor.py 31524 +usr/lib/python3/dist-packages/yaml/resolver.py 31523 +usr/lib/x86_64-linux-gnu/libpng16.so.16.36.0 31522 +usr/lib/python3/dist-packages/yaml/dumper.py 31521 +usr/lib/python3/dist-packages/yaml/emitter.py 31520 +usr/share/laptop-mode-tools/modules/sched-smt-power-savings 31519 +usr/lib/python3/dist-packages/yaml/serializer.py 31518 +usr/lib/xorg/protocol.txt 31517 +usr/share/X11/xorg.conf.d/10-amdgpu.conf 31516 +usr/share/X11/xorg.conf.d/10-quirks.conf 31515 +usr/share/X11/xorg.conf.d/10-radeon.conf 31514 +usr/share/X11/xorg.conf.d/40-libinput.conf 31513 +usr/share/X11/xorg.conf.d/90-tails.conf 31512 +usr/share/laptop-mode-tools/modules/start-stop-programs 31509 +usr/lib/python3/dist-packages/yaml/representer.py 31508 +usr/lib/xorg/modules/extensions/libglx.so 31507 +usr/lib/x86_64-linux-gnu/libGL.so.1.7.0 31506 +usr/lib/python3/dist-packages/yaml/cyaml.py 31505 +usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0 31503 +usr/lib/x86_64-linux-gnu/libGLdispatch.so.0.0.0 31502 +usr/lib/python3/dist-packages/_yaml.cpython-37m-x86_64-linux-gnu.so 31501 +usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5 31500 +usr/lib/xorg/modules/drivers/modesetting_drv.so 31499 +usr/lib/xorg/modules/drivers/fbdev_drv.so 31498 +usr/lib/xorg/modules/drivers/vesa_drv.so 31497 +usr/lib/xorg/modules/libfbdevhw.so 31496 +usr/lib/xorg/modules/libglamoregl.so 31495 +usr/lib/x86_64-linux-gnu/libgbm.so.1.0.0 31494 +usr/lib/x86_64-linux-gnu/libepoxy.so.0.0.0 31493 +usr/share/laptop-mode-tools/modules/syslog-conf 31492 +usr/lib/x86_64-linux-gnu/libwayland-server.so.0.1.0 31491 +usr/share/drirc.d/00-mesa-defaults.conf 31490 +usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0 31489 +usr/lib/x86_64-linux-gnu/dri/i965_dri.so 31488 +usr/share/laptop-mode-tools/modules/terminal-blanking 31487 +usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0 31486 +usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1 31485 +usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0 31484 +usr/share/laptop-mode-tools/modules/vgaswitcheroo 31483 +usr/share/laptop-mode-tools/modules/video-out 31482 +usr/share/laptop-mode-tools/modules/wireless-ipw-power 31481 +usr/share/laptop-mode-tools/modules/wireless-iwl-power 31480 +usr/share/laptop-mode-tools/modules/wireless-power 31479 +sbin/iw 31478 +bin/cpio 31477 +usr/lib/x86_64-linux-gnu/libEGL.so.1.1.0 31476 +usr/share/glvnd/egl_vendor.d/50_mesa.json 31475 +usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0 31474 +usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0 31473 +usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0.0.0 31472 +usr/lib/x86_64-linux-gnu/libwayland-client.so.0.3.0 31471 +usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0 31470 +usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0 31469 +usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0 31468 +usr/lib/xorg/modules/libfb.so 31466 +usr/share/fonts/X11/Type1/fonts.dir 31465 +usr/share/X11/xkb/rules/evdev 31464 +usr/bin/xkbcomp 31463 +usr/lib/x86_64-linux-gnu/libxkbfile.so.1.0.2 31462 +usr/share/X11/xkb/keycodes/evdev 31461 +usr/share/X11/xkb/keycodes/aliases 31460 +usr/share/X11/xkb/geometry/pc 31459 +usr/share/X11/xkb/types/complete 31458 +usr/share/X11/xkb/types/basic 31457 +usr/share/X11/xkb/types/mousekeys 31456 +usr/share/X11/xkb/types/pc 31455 +usr/share/X11/xkb/types/iso9995 31454 +usr/share/X11/xkb/types/level5 31453 +usr/share/X11/xkb/types/extra 31452 +usr/share/X11/xkb/types/numpad 31451 +usr/share/X11/xkb/compat/complete 31450 +usr/share/X11/xkb/compat/basic 31449 +usr/share/X11/xkb/compat/ledcaps 31448 +usr/share/X11/xkb/compat/lednum 31447 +usr/share/X11/xkb/compat/iso9995 31446 +usr/share/X11/xkb/compat/mousekeys 31445 +usr/share/X11/xkb/compat/accessx 31444 +usr/share/X11/xkb/compat/misc 31443 +usr/share/X11/xkb/compat/ledscroll 31442 +usr/share/X11/xkb/compat/xfree86 31441 +usr/share/X11/xkb/compat/level5 31440 +usr/share/X11/xkb/compat/caps 31439 +usr/share/X11/xkb/symbols/pc 31438 +usr/share/X11/xkb/symbols/srvr_ctrl 31437 +usr/share/X11/xkb/symbols/keypad 31436 +usr/share/X11/xkb/symbols/altwin 31435 +usr/share/X11/xkb/symbols/us 31434 +usr/share/X11/xkb/symbols/inet 31433 +usr/lib/xorg/modules/input/libinput_drv.so 31409 +usr/lib/x86_64-linux-gnu/libinput.so.10.13.0 31408 +usr/lib/x86_64-linux-gnu/libmtdev.so.1.0.0 31407 +usr/lib/x86_64-linux-gnu/libevdev.so.2.2.0 31406 +usr/lib/x86_64-linux-gnu/libwacom.so.2.6.1 31405 +usr/share/libinput/10-generic-keyboard.quirks 31403 +usr/share/libinput/10-generic-lid.quirks 31402 +usr/share/libinput/10-generic-trackball.quirks 31401 +usr/share/libinput/30-vendor-aiptek.quirks 31400 +usr/share/libinput/30-vendor-alps.quirks 31399 +usr/share/libinput/30-vendor-contour.quirks 31398 +usr/share/libinput/30-vendor-cyapa.quirks 31397 +usr/share/libinput/30-vendor-elantech.quirks 31396 +usr/share/libinput/30-vendor-huion.quirks 31395 +usr/share/libinput/30-vendor-ibm.quirks 31394 +usr/share/libinput/30-vendor-kensington.quirks 31393 +usr/share/libinput/30-vendor-logitech.quirks 31392 +usr/share/libinput/30-vendor-microsoft.quirks 31391 +usr/share/libinput/30-vendor-razer.quirks 31390 +usr/share/libinput/30-vendor-synaptics.quirks 31389 +usr/share/libinput/30-vendor-vmware.quirks 31388 +usr/share/libinput/30-vendor-wacom.quirks 31387 +usr/share/libinput/50-system-acer.quirks 31386 +usr/share/libinput/50-system-apple.quirks 31385 +usr/share/libinput/50-system-asus.quirks 31384 +usr/share/libinput/50-system-chicony.quirks 31383 +usr/share/libinput/50-system-cyborg.quirks 31382 +usr/share/libinput/50-system-dell.quirks 31381 +usr/share/libinput/50-system-google.quirks 31380 +usr/share/libinput/50-system-hp.quirks 31379 +usr/share/libinput/50-system-lenovo.quirks 31378 +usr/share/libinput/50-system-system76.quirks 31377 +usr/share/dbus-1/session.conf 31361 +etc/dbus-1/session.d/im.pidgin.purple.PurpleService.conf 31360 +usr/share/dbus-1/services/ca.desrt.dconf.service 31359 +usr/share/dbus-1/services/org.a11y.Bus.service 31358 +usr/share/dbus-1/services/org.fedoraproject.Config.Printing.service 31357 +usr/share/dbus-1/services/org.freedesktop.ColorHelper.service 31356 +usr/share/dbus-1/services/org.freedesktop.FileManager1.service 31355 +usr/share/dbus-1/services/org.freedesktop.IBus.service 31354 +usr/share/dbus-1/services/org.freedesktop.Tracker1.service 31353 +usr/share/dbus-1/services/org.freedesktop.impl.portal.PermissionStore.service 31352 +usr/share/dbus-1/services/org.freedesktop.portal.Desktop.service 31351 +usr/share/dbus-1/services/org.freedesktop.portal.Documents.service 31350 +usr/share/dbus-1/services/org.freedesktop.portal.IBus.service 31349 +usr/share/dbus-1/services/org.freedesktop.secrets.service 31348 +usr/share/dbus-1/services/org.gnome.Calculator.SearchProvider.service 31347 +usr/share/dbus-1/services/org.gnome.ControlCenter.SearchProvider.service 31346 +usr/share/dbus-1/services/org.gnome.ControlCenter.service 31345 +usr/share/dbus-1/services/org.gnome.DiskUtility.service 31344 +usr/share/dbus-1/services/org.gnome.FileRoller.ArchiveManager1.service 31343 +usr/share/dbus-1/services/org.gnome.FileRoller.service 31342 +usr/share/dbus-1/services/org.gnome.Nautilus.service 31341 +usr/share/dbus-1/services/org.gnome.Screenshot.service 31340 +usr/share/dbus-1/services/org.gnome.Shell.CalendarServer.service 31339 +usr/share/dbus-1/services/org.gnome.Shell.HotplugSniffer.service 31338 +usr/share/dbus-1/services/org.gnome.Shell.PortalHelper.service 31337 +usr/share/dbus-1/services/org.gnome.SoundJuicer.service 31336 +usr/share/dbus-1/services/org.gnome.Terminal.service 31335 +usr/share/dbus-1/services/org.gnome.Totem.service 31334 +usr/share/dbus-1/services/org.gnome.evince.Daemon.service 31333 +usr/share/dbus-1/services/org.gnome.evolution.dataserver.AddressBook.service 31332 +usr/share/dbus-1/services/org.gnome.evolution.dataserver.Calendar.service 31331 +usr/share/dbus-1/services/org.gnome.evolution.dataserver.Sources.service 31330 +usr/share/dbus-1/services/org.gnome.evolution.dataserver.UserPrompter.service 31329 +usr/share/dbus-1/services/org.gnome.gedit.service 31328 +usr/share/dbus-1/services/org.gnome.keyring.PrivatePrompter.service 31327 +usr/share/dbus-1/services/org.gnome.keyring.SystemPrompter.service 31326 +usr/share/dbus-1/services/org.gnome.keyring.service 31325 +usr/share/dbus-1/services/org.gnome.seahorse.Application.service 31324 +usr/share/dbus-1/services/org.gnome.seahorse.service 31323 +usr/share/dbus-1/services/org.gtk.GLib.PACRunner.service 31322 +usr/share/dbus-1/services/org.gtk.vfs.AfcVolumeMonitor.service 31321 +usr/share/dbus-1/services/org.gtk.vfs.Daemon.service 31320 +usr/share/dbus-1/services/org.gtk.vfs.GPhoto2VolumeMonitor.service 31319 +usr/share/dbus-1/services/org.gtk.vfs.GoaVolumeMonitor.service 31318 +usr/share/dbus-1/services/org.gtk.vfs.MTPVolumeMonitor.service 31317 +usr/share/dbus-1/services/org.gtk.vfs.Metadata.service 31316 +usr/share/dbus-1/services/org.gtk.vfs.UDisks2VolumeMonitor.service 31315 +usr/bin/gnome-session 31313 +usr/bin/gsettings 31312 +usr/share/glib-2.0/schemas/gschemas.compiled 31311 +usr/lib/x86_64-linux-gnu/gio/modules/libdconfsettings.so 31310 +usr/share/dconf/profile/gdm 31309 +usr/lib/gnome-session/gnome-session-binary 31307 +usr/lib/x86_64-linux-gnu/libgnome-desktop-3.so.17.0.3 31306 +usr/lib/x86_64-linux-gnu/libjson-glib-1.0.so.0.400.4 31305 +usr/lib/x86_64-linux-gnu/libgtk-3.so.0.2404.1 31304 +usr/lib/x86_64-linux-gnu/libgdk-3.so.0.2404.1 31303 +usr/lib/x86_64-linux-gnu/libcairo.so.2.11600.0 31302 +usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.3800.1 31301 +usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0.4200.3 31300 +usr/lib/x86_64-linux-gnu/libXcomposite.so.1.0.0 31299 +usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0 31298 +usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0 31297 +usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2.11600.0 31296 +usr/lib/x86_64-linux-gnu/libatk-1.0.so.0.23009.1 31295 +usr/lib/x86_64-linux-gnu/libatk-bridge-2.0.so.0.0.0 31294 +usr/lib/x86_64-linux-gnu/libxkbcommon.so.0.0.0 31293 +usr/lib/x86_64-linux-gnu/libwayland-cursor.so.0.0.0 31292 +usr/lib/x86_64-linux-gnu/libwayland-egl.so.1.0.0 31291 +usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.20301.0 31290 +usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0.4200.3 31289 +usr/lib/x86_64-linux-gnu/libpango-1.0.so.0.4200.3 31288 +usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0 31287 +usr/lib/x86_64-linux-gnu/libXinerama.so.1.0.0 31286 +usr/lib/x86_64-linux-gnu/libXrandr.so.2.2.0 31285 +usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2 31284 +usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0 31283 +usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0 31282 +usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0 31281 +usr/lib/x86_64-linux-gnu/libatspi.so.0.0.1 31280 +usr/lib/x86_64-linux-gnu/libgraphite2.so.3.2.1 31279 +usr/lib/x86_64-linux-gnu/libthai.so.0.3.1 31278 +usr/lib/x86_64-linux-gnu/libfribidi.so.0.4.0 31277 +usr/lib/x86_64-linux-gnu/libdatrie.so.1.3.5 31276 +usr/lib/gnome-session/gnome-session-check-accelerated 31274 +usr/share/locale/en/LC_MESSAGES/gtk30.mo 31273 +usr/share/locale/en/LC_MESSAGES/gtk30-properties.mo 31272 +usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 31271 +usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0 31270 +usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0 31269 +usr/lib/systemd/user/at-spi-dbus-bus.service 31268 +usr/lib/at-spi2-core/at-spi-bus-launcher 31266 +etc/dconf/profile/user 31265 +bin/gzip 31263 +usr/bin/xz 31262 +usr/share/defaults/at-spi2/accessibility.conf 31261 +usr/share/dbus-1/accessibility-services/org.a11y.atspi.Registry.service 31260 +usr/lib/at-spi2-core/at-spi2-registryd 31259 +usr/lib/gnome-session/gnome-session-check-accelerated-gl-helper 31258 +usr/share/gnome-session/hardware-compatibility 31257 +usr/share/gnome-session/sessions/gdm-tails.session 31254 +usr/share/gdm/greeter/applications/gdm-shell-tails.desktop 31253 +usr/share/applications/tails-greeter.desktop 31252 +etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop 31251 +etc/xdg/autostart/org.gnome.SettingsDaemon.Clipboard.desktop 31250 +etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop 31249 +etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop 31248 +etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop 31247 +etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop 31246 +etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop 31245 +etc/xdg/autostart/org.gnome.SettingsDaemon.Mouse.desktop 31244 +etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop 31243 +etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop 31242 +etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop 31241 +etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop 31240 +etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop 31239 +etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop 31238 +etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop 31237 +etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop 31236 +etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop 31235 +usr/share/gdm/greeter/autostart/orca-autostart.desktop 31234 +etc/xdg/autostart/spice-vdagent.desktop 31233 +usr/lib/x86_64-linux-gnu/glib-2.0/gio-launch-desktop 31230 +usr/bin/gnome-shell 31229 +usr/lib/gnome-shell/libgnome-shell.so 31228 +usr/lib/libgjs.so.0.0.0 31227 +usr/lib/x86_64-linux-gnu/mutter/libmutter-clutter-3.so 31226 +usr/lib/x86_64-linux-gnu/mutter/libmutter-cogl-pango-3.so 31225 +usr/lib/x86_64-linux-gnu/libmutter-3.so.0.0.0 31224 +usr/lib/gnome-shell/libgnome-shell-menu.so 31223 +usr/lib/gnome-shell/libst-1.0.so 31222 +usr/lib/x86_64-linux-gnu/mutter/libmutter-cogl-3.so 31221 +usr/lib/x86_64-linux-gnu/libstartup-notification-1.so.0.0.0 31220 +usr/lib/x86_64-linux-gnu/libcanberra.so.0.2.5 31219 +usr/lib/x86_64-linux-gnu/libcanberra-gtk3.so.0.1.9 31218 +usr/lib/x86_64-linux-gnu/libpolkit-agent-1.so.0.0.0 31217 +usr/lib/x86_64-linux-gnu/libgcr-base-3.so.1.0.0 31216 +usr/lib/x86_64-linux-gnu/libnm.so.0.1.0 31215 +usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0 31214 +usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0.1404.0 31213 +usr/lib/x86_64-linux-gnu/libgstbase-1.0.so.0.1404.0 31212 +usr/lib/x86_64-linux-gnu/libmozjs-60.so.0.0.0 31211 +usr/lib/x86_64-linux-gnu/mutter/libmutter-cogl-path-3.so 31210 +usr/lib/x86_64-linux-gnu/libxkbcommon-x11.so.0.0.0 31209 +usr/lib/x86_64-linux-gnu/libxcb-randr.so.0.1.0 31208 +usr/lib/x86_64-linux-gnu/libxcb-res.so.0.0.0 31207 +usr/lib/x86_64-linux-gnu/libpipewire-0.2.so.1.205.0 31206 +usr/lib/x86_64-linux-gnu/libcroco-0.6.so.3.0.1 31205 +usr/lib/x86_64-linux-gnu/libxcb-util.so.0.0.0 31204 +usr/lib/x86_64-linux-gnu/libvorbisfile.so.3.3.7 31203 +usr/lib/x86_64-linux-gnu/libtdb.so.1.3.16 31202 +usr/lib/x86_64-linux-gnu/libltdl.so.7.3.1 31201 +usr/lib/x86_64-linux-gnu/libgck-1.so.0.0.0 31200 +usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0 31199 +usr/lib/x86_64-linux-gnu/libgnutls.so.30.23.2 31198 +usr/lib/x86_64-linux-gnu/libicui18n.so.63.1 31197 +usr/lib/x86_64-linux-gnu/libicuuc.so.63.1 31196 +usr/lib/x86_64-linux-gnu/libicudata.so.63.1 31195 +usr/lib/x86_64-linux-gnu/libxcb-xkb.so.1.0.0 31194 +usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4 31193 +usr/lib/x86_64-linux-gnu/libidn2.so.0.3.4 31192 +usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0 31191 +usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5 31190 +usr/lib/x86_64-linux-gnu/libnettle.so.6.5 31189 +usr/lib/x86_64-linux-gnu/libhogweed.so.4.5 31188 +usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2 31187 +usr/share/libwacom/xp-pen-star03.tablet 31186 +usr/share/libwacom/serial-wacf004.tablet 31185 +usr/share/libwacom/one-by-wacom-s-p.tablet 31184 +usr/share/libwacom/one-by-wacom-s-p2.tablet 31183 +usr/share/libwacom/one-by-wacom-m-p.tablet 31182 +usr/share/libwacom/one-by-wacom-m-p2.tablet 31181 +usr/share/libwacom/n-trig-pen.tablet 31180 +usr/share/libwacom/mobilestudio-pro-16.tablet 31179 +usr/share/libwacom/mobilestudio-pro-13.tablet 31178 +usr/share/libwacom/isdv4-ef.tablet 31177 +usr/share/libwacom/isdv4-ed.tablet 31176 +usr/share/libwacom/isdv4-ec.tablet 31175 +usr/share/libwacom/isdv4-e6.tablet 31174 +usr/share/libwacom/isdv4-e5.tablet 31173 +usr/share/libwacom/isdv4-e3.tablet 31172 +usr/share/libwacom/isdv4-e2.tablet 31171 +usr/share/libwacom/isdv4-93.tablet 31170 +usr/share/libwacom/isdv4-90.tablet 31169 +usr/share/libwacom/isdv4-516b.tablet 31168 +usr/share/libwacom/isdv4-5150.tablet 31167 +usr/share/libwacom/isdv4-5146.tablet 31166 +usr/share/libwacom/isdv4-5122.tablet 31165 +usr/share/libwacom/isdv4-5110.tablet 31164 +usr/share/libwacom/isdv4-50fd.tablet 31163 +usr/share/libwacom/isdv4-50f8.tablet 31162 +usr/share/libwacom/isdv4-50f1.tablet 31161 +usr/share/libwacom/isdv4-50b8.tablet 31160 +usr/share/libwacom/isdv4-50b6.tablet 31159 +usr/share/libwacom/isdv4-50b4.tablet 31158 +usr/share/libwacom/isdv4-509d.tablet 31157 +usr/share/libwacom/isdv4-5099.tablet 31156 +usr/share/libwacom/isdv4-5090.tablet 31155 +usr/share/libwacom/isdv4-504a.tablet 31154 +usr/share/libwacom/isdv4-5048.tablet 31153 +usr/share/libwacom/isdv4-5044.tablet 31152 +usr/share/libwacom/isdv4-5040.tablet 31151 +usr/share/libwacom/isdv4-503f.tablet 31150 +usr/share/libwacom/isdv4-503e.tablet 31149 +usr/share/libwacom/isdv4-502a.tablet 31148 +usr/share/libwacom/isdv4-5014.tablet 31147 +usr/share/libwacom/isdv4-5013.tablet 31146 +usr/share/libwacom/isdv4-5010.tablet 31145 +usr/share/libwacom/isdv4-5002.tablet 31144 +usr/share/libwacom/isdv4-5000.tablet 31143 +usr/share/libwacom/isdv4-486a.tablet 31142 +usr/share/libwacom/isdv4-485e.tablet 31141 +usr/share/libwacom/isdv4-484c.tablet 31140 +usr/share/libwacom/isdv4-4831.tablet 31139 +usr/share/libwacom/isdv4-4824.tablet 31138 +usr/share/libwacom/isdv4-4822.tablet 31137 +usr/share/libwacom/isdv4-481a.tablet 31136 +usr/share/libwacom/isdv4-4814.tablet 31135 +usr/share/libwacom/isdv4-4809.tablet 31134 +usr/share/libwacom/isdv4-4807.tablet 31133 +usr/share/libwacom/isdv4-4800.tablet 31132 +usr/share/libwacom/isdv4-4004.tablet 31131 +usr/share/libwacom/isdv4-12c.tablet 31130 +usr/share/libwacom/isdv4-124.tablet 31129 +usr/share/libwacom/isdv4-117.tablet 31128 +usr/share/libwacom/isdv4-116.tablet 31127 +usr/share/libwacom/isdv4-114.tablet 31126 +usr/share/libwacom/isdv4-10f.tablet 31125 +usr/share/libwacom/isdv4-10e.tablet 31124 +usr/share/libwacom/isdv4-10d.tablet 31123 +usr/share/libwacom/isdv4-104.tablet 31122 +usr/share/libwacom/isdv4-101.tablet 31121 +usr/share/libwacom/isdv4-100.tablet 31120 +usr/share/libwacom/intuos-s-pt.tablet 31119 +usr/share/libwacom/intuos-s-p.tablet 31118 +usr/share/libwacom/intuos-s-pt2.tablet 31117 +usr/share/libwacom/intuos-s-p3-wl.tablet 31116 +usr/share/libwacom/intuos-s-p3.tablet 31115 +usr/share/libwacom/intuos-s-p2.tablet 31114 +usr/share/libwacom/intuos-pro-s.tablet 31113 +usr/share/libwacom/intuos-pro-m.tablet 31112 +usr/share/libwacom/intuos-pro-l.tablet 31111 +usr/share/libwacom/intuos-pro-2-m-wl.tablet 31110 +usr/share/libwacom/intuos-pro-2-m.tablet 31109 +usr/share/libwacom/intuos-pro-2-l-wl.tablet 31108 +usr/share/libwacom/intuos-pro-2-l.tablet 31107 +usr/share/libwacom/intuos-m-pt.tablet 31106 +usr/share/libwacom/intuos-m-p.tablet 31105 +usr/share/libwacom/intuos-m-pt2.tablet 31104 +usr/share/libwacom/intuos-m-p3-wl.tablet 31103 +usr/share/libwacom/intuos-m-p3.tablet 31102 +usr/share/libwacom/intuos-m-p2.tablet 31101 +usr/share/libwacom/intuos-9x12.tablet 31100 +usr/share/libwacom/intuos-6x8.tablet 31099 +usr/share/libwacom/intuos5-touch-s.tablet 31098 +usr/share/libwacom/intuos5-touch-m.tablet 31097 +usr/share/libwacom/intuos5-touch-l.tablet 31096 +usr/share/libwacom/intuos5-s.tablet 31095 +usr/share/libwacom/intuos5-m.tablet 31094 +usr/share/libwacom/intuos-4x5.tablet 31093 +usr/share/libwacom/intuos4-8x13.tablet 31092 +usr/share/libwacom/intuos4-6x9-wl.tablet 31091 +usr/share/libwacom/intuos4-6x9.tablet 31090 +usr/share/libwacom/intuos4-4x6.tablet 31089 +usr/share/libwacom/intuos4-12x19.tablet 31088 +usr/share/libwacom/intuos3-9x12.tablet 31087 +usr/share/libwacom/intuos3-6x8.tablet 31086 +usr/share/libwacom/intuos3-6x11.tablet 31085 +usr/share/libwacom/intuos3-4x6.tablet 31084 +usr/share/libwacom/intuos3-4x5.tablet 31083 +usr/share/libwacom/intuos3-12x19.tablet 31082 +usr/share/libwacom/intuos3-12x12.tablet 31081 +usr/share/libwacom/intuos2-9x12.tablet 31080 +usr/share/libwacom/intuos2-6x8.tablet 31079 +usr/share/libwacom/intuos2-4x5.tablet 31078 +usr/share/libwacom/intuos2-12x18.tablet 31077 +usr/share/libwacom/intuos2-12x12.tablet 31076 +usr/share/libwacom/intuos-12x18.tablet 31075 +usr/share/libwacom/intuos-12x12.tablet 31074 +usr/share/libwacom/huion-h610-pro.tablet 31073 +usr/share/libwacom/graphire-wireless-8x6.tablet 31072 +usr/share/libwacom/graphire-usb.tablet 31071 +usr/share/libwacom/graphire4-6x8.tablet 31070 +usr/share/libwacom/graphire4-4x5.tablet 31069 +usr/share/libwacom/graphire3-6x8.tablet 31068 +usr/share/libwacom/graphire3-4x5.tablet 31067 +usr/share/libwacom/graphire2-5x7.tablet 31066 +usr/share/libwacom/graphire2-4x5.tablet 31065 +usr/share/libwacom/generic.tablet 31064 +usr/share/libwacom/elan-2537.tablet 31063 +usr/share/libwacom/elan-24db.tablet 31062 +usr/share/libwacom/elan-22e2.tablet 31061 +usr/share/libwacom/ek-remote.tablet 31060 +usr/share/libwacom/dtu-2231.tablet 31059 +usr/share/libwacom/dtu-1931.tablet 31058 +usr/share/libwacom/dtu-1631.tablet 31057 +usr/share/libwacom/dtu-1141.tablet 31056 +usr/share/libwacom/dtu-1141b.tablet 31055 +usr/share/libwacom/dtu-1031x.tablet 31054 +usr/share/libwacom/dtu-1031.tablet 31053 +usr/share/libwacom/dtk-2451.tablet 31052 +usr/share/libwacom/dtk-2241.tablet 31051 +usr/share/libwacom/dtk-1651.tablet 31050 +usr/share/libwacom/dti-520.tablet 31049 +usr/share/libwacom/dth-2452.tablet 31048 +usr/share/libwacom/dth-2242.tablet 31047 +usr/share/libwacom/dth-1152.tablet 31046 +usr/share/libwacom/dtf-720.tablet 31045 +usr/share/libwacom/dell-canvas-27.tablet 31044 +usr/share/libwacom/cintiq-pro-32.tablet 31043 +usr/share/libwacom/cintiq-pro-24-pt.tablet 31042 +usr/share/libwacom/cintiq-pro-24-p.tablet 31041 +usr/share/libwacom/cintiq-pro-16.tablet 31040 +usr/share/libwacom/cintiq-pro-13.tablet 31039 +usr/share/libwacom/cintiq-companion.tablet 31038 +usr/share/libwacom/cintiq-companion-hybrid.tablet 31037 +usr/share/libwacom/cintiq-companion-2.tablet 31036 +usr/share/libwacom/cintiq-27hdt.tablet 31035 +usr/share/libwacom/cintiq-27hd.tablet 31034 +usr/share/libwacom/cintiq-24hd-touch.tablet 31033 +usr/share/libwacom/cintiq-24hd.tablet 31032 +usr/share/libwacom/cintiq-22hdt.tablet 31031 +usr/share/libwacom/cintiq-22hd.tablet 31030 +usr/share/libwacom/cintiq-21ux.tablet 31029 +usr/share/libwacom/cintiq-21ux2.tablet 31028 +usr/share/libwacom/cintiq-20wsx.tablet 31027 +usr/share/libwacom/cintiq-13hdt.tablet 31026 +usr/share/libwacom/cintiq-13hd.tablet 31025 +usr/share/libwacom/cintiq-12wx.tablet 31024 +usr/share/libwacom/bamboo-pad-wireless.tablet 31023 +usr/share/libwacom/bamboo-pad.tablet 31022 +usr/share/libwacom/bamboo-one.tablet 31021 +usr/share/libwacom/bamboo-4fg-s-t.tablet 31020 +usr/share/libwacom/bamboo-4fg-s-pt.tablet 31019 +usr/share/libwacom/bamboo-4fg-se-s-pt.tablet 31018 +usr/share/libwacom/bamboo-4fg-se-m-pt.tablet 31017 +usr/share/libwacom/bamboo-4fg-fun-s.tablet 31016 +usr/share/libwacom/bamboo-4fg-fun-m.tablet 31015 +usr/share/libwacom/bamboo-2fg-s-t.tablet 31014 +usr/share/libwacom/bamboo-2fg-s-pt.tablet 31013 +usr/share/libwacom/bamboo-2fg-s-p.tablet 31012 +usr/share/libwacom/bamboo-2fg-m-p.tablet 31011 +usr/share/libwacom/bamboo-2fg-fun-s-pt.tablet 31010 +usr/share/libwacom/bamboo-2fg-fun-m-pt.tablet 31009 +usr/share/libwacom/bamboo-16fg-s-t.tablet 31008 +usr/share/libwacom/bamboo-16fg-s-pt.tablet 31007 +usr/share/libwacom/bamboo-16fg-s-p.tablet 31006 +usr/share/libwacom/bamboo-16fg-m-pt.tablet 31005 +usr/share/libwacom/bamboo-0fg-s-p.tablet 31004 +usr/share/libwacom/libwacom.stylus 31003 +usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders.cache 31002 +usr/lib/x86_64-linux-gnu/libcanberra-0.30/libcanberra-pulse.so 31001 +usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecore-12.2.so 30999 +usr/lib/x86_64-linux-gnu/liborc-0.4.so.0.28.0 30998 +usr/lib/x86_64-linux-gnu/libspeexdsp.so.1.5.0 30997 +usr/lib/x86_64-linux-gnu/libsoxr.so.0.1.1 30996 +usr/lib/x86_64-linux-gnu/libgomp.so.1.0.0 30995 +etc/pulse/daemon.conf 30994 +etc/pulse/default.pa 30993 +usr/lib/pulse-12.2/modules/module-device-restore.so 30992 +usr/lib/pulse-12.2/modules/libprotocol-native.so 30991 +usr/lib/pulse-12.2/modules/module-stream-restore.so 30990 +usr/lib/pulse-12.2/modules/module-card-restore.so 30989 +usr/lib/pulse-12.2/modules/module-augment-properties.so 30988 +usr/lib/pulse-12.2/modules/module-switch-on-port-available.so 30987 +usr/lib/pulse-12.2/modules/module-udev-detect.so 30986 +usr/lib/pulse-12.2/modules/module-alsa-card.so 30985 +usr/lib/pulse-12.2/modules/libalsa-util.so 30984 +usr/share/pulseaudio/alsa-mixer/profile-sets/default.conf 30983 +usr/share/alsa/cards/aliases.conf 30982 +usr/share/alsa/pcm/default.conf 30981 +usr/share/alsa/pcm/dmix.conf 30980 +usr/share/alsa/pcm/dsnoop.conf 30979 +usr/share/alsa/cards/HDA-Intel.conf 30978 +usr/share/alsa/pcm/front.conf 30977 +usr/share/alsa/pcm/surround21.conf 30976 +usr/share/alsa/pcm/surround40.conf 30975 +usr/share/alsa/pcm/surround41.conf 30974 +usr/share/alsa/pcm/surround50.conf 30973 +usr/share/alsa/pcm/surround51.conf 30972 +usr/share/alsa/pcm/surround71.conf 30971 +usr/share/alsa/pcm/iec958.conf 30970 +usr/share/alsa/pcm/hdmi.conf 30969 +usr/share/alsa/pcm/modem.conf 30968 +usr/share/pulseaudio/alsa-mixer/paths/analog-input-front-mic.conf 30967 +usr/share/pulseaudio/alsa-mixer/paths/analog-input-mic.conf.common 30966 +usr/share/pulseaudio/alsa-mixer/paths/analog-input-rear-mic.conf 30965 +usr/share/pulseaudio/alsa-mixer/paths/analog-input-internal-mic.conf 30964 +usr/share/pulseaudio/alsa-mixer/paths/analog-input-dock-mic.conf 30963 +usr/share/pulseaudio/alsa-mixer/paths/analog-input.conf 30962 +usr/share/pulseaudio/alsa-mixer/paths/analog-input.conf.common 30961 +usr/share/pulseaudio/alsa-mixer/paths/analog-input-mic.conf 30960 +usr/share/pulseaudio/alsa-mixer/paths/analog-input-linein.conf 30959 +usr/share/pulseaudio/alsa-mixer/paths/analog-input-aux.conf 30958 +usr/share/pulseaudio/alsa-mixer/paths/analog-input-video.conf 30957 +usr/share/pulseaudio/alsa-mixer/paths/analog-input-tvtuner.conf 30956 +usr/share/pulseaudio/alsa-mixer/paths/analog-input-fm.conf 30955 +usr/share/pulseaudio/alsa-mixer/paths/analog-input-mic-line.conf 30954 +usr/share/pulseaudio/alsa-mixer/paths/analog-input-headphone-mic.conf 30953 +usr/share/pulseaudio/alsa-mixer/paths/analog-input-headset-mic.conf 30952 +usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf 30951 +usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf.common 30950 +usr/share/pulseaudio/alsa-mixer/paths/analog-output-lineout.conf 30949 +usr/share/pulseaudio/alsa-mixer/paths/analog-output-speaker.conf 30948 +usr/share/pulseaudio/alsa-mixer/paths/analog-output-headphones.conf 30947 +usr/share/pulseaudio/alsa-mixer/paths/analog-output-headphones-2.conf 30946 +usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_pcm_a52.so 30945 +usr/lib/x86_64-linux-gnu/libavcodec.so.58.35.100 30944 +usr/lib/x86_64-linux-gnu/libavutil.so.56.22.100 30943 +usr/lib/x86_64-linux-gnu/libavresample.so.4.0.0 30942 +usr/lib/x86_64-linux-gnu/libswresample.so.3.3.100 30941 +usr/lib/x86_64-linux-gnu/libvpx.so.5.0.0 30940 +usr/lib/x86_64-linux-gnu/libwebpmux.so.3.0.1 30939 +usr/lib/x86_64-linux-gnu/libwebp.so.6.0.2 30938 +usr/lib/x86_64-linux-gnu/libcrystalhd.so.3.6 30937 +usr/lib/x86_64-linux-gnu/librsvg-2.so.2.44.10 30936 +usr/lib/x86_64-linux-gnu/libzvbi.so.0.13.2 30935 +usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7 30934 +usr/lib/x86_64-linux-gnu/libaom.so.0 30933 +usr/lib/x86_64-linux-gnu/libcodec2.so.0.8.1 30932 +usr/lib/x86_64-linux-gnu/libgsm.so.1.0.18 30931 +usr/lib/x86_64-linux-gnu/libmp3lame.so.0.0.0 30930 +usr/lib/x86_64-linux-gnu/libopenjp2.so.2.3.0 30929 +usr/lib/x86_64-linux-gnu/libopus.so.0.7.0 30928 +usr/lib/x86_64-linux-gnu/libshine.so.3.0.1 30927 +usr/lib/x86_64-linux-gnu/libspeex.so.1.5.0 30926 +usr/lib/x86_64-linux-gnu/libtheoraenc.so.1.1.2 30925 +usr/lib/x86_64-linux-gnu/libtheoradec.so.1.1.4 30924 +usr/lib/x86_64-linux-gnu/libtwolame.so.0.0.0 30923 +usr/lib/x86_64-linux-gnu/libwavpack.so.1.2.0 30922 +usr/lib/x86_64-linux-gnu/libx264.so.155 30921 +usr/lib/x86_64-linux-gnu/libx265.so.165 30920 +usr/lib/x86_64-linux-gnu/libxvidcore.so.4.3 30919 +usr/lib/x86_64-linux-gnu/libva.so.2.400.0 30918 +usr/lib/x86_64-linux-gnu/libva-drm.so.2.400.0 30917 +usr/lib/x86_64-linux-gnu/libva-x11.so.2.400.0 30916 +usr/lib/x86_64-linux-gnu/libvdpau.so.1.0.0 30915 +usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0 30914 +usr/share/pulseaudio/alsa-mixer/paths/hdmi-output-0.conf 30913 +usr/share/pulseaudio/alsa-mixer/paths/hdmi-output-1.conf 30912 +usr/share/pulseaudio/alsa-mixer/paths/hdmi-output-2.conf 30911 +usr/lib/pulse-12.2/modules/module-native-protocol-unix.so 30910 +usr/lib/pulse-12.2/modules/module-default-device-restore.so 30909 +usr/lib/pulse-12.2/modules/module-rescue-streams.so 30908 +usr/lib/pulse-12.2/modules/module-always-sink.so 30907 +usr/lib/pulse-12.2/modules/module-intended-roles.so 30906 +usr/lib/pulse-12.2/modules/module-suspend-on-idle.so 30905 +usr/lib/pulse-12.2/modules/module-console-kit.so 30904 +usr/lib/pulse-12.2/modules/module-systemd-login.so 30903 +usr/lib/pulse-12.2/modules/module-position-event-sounds.so 30902 +usr/lib/pulse-12.2/modules/module-role-cork.so 30901 +usr/lib/pulse-12.2/modules/module-filter-heuristics.so 30900 +usr/lib/pulse-12.2/modules/module-filter-apply.so 30899 +usr/share/icons/Adwaita/cursor.theme 30898 +usr/share/icons/Adwaita/cursors/left_ptr 30897 +usr/lib/x86_64-linux-gnu/mutter/Clutter-3.typelib 30896 +usr/lib/x86_64-linux-gnu/girepository-1.0/Clutter-1.0.typelib 30895 +usr/lib/x86_64-linux-gnu/girepository-1.0/cairo-1.0.typelib 30894 +usr/lib/x86_64-linux-gnu/girepository-1.0/Json-1.0.typelib 30893 +usr/lib/x86_64-linux-gnu/girepository-1.0/Gio-2.0.typelib 30892 +usr/lib/x86_64-linux-gnu/girepository-1.0/GObject-2.0.typelib 30891 +usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib 30890 +usr/lib/x86_64-linux-gnu/girepository-1.0/GL-1.0.typelib 30889 +usr/lib/x86_64-linux-gnu/mutter/CoglPango-3.typelib 30888 +usr/lib/x86_64-linux-gnu/girepository-1.0/PangoCairo-1.0.typelib 30887 +usr/lib/x86_64-linux-gnu/girepository-1.0/Pango-1.0.typelib 30886 +usr/lib/x86_64-linux-gnu/mutter/Cogl-3.typelib 30885 +usr/lib/x86_64-linux-gnu/girepository-1.0/Atk-1.0.typelib 30884 +usr/lib/gjs/girepository-1.0/GjsPrivate-1.0.typelib 30883 +usr/lib/x86_64-linux-gnu/girepository-1.0/Gtk-3.0.typelib 30882 +usr/lib/x86_64-linux-gnu/girepository-1.0/xlib-2.0.typelib 30881 +usr/lib/x86_64-linux-gnu/girepository-1.0/Gdk-3.0.typelib 30880 +usr/lib/x86_64-linux-gnu/girepository-1.0/GdkPixbuf-2.0.typelib 30879 +usr/lib/x86_64-linux-gnu/girepository-1.0/GModule-2.0.typelib 30878 +usr/lib/gnome-shell/Shell-0.1.typelib 30877 +usr/lib/gnome-shell/St-1.0.typelib 30876 +usr/lib/x86_64-linux-gnu/mutter/Cally-3.typelib 30875 +usr/lib/gnome-shell/ShellMenu-0.1.typelib 30874 +usr/lib/x86_64-linux-gnu/girepository-1.0/PolkitAgent-1.0.typelib 30873 +usr/lib/x86_64-linux-gnu/girepository-1.0/Polkit-1.0.typelib 30872 +usr/lib/x86_64-linux-gnu/girepository-1.0/NM-1.0.typelib 30871 +usr/lib/x86_64-linux-gnu/mutter/Meta-3.typelib 30870 +usr/lib/x86_64-linux-gnu/girepository-1.0/xfixes-4.0.typelib 30869 +usr/lib/x86_64-linux-gnu/girepository-1.0/GDesktopEnums-3.0.typelib 30868 +usr/lib/gnome-shell/Gvc-1.0.typelib 30867 +usr/lib/x86_64-linux-gnu/girepository-1.0/Gcr-3.typelib 30866 +usr/lib/x86_64-linux-gnu/girepository-1.0/Gck-1.typelib 30865 +usr/lib/x86_64-linux-gnu/mutter/ClutterX11-3.typelib 30864 +usr/lib/x86_64-linux-gnu/girepository-1.0/GnomeDesktop-3.0.typelib 30863 +usr/share/gnome-shell/gnome-shell-dbus-interfaces.gresource 30862 +usr/lib/girepository-1.0/AccountsService-1.0.typelib 30861 +usr/lib/x86_64-linux-gnu/girepository-1.0/Soup-2.4.typelib 30860 +usr/lib/x86_64-linux-gnu/girepository-1.0/IBus-1.0.typelib 30859 +usr/lib/x86_64-linux-gnu/girepository-1.0/Atspi-2.0.typelib 30858 +usr/lib/x86_64-linux-gnu/girepository-1.0/DBus-1.0.typelib 30857 +usr/lib/x86_64-linux-gnu/girepository-1.0/Rsvg-2.0.typelib 30856 +usr/lib/x86_64-linux-gnu/girepository-1.0/Gdm-1.0.typelib 30855 +usr/lib/x86_64-linux-gnu/girepository-1.0/GWeather-3.0.typelib 30854 +usr/lib/x86_64-linux-gnu/girepository-1.0/Geoclue-2.0.typelib 30853 +usr/lib/x86_64-linux-gnu/girepository-1.0/Cogl-1.0.typelib 30852 +usr/lib/x86_64-linux-gnu/girepository-1.0/Cogl-2.0.typelib 30851 +usr/share/gnome-shell/modes/classic.json 30850 +usr/share/gnome-shell/modes/gdm-tails.json 30849 +etc/xdg/gnome-mimeapps.list 30848 +usr/local/share/mime/mime.cache 30847 +usr/share/mime/mime.cache 30846 +usr/share/gdm/greeter/applications/mimeapps.list 30845 +usr/share/applications/gnome-mimeapps.list 30844 +usr/share/applications/mimeinfo.cache 30843 +usr/share/gdm/greeter/applications/mime-dummy-handler.desktop 30842 +usr/share/applications/gnome-bluetooth-panel.desktop 30841 +usr/share/applications/gnome-info-overview-panel.desktop 30840 +usr/share/applications/gnome-wifi-panel.desktop 30839 +usr/share/applications/libreoffice-xsltfilter.desktop 30838 +usr/share/applications/org.gnome.Screenshot.desktop 30837 +usr/share/applications/org.gnome.Evince.desktop 30836 +usr/share/applications/pidgin.desktop 30835 +usr/share/applications/seahorse-pgp-keys.desktop 30834 +usr/share/applications/org.gnome.Evolution-alarm-notify.desktop 30833 +usr/share/applications/simple-scan.desktop 30832 +usr/share/applications/org.gnome.Shell.desktop 30831 +usr/share/applications/python3.7.desktop 30830 +usr/share/applications/gnome-sound-panel.desktop 30829 +usr/share/applications/synaptic.desktop 30828 +usr/share/applications/tails-persistence-delete.desktop 30827 +usr/share/applications/gnome-disk-image-mounter.desktop 30826 +usr/share/applications/thunderbird.desktop 30825 +usr/share/applications/org.gnome.Totem.desktop 30824 +usr/share/applications/ibus-setup-chewing.desktop 30823 +usr/share/applications/ibus-setup-anthy.desktop 30822 +usr/share/applications/gcr-prompter.desktop 30821 +usr/share/applications/net.poedit.PoeditURI.desktop 30820 +usr/share/applications/gcr-viewer.desktop 30819 +usr/share/applications/gnome-wacom-panel.desktop 30818 +usr/share/applications/tails-about.desktop 30817 +usr/share/applications/org.gnome.PowerStats.desktop 30816 +usr/share/applications/python2.7.desktop 30815 +usr/share/applications/gnome-thunderbolt-panel.desktop 30814 +usr/share/applications/libreoffice-startcenter.desktop 30813 +usr/share/applications/tails-documentation.desktop 30812 +usr/share/applications/gnome-control-center.desktop 30811 +usr/share/applications/org.freedesktop.IBus.Panel.Extension.Gtk3.desktop 30810 +usr/share/applications/gnome-search-panel.desktop 30809 +usr/share/applications/org.gnome.FileRoller.desktop 30808 +usr/share/applications/tails-installer.desktop 30807 +usr/share/applications/vim.desktop 30806 +usr/share/applications/unlock-veracrypt-volumes.desktop 30805 +usr/share/applications/yelp.desktop 30804 +usr/share/applications/tor-browser.desktop 30803 +usr/share/applications/brasero.desktop 30802 +usr/share/applications/unsafe-browser.desktop 30801 +usr/share/applications/org.gnome.Terminal.desktop 30800 +usr/share/applications/org.gnome.SoundJuicer.desktop 30799 +usr/share/applications/org.gnome.Shell.PortalHelper.desktop 30798 +usr/share/applications/gnome-power-panel.desktop 30797 +usr/share/applications/audacity.desktop 30796 +usr/share/applications/org.gnome.gedit.desktop 30795 +usr/share/applications/ibus-setup-libpinyin.desktop 30794 +usr/share/applications/tails-persistence-setup.desktop 30793 +usr/share/applications/nm-applet.desktop 30792 +usr/share/applications/gnome-region-panel.desktop 30791 +usr/share/applications/ibus-setup.desktop 30790 +usr/share/applications/gnome-keyboard-panel.desktop 30789 +usr/share/applications/gnome-notifications-panel.desktop 30788 +usr/share/applications/gkbd-keyboard-display.desktop 30787 +usr/share/applications/seahorse.desktop 30786 +usr/share/applications/libreoffice-calc.desktop 30785 +usr/share/applications/brasero-nautilus.desktop 30784 +usr/share/applications/gnome-shell-extension-prefs.desktop 30783 +usr/share/applications/bookletimposer.desktop 30782 +usr/share/applications/libreoffice-impress.desktop 30781 +usr/share/applications/ibus-setup-hangul.desktop 30780 +usr/share/applications/gnome-datetime-panel.desktop 30779 +usr/share/applications/org.gnome.SoundRecorder.desktop 30778 +usr/share/applications/gnome-universal-access-panel.desktop 30777 +usr/share/applications/eog.desktop 30776 +usr/share/applications/electrum.desktop 30775 +usr/share/applications/onioncircuits.desktop 30774 +usr/share/applications/org.keepassxc.KeePassXC.desktop 30773 +usr/share/applications/gnome-color-panel.desktop 30772 +usr/share/applications/dasher.desktop 30771 +usr/share/applications/gnome-mouse-panel.desktop 30770 +usr/share/applications/gnome-system-monitor.desktop 30769 +usr/share/applications/libreoffice-writer.desktop 30768 +usr/share/applications/seahorse-pgp-encrypted.desktop 30767 +usr/share/applications/gnome-disk-image-writer.desktop 30766 +usr/share/applications/gnome-printers-panel.desktop 30765 +usr/share/applications/org.gnome.Calculator.desktop 30764 +usr/share/applications/gtkhash.desktop 30763 +usr/share/applications/ibus-setup-libbopomofo.desktop 30762 +usr/share/applications/gnome-default-apps-panel.desktop 30761 +usr/share/applications/seahorse-pgp-signature.desktop 30760 +usr/share/applications/gimp.desktop 30759 +usr/share/applications/whisperback.desktop 30758 +usr/share/applications/gnome-removable-media-panel.desktop 30757 +usr/share/applications/gnome-display-panel.desktop 30756 +usr/share/applications/gnome-sharing-panel.desktop 30755 +usr/share/applications/display-im6.q16.desktop 30754 +usr/share/applications/libreoffice-draw.desktop 30753 +usr/share/applications/org.boum.tails.additional-software-config.desktop 30752 +usr/share/applications/evolution-calendar.desktop 30751 +usr/share/applications/gnome-network-panel.desktop 30750 +usr/share/applications/gnome-privacy-panel.desktop 30749 +usr/share/applications/net.poedit.Poedit.desktop 30748 +usr/share/applications/gnome-background-panel.desktop 30747 +usr/share/applications/inkscape.desktop 30746 +usr/share/applications/nautilus-autorun-software.desktop 30745 +usr/share/applications/gnome-user-accounts-panel.desktop 30744 +usr/share/applications/gnome-system-monitor-kde.desktop 30743 +usr/share/applications/org.gnome.Nautilus.desktop 30742 +usr/share/applications/org.freedesktop.IBus.Panel.Emojier.desktop 30741 +usr/share/applications/org.gnome.DiskUtility.desktop 30740 +usr/share/applications/mutter.desktop 30739 +usr/share/applications/org.gnome.Evince-previewer.desktop 30738 +usr/share/applications/onionshare.desktop 30737 +usr/share/applications/root-terminal.desktop 30736 +usr/share/gnome-shell/gnome-shell-theme.gresource 30735 +usr/share/gnome-shell/gnome-shell-osk-layouts.gresource 30734 +usr/share/gnome-shell/theme/gnome-classic.css 30733 +usr/share/locale/en/LC_MESSAGES/gnome-desktop-3.0.mo 30732 +usr/share/tails/desktop_wallpaper.png 30731 +usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so 30730 +etc/fonts/fonts.conf 30729 +usr/share/fontconfig/conf.avail/10-hinting-slight.conf 30728 +usr/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf 30727 +usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf 30726 +etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans-mono.conf 30725 +etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans.conf 30724 +etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-serif.conf 30723 +etc/fonts/conf.avail/20-unhint-small-dejavu-sans-mono.conf 30722 +etc/fonts/conf.avail/20-unhint-small-dejavu-sans.conf 30721 +etc/fonts/conf.avail/20-unhint-small-dejavu-serif.conf 30720 +usr/share/fontconfig/conf.avail/20-unhint-small-vera.conf 30719 +usr/share/fontconfig/conf.avail/30-metric-aliases.conf 30718 +usr/share/fontconfig/conf.avail/30-opensymbol.conf 30717 +usr/share/fontconfig/conf.avail/40-nonlatin.conf 30716 +usr/share/fontconfig/conf.avail/45-generic.conf 30715 +usr/share/fontconfig/conf.avail/45-latin.conf 30714 +usr/share/fontconfig/conf.avail/49-sansserif.conf 30713 +usr/share/fontconfig/conf.avail/50-user.conf 30712 +usr/share/fontconfig/conf.avail/51-local.conf 30711 +etc/fonts/conf.avail/57-dejavu-sans-mono.conf 30710 +etc/fonts/conf.avail/57-dejavu-sans.conf 30709 +etc/fonts/conf.avail/57-dejavu-serif.conf 30708 +etc/fonts/conf.avail/58-dejavu-lgc-sans-mono.conf 30707 +etc/fonts/conf.avail/58-dejavu-lgc-sans.conf 30706 +etc/fonts/conf.avail/58-dejavu-lgc-serif.conf 30705 +usr/share/fontconfig/conf.avail/60-generic.conf 30704 +usr/share/fontconfig/conf.avail/60-latin.conf 30703 +etc/fonts/conf.avail/65-culmus.conf 30702 +usr/share/fontconfig/conf.avail/65-fonts-persian.conf 30701 +usr/share/fontconfig/conf.avail/65-nonlatin.conf 30700 +usr/share/fontconfig/conf.avail/69-unifont.conf 30699 +usr/share/fontconfig/conf.avail/70-fonts-noto-cjk.conf 30698 +usr/share/fontconfig/conf.avail/70-no-bitmaps.conf 30697 +usr/share/fontconfig/conf.avail/80-delicious.conf 30696 +usr/share/fontconfig/conf.avail/90-fonts-linux-libertine.conf 30695 +usr/share/fontconfig/conf.avail/90-synthetic.conf 30694 +usr/share/fontconfig/conf.avail/10-autohint.conf 30693 +usr/share/fontconfig/conf.avail/10-hinting-full.conf 30692 +usr/share/fontconfig/conf.avail/10-hinting-medium.conf 30691 +usr/share/fontconfig/conf.avail/10-hinting-none.conf 30690 +usr/share/fontconfig/conf.avail/10-no-sub-pixel.conf 30689 +usr/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf 30688 +usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf 30687 +usr/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf 30686 +usr/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf 30685 +usr/share/fontconfig/conf.avail/10-unhinted.conf 30684 +usr/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf 30683 +usr/share/fontconfig/conf.avail/11-lcdfilter-light.conf 30682 +usr/share/fontconfig/conf.avail/25-unhint-nonlatin.conf 30681 +usr/share/fontconfig/conf.avail/65-khmer.conf 30680 +usr/share/fontconfig/conf.avail/70-force-bitmaps.conf 30679 +usr/share/fontconfig/conf.avail/70-yes-bitmaps.conf 30678 +usr/share/fonts/.uuid 30677 +var/cache/fontconfig/ad3800a6-0853-5900-ac2b-6a45e906a034-le64.cache-7 30676 +usr/local/share/fonts/.uuid 30675 +var/cache/fontconfig/a19c77ef-2b6e-5d56-80fa-aa461c22a33c-le64.cache-7 30674 +usr/share/fonts/X11/.uuid 30673 +var/cache/fontconfig/635775a3-6681-5500-bfb3-fc75bae7ab71-le64.cache-7 30672 +usr/share/fonts/cMap/.uuid 30671 +var/cache/fontconfig/e0df4ba7-1e1e-53f4-99ac-034e136dea90-le64.cache-7 30670 +usr/share/fonts/cmap/.uuid 30669 +var/cache/fontconfig/8c262b76-19e2-5a0e-970a-3c6be641c3de-le64.cache-7 30668 +usr/share/fonts/opentype/.uuid 30667 +var/cache/fontconfig/c53c919e-4688-5813-a778-9497aaad292b-le64.cache-7 30666 +usr/share/fonts/truetype/.uuid 30665 +var/cache/fontconfig/ad91de03-2bc9-5cbd-baed-449447b4cef2-le64.cache-7 30664 +usr/share/fonts/X11/100dpi/.uuid 30663 +var/cache/fontconfig/c3eb68e6-f2df-5253-bdea-96baf8b64c94-le64.cache-7 30662 +usr/share/fonts/X11/75dpi/.uuid 30661 +var/cache/fontconfig/9b10e8b4-c6f7-5d9a-b62d-df9dfe9f040e-le64.cache-7 30660 +usr/share/fonts/X11/Type1/.uuid 30659 +var/cache/fontconfig/7037cf17-dab7-5805-ac14-89407957a70b-le64.cache-7 30658 +usr/share/fonts/X11/encodings/.uuid 30657 +var/cache/fontconfig/932c83c7-a3fe-5e2e-af19-99a73a1218b0-le64.cache-7 30656 +usr/share/fonts/X11/misc/.uuid 30655 +var/cache/fontconfig/0573c588-4384-5d77-a629-20cf4267681a-le64.cache-7 30654 +usr/share/fonts/X11/util/.uuid 30653 +var/cache/fontconfig/d6a528ca-d9d3-528a-bbf0-657522efbfb9-le64.cache-7 30652 +usr/share/poppler/cMap/Adobe-CNS1/.uuid 30651 +var/cache/fontconfig/fe110b8d-52e9-50d6-93d5-7350b6dc3ffc-le64.cache-7 30650 +usr/share/poppler/cMap/Adobe-GB1/.uuid 30649 +var/cache/fontconfig/cba3b8e3-c250-50f8-9d30-dd9cdff6726c-le64.cache-7 30648 +usr/share/poppler/cMap/Adobe-Japan1/.uuid 30647 +var/cache/fontconfig/209cd66f-9cd8-59b1-a557-ee9a5b16532d-le64.cache-7 30646 +usr/share/poppler/cMap/Adobe-Japan2/.uuid 30645 +var/cache/fontconfig/79b9b38c-66eb-5231-ac1a-75f0230ccdac-le64.cache-7 30644 +usr/share/poppler/cMap/Adobe-Korea1/.uuid 30643 +var/cache/fontconfig/977ff0f2-7245-568d-9f74-ec94f3fe3b0c-le64.cache-7 30642 +usr/share/fonts/opentype/cantarell/.uuid 30641 +var/cache/fontconfig/be6c95a9-9096-58da-8f8e-7737a63fdb01-le64.cache-7 30640 +usr/share/fonts/opentype/linux-libertine/.uuid 30639 +var/cache/fontconfig/a4e606c3-ee03-5a47-a10f-679845537ed9-le64.cache-7 30638 +usr/share/fonts/opentype/noto/.uuid 30637 +var/cache/fontconfig/7b04aff5-85ee-51c9-95e7-77727a319b86-le64.cache-7 30636 +usr/share/fonts/truetype/culmus/.uuid 30635 +var/cache/fontconfig/806bd331-c6ac-5da7-b38d-caee6037f4ad-le64.cache-7 30634 +usr/share/fonts/truetype/dejavu/.uuid 30633 +var/cache/fontconfig/8f19a5e0-002f-559a-908f-50a33ba095ed-le64.cache-7 30632 +usr/share/fonts/truetype/liberation/.uuid 30631 +var/cache/fontconfig/d9291cff-b790-56da-811c-af0e14399de4-le64.cache-7 30630 +usr/share/fonts/truetype/noto/.uuid 30629 +var/cache/fontconfig/891027b1-67fe-5175-bb2b-a5d071b33c64-le64.cache-7 30628 +usr/share/fonts/truetype/openoffice/.uuid 30627 +var/cache/fontconfig/b8caebf3-f9ac-5ac9-90ed-cc558bb5e64e-le64.cache-7 30626 +usr/share/fonts/truetype/quicksand/.uuid 30625 +var/cache/fontconfig/aa54cff1-1622-5d6d-b9ef-589d2941d6ad-le64.cache-7 30624 +usr/share/fonts/truetype/ttf-dejavu/.uuid 30623 +var/cache/fontconfig/d36ee6b2-cc19-5653-9dd7-39240bf3fae0-le64.cache-7 30622 +usr/share/fonts/truetype/unifont/.uuid 30621 +var/cache/fontconfig/8037c361-ee31-5e54-bc56-f9ba74a0ef52-le64.cache-7 30620 +usr/share/fonts/X11/encodings/large/.uuid 30619 +var/cache/fontconfig/e8b11c96-1f85-5c63-8bb8-ae0627615d20-le64.cache-7 30618 +usr/share/fonts/truetype/dejavu/DejaVuSans.ttf 30617 +usr/lib/x86_64-linux-gnu/girepository-1.0/Cally-1.0.typelib 30616 +usr/share/desktop-base/futureprototype-theme/lockscreen/gnome-background.xml 30615 +usr/lib/x86_64-linux-gnu/libibus-1.0.so.5.0.519 30614 +usr/share/X11/xkb/rules/evdev.xml 30613 +usr/share/xml/iso-codes/iso_639-2.xml 30612 +usr/share/xml/iso-codes/iso_639-3.xml 30611 +usr/share/xml/iso-codes/iso_3166-1.xml 30610 +usr/bin/ibus-daemon 30609 +usr/share/ibus/keymaps/us 30608 +usr/share/ibus/keymaps/common 30607 +usr/share/ibus/keymaps/modifiers 30606 +usr/share/ibus/component/anthy.xml 30605 +usr/lib/ibus/ibus-engine-anthy 30604 +usr/lib/x86_64-linux-gnu/libgweather-3.so.15.0.0 30603 +usr/lib/x86_64-linux-gnu/libsoup-2.4.so.1.8.0 30602 +usr/lib/systemd/user/xdg-permission-store.service 30601 +usr/lib/x86_64-linux-gnu/libgeocode-glib.so.0.0.0 30600 +usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2 30599 +usr/libexec/xdg-permission-store 30598 +usr/lib/x86_64-linux-gnu/libpsl.so.5.3.1 30597 +usr/lib/x86_64-linux-gnu/libkrb5.so.3.3 30596 +usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1 30594 +usr/share/ibus-anthy/engine/main.py 30593 +usr/lib/python3.7/getopt.py 30592 +usr/lib/python3.7/xml/__init__.py 30591 +usr/lib/python3.7/xml/dom/__init__.py 30590 +usr/lib/python3.7/xml/dom/domreg.py 30589 +usr/lib/python3.7/xml/dom/minidom.py 30588 +usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1 30587 +lib/x86_64-linux-gnu/libkeyutils.so.1.8 30586 +usr/share/libgweather/Locations.xml 30585 +usr/share/zoneinfo/Etc/GMT+12 30584 +usr/share/zoneinfo/Africa/Algiers 30583 +usr/share/zoneinfo/Africa/Bangui 30582 +usr/share/zoneinfo/Africa/Blantyre 30581 +usr/share/zoneinfo/Africa/Abidjan 30580 +usr/share/zoneinfo/Atlantic/Cape_Verde 30579 +usr/share/zoneinfo/Africa/Ndjamena 30578 +usr/share/zoneinfo/Africa/Addis_Ababa 30577 +usr/share/zoneinfo/Egypt 30576 +usr/share/zoneinfo/Indian/Kerguelen 30575 +usr/share/zoneinfo/Africa/Accra 30574 +usr/share/zoneinfo/Africa/Bissau 30573 +usr/share/zoneinfo/Africa/Johannesburg 30572 +usr/share/zoneinfo/Africa/Monrovia 30571 +usr/share/zoneinfo/Libya 30570 +usr/share/zoneinfo/Indian/Mauritius 30569 +usr/share/zoneinfo/Africa/Casablanca 30568 +usr/share/zoneinfo/Africa/Windhoek 30567 +usr/share/zoneinfo/Indian/Reunion 30566 +usr/share/zoneinfo/Africa/Sao_Tome 30565 +usr/share/zoneinfo/Indian/Mahe 30564 +usr/share/zoneinfo/Africa/Khartoum 30563 +usr/share/zoneinfo/Africa/Tunis 30562 +usr/share/zoneinfo/Africa/El_Aaiun 30561 +usr/share/zoneinfo/Antarctica/Palmer 30560 +usr/share/zoneinfo/Antarctica/Rothera 30559 +usr/share/zoneinfo/Antarctica/Syowa 30558 +usr/share/zoneinfo/Antarctica/Mawson 30557 +usr/share/zoneinfo/Antarctica/Vostok 30556 +usr/share/zoneinfo/Antarctica/Davis 30555 +usr/share/zoneinfo/Antarctica/Casey 30554 +usr/share/zoneinfo/Antarctica/DumontDUrville 30553 +usr/share/zoneinfo/NZ 30552 +usr/share/zoneinfo/Asia/Kabul 30551 +usr/share/zoneinfo/Asia/Yerevan 30550 +usr/share/zoneinfo/Asia/Baku 30549 +usr/share/zoneinfo/Asia/Dacca 30548 +usr/share/zoneinfo/Asia/Thimbu 30547 +usr/share/zoneinfo/Asia/Brunei 30546 +usr/share/zoneinfo/Asia/Bangkok 30545 +usr/share/zoneinfo/PRC 30544 +usr/share/zoneinfo/Asia/Tbilisi 30543 +usr/share/zoneinfo/Hongkong 30542 +usr/share/zoneinfo/Asia/Calcutta 30541 +usr/share/zoneinfo/Japan 30540 +usr/share/zoneinfo/Asia/Almaty 30539 +usr/share/zoneinfo/Asia/Aqtobe 30538 +usr/share/zoneinfo/Asia/Bishkek 30537 +usr/share/zoneinfo/Asia/Macao 30536 +usr/share/zoneinfo/Asia/Kuala_Lumpur 30535 +usr/share/zoneinfo/Indian/Maldives 30534 +usr/share/zoneinfo/Asia/Choibalsan 30533 +usr/share/zoneinfo/Asia/Hovd 30532 +usr/share/zoneinfo/Asia/Ulaanbaatar 30531 +usr/share/zoneinfo/Asia/Rangoon 30530 +usr/share/zoneinfo/Asia/Kathmandu 30529 +usr/share/zoneinfo/Asia/Pyongyang 30528 +usr/share/zoneinfo/Asia/Karachi 30527 +usr/share/zoneinfo/Asia/Manila 30526 +usr/share/zoneinfo/Singapore 30525 +usr/share/zoneinfo/ROK 30524 +usr/share/zoneinfo/Asia/Colombo 30523 +usr/share/zoneinfo/ROC 30522 +usr/share/zoneinfo/Asia/Dushanbe 30521 +usr/share/zoneinfo/Asia/Ashgabat 30520 +usr/share/zoneinfo/Asia/Tashkent 30519 +usr/share/zoneinfo/Asia/Ho_Chi_Minh 30518 +usr/share/zoneinfo/America/Anguilla 30517 +usr/share/zoneinfo/America/Barbados 30516 +usr/share/zoneinfo/Atlantic/Bermuda 30515 +usr/share/zoneinfo/America/Danmarkshavn 30514 +usr/share/zoneinfo/America/Godthab 30513 +usr/share/zoneinfo/America/Scoresbysund 30512 +usr/share/zoneinfo/America/Thule 30511 +usr/share/zoneinfo/America/Puerto_Rico 30510 +usr/share/zoneinfo/Pacific/Midway 30509 +usr/share/zoneinfo/Australia/Perth 30508 +usr/share/zoneinfo/Australia/Eucla 30507 +usr/share/zoneinfo/Australia/Adelaide 30506 +usr/share/zoneinfo/Australia/Broken_Hill 30505 +usr/share/zoneinfo/Australia/Darwin 30504 +usr/share/zoneinfo/Australia/Hobart 30503 +usr/share/zoneinfo/Australia/Melbourne 30502 +usr/share/zoneinfo/Australia/ACT 30501 +usr/share/zoneinfo/Australia/Brisbane 30500 +usr/share/zoneinfo/Australia/LHI 30499 +usr/share/zoneinfo/Indian/Chagos 30498 +usr/share/zoneinfo/Indian/Christmas 30497 +usr/share/zoneinfo/Indian/Cocos 30496 +usr/share/zoneinfo/Pacific/Rarotonga 30495 +usr/share/zoneinfo/Pacific/Fiji 30494 +usr/share/zoneinfo/Pacific/Tahiti 30493 +usr/share/zoneinfo/Pacific/Marquesas 30492 +usr/share/zoneinfo/Pacific/Gambier 30491 +usr/share/zoneinfo/Pacific/Guam 30490 +usr/share/zoneinfo/Asia/Jakarta 30489 +usr/share/zoneinfo/Asia/Makassar 30488 +usr/share/zoneinfo/Asia/Jayapura 30487 +usr/share/zoneinfo/Pacific/Tarawa 30486 +usr/share/zoneinfo/Pacific/Enderbury 30485 +usr/share/zoneinfo/Pacific/Kiritimati 30484 +usr/share/zoneinfo/Pacific/Majuro 30483 +usr/share/zoneinfo/Pacific/Pohnpei 30482 +usr/share/zoneinfo/Pacific/Chuuk 30481 +usr/share/zoneinfo/Pacific/Nauru 30480 +usr/share/zoneinfo/Pacific/Noumea 30479 +usr/share/zoneinfo/NZ-CHAT 30478 +usr/share/zoneinfo/Pacific/Niue 30477 +usr/share/zoneinfo/Pacific/Norfolk 30476 +usr/share/zoneinfo/Pacific/Palau 30475 +usr/share/zoneinfo/Pacific/Port_Moresby 30474 +usr/share/zoneinfo/Pacific/Pitcairn 30473 +usr/share/zoneinfo/Pacific/Apia 30472 +usr/share/zoneinfo/Pacific/Guadalcanal 30471 +usr/share/zoneinfo/Asia/Dili 30470 +usr/share/zoneinfo/Pacific/Fakaofo 30469 +usr/share/zoneinfo/Pacific/Tongatapu 30468 +usr/share/zoneinfo/Pacific/Funafuti 30467 +usr/share/zoneinfo/Pacific/Honolulu 30466 +usr/share/zoneinfo/Pacific/Wake 30465 +usr/share/zoneinfo/Pacific/Efate 30464 +usr/share/zoneinfo/Pacific/Wallis 30463 +usr/share/zoneinfo/America/Buenos_Aires 30462 +usr/share/zoneinfo/America/Aruba 30461 +usr/share/zoneinfo/America/Nassau 30460 +usr/share/zoneinfo/America/Belize 30459 +usr/share/zoneinfo/America/La_Paz 30458 +usr/share/zoneinfo/America/Araguaina 30457 +usr/share/zoneinfo/America/Bahia 30456 +usr/share/zoneinfo/America/Belem 30455 +usr/share/zoneinfo/America/Boa_Vista 30454 +usr/share/zoneinfo/America/Campo_Grande 30453 +usr/share/zoneinfo/America/Cuiaba 30452 +usr/share/zoneinfo/America/Eirunepe 30451 +usr/share/zoneinfo/America/Fortaleza 30450 +usr/share/zoneinfo/America/Maceio 30449 +usr/share/zoneinfo/America/Manaus 30448 +usr/share/zoneinfo/America/Noronha 30447 +usr/share/zoneinfo/America/Porto_Velho 30446 +usr/share/zoneinfo/America/Recife 30445 +usr/share/zoneinfo/America/Porto_Acre 30444 +usr/share/zoneinfo/America/Sao_Paulo 30443 +usr/share/zoneinfo/America/Cayman 30442 +usr/share/zoneinfo/America/Santiago 30441 +usr/share/zoneinfo/Chile/EasterIsland 30440 +usr/lib/python3.7/xml/dom/minicompat.py 30439 +usr/share/zoneinfo/America/Bogota 30438 +usr/share/zoneinfo/America/Costa_Rica 30437 +usr/share/zoneinfo/Cuba 30436 +usr/lib/python3.7/xml/dom/xmlbuilder.py 30435 +usr/share/zoneinfo/America/Santo_Domingo 30434 +usr/share/zoneinfo/America/Guayaquil 30433 +usr/share/zoneinfo/Pacific/Galapagos 30432 +usr/share/zoneinfo/America/El_Salvador 30431 +usr/share/zoneinfo/Atlantic/Stanley 30430 +usr/share/zoneinfo/America/Cayenne 30429 +usr/share/zoneinfo/America/Guatemala 30428 +usr/share/zoneinfo/America/Guyana 30427 +usr/share/zoneinfo/America/Port-au-Prince 30426 +usr/share/zoneinfo/America/Tegucigalpa 30425 +usr/share/zoneinfo/Jamaica 30424 +usr/share/zoneinfo/America/Martinique 30423 +usr/share/zoneinfo/America/Managua 30422 +usr/share/zoneinfo/America/Asuncion 30421 +usr/share/zoneinfo/America/Lima 30420 +usr/share/zoneinfo/Atlantic/South_Georgia 30419 +usr/share/zoneinfo/America/Paramaribo 30418 +usr/share/zoneinfo/America/Grand_Turk 30417 +usr/share/zoneinfo/America/Montevideo 30416 +usr/share/zoneinfo/America/Caracas 30415 +usr/share/zoneinfo/Europe/Tirane 30414 +usr/share/zoneinfo/Europe/Andorra 30413 +usr/share/zoneinfo/Europe/Vienna 30412 +usr/share/zoneinfo/Europe/Minsk 30411 +usr/share/zoneinfo/Europe/Brussels 30410 +usr/share/zoneinfo/Europe/Belgrade 30409 +usr/share/zoneinfo/Europe/Sofia 30408 +usr/share/zoneinfo/Asia/Nicosia 30407 +usr/share/zoneinfo/Europe/Bratislava 30406 +usr/share/zoneinfo/Europe/Copenhagen 30405 +usr/share/zoneinfo/Europe/Tallinn 30404 +usr/share/zoneinfo/Atlantic/Faeroe 30403 +usr/share/zoneinfo/Europe/Helsinki 30402 +usr/share/zoneinfo/Europe/Paris 30401 +usr/share/zoneinfo/Europe/Berlin 30400 +usr/lib/python3.7/xml/dom/NodeFilter.py 30399 +usr/share/zoneinfo/Europe/Gibraltar 30398 +usr/share/zoneinfo/Europe/Athens 30397 +usr/share/zoneinfo/GB 30396 +usr/share/zoneinfo/Europe/Budapest 30395 +usr/share/zoneinfo/Iceland 30394 +usr/share/zoneinfo/Eire 30393 +usr/lib/python3/dist-packages/gi/__init__.py 30392 +usr/share/zoneinfo/Europe/Rome 30391 +usr/share/zoneinfo/CET 30390 +usr/share/zoneinfo/Europe/Riga 30389 +usr/share/zoneinfo/Europe/Busingen 30388 +usr/share/zoneinfo/Europe/Vilnius 30387 +usr/share/zoneinfo/Europe/Luxembourg 30386 +usr/share/zoneinfo/Europe/Malta 30385 +usr/share/zoneinfo/Europe/Chisinau 30384 +usr/share/zoneinfo/Europe/Monaco 30383 +usr/share/zoneinfo/Europe/Amsterdam 30382 +usr/share/zoneinfo/Arctic/Longyearbyen 30381 +usr/share/zoneinfo/Poland 30380 +usr/share/zoneinfo/Atlantic/Azores 30379 +usr/share/zoneinfo/Atlantic/Madeira 30378 +usr/share/zoneinfo/Portugal 30377 +usr/share/zoneinfo/Europe/Bucharest 30376 +usr/share/zoneinfo/Europe/Kaliningrad 30375 +usr/share/zoneinfo/W-SU 30374 +usr/share/zoneinfo/Europe/Samara 30373 +usr/share/zoneinfo/Asia/Yekaterinburg 30372 +usr/share/zoneinfo/Asia/Omsk 30371 +usr/share/zoneinfo/Asia/Novosibirsk 30370 +usr/share/zoneinfo/Asia/Krasnoyarsk 30369 +usr/share/zoneinfo/Asia/Irkutsk 30368 +usr/share/zoneinfo/Asia/Yakutsk 30367 +usr/share/zoneinfo/Asia/Vladivostok 30366 +usr/share/zoneinfo/Asia/Magadan 30365 +usr/share/zoneinfo/Asia/Kamchatka 30364 +usr/share/zoneinfo/Atlantic/Canary 30363 +usr/share/zoneinfo/Europe/Madrid 30362 +usr/share/zoneinfo/Africa/Ceuta 30361 +usr/share/zoneinfo/Europe/Stockholm 30360 +usr/share/zoneinfo/Turkey 30359 +usr/share/zoneinfo/Europe/Kiev 30358 +usr/share/zoneinfo/Asia/Bahrain 30357 +usr/share/zoneinfo/Iran 30356 +usr/share/zoneinfo/Asia/Baghdad 30355 +usr/share/zoneinfo/Israel 30354 +usr/share/zoneinfo/Asia/Amman 30353 +usr/share/zoneinfo/Asia/Aden 30352 +usr/share/zoneinfo/Asia/Beirut 30351 +usr/share/zoneinfo/Asia/Dubai 30350 +usr/share/zoneinfo/Asia/Gaza 30349 +usr/share/zoneinfo/Asia/Damascus 30348 +usr/share/zoneinfo/America/Vancouver 30347 +usr/share/zoneinfo/America/Edmonton 30346 +usr/share/zoneinfo/America/Dawson_Creek 30345 +usr/share/zoneinfo/America/Winnipeg 30344 +usr/share/zoneinfo/America/Regina 30343 +usr/share/zoneinfo/America/Montreal 30342 +usr/lib/python3.7/pkgutil.py 30341 +usr/share/zoneinfo/America/Atikokan 30340 +usr/share/zoneinfo/America/Halifax 30339 +usr/share/zoneinfo/America/Blanc-Sablon 30338 +usr/share/zoneinfo/America/St_Johns 30337 +usr/share/zoneinfo/America/Ensenada 30336 +usr/share/zoneinfo/America/Mazatlan 30335 +usr/share/zoneinfo/America/Mexico_City 30334 +usr/share/zoneinfo/America/Miquelon 30333 +usr/share/zoneinfo/America/Adak 30332 +usr/share/zoneinfo/America/Anchorage 30331 +usr/share/zoneinfo/America/Los_Angeles 30330 +usr/share/zoneinfo/Navajo 30329 +usr/share/zoneinfo/America/Phoenix 30328 +usr/share/zoneinfo/America/Chicago 30327 +usr/share/zoneinfo/posixrules 30326 +usr/lib/python3.7/importlib/util.py 30325 +usr/lib/python3.7/importlib/abc.py 30324 +usr/lib/python3/dist-packages/gi/_gi.cpython-37m-x86_64-linux-gnu.so 30323 +usr/lib/python3/dist-packages/gi/_error.py 30322 +usr/lib/python3/dist-packages/gi/_compat.py 30321 +usr/lib/python3/dist-packages/gi/_gi_cairo.cpython-37m-x86_64-linux-gnu.so 30320 +usr/lib/python3/dist-packages/cairo/__init__.py 30319 +usr/lib/python3/dist-packages/cairo/_cairo.cpython-37m-x86_64-linux-gnu.so 30318 +usr/lib/python3/dist-packages/gi/repository/__init__.py 30317 +usr/lib/python3/dist-packages/gi/importer.py 30316 +usr/lib/python3/dist-packages/gi/module.py 30315 +usr/lib/python3/dist-packages/gi/types.py 30314 +usr/lib/python3/dist-packages/gi/_constants.py 30313 +usr/lib/python3/dist-packages/gi/docstring.py 30312 +usr/lib/python3/dist-packages/gi/_propertyhelper.py 30311 +usr/lib/python3/dist-packages/gi/_signalhelper.py 30310 +usr/lib/python3/dist-packages/gi/overrides/__init__.py 30309 +usr/lib/python3/dist-packages/gi/overrides/GLib.py 30308 +usr/lib/python3/dist-packages/gi/_ossighelper.py 30307 +usr/lib/python3/dist-packages/gi/_option.py 30306 +usr/lib/python3.7/optparse.py 30305 +usr/share/X11/xkb/rules/evdev.lst 30304 +usr/lib/python3/dist-packages/gi/overrides/GObject.py 30303 +usr/lib/python3/dist-packages/gi/overrides/Gio.py 30302 +usr/lib/python3/dist-packages/gi/overrides/IBus.py 30301 +usr/share/ibus-anthy/engine/_config.py 30300 +usr/share/ibus-anthy/engine/factory.py 30299 +usr/share/ibus-anthy/engine/engine.py 30298 +usr/lib/x86_64-linux-gnu/girepository-1.0/NMA-1.0.typelib 30297 +usr/lib/x86_64-linux-gnu/girepository-1.0/GnomeBluetooth-1.0.typelib 30296 +usr/lib/girepository-1.0/Anthy-9000.typelib 30295 +usr/share/ibus-anthy/engine/tables.py 30294 +usr/share/ibus-anthy/engine/jastring.py 30293 +usr/share/ibus-anthy/engine/romaji.py 30292 +usr/lib/x86_64-linux-gnu/libgnome-bluetooth.so.13.0.1 30291 +usr/share/ibus-anthy/engine/segment.py 30290 +usr/share/ibus-anthy/engine/kana.py 30289 +usr/share/ibus-anthy/engine/thumb.py 30288 +usr/share/ibus-anthy/setup/anthyprefs.py 30287 +usr/lib/x86_64-linux-gnu/libnotify.so.4.0.0 30286 +usr/share/ibus-anthy/setup/prefs.py 30285 +usr/lib/x86_64-linux-gnu/girepository-1.0/UPowerGlib-1.0.typelib 30284 +usr/share/ibus-anthy/engine/default.xml 30283 +lib/systemd/system/upower.service 30282 +usr/lib/gnome-shell/libgvc.so 30280 +usr/lib/x86_64-linux-gnu/libpulse-mainloop-glib.so.0.0.5 30279 +usr/share/ibus/component/chewing.xml 30278 +usr/share/ibus/component/dconf.xml 30277 +usr/share/ibus/component/gtkextension.xml 30276 +usr/share/ibus/component/gtkpanel.xml 30275 +usr/share/ibus/component/hangul.xml 30274 +usr/share/ibus/component/libpinyin.xml 30273 +usr/share/ibus/component/simple.xml 30272 +usr/share/ibus/component/unikey.xml 30271 +usr/lib/upower/upowerd 30270 +usr/lib/ibus/ibus-engine-unikey 30269 +usr/lib/x86_64-linux-gnu/libupower-glib.so.3.0.1 30268 +lib/x86_64-linux-gnu/libusb-1.0.so.0.1.0 30267 +usr/lib/x86_64-linux-gnu/libimobiledevice.so.6.0.0 30266 +usr/lib/x86_64-linux-gnu/libgdm.so.1.0.0 30265 +usr/lib/x86_64-linux-gnu/libplist.so.3.1.0 30264 +usr/share/xsessions/gnome-classic.desktop 30263 +usr/share/xsessions/gnome.desktop 30262 +usr/lib/x86_64-linux-gnu/libusbmuxd.so.4.1.0 30261 +usr/share/gdm/BuiltInSessions/default.desktop 30260 +var/lib/polkit-1/localauthority/10-vendor.d/systemd-networkd.pkla 30259 +var/lib/polkit-1/localauthority/10-vendor.d/org.freedesktop.NetworkManager.pkla 30258 +var/lib/polkit-1/localauthority/10-vendor.d/gnome-control-center.pkla 30257 +etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.pkla 30256 +etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.cups.pkla 30255 +etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.accounts.pkla 30254 +etc/systemd/sleep.conf 30253 +lib/systemd/system/suspend.target 30252 +lib/systemd/system/systemd-suspend.service 30251 +lib/systemd/system/sleep.target 30250 +usr/lib/ibus/ibus-dconf 30249 +etc/UPower/UPower.conf 30248 +usr/lib/ibus/ibus-extension-gtk3 30247 +usr/lib/ibus/ibus-x11 30246 +usr/lib/x86_64-linux-gnu/gio/modules/libgiognutls.so 30243 +usr/lib/ibus/ibus-portal 30242 +etc/ssl/certs/ca-certificates.crt 30239 +usr/lib/gnome-settings-daemon/gsd-wacom 30236 +usr/lib/gnome-settings-daemon-3.0/libgsd.so 30235 +usr/lib/gnome-settings-daemon/gsd-xsettings 30234 +usr/lib/gnome-settings-daemon/gsd-a11y-settings 30231 +usr/lib/gnome-settings-daemon/gsd-clipboard 30228 +usr/lib/gnome-settings-daemon/gsd-color 30225 +usr/lib/x86_64-linux-gnu/libcolord.so.2.0.5 30222 +usr/lib/x86_64-linux-gnu/liblcms2.so.2.0.8 30221 +usr/lib/x86_64-linux-gnu/libgeoclue-2.so.0.0.0 30220 +usr/lib/gnome-settings-daemon/gsd-datetime 30219 +usr/lib/gnome-settings-daemon/gsd-housekeeping 30216 +usr/lib/gnome-settings-daemon/gsd-keyboard 30213 +usr/lib/x86_64-linux-gnu/gio/modules/libgiolibproxy.so 30210 +usr/lib/x86_64-linux-gnu/libproxy.so.1.0.0 30209 +usr/lib/x86_64-linux-gnu/gio/modules/libgiognomeproxy.so 30208 +usr/lib/gnome-settings-daemon/gsd-media-keys 30207 +usr/lib/gnome-settings-daemon/gsd-mouse 30204 +usr/lib/x86_64-linux-gnu/gio/modules/libgioremote-volume-monitor.so 30203 +usr/lib/gnome-settings-daemon/gsd-power 30200 +usr/share/X11/locale/locale.alias 30199 +usr/lib/gnome-settings-daemon/gsd-print-notifications 30196 +usr/lib/gnome-settings-daemon/gsd-rfkill 30193 +usr/share/ibus/dicts/emoji-en.dict 30190 +usr/lib/gnome-settings-daemon/gsd-screensaver-proxy 30189 +usr/lib/gnome-settings-daemon/gsd-sharing 30186 +usr/lib/gnome-settings-daemon/gsd-smartcard 30183 +usr/lib/gnome-settings-daemon/gsd-sound 30180 +usr/lib/x86_64-linux-gnu/libcups.so.2 30177 +usr/lib/x86_64-linux-gnu/libavahi-common.so.3.5.3 30176 +usr/lib/x86_64-linux-gnu/libavahi-client.so.3.2.9 30175 +lib/systemd/system/colord.service 30174 +usr/lib/x86_64-linux-gnu/nss/libsoftokn3.so 30173 +usr/lib/x86_64-linux-gnu/nss/libfreeblpriv3.so 30172 +usr/share/X11/locale/locale.dir 30171 +usr/share/X11/locale/en_US.UTF-8/XLC_LOCALE 30170 +usr/lib/x86_64-linux-gnu/gconv/ISO8859-1.so 30169 +usr/lib/dconf/dconf-service 30168 +lib/systemd/system/systemd-localed.service 30167 +usr/lib/colord/colord 30165 +usr/lib/x86_64-linux-gnu/libcolordprivate.so.2.0.5 30164 +usr/lib/x86_64-linux-gnu/libgusb.so.2.0.10 30163 +usr/lib/gnome-settings-daemon-3.0/gtk-modules/at-spi2-atk.desktop 30158 +lib/systemd/system/systemd-hostnamed.service 30156 +usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_camera.so 30153 +usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_sane.so 30152 +usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_scanner.so 30150 +usr/share/color/icc/colord/BestRGB.icc 30149 +usr/bin/spice-vdagent 30146 +usr/share/color/icc/colord/BetaRGB.icc 30145 +usr/share/color/icc/colord/BruceRGB.icc 30144 +lib/systemd/systemd-hostnamed 30143 +lib/systemd/systemd-localed 30142 +usr/local/lib/tails-greeter 30139 +usr/share/color/icc/colord/Crayons.icc 30138 +etc/os-release 30137 +usr/share/color/icc/colord/DonRGB4.icc 30136 +usr/share/tails/greeter/set-cursor.py 30135 +usr/share/color/icc/colord/ECI-RGBv1.icc 30134 +usr/share/color/icc/colord/ECI-RGBv2.icc 30133 +usr/share/color/icc/colord/EktaSpacePS5.icc 30132 +etc/default/keyboard 30131 +usr/share/color/icc/colord/Gamma5000K.icc 30130 +usr/share/color/icc/colord/Gamma5500K.icc 30129 +usr/share/color/icc/colord/Gamma6500K.icc 30128 +usr/share/color/icc/colord/Rec709.icc 30127 +usr/share/icons/Adwaita/index.theme 30126 +usr/share/color/icc/colord/WideGamutRGB.icc 30125 +usr/share/color/icc/ghostscript/a98.icc 30124 +usr/share/color/icc/ghostscript/default_cmyk.icc 30123 +usr/share/color/icc/ghostscript/default_gray.icc 30122 +usr/share/color/icc/ghostscript/default_rgb.icc 30121 +usr/share/icons/gnome/index.theme 30120 +usr/share/color/icc/ghostscript/esrgb.icc 30119 +usr/share/color/icc/ghostscript/gray_to_k.icc 30118 +usr/share/color/icc/ghostscript/lab.icc 30117 +usr/share/color/icc/ghostscript/ps_cmyk.icc 30116 +usr/share/color/icc/ghostscript/ps_gray.icc 30115 +usr/share/color/icc/ghostscript/ps_rgb.icc 30114 +usr/share/color/icc/ghostscript/rommrgb.icc 30113 +usr/share/color/icc/ghostscript/scrgb.icc 30112 +usr/share/color/icc/ghostscript/sgray.icc 30111 +usr/share/color/icc/ghostscript/srgb.icc 30110 +usr/share/icons/hicolor/index.theme 30109 +usr/lib/colord/colord-sane 30108 +usr/lib/x86_64-linux-gnu/libsane.so.1.0.27 30107 +usr/lib/x86_64-linux-gnu/libieee1284.so.3.2.2 30106 +usr/lib/x86_64-linux-gnu/libtiff.so.5.5.0 30105 +usr/lib/python3/dist-packages/gi/overrides/Pango.py 30104 +usr/lib/python3/dist-packages/gi/overrides/GdkPixbuf.py 30103 +usr/lib/python3/dist-packages/gi/overrides/Gdk.py 30102 +usr/lib/x86_64-linux-gnu/libjpeg.so.62.2.0 30101 +usr/lib/x86_64-linux-gnu/libgphoto2.so.6.1.0 30100 +usr/lib/x86_64-linux-gnu/girepository-1.0/GdkX11-3.0.typelib 30099 +usr/lib/x86_64-linux-gnu/libgphoto2_port.so.12.0.0 30098 +usr/lib/x86_64-linux-gnu/libzstd.so.1.3.8 30097 +usr/lib/x86_64-linux-gnu/libjbig.so.0 30096 +usr/lib/x86_64-linux-gnu/libexif.so.12.3.3 30095 +usr/lib/python3/dist-packages/gi/overrides/Gtk.py 30094 +usr/lib/python3/dist-packages/gi/_gtktemplate.py 30093 +etc/sane.d/dll.d/hplip 30092 +etc/sane.d/dll.conf 30091 +usr/lib/x86_64-linux-gnu/sane/libsane-xerox_mfp.so.1.0.27 30090 +etc/sane.d/xerox_mfp.conf 30089 +usr/lib/x86_64-linux-gnu/sane/libsane-umax1220u.so.1.0.27 30088 +usr/share/icons/Adwaita/16x16/apps/preferences-desktop-accessibility-symbolic.symbolic.png 30087 +usr/share/icons/Adwaita/48x48/actions/pan-down-symbolic.symbolic.png 30086 +usr/share/icons/Adwaita/16x16/actions/find-location-symbolic.symbolic.png 30085 +etc/sane.d/umax1220u.conf 30084 +usr/lib/x86_64-linux-gnu/sane/libsane-umax.so.1.0.27 30083 +etc/sane.d/umax.conf 30082 +usr/lib/x86_64-linux-gnu/sane/libsane-u12.so.1.0.27 30081 +etc/sane.d/u12.conf 30080 +usr/lib/x86_64-linux-gnu/sane/libsane-teco3.so.1.0.27 30079 +etc/sane.d/teco3.conf 30078 +usr/lib/x86_64-linux-gnu/sane/libsane-teco2.so.1.0.27 30077 +etc/sane.d/teco2.conf 30076 +usr/share/fonts/opentype/cantarell/Cantarell-Regular.otf 30075 +usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf 30074 +usr/lib/x86_64-linux-gnu/sane/libsane-teco1.so.1.0.27 30073 +etc/sane.d/teco1.conf 30072 +usr/lib/x86_64-linux-gnu/sane/libsane-tamarack.so.1.0.27 30071 +etc/sane.d/tamarack.conf 30070 +usr/lib/x86_64-linux-gnu/sane/libsane-sp15c.so.1.0.27 30069 +etc/sane.d/sp15c.conf 30068 +usr/lib/x86_64-linux-gnu/sane/libsane-snapscan.so.1.0.27 30067 +etc/sane.d/snapscan.conf 30066 +usr/lib/x86_64-linux-gnu/sane/libsane-sm3840.so.1.0.27 30065 +usr/lib/x86_64-linux-gnu/sane/libsane-sm3600.so.1.0.27 30064 +usr/lib/x86_64-linux-gnu/sane/libsane-sharp.so.1.0.27 30063 +etc/sane.d/sharp.conf 30062 +usr/lib/x86_64-linux-gnu/sane/libsane-sceptre.so.1.0.27 30061 +etc/sane.d/sceptre.conf 30060 +usr/lib/x86_64-linux-gnu/sane/libsane-s9036.so.1.0.27 30059 +etc/sane.d/s9036.conf 30058 +usr/lib/x86_64-linux-gnu/sane/libsane-rts8891.so.1.0.27 30057 +etc/sane.d/rts8891.conf 30056 +usr/lib/x86_64-linux-gnu/sane/libsane-ricoh.so.1.0.27 30055 +etc/sane.d/ricoh.conf 30054 +usr/lib/x86_64-linux-gnu/sane/libsane-qcam.so.1.0.27 30053 +etc/sane.d/qcam.conf 30052 +usr/lib/x86_64-linux-gnu/sane/libsane-plustek.so.1.0.27 30051 +etc/sane.d/plustek.conf 30050 +usr/lib/x86_64-linux-gnu/sane/libsane-pixma.so.1.0.27 30049 +etc/sane.d/pixma.conf 30048 +usr/share/icons/Adwaita/cursors/watch 30047 +usr/lib/ibus/ibus-engine-simple 30046 +usr/share/themes/Default/gtk-3.0/gtk-keys.css 30045 +usr/lib/gnome-settings-daemon/gsd-backlight-helper 30044 +usr/share/icons/Adwaita/16x16/status/battery-full-charged-symbolic.symbolic.png 30043 +usr/share/tails/greeter/tails-greeter.py 30042 +usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/1920x1080.svg 30041 +usr/share/icons/Adwaita/48x48/status/battery-full-charged-symbolic.symbolic.png 30040 +usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so 30039 +usr/share/icons/Adwaita/48x48/devices/audio-speakers-symbolic.symbolic.png 30038 +usr/share/icons/Adwaita/16x16/status/audio-volume-medium-symbolic.symbolic.png 30037 +usr/lib/x86_64-linux-gnu/sane/libsane-pie.so.1.0.27 30036 +etc/sane.d/pie.conf 30035 +usr/lib/x86_64-linux-gnu/sane/libsane-niash.so.1.0.27 30034 +usr/lib/x86_64-linux-gnu/sane/libsane-nec.so.1.0.27 30033 +etc/sane.d/nec.conf 30032 +usr/lib/x86_64-linux-gnu/sane/libsane-mustek_usb2.so.1.0.27 30031 +usr/lib/python3.7/logging/config.py 30030 +usr/lib/python3.7/logging/handlers.py 30029 +usr/lib/x86_64-linux-gnu/sane/libsane-mustek_usb.so.1.0.27 30028 +etc/sane.d/mustek_usb.conf 30027 +usr/lib/x86_64-linux-gnu/sane/libsane-mustek.so.1.0.27 30026 +etc/sane.d/mustek.conf 30025 +usr/lib/x86_64-linux-gnu/sane/libsane-microtek2.so.1.0.27 30024 +etc/sane.d/microtek2.conf 30023 +usr/lib/x86_64-linux-gnu/sane/libsane-microtek.so.1.0.27 30022 +etc/sane.d/microtek.conf 30021 +usr/lib/x86_64-linux-gnu/sane/libsane-matsushita.so.1.0.27 30020 +usr/lib/python3/dist-packages/tailsgreeter/__init__.py 30019 +etc/sane.d/matsushita.conf 30018 +usr/lib/python3/dist-packages/tailsgreeter/errors.py 30017 +usr/lib/python3/dist-packages/tailsgreeter/greeter.py 30016 +usr/lib/x86_64-linux-gnu/sane/libsane-magicolor.so.1.0.27 30015 +usr/lib/x86_64-linux-gnu/libnetsnmp.so.30.0.3 30014 +usr/lib/python3/dist-packages/tailsgreeter/gdmclient.py 30013 +etc/sane.d/magicolor.conf 30010 +etc/snmp/snmp.conf 30009 +usr/share/snmp/mibs/GNOME-SMI.txt 30008 +usr/share/snmp/mibs/IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt 30007 +usr/share/snmp/mibs/IANA-LANGUAGE-MIB.txt 30006 +usr/share/snmp/mibs/IANA-RTPROTO-MIB.txt 30005 +usr/share/snmp/mibs/IANAifType-MIB.txt 30004 +usr/share/snmp/mibs/LM-SENSORS-MIB.txt 30003 +usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt 30002 +usr/share/snmp/mibs/NET-SNMP-EXAMPLES-MIB.txt 30001 +usr/share/snmp/mibs/NET-SNMP-EXTEND-MIB.txt 30000 +usr/share/snmp/mibs/NET-SNMP-MIB.txt 29999 +usr/share/snmp/mibs/NET-SNMP-MONITOR-MIB.txt 29998 +usr/share/snmp/mibs/NET-SNMP-PASS-MIB.txt 29997 +usr/share/snmp/mibs/NET-SNMP-PERIODIC-NOTIFY-MIB.txt 29996 +usr/share/snmp/mibs/NET-SNMP-SYSTEM-MIB.txt 29995 +usr/share/snmp/mibs/NET-SNMP-TC.txt 29994 +usr/share/snmp/mibs/NET-SNMP-VACM-MIB.txt 29993 +usr/share/snmp/mibs/RFC-1215.txt 29992 +usr/share/snmp/mibs/SNMP-TLS-TM-MIB.txt 29991 +usr/share/snmp/mibs/SNMP-TSM-MIB.txt 29990 +usr/share/snmp/mibs/UCD-DEMO-MIB.txt 29989 +usr/share/snmp/mibs/UCD-DISKIO-MIB.txt 29988 +usr/share/snmp/mibs/UCD-DLMOD-MIB.txt 29987 +usr/share/snmp/mibs/UCD-IPFILTER-MIB.txt 29986 +usr/share/snmp/mibs/UCD-IPFWACC-MIB.txt 29985 +usr/share/snmp/mibs/UCD-SNMP-MIB-OLD.txt 29984 +usr/share/snmp/mibs/UCD-SNMP-MIB.txt 29983 +usr/share/snmp/mibs/miblist.txt 29982 +usr/lib/x86_64-linux-gnu/sane/libsane-ma1509.so.1.0.27 29981 +usr/lib/python3/dist-packages/tailsgreeter/config.py 29980 +usr/lib/python3/dist-packages/tailsgreeter/settings/__init__.py 29979 +usr/lib/python3/dist-packages/tailsgreeter/settings/localization.py 29978 +usr/lib/python3/dist-packages/pycountry/__init__.py 29977 +usr/lib/python3/dist-packages/pycountry/db.py 29976 +usr/lib/python3.7/json/__init__.py 29975 +usr/lib/python3.7/json/decoder.py 29974 +usr/lib/python3.7/json/scanner.py 29973 +usr/lib/python3.7/lib-dynload/_json.cpython-37m-x86_64-linux-gnu.so 29972 +usr/lib/python3.7/json/encoder.py 29971 +etc/sane.d/ma1509.conf 29970 +usr/lib/x86_64-linux-gnu/sane/libsane-lexmark.so.1.0.27 29969 +etc/sane.d/lexmark.conf 29968 +usr/lib/x86_64-linux-gnu/sane/libsane-leo.so.1.0.27 29967 +etc/sane.d/leo.conf 29966 +usr/lib/x86_64-linux-gnu/sane/libsane-kvs20xx.so.1.0.27 29965 +usr/lib/x86_64-linux-gnu/sane/libsane-kvs1025.so.1.0.27 29964 +usr/lib/x86_64-linux-gnu/sane/libsane-kodakaio.so.1.0.27 29963 +etc/sane.d/kodakaio.conf 29962 +usr/lib/python3/dist-packages/pkg_resources/__init__.py 29961 +usr/lib/x86_64-linux-gnu/sane/libsane-kodak.so.1.0.27 29960 +etc/sane.d/kodak.conf 29959 +usr/lib/x86_64-linux-gnu/sane/libsane-ibm.so.1.0.27 29958 +etc/sane.d/ibm.conf 29957 +usr/lib/x86_64-linux-gnu/sane/libsane-hs2p.so.1.0.27 29956 +usr/lib/python3.7/zipfile.py 29955 +etc/sane.d/hs2p.conf 29954 +usr/lib/x86_64-linux-gnu/sane/libsane-hpljm1005.so.1.0.27 29953 +usr/lib/x86_64-linux-gnu/sane/libsane-hp5590.so.1.0.27 29952 +usr/lib/x86_64-linux-gnu/sane/libsane-hp5400.so.1.0.27 29951 +etc/sane.d/hp5400.conf 29950 +usr/lib/x86_64-linux-gnu/sane/libsane-hp4200.so.1.0.27 29949 +etc/sane.d/hp4200.conf 29948 +usr/lib/x86_64-linux-gnu/sane/libsane-hp3500.so.1.0.27 29947 +usr/lib/x86_64-linux-gnu/sane/libsane-hpsj5s.so.1.0.27 29946 +etc/sane.d/hpsj5s.conf 29945 +usr/lib/x86_64-linux-gnu/sane/libsane-hp3900.so.1.0.27 29944 +etc/sane.d/hp3900.conf 29943 +usr/lib/x86_64-linux-gnu/sane/libsane-hp.so.1.0.27 29942 +etc/sane.d/hp.conf 29941 +usr/lib/x86_64-linux-gnu/sane/libsane-gt68xx.so.1.0.27 29940 +etc/sane.d/gt68xx.conf 29939 +usr/lib/x86_64-linux-gnu/sane/libsane-genesys.so.1.0.27 29938 +etc/sane.d/genesys.conf 29937 +usr/lib/x86_64-linux-gnu/sane/libsane-fujitsu.so.1.0.27 29936 +etc/sane.d/fujitsu.conf 29934 +usr/lib/x86_64-linux-gnu/sane/libsane-epsonds.so.1.0.27 29933 +etc/sane.d/epsonds.conf 29932 +usr/local/lib/udev-watchdog-wrapper 29931 +usr/lib/python3.7/plistlib.py 29930 +usr/lib/python3.7/xml/parsers/__init__.py 29929 +usr/lib/python3.7/xml/parsers/expat.py 29928 +usr/lib/python3.7/email/__init__.py 29927 +usr/lib/python3.7/email/parser.py 29926 +usr/lib/python3.7/email/feedparser.py 29925 +usr/lib/python3.7/email/errors.py 29924 +usr/lib/python3.7/email/_policybase.py 29923 +usr/lib/python3.7/email/header.py 29922 +usr/lib/python3.7/email/quoprimime.py 29921 +usr/lib/python3.7/email/base64mime.py 29920 +usr/lib/python3.7/email/charset.py 29919 +usr/lib/python3.7/email/encoders.py 29918 +usr/lib/python3.7/quopri.py 29917 +usr/lib/python3.7/email/utils.py 29916 +usr/lib/python3.7/email/_parseaddr.py 29915 +usr/lib/python3.7/ntpath.py 29914 +usr/lib/python3/dist-packages/pkg_resources/extern/__init__.py 29913 +usr/lib/python3/dist-packages/pkg_resources/_vendor/__init__.py 29912 +usr/lib/python3/dist-packages/pkg_resources/_vendor/six.py 29911 +usr/lib/python3/dist-packages/pkg_resources/py31compat.py 29910 +usr/lib/python3/dist-packages/pkg_resources/_vendor/appdirs.py 29909 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/__init__.py 29908 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/__about__.py 29907 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/version.py 29906 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_structures.py 29905 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/specifiers.py 29904 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_compat.py 29903 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/requirements.py 29902 +usr/lib/python3/dist-packages/pkg_resources/_vendor/pyparsing.py 29901 +usr/lib/python3.7/pprint.py 29900 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/markers.py 29899 +usr/lib/python3.7/sysconfig.py 29898 +usr/lib/python3/dist-packages/yarl-1.3.0.egg-info/PKG-INFO 29897 +usr/lib/python3/dist-packages/whisperback-1.8.3.egg-info 29896 +usr/lib/python3/dist-packages/Werkzeug-0.14.1.egg-info/PKG-INFO 29895 +usr/lib/python3/dist-packages/urllib3-1.24.1.egg-info/PKG-INFO 29894 +usr/lib/python3/dist-packages/trezor-0.9.0.egg-info/PKG-INFO 29893 +usr/lib/python3/dist-packages/systemd_python-234.egg-info 29892 +usr/lib/python3/dist-packages/stem-1.7.1.egg-info 29891 +usr/lib/python3/dist-packages/six-1.12.0.egg-info/PKG-INFO 29890 +usr/lib/python3/dist-packages/sh-1.12.14.egg-info/PKG-INFO 29889 +usr/lib/python3/dist-packages/requests-2.21.0.egg-info/PKG-INFO 29888 +usr/lib/python3/dist-packages/reportlab-3.5.13.egg-info/PKG-INFO 29887 +usr/lib/python3/dist-packages/regex-2019.02.07.egg-info 29886 +usr/lib/python3/dist-packages/qrcode-6.1.egg-info/PKG-INFO 29885 +usr/lib/python3/dist-packages/PyYAML-3.13.egg-info 29884 +usr/lib/python3/dist-packages/pyxdg-0.25.egg-info 29883 +usr/lib/python3/dist-packages/pytz-2019.1.egg-info/PKG-INFO 29882 +usr/lib/python3/dist-packages/python_pam-1.8.4.egg-info/PKG-INFO 29881 +usr/lib/python3/dist-packages/python_gnupg-0.4.4.egg-info 29880 +usr/lib/python3/dist-packages/python_apt-1.8.4.1.egg-info 29879 +usr/lib/python3/dist-packages/PySocks-1.6.8.egg-info/PKG-INFO 29878 +usr/lib/python3/dist-packages/pyserial-3.4.egg-info/PKG-INFO 29877 +usr/lib/python3/dist-packages/pyinotify-0.9.6.egg-info 29876 +usr/lib/python3/dist-packages/PyGObject-3.30.4.egg-info/PKG-INFO 29875 +usr/lib/python3/dist-packages/pydbus-0.6.0.egg-info/PKG-INFO 29874 +usr/lib/python3/dist-packages/pycups-1.9.73.egg-info 29873 +usr/lib/python3/dist-packages/pycountry-17.5.14.egg-info/PKG-INFO 29872 +usr/lib/python3/dist-packages/pycairo-1.16.2.egg-info 29871 +usr/lib/python3/dist-packages/pyaes-1.6.1.egg-info 29870 +usr/lib/python3/dist-packages/psutil-5.5.1.egg-info 29869 +usr/lib/python3/dist-packages/protobuf-3.6.1.egg-info/PKG-INFO 29868 +usr/lib/python3/dist-packages/Pillow-5.4.1.egg-info/PKG-INFO 29867 +usr/lib/python3/dist-packages/pexpect-4.6.0.egg-info 29866 +usr/lib/python3/dist-packages/pbkdf2-1.3.egg-info/PKG-INFO 29865 +usr/lib/python3/dist-packages/onionshare-1.3.2.egg-info 29864 +usr/lib/python3/dist-packages/onioncircuits-0.6.egg-info 29863 +usr/lib/python3/dist-packages/mutagen-1.40.0.egg-info 29862 +usr/lib/python3/dist-packages/multidict-4.5.2.egg-info/PKG-INFO 29861 +usr/lib/python3/dist-packages/mnemonic-0.18.egg-info/PKG-INFO 29860 +usr/lib/python3/dist-packages/MarkupSafe-1.1.0.egg-info/PKG-INFO 29859 +usr/lib/python3/dist-packages/louis-3.8.0.egg-info 29858 +usr/lib/python3/dist-packages/libusb1-1.7.egg-info/PKG-INFO 29857 +usr/lib/python3/dist-packages/jsonrpclib_pelix-0.3.1.egg-info/PKG-INFO 29856 +usr/lib/python3/dist-packages/Jinja2-2.10.egg-info/PKG-INFO 29855 +usr/lib/python3/dist-packages/itsdangerous-0.24.egg-info/PKG-INFO 29854 +usr/lib/python3/dist-packages/idna-2.6.egg-info/PKG-INFO 29853 +usr/lib/python3/dist-packages/hidapi-0.7.99.post21.egg-info/PKG-INFO 29852 +usr/lib/python3/dist-packages/Flask-1.0.2.egg-info/PKG-INFO 29851 +usr/lib/python3/dist-packages/Electrum-3.3.8.egg-info/PKG-INFO 29850 +usr/lib/python3/dist-packages/ecdsa-0.13.egg-info 29849 +usr/lib/python3/dist-packages/dogtail-0.9.11.egg-info/PKG-INFO 29848 +usr/lib/python3/dist-packages/dnspython-1.16.0.egg-info/PKG-INFO 29847 +usr/lib/python3/dist-packages/distro-1.3.0.egg-info/PKG-INFO 29846 +usr/lib/python3/dist-packages/cupshelpers-1.0.egg-info 29845 +usr/lib/python3/dist-packages/colorama-0.3.7.egg-info/PKG-INFO 29844 +usr/lib/python3/dist-packages/Click-7.0.egg-info/PKG-INFO 29843 +usr/lib/python3/dist-packages/chardet-3.0.4.egg-info/PKG-INFO 29842 +usr/lib/python3/dist-packages/certifi-2018.8.24.egg-info/PKG-INFO 29841 +usr/lib/python3/dist-packages/Brlapi-0.6.7.egg-info 29840 +usr/lib/python3/dist-packages/attrs-18.2.0.egg-info/PKG-INFO 29839 +usr/lib/python3/dist-packages/atomicwrites-1.1.5.egg-info/PKG-INFO 29838 +usr/lib/python3/dist-packages/async_timeout-3.0.1.egg-info/PKG-INFO 29837 +usr/lib/python3/dist-packages/aiorpcX-0.18.4.egg-info/PKG-INFO 29836 +usr/lib/python3/dist-packages/aiohttp-3.5.1.egg-info/PKG-INFO 29835 +usr/lib/python3/dist-packages/aiohttp_socks-0.3.4.egg-info/PKG-INFO 29834 +usr/lib/python3/dist-packages/protobuf-3.6.1.egg-info/namespace_packages.txt 29833 +usr/lib/python3.7/typing.py 29832 +usr/lib/python3/dist-packages/tailsgreeter/settings/admin.py 29831 +usr/lib/python3.7/pipes.py 29830 +usr/lib/python3.7/shlex.py 29829 +usr/lib/python3/dist-packages/tailsgreeter/settings/localization_settings.py 29828 +usr/lib/python3/dist-packages/tailsgreeter/settings/formats.py 29827 +usr/lib/python3/dist-packages/tailsgreeter/settings/keyboard.py 29826 +usr/lib/python3/dist-packages/tailsgreeter/settings/language.py 29825 +usr/lib/python3/dist-packages/tailsgreeter/settings/macspoof.py 29824 +usr/lib/python3/dist-packages/tailsgreeter/settings/network.py 29823 +usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py 29822 +usr/lib/python3/dist-packages/tailsgreeter/utils.py 29821 +usr/lib/python3/dist-packages/tailsgreeter/translatable_window.py 29820 +usr/lib/python3/dist-packages/tailsgreeter/ui/__init__.py 29819 +usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py 29818 +usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py 29817 +usr/lib/python3/dist-packages/tailsgreeter/ui/popover.py 29816 +usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py 29815 +usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py 29814 +usr/lib/python3/dist-packages/tailsgreeter/ui/help_window.py 29813 +usr/lib/python3.7/webbrowser.py 29812 +usr/lib/x86_64-linux-gnu/girepository-1.0/WebKit2-4.0.typelib 29811 +usr/lib/x86_64-linux-gnu/girepository-1.0/JavaScriptCore-4.0.typelib 29810 +usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py 29809 +usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py 29808 +usr/lib/python3/dist-packages/tailsgreeter/ui/settings_collection.py 29807 +usr/lib/python3.7/configparser.py 29806 +usr/share/tails/greeter/tails-logging.conf 29805 +usr/share/tails/greeter/supported_locales 29804 +usr/lib/locale/en_AU/LC_MESSAGES/SYS_LC_MESSAGES 29802 +usr/lib/locale/hu_HU/LC_MESSAGES/SYS_LC_MESSAGES 29801 +usr/share/locale/hu/LC_MESSAGES/iso_639-2.mo 29800 +usr/lib/locale/el_CY/LC_MESSAGES/SYS_LC_MESSAGES 29799 +usr/share/locale/el/LC_MESSAGES/iso_639-2.mo 29798 +usr/lib/locale/sv_FI/LC_MESSAGES/SYS_LC_MESSAGES 29797 +usr/share/locale/sv/LC_MESSAGES/iso_639-2.mo 29796 +usr/lib/locale/he_IL/LC_MESSAGES/SYS_LC_MESSAGES 29795 +usr/share/locale/he/LC_MESSAGES/iso_639-2.mo 29794 +usr/lib/locale/ga_IE/LC_MESSAGES/SYS_LC_MESSAGES 29793 +usr/share/locale/ga/LC_MESSAGES/iso_639-2.mo 29792 +usr/lib/locale/da_DK/LC_MESSAGES/SYS_LC_MESSAGES 29791 +lib/systemd/systemd-update-utmp 29789 +usr/share/locale/da/LC_MESSAGES/iso_639-2.mo 29788 +usr/lib/locale/de_AT/LC_MESSAGES/SYS_LC_MESSAGES 29787 +usr/share/locale/de/LC_MESSAGES/iso_639-2.mo 29786 +usr/lib/locale/ro_RO/LC_MESSAGES/SYS_LC_MESSAGES 29785 +usr/share/locale/ro/LC_MESSAGES/iso_639-2.mo 29784 +usr/lib/locale/ru_RU/LC_MESSAGES/SYS_LC_MESSAGES 29783 +usr/share/locale/ru/LC_MESSAGES/iso_639-2.mo 29782 +usr/lib/locale/id_ID/LC_MESSAGES/SYS_LC_MESSAGES 29781 +usr/share/locale/id/LC_MESSAGES/iso_639-2.mo 29780 +usr/lib/locale/lt_LT/LC_MESSAGES/SYS_LC_MESSAGES 29779 +usr/share/locale/lt/LC_MESSAGES/iso_639-2.mo 29778 +usr/lib/locale/bho_IN/LC_MESSAGES/SYS_LC_MESSAGES 29777 +usr/share/locale/hi/LC_MESSAGES/iso_639-2.mo 29776 +usr/lib/locale/tr_CY/LC_MESSAGES/SYS_LC_MESSAGES 29775 +usr/share/locale/tr/LC_MESSAGES/iso_639-2.mo 29774 +usr/lib/locale/es_AR/LC_MESSAGES/SYS_LC_MESSAGES 29773 +usr/share/locale/es/LC_MESSAGES/iso_639-2.mo 29772 +usr/lib/locale/mk_MK/LC_MESSAGES/SYS_LC_MESSAGES 29771 +usr/share/locale/mk/LC_MESSAGES/iso_639-2.mo 29770 +usr/lib/locale/it_IT/LC_MESSAGES/SYS_LC_MESSAGES 29769 +usr/share/locale/it/LC_MESSAGES/iso_639-2.mo 29768 +usr/lib/locale/zh_TW/LC_MESSAGES/SYS_LC_MESSAGES 29767 +usr/share/locale/zh_TW/LC_MESSAGES/iso_639-2.mo 29766 +usr/lib/locale/km_KH/LC_MESSAGES/SYS_LC_MESSAGES 29765 +usr/lib/locale/zh_CN/LC_MESSAGES/SYS_LC_MESSAGES 29764 +usr/share/locale/zh_CN/LC_MESSAGES/iso_639-2.mo 29763 +usr/lib/locale/fa_IR/LC_MESSAGES/SYS_LC_MESSAGES 29762 +usr/share/locale/fa/LC_MESSAGES/iso_639-2.mo 29761 +usr/lib/locale/cs_CZ/LC_MESSAGES/SYS_LC_MESSAGES 29760 +usr/share/locale/cs/LC_MESSAGES/iso_639-2.mo 29759 +usr/lib/locale/fi_FI/LC_MESSAGES/SYS_LC_MESSAGES 29758 +usr/share/locale/fi/LC_MESSAGES/iso_639-2.mo 29757 +usr/lib/locale/pl_PL/LC_MESSAGES/SYS_LC_MESSAGES 29756 +usr/share/locale/pl/LC_MESSAGES/iso_639-2.mo 29755 +usr/lib/locale/fr_CA/LC_MESSAGES/SYS_LC_MESSAGES 29754 +usr/share/locale/fr/LC_MESSAGES/iso_639-2.mo 29753 +usr/lib/locale/af_ZA/LC_MESSAGES/SYS_LC_MESSAGES 29752 +usr/share/locale/nl/LC_MESSAGES/iso_639-2.mo 29751 +usr/lib/locale/ar_AE/LC_MESSAGES/SYS_LC_MESSAGES 29750 +usr/share/locale/ar/LC_MESSAGES/iso_639-2.mo 29749 +usr/lib/locale/pt_BR/LC_MESSAGES/SYS_LC_MESSAGES 29748 +usr/share/locale/pt/LC_MESSAGES/iso_639-2.mo 29747 +usr/lib/locale/ca_ES/LC_MESSAGES/SYS_LC_MESSAGES 29746 +usr/share/locale/ca/LC_MESSAGES/iso_639-2.mo 29745 +usr/share/tails/greeter/setting.ui 29744 +usr/share/locale/id/LC_MESSAGES/iso_3166-1.mo 29743 +usr/share/locale/ca/LC_MESSAGES/iso_3166-1.mo 29742 +usr/lib/locale/an_ES/LC_MESSAGES/SYS_LC_MESSAGES 29741 +usr/share/locale/km/LC_MESSAGES/iso_3166-1.mo 29740 +usr/share/locale/da/LC_MESSAGES/iso_3166-1.mo 29739 +usr/share/locale/de/LC_MESSAGES/iso_3166-1.mo 29738 +usr/lib/locale/en_CA/LC_MESSAGES/SYS_LC_MESSAGES 29737 +usr/lib/locale/en_DK/LC_MESSAGES/SYS_LC_MESSAGES 29736 +usr/lib/locale/bem_ZM/LC_MESSAGES/SYS_LC_MESSAGES 29735 +usr/share/locale/es/LC_MESSAGES/iso_3166-1.mo 29734 +usr/lib/locale/an_ES.utf8/LC_MESSAGES/SYS_LC_MESSAGES 29733 +usr/share/locale/fr/LC_MESSAGES/iso_3166-1.mo 29732 +usr/lib/locale/fr_BE/LC_MESSAGES/SYS_LC_MESSAGES 29731 +usr/lib/locale/fr_CH/LC_MESSAGES/SYS_LC_MESSAGES 29730 +usr/share/locale/ga/LC_MESSAGES/iso_3166-1.mo 29729 +usr/share/locale/it/LC_MESSAGES/iso_3166-1.mo 29728 +usr/lib/locale/it_CH/LC_MESSAGES/SYS_LC_MESSAGES 29727 +usr/share/locale/lt/LC_MESSAGES/iso_3166-1.mo 29726 +usr/share/locale/hu/LC_MESSAGES/iso_3166-1.mo 29725 +usr/share/locale/nl/LC_MESSAGES/iso_3166-1.mo 29724 +usr/lib/locale/af_ZA.utf8/LC_MESSAGES/SYS_LC_MESSAGES 29723 +usr/share/locale/pl/LC_MESSAGES/iso_3166-1.mo 29722 +usr/share/locale/pt_BR/LC_MESSAGES/iso_639-2.mo 29721 +usr/share/locale/pt_BR/LC_MESSAGES/iso_3166-1.mo 29720 +usr/share/locale/pt/LC_MESSAGES/iso_3166-1.mo 29719 +usr/share/locale/ro/LC_MESSAGES/iso_3166-1.mo 29718 +usr/share/locale/fi/LC_MESSAGES/iso_3166-1.mo 29717 +usr/share/locale/sv/LC_MESSAGES/iso_3166-1.mo 29716 +usr/share/locale/tr/LC_MESSAGES/iso_3166-1.mo 29715 +usr/share/locale/cs/LC_MESSAGES/iso_3166-1.mo 29714 +usr/share/locale/el/LC_MESSAGES/iso_3166-1.mo 29713 +usr/share/locale/mk/LC_MESSAGES/iso_3166-1.mo 29712 +usr/share/locale/ru/LC_MESSAGES/iso_3166-1.mo 29711 +usr/lib/locale/ru_UA/LC_MESSAGES/SYS_LC_MESSAGES 29710 +usr/share/locale/he/LC_MESSAGES/iso_3166-1.mo 29709 +usr/share/locale/ar/LC_MESSAGES/iso_3166-1.mo 29708 +usr/lib/locale/ar_AE.utf8/LC_MESSAGES/SYS_LC_MESSAGES 29707 +usr/share/locale/fa/LC_MESSAGES/iso_3166-1.mo 29706 +usr/share/locale/hi/LC_MESSAGES/iso_3166-1.mo 29705 +usr/share/locale/zh_CN/LC_MESSAGES/iso_3166-1.mo 29704 +usr/lib/locale/zh_HK/LC_MESSAGES/SYS_LC_MESSAGES 29703 +usr/share/locale/zh_HK/LC_MESSAGES/iso_639-2.mo 29702 +usr/share/locale/zh_HK/LC_MESSAGES/iso_3166-1.mo 29701 +usr/share/locale/zh_TW/LC_MESSAGES/iso_3166-1.mo 29700 +usr/share/tails/greeter/region_settings.ui 29699 +usr/share/tails/greeter/additional_settings.ui 29698 +usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules.cache 29697 +usr/share/tails/greeter/greeter.css 29696 +usr/share/tails/greeter/main.ui 29695 +usr/local/sbin/live-persist 29694 +lib/live/boot/9990-cmdline-old 29693 +lib/live/boot/9990-misc-helpers.sh 29692 +sbin/cryptsetup 29690 +usr/lib/x86_64-linux-gnu/libpopt.so.0.0.0 29689 +usr/lib/x86_64-linux-gnu/sane/libsane-epson2.so.1.0.27 29686 +etc/sane.d/epson2.conf 29685 +usr/share/fonts/opentype/cantarell/Cantarell-Bold.otf 29684 +usr/share/icons/hicolor/scalable/actions/tails-help.svg 29682 +usr/share/icons/hicolor/scalable/actions/tails-language.svg 29681 +usr/share/icons/hicolor/scalable/actions/tails-keyboard-layout.svg 29680 +usr/share/icons/hicolor/scalable/actions/tails-formats.svg 29679 +usr/share/icons/Adwaita/16x16/actions/list-add-symbolic.symbolic.png 29678 +usr/share/icons/Adwaita/cursors/top_left_corner 29677 +usr/share/icons/Adwaita/cursors/top_side 29676 +usr/share/icons/Adwaita/cursors/top_right_corner 29675 +usr/share/icons/Adwaita/cursors/left_side 29674 +usr/share/icons/Adwaita/cursors/right_side 29673 +usr/share/icons/Adwaita/cursors/bottom_left_corner 29672 +usr/share/icons/Adwaita/cursors/bottom_side 29671 +usr/share/icons/Adwaita/cursors/bottom_right_corner 29670 +usr/share/icons/hicolor/32x32/apps/gdm-setup.png 29669 +usr/share/icons/Adwaita/cursors/hand2 29668 +usr/lib/x86_64-linux-gnu/sane/libsane-epjitsu.so.1.0.27 29667 +etc/sane.d/epjitsu.conf 29666 +usr/lib/x86_64-linux-gnu/sane/libsane-dmc.so.1.0.27 29665 +etc/sane.d/dmc.conf 29664 +usr/lib/x86_64-linux-gnu/sane/libsane-dell1600n_net.so.1.0.27 29663 +etc/sane.d/dell1600n_net.conf 29662 +usr/lib/x86_64-linux-gnu/sane/libsane-coolscan3.so.1.0.27 29661 +etc/sane.d/coolscan3.conf 29660 +usr/lib/x86_64-linux-gnu/sane/libsane-coolscan.so.1.0.27 29659 +etc/sane.d/coolscan.conf 29658 +usr/lib/x86_64-linux-gnu/sane/libsane-cardscan.so.1.0.27 29657 +etc/sane.d/cardscan.conf 29656 +usr/lib/x86_64-linux-gnu/sane/libsane-canon_dr.so.1.0.27 29655 +etc/sane.d/canon_dr.conf 29654 +usr/lib/x86_64-linux-gnu/sane/libsane-canon630u.so.1.0.27 29653 +etc/sane.d/canon630u.conf 29652 +usr/lib/x86_64-linux-gnu/sane/libsane-canon.so.1.0.27 29651 +etc/sane.d/canon.conf 29650 +usr/lib/x86_64-linux-gnu/sane/libsane-bh.so.1.0.27 29649 +etc/sane.d/bh.conf 29648 +usr/lib/x86_64-linux-gnu/sane/libsane-as6e.so.1.0.27 29647 +usr/lib/x86_64-linux-gnu/sane/libsane-artec_eplus48u.so.1.0.27 29646 +etc/sane.d/artec_eplus48u.conf 29645 +usr/lib/x86_64-linux-gnu/sane/libsane-artec.so.1.0.27 29644 +etc/sane.d/artec.conf 29643 +usr/lib/x86_64-linux-gnu/sane/libsane-avision.so.1.0.27 29642 +etc/sane.d/avision.conf 29641 +usr/lib/x86_64-linux-gnu/sane/libsane-apple.so.1.0.27 29640 +etc/sane.d/apple.conf 29639 +usr/lib/x86_64-linux-gnu/sane/libsane-agfafocus.so.1.0.27 29638 +etc/sane.d/agfafocus.conf 29637 +usr/lib/x86_64-linux-gnu/sane/libsane-abaton.so.1.0.27 29636 +etc/sane.d/abaton.conf 29635 +usr/lib/x86_64-linux-gnu/sane/libsane-net.so.1.0.27 29634 +etc/sane.d/net.conf 29633 +usr/lib/x86_64-linux-gnu/sane/libsane-hpaio.so.1.0.0 29632 +usr/lib/x86_64-linux-gnu/libhpip.so.0.0.1 29631 +usr/lib/x86_64-linux-gnu/libhpmud.so.0.0.6 29630 +usr/lib/x86_64-linux-gnu/libhpdiscovery.so.0.0.1 29629 +etc/pam.d/gdm-password 29623 +usr/share/xsessions/gnome-xorg.desktop 29622 +lib/x86_64-linux-gnu/security/pam_succeed_if.so 29621 +etc/securetty 29620 +lib/systemd/system/user@1000.service.d/timeout.conf 29617 +usr/local/lib/create-tor-browser-directories 29601 +usr/local/lib/tails-shell-library/tails-greeter.sh 29600 +etc/gdm3/PostLogin/Default 29598 +etc/live/config.d/username.conf 29593 +usr/local/lib/tails-unblock-network 29592 +lib/systemd/system/tails-unblock-network.service 29591 +bin/sync 29586 +bin/kmod 29583 +lib/modules/5.4.0-4-amd64/modules.softdep 29582 +lib/modprobe.d/aliases.conf 29579 +etc/modprobe.d/amd64-microcode-blacklist.conf 29578 +lib/modprobe.d/fbdev-blacklist.conf 29577 +etc/modprobe.d/intel-microcode-blacklist.conf 29576 +etc/modprobe.d/loop.conf 29575 +etc/modprobe.d/no-bluetooth.conf 29574 +etc/modprobe.d/no-conntrack-helper.conf 29573 +etc/modprobe.d/no-mei.conf 29572 +etc/modprobe.d/no-n-hdlc.conf 29571 +etc/modprobe.d/no-pc-speaker.conf 29570 +lib/modprobe.d/systemd.conf 29569 +etc/modprobe.d/uncommon-network-protocols.conf 29568 +lib/modules/5.4.0-4-amd64/modules.dep.bin 29567 +lib/modules/5.4.0-4-amd64/modules.alias.bin 29566 +lib/modules/5.4.0-4-amd64/modules.symbols.bin 29565 +lib/modules/5.4.0-4-amd64/modules.builtin.bin 29564 +lib/systemd/network/99-default.link 29563 +etc/udev/rules.d/00-mac-spoof.rules 29562 +lib/udev/rules.d/39-usbmuxd.rules 29561 +lib/udev/rules.d/40-usb_modeswitch.rules 29560 +lib/udev/rules.d/50-firmware.rules 29559 +lib/udev/rules.d/50-udev-default.rules 29558 +lib/udev/rules.d/55-dm.rules 29557 +lib/udev/rules.d/56-hpmud.rules 29556 +lib/udev/rules.d/56-lvm.rules 29555 +lib/udev/rules.d/60-block.rules 29554 +lib/udev/rules.d/60-cdrom_id.rules 29553 +lib/udev/rules.d/60-crda.rules 29552 +lib/udev/rules.d/60-drm.rules 29551 +lib/udev/rules.d/60-evdev.rules 29550 +lib/udev/rules.d/60-gobi-loader.rules 29549 +lib/udev/rules.d/60-input-id.rules 29548 +lib/udev/rules.d/60-libgphoto2-6.rules 29547 +lib/udev/rules.d/60-libsane.rules 29546 +lib/udev/rules.d/60-open-vm-tools.rules 29545 +lib/udev/rules.d/60-persistent-alsa.rules 29544 +lib/udev/rules.d/60-persistent-input.rules 29543 +lib/udev/rules.d/60-persistent-storage-dm.rules 29542 +lib/udev/rules.d/60-persistent-storage-tape.rules 29541 +lib/udev/rules.d/60-persistent-storage.rules 29540 +lib/udev/rules.d/60-persistent-v4l.rules 29539 +lib/udev/rules.d/60-scdaemon.rules 29538 +lib/udev/rules.d/60-sensor.rules 29537 +lib/udev/rules.d/60-serial.rules 29536 +lib/udev/rules.d/60-trezor.rules 29535 +lib/udev/rules.d/60-virtualbox-guest-utils.rules 29534 +lib/udev/rules.d/61-gdm.rules 29533 +lib/udev/rules.d/61-gnome-settings-daemon-rfkill.rules 29532 +lib/udev/rules.d/64-btrfs.rules 29531 +lib/udev/rules.d/64-xorg-xkb.rules 29530 +lib/udev/rules.d/65-libwacom.rules 29529 +lib/udev/rules.d/66-bilibop.rules 29528 +lib/udev/rules.d/69-cd-sensors.rules 29527 +lib/udev/rules.d/69-libmtp.rules 29526 +lib/udev/rules.d/69-lvm-metad.rules 29524 +lib/udev/rules.d/70-joystick.rules 29523 +lib/udev/rules.d/70-mouse.rules 29522 +lib/udev/rules.d/70-power-switch.rules 29521 +etc/udev/rules.d/70-protect-boot-medium-for-udisks.rules 29520 +lib/udev/rules.d/70-spice-vdagentd.rules 29519 +lib/udev/rules.d/70-touchpad.rules 29518 +lib/udev/rules.d/70-uaccess.rules 29517 +lib/udev/rules.d/71-seat.rules 29516 +lib/udev/rules.d/73-seat-late.rules 29515 +lib/udev/rules.d/73-special-net-names.rules 29514 +lib/udev/rules.d/73-usb-net-by-mac.rules 29507 +lib/udev/rules.d/75-net-description.rules 29506 +lib/udev/rules.d/75-probe_mtd.rules 29505 +lib/udev/rules.d/77-mm-cinterion-port-types.rules 29504 +lib/udev/rules.d/77-mm-dell-port-types.rules 29502 +lib/udev/rules.d/77-mm-ericsson-mbm.rules 29501 +lib/udev/rules.d/77-mm-fibocom-port-types.rules 29499 +lib/udev/rules.d/77-mm-haier-port-types.rules 29497 +lib/udev/rules.d/77-mm-huawei-net-port-types.rules 29496 +lib/udev/rules.d/77-mm-longcheer-port-types.rules 29495 +lib/udev/rules.d/77-mm-mtk-port-types.rules 29492 +lib/udev/rules.d/77-mm-nokia-port-types.rules 29490 +lib/udev/rules.d/77-mm-pcmcia-device-blacklist.rules 29489 +lib/udev/rules.d/77-mm-qdl-device-blacklist.rules 29488 +lib/udev/rules.d/77-mm-sierra.rules 29486 +lib/udev/rules.d/77-mm-simtech-port-types.rules 29485 +lib/udev/rules.d/77-mm-telit-port-types.rules 29484 +lib/udev/rules.d/77-mm-ublox-port-types.rules 29483 +lib/udev/rules.d/77-mm-usb-device-blacklist.rules 29482 +lib/udev/rules.d/77-mm-usb-serial-adapters-greylist.rules 29479 +lib/udev/rules.d/77-mm-x22x-port-types.rules 29478 +lib/udev/rules.d/77-mm-zte-port-types.rules 29476 +lib/udev/rules.d/78-sound-card.rules 29474 +lib/udev/rules.d/80-debian-compat.rules 29473 +lib/udev/rules.d/80-drivers.rules 29472 +lib/udev/rules.d/80-ifupdown.rules 29471 +lib/udev/rules.d/80-libinput-device-groups.rules 29470 +lib/udev/rules.d/80-mm-candidate.rules 29469 +lib/udev/rules.d/80-udisks2.rules 29468 +lib/udev/rules.d/84-nm-drivers.rules 29467 +lib/udev/rules.d/85-hdparm.rules 29466 +lib/udev/rules.d/85-hwclock.rules 29465 +lib/udev/rules.d/85-nm-unmanaged.rules 29464 +lib/udev/rules.d/85-regulatory.rules 29463 +lib/udev/rules.d/89-alsa-ucm.rules 29462 +lib/udev/rules.d/90-alsa-restore.rules 29461 +lib/udev/rules.d/90-bolt.rules 29460 +lib/udev/rules.d/90-console-setup.rules 29459 +lib/udev/rules.d/90-iphone-tether.rules 29458 +lib/udev/rules.d/90-libinput-model-quirks.rules 29457 +lib/udev/rules.d/90-nm-thunderbolt.rules 29456 +lib/udev/rules.d/90-pulseaudio.rules 29455 +lib/udev/rules.d/92-libccid.rules 29454 +lib/udev/rules.d/95-cd-devices.rules 29453 +lib/udev/rules.d/95-dm-notify.rules 29452 +lib/udev/rules.d/95-upower-csr.rules 29451 +lib/udev/rules.d/95-upower-hid.rules 29450 +lib/udev/rules.d/95-upower-wup.rules 29449 +etc/udev/rules.d/99-hide-TailsData.rules 29448 +lib/udev/rules.d/99-laptop-mode.rules 29447 +etc/udev/rules.d/99-make-removable-devices-user-writable.rules 29446 +lib/udev/rules.d/99-systemd.rules 29445 +lib/udev/rules.d/99-vmware-scsi-udev.rules 29444 +lib/modules/5.4.0-4-amd64/kernel/drivers/cpufreq/acpi-cpufreq.ko 29348 +lib/modules/5.4.0-4-amd64/kernel/drivers/cpufreq/pcc-cpufreq.ko 29331 +lib/udev/libinput-device-group 29317 +lib/modules/5.4.0-4-amd64/kernel/drivers/net/ethernet/intel/e1000e/e1000e.ko 29280 +lib/systemd/system/systemd-udev-settle.service 29276 +lib/modules/5.4.0-4-amd64/kernel/drivers/net/wireless/intel/iwlwifi/iwlwifi.ko 29183 +bin/true 29179 +lib/udev/ata_id 29146 +lib/firmware/iwlwifi-6000g2a-6.ucode 29124 +lib/udev/hwclock-set 29123 +lib/udev/hdparm 29118 +lib/hdparm/hdparm-functions 29117 +lib/modules/5.4.0-4-amd64/kernel/lib/crypto/libarc4.ko 29114 +lib/modules/5.4.0-4-amd64/kernel/net/mac80211/mac80211.ko 29113 +lib/udev/libinput-model-quirks 29112 +etc/hdparm.conf 29107 +sbin/ethtool 28909 +etc/console-setup/cached_setup_terminal.sh 28858 +etc/console-setup/cached_setup_font.sh 28854 +bin/setfont 28846 +lib/udev/ifupdown-hotplug 28845 +usr/share/consolefonts/Uni1-Fixed16.psf.gz 28844 +usr/local/lib/tails-spoof-mac 28840 +lib/modules/5.4.0-4-amd64/kernel/drivers/net/wireless/intel/iwlwifi/dvm/iwldvm.ko 28838 +usr/local/lib/tails-shell-library/hardware.sh 28836 +usr/local/lib/tails-shell-library/log.sh 28835 +usr/bin/gettext.sh 28832 +lib/crda/setregdomain 28831 +etc/default/crda 28829 +lib/systemd/systemd-rfkill 28828 +usr/bin/macchanger 28825 +usr/share/macchanger/OUI.list 28824 +usr/share/macchanger/wireless.list 28823 +sbin/ifup 28822 +etc/network/interfaces 28821 +lib/systemd/systemd-sysctl 28820 +etc/sysctl.conf 28819 +etc/sysctl.d/disable_ipv6.conf 28818 +etc/sysctl.d/fs_protected.conf 28817 +etc/sysctl.d/kexec.conf 28816 +etc/sysctl.d/kptr_restrict.conf 28815 +etc/sysctl.d/mmap_aslr.conf 28814 +etc/sysctl.d/pmtud.conf 28813 +etc/sysctl.d/protect-links.conf 28812 +etc/sysctl.d/ptrace_scope.conf 28811 +etc/sysctl.d/tcp_timestamps.conf 28810 +etc/sysctl.d/unprivileged_bpf.conf 28809 +etc/sysctl.d/unprivileged_userfaultfd.conf 28808 +bin/readlink 28804 +lib/udev/v4l_id 28791 +lib/bilibop/test 28770 +lib/bilibop/common.sh 28769 +bin/df 28768 +etc/bilibop/bilibop.conf 28767 +lib/systemd/system/NetworkManager.service 28750 +lib/systemd/system/NetworkManager-wait-online.service 28749 +lib/systemd/system/NetworkManager-dispatcher.service 28748 +etc/systemd/system.conf 28747 +lib/systemd/system.conf.d/lower-DefaultTimeoutStopSec.conf 28746 +lib/systemd/system-generators/systemd-cryptsetup-generator 28745 +lib/systemd/system-generators/systemd-fstab-generator 28744 +lib/systemd/system-generators/systemd-getty-generator 28743 +lib/systemd/system-generators/systemd-debug-generator 28742 +lib/systemd/system-generators/systemd-gpt-auto-generator 28741 +lib/systemd/system-generators/systemd-hibernate-resume-generator 28740 +lib/systemd/system-generators/lvm2-activation-generator 28739 +lib/systemd/system-generators/systemd-run-generator 28738 +lib/systemd/system-generators/systemd-rc-local-generator 28737 +lib/systemd/system-generators/systemd-sysv-generator 28736 +lib/systemd/system-generators/systemd-bless-boot-generator 28735 +lib/systemd/system-generators/tor-generator 28734 +lib/systemd/system-generators/systemd-system-update-generator 28733 +sbin/lvm 28732 +lib/x86_64-linux-gnu/libdevmapper-event.so.1.02.1 28731 +lib/x86_64-linux-gnu/libreadline.so.5.2 28730 +lib/systemd/system-generators/systemd-veritysetup-generator 28729 +usr/lib/x86_64-linux-gnu/libaio.so.1.0.1 28728 +etc/lvm/lvm.conf 28727 +etc/lvm/lvmlocal.conf 28726 +lib/systemd/system-generators/live-config-getty-generator 28725 +lib/live/init-config.sh 28724 +etc/live/config.d/noroot.conf 28723 +etc/live/config.d/user-default-groups.conf 28722 +etc/init.d/gdomap 28721 +lib/systemd/system/systemd-backlight@.service 28720 +lib/systemd/system/systemd-journald.socket 28719 +lib/systemd/system/systemd-journald.service 28718 +lib/systemd/system/syslog.socket 28717 +lib/systemd/system/emergency.service 28716 +lib/systemd/system/rescue.service 28715 +lib/systemd/system/plymouth-start.service 28714 +lib/systemd/system/systemd-ask-password-plymouth.service 28713 +lib/systemd/system/keyboard-setup.service 28712 +lib/systemd/system/local-fs-pre.target 28711 +lib/systemd/system/systemd-udevd.service 28710 +lib/systemd/system/systemd-udevd-kernel.socket 28709 +lib/systemd/system/systemd-udevd-control.socket 28708 +lib/systemd/system/systemd-hwdb-update.service 28707 +lib/systemd/system/systemd-sysusers.service 28706 +lib/systemd/system/systemd-udev-trigger.service 28705 +lib/systemd/system/systemd-ask-password-plymouth.path 28704 +lib/systemd/system/basic.target 28703 +lib/systemd/system/var-tmp.mount 28702 +lib/systemd/system/local-fs.target 28701 +lib/systemd/system/run-initramfs.mount 28700 +lib/systemd/system/initramfs-shutdown.service 28699 +lib/systemd/system/emergency.target 28698 +lib/systemd/system/umount.target 28697 +lib/systemd/system/live-config.service 28696 +lib/systemd/system/live-config.service.d/after-tmpfiles.conf 28695 +lib/systemd/system/systemd-tmpfiles-setup.service 28694 +lib/systemd/system/swap.target 28693 +lib/systemd/system/slices.target 28692 +lib/systemd/system/paths.target 28691 +lib/systemd/system/timers.target 28690 +lib/systemd/system/systemd-tmpfiles-clean.timer 28689 +lib/systemd/system/systemd-tmpfiles-clean.service 28688 +lib/systemd/system/time-sync.target 28687 +lib/systemd/system/logrotate.timer 28686 +lib/systemd/system/logrotate.service 28685 +lib/systemd/system/apt-daily-upgrade.timer 28684 +lib/systemd/system/apt-daily-upgrade.service 28683 +lib/systemd/system/dbus.socket 28682 +lib/systemd/system/dbus.service 28681 +lib/systemd/system/network-pre.target 28680 +lib/systemd/system/network-online.target 28679 +lib/systemd/system/networking.service 28678 +lib/systemd/system/systemd-modules-load.service 28677 +lib/systemd/system/systemd-sysctl.service 28676 +lib/systemd/system/apparmor.service 28675 +lib/systemd/system/ifupdown-pre.service 28674 +lib/systemd/system/network.target 28673 +lib/systemd/system/apt-daily.service 28672 +lib/systemd/system/systemd-journald-audit.socket 28671 +lib/systemd/system/systemd-journald-dev-log.socket 28670 +lib/systemd/system/sockets.target 28669 +lib/systemd/system/systemd-initctl.socket 28668 +lib/systemd/system/systemd-initctl.service 28667 +lib/systemd/system/spice-vdagentd.socket 28666 +lib/systemd/system/spice-vdagentd.service 28665 +lib/systemd/system/pcscd.socket 28664 +lib/systemd/system/pcscd.service 28663 +lib/systemd/system/dm-event.socket 28662 +lib/systemd/system/dm-event.service 28661 +lib/systemd/system/cups.socket 28660 +lib/systemd/system/cups.service 28659 +lib/systemd/system/cups.service.d/after-AppArmor.conf 28658 +lib/systemd/system/sysinit.target 28657 +lib/systemd/system/systemd-update-utmp.service 28656 +lib/systemd/system/systemd-update-utmp.service.d/empty-overlayfs-rw-tmpfs.conf 28655 +lib/systemd/system/systemd-tmpfiles-setup-dev.service 28654 +lib/systemd/system/systemd-random-seed.service 28653 +lib/systemd/system/systemd-machine-id-commit.service 28652 +lib/systemd/system/systemd-journal-flush.service 28651 +lib/systemd/system/systemd-binfmt.service 28650 +lib/systemd/system/systemd-ask-password-console.path 28649 +lib/systemd/system/systemd-ask-password-console.service 28648 +lib/systemd/system/sys-kernel-debug.mount 28647 +lib/systemd/system/sys-kernel-config.mount 28646 +lib/systemd/system/sys-fs-fuse-connections.mount 28645 +lib/systemd/system/proc-sys-fs-binfmt_misc.automount 28644 +lib/systemd/system/proc-sys-fs-binfmt_misc.mount 28643 +lib/systemd/system/plymouth-read-write.service 28642 +lib/systemd/system/lvm2-monitor.service 28641 +lib/systemd/system/lvm2-lvmpolld.socket 28640 +lib/systemd/system/lvm2-lvmpolld.service 28639 +lib/systemd/system/kmod-static-nodes.service 28638 +lib/systemd/system/ferm.service 28637 +lib/systemd/system/dev-mqueue.mount 28636 +lib/systemd/system/dev-hugepages.mount 28635 +lib/systemd/system/cryptsetup.target 28634 +lib/systemd/system/blk-availability.service 28633 +lib/systemd/system/systemd-remount-fs.service 28632 +lib/systemd/system/systemd-fsck-root.service 28631 +lib/systemd/system/systemd-fsckd.socket 28630 +lib/systemd/system/systemd-fsckd.service 28629 +lib/systemd/system/shutdown.target 28628 +lib/systemd/system/sound.target 28627 +lib/systemd/system/alsa-state.service 28626 +lib/systemd/system/alsa-restore.service 28625 +lib/systemd/system/alsa-restore.service.d/dont-store-state-on-shutdown.conf 28624 +lib/systemd/system/systemd-rfkill.socket 28623 +lib/systemd/system/systemd-rfkill.service 28622 +lib/systemd/system/systemd-update-utmp-runlevel.service 28621 +lib/systemd/system/graphical.target 28620 +lib/systemd/system/udisks2.service 28619 +lib/systemd/system/remote-fs.target 28618 +lib/systemd/system/remote-fs-pre.target 28617 +lib/systemd/system/accounts-daemon.service 28616 +lib/systemd/system/nss-user-lookup.target 28615 +lib/systemd/system/rescue.target 28614 +lib/systemd/system/gdm.service 28613 +lib/systemd/system/gdm.service.d/failure.conf 28612 +lib/systemd/system/gdm.service.d/permissions.conf 28611 +lib/systemd/system/gdm.service.d/restart.conf 28610 +lib/systemd/system/tails-gdm-failed-to-start.service 28609 +lib/systemd/system/plymouth-quit-wait.service 28608 +lib/systemd/system/systemd-user-sessions.service 28607 +lib/systemd/system/rc-local.service 28606 +lib/systemd/system/rc-local.service.d/debian.conf 28605 +lib/systemd/system/plymouth-quit.service 28604 +lib/systemd/system/getty@.service 28603 +lib/systemd/system/getty.target 28602 +lib/systemd/system/getty-static.service 28601 +lib/systemd/system/getty-pre.target 28600 +lib/systemd/system/multi-user.target 28599 +lib/systemd/system/wpa_supplicant.service 28598 +lib/systemd/system/virtualbox-guest-utils.service 28597 +lib/systemd/system/tails-synchronize-data-to-new-persistent-volume-on-shutdown.service 28596 +lib/systemd/system/tails-shutdown-on-media-removal.service 28595 +lib/systemd/system/tails-set-wireless-devices-state.service 28594 +lib/systemd/system/tails-autotest-remote-shell.service 28593 +lib/systemd/system/tails-autotest-broken-Xorg.service 28592 +lib/systemd/system/systemd-logind.service 28591 +lib/systemd/system/user.slice 28590 +lib/systemd/system/systemd-ask-password-wall.path 28589 +lib/systemd/system/systemd-ask-password-wall.service 28588 +lib/systemd/system/rsync.service 28587 +lib/systemd/system/open-vm-tools.service 28586 +lib/systemd/system/vgauth.service 28585 +lib/systemd/system/onion-grater.service 28584 +lib/systemd/system/memlockd.service 28583 +lib/systemd/system/memlockd.service.d/oom.conf 28582 +lib/systemd/system/lmt-poll.service 28581 +lib/systemd/system/laptop-mode.timer 28580 +lib/systemd/system/laptop-mode.service 28579 +lib/systemd/system/cron.service 28578 +lib/systemd/system/console-setup.service 28577 +lib/systemd/system/ModemManager.service 28576 +lib/systemd/system/haveged.service 28575 +usr/lib/NetworkManager/nm-dispatcher 28573 +usr/sbin/NetworkManager 28571 +usr/lib/x86_64-linux-gnu/libndp.so.0.1.0 28570 +usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4.5.0 28569 +usr/lib/x86_64-linux-gnu/libnghttp2.so.14.17.1 28568 +usr/lib/x86_64-linux-gnu/librtmp.so.1 28567 +usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1 28566 +usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10 28565 +usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10 28564 +usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25 28563 +usr/lib/NetworkManager/conf.d/no-mac-addr-change.conf 28562 +etc/NetworkManager/NetworkManager.conf 28561 +etc/NetworkManager/conf.d/dns.conf 28560 +etc/NetworkManager/conf.d/spoof-mac.conf 28559 +usr/bin/localectl 28557 +usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-settings-plugin-ifupdown.so 28556 +usr/share/systemd/language-fallback-map 28554 +usr/bin/nm-online 28553 +usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-adsl.so 28552 +usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-bluetooth.so 28551 +usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-wwan.so 28550 +usr/lib/x86_64-linux-gnu/libbluetooth.so.3.18.16 28549 +usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-team.so 28547 +usr/lib/x86_64-linux-gnu/libteamdctl.so.0.1.5 28546 +usr/lib/x86_64-linux-gnu/libjansson.so.4.11.1 28545 +usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-wifi.so 28544 +etc/dconf/db/local.d/00_Tails_defaults 28543 +etc/NetworkManager/dispatcher.d/00-firewall.sh 28542 +usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-wwan.so 28540 +etc/NetworkManager/dispatcher.d/00-resolv-over-clearnet 28539 +etc/NetworkManager/dispatcher.d/01-ifupdown 28537 +etc/NetworkManager/dispatcher.d/01-wait-for-notification-recipient.sh 28536 +etc/NetworkManager/dispatcher.d/10-tor.sh 28535 +etc/NetworkManager/dispatcher.d/20-time.sh 28534 +usr/local/lib/tails-shell-library/gnome.sh 28533 +usr/local/lib/tails-shell-library/tor.sh 28532 +etc/NetworkManager/dispatcher.d/60-tor-ready.sh 28531 +etc/dconf/db/ibus.d/00-upstream-settings 28530 +etc/NetworkManager/dispatcher.d/70-upgrade-additional-software.sh 28527 +usr/sbin/deluser 28525 +usr/share/perl/5.28.1/File/Find.pm 28524 +usr/share/perl/5.28.1/File/Basename.pm 28523 +usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Spec.pm 28522 +usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Spec/Unix.pm 28521 +usr/share/perl/5.28.1/File/Temp.pm 28520 +usr/share/perl/5.28.1/File/Path.pm 28519 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Errno.pm 28518 +usr/share/perl/5.28.1/Carp/Heavy.pm 28517 +etc/deluser.conf 28516 +usr/bin/passwd 28515 +etc/gdm3/PreSession/Default 28512 +etc/gdm3/Xsession 28498 +etc/profile 28497 +usr/bin/id 28496 +etc/profile.d/bash_completion.sh 28495 +etc/profile.d/vte-2.91.sh 28494 +usr/bin/expr 28493 +etc/X11/Xsession.d/20dbus_xdg-runtime 28492 +usr/bin/dbus-update-activation-environment 28491 +etc/X11/Xsession.d/20x11-common_process-args 28490 +etc/X11/Xsession.options 28489 +etc/X11/Xsession.d/30x11-common_xresources 28488 +bin/run-parts 28487 +usr/bin/xrdb 28486 +usr/lib/x86_64-linux-gnu/libXmuu.so.1.0.0 28485 +etc/X11/Xresources/x11-common 28484 +usr/bin/x86_64-linux-gnu-cpp-8 28483 +usr/lib/gcc/x86_64-linux-gnu/8/cc1 28482 +usr/lib/x86_64-linux-gnu/libisl.so.19.1.0 28481 +usr/lib/x86_64-linux-gnu/libmpc.so.3.1.0 28480 +usr/lib/x86_64-linux-gnu/libmpfr.so.6.0.2 28479 +etc/dhcp/dhclient.conf 28477 +sbin/dhclient 28475 +lib/x86_64-linux-gnu/libdns-export.so.1104.0.2 28474 +etc/X11/Xsession.d/35x11-common_xhost-local 28473 +usr/bin/xhost 28472 +lib/x86_64-linux-gnu/libisc-export.so.1100.0.0 28471 +etc/X11/Xsession.d/40x11-common_xsessionrc 28470 +etc/amnesia/environment 28469 +etc/X11/Xsession.d/50x11-common_determine-startup 28468 +etc/X11/Xsession.d/55gnome-session_gnomerc 28467 +etc/X11/Xsession.d/75dbus_dbus-launch 28466 +etc/X11/Xsession.d/90atk-adaptor 28465 +etc/X11/Xsession.d/90gpg-agent 28464 +etc/X11/Xsession.d/90qt-a11y 28463 +etc/X11/Xsession.d/90x11-common_ssh-agent 28462 +etc/X11/Xsession.d/92tails-set-SSH_AUTH_SOCK 28461 +etc/X11/Xsession.d/95dbus_update-activation-env 28460 +etc/services 28459 +usr/lib/NetworkManager/nm-dhcp-helper 28456 +etc/X11/Xsession.d/98vboxadd-xclient 28455 +etc/X11/Xsession.d/99x11-common_start 28454 +usr/share/gnome-session/sessions/gnome.session 28450 +etc/xdg/autostart/at-spi-dbus-bus.desktop 28449 +etc/xdg/autostart/gnome-keyring-pkcs11.desktop 28448 +etc/xdg/autostart/gnome-keyring-secrets.desktop 28447 +etc/xdg/autostart/gnome-keyring-ssh.desktop 28446 +etc/xdg/autostart/gnome-shell-overrides-migration.desktop 28445 +etc/xdg/autostart/nm-applet.desktop 28444 +etc/xdg/autostart/openpgp-applet.desktop 28443 +etc/xdg/autostart/orca-autostart.desktop 28442 +etc/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop 28441 +etc/xdg/autostart/org.gnome.SettingsDaemon.DiskUtilityNotify.desktop 28440 +etc/xdg/autostart/pulseaudio.desktop 28439 +etc/xdg/autostart/systemd-desktop-target.desktop 28438 +etc/xdg/autostart/systemd-gnome-early-initialization-target.desktop 28437 +etc/xdg/autostart/tracker-store.desktop 28436 +etc/xdg/autostart/user-dirs-update-gtk.desktop 28435 +etc/xdg/autostart/xdg-user-dirs.desktop 28434 +usr/lib/systemd/user/gnome-early-initialization.target 28431 +usr/lib/systemd/user/tails-configure-keyboard.service 28430 +usr/lib/systemd/user/tails-add-GNOME-bookmarks.service 28429 +usr/lib/systemd/user/gvfs-metadata.service 28428 +usr/local/lib/tails-configure-keyboard 28426 +usr/lib/gvfs/gvfsd-metadata 28424 +usr/local/lib/add-GNOME-bookmarks 28422 +usr/bin/dirname 28421 +usr/bin/gio 28418 +usr/lib/systemd/user/gvfs-daemon.service 28417 +usr/lib/gvfs/gvfsd 28415 +usr/lib/x86_64-linux-gnu/gvfs/libgvfsdaemon.so 28414 +usr/share/gvfs/mounts/admin.mount 28413 +usr/share/gvfs/mounts/afc.mount 28412 +usr/share/gvfs/mounts/afp-browse.mount 28411 +usr/share/gvfs/mounts/afp.mount 28410 +usr/share/gvfs/mounts/archive.mount 28409 +usr/share/gvfs/mounts/burn.mount 28408 +usr/share/gvfs/mounts/cdda.mount 28407 +usr/share/gvfs/mounts/computer.mount 28406 +usr/share/gvfs/mounts/dav+sd.mount 28405 +usr/share/gvfs/mounts/dav.mount 28404 +usr/share/gvfs/mounts/dns-sd.mount 28403 +usr/share/gvfs/mounts/ftp.mount 28402 +usr/share/gvfs/mounts/ftpis.mount 28401 +usr/share/gvfs/mounts/ftps.mount 28400 +usr/share/gvfs/mounts/google.mount 28399 +usr/share/gvfs/mounts/gphoto2.mount 28398 +usr/share/gvfs/mounts/http.mount 28397 +usr/share/gvfs/mounts/localtest.mount 28396 +usr/share/gvfs/mounts/mtp.mount 28395 +usr/share/gvfs/mounts/network.mount 28394 +usr/share/gvfs/mounts/nfs.mount 28393 +usr/share/gvfs/mounts/recent.mount 28392 +usr/share/gvfs/mounts/sftp.mount 28391 +usr/share/gvfs/mounts/smb-browse.mount 28390 +usr/share/gvfs/mounts/smb.mount 28389 +usr/share/gvfs/mounts/trash.mount 28388 +usr/bin/gnome-keyring-daemon 28385 +usr/share/gnome/applications/vim.desktop 28377 +usr/share/gnome/applications/display-im6.q16.desktop 28376 +usr/share/tails/screensaver_background.png 28375 +bin/false 28369 +etc/dconf/profile/ibus 28368 +usr/share/wayland-sessions/gnome.desktop 28367 +usr/share/gvfs/remote-volume-monitors/afc.monitor 28366 +usr/share/gvfs/remote-volume-monitors/goa.monitor 28365 +usr/share/gvfs/remote-volume-monitors/gphoto2.monitor 28364 +usr/share/gvfs/remote-volume-monitors/mtp.monitor 28363 +usr/share/gvfs/remote-volume-monitors/udisks2.monitor 28362 +usr/lib/systemd/user/gvfs-udisks2-volume-monitor.service 28361 +usr/lib/gvfs/gvfs-udisks2-volume-monitor 28359 +usr/lib/x86_64-linux-gnu/libbluray.so.2.1.0 28358 +usr/lib/systemd/user/gvfs-mtp-volume-monitor.service 28357 +usr/lib/gvfs/gvfs-mtp-volume-monitor 28355 +usr/lib/systemd/user/gvfs-gphoto2-volume-monitor.service 28354 +usr/lib/gvfs/gvfs-gphoto2-volume-monitor 28352 +usr/lib/systemd/user/gvfs-goa-volume-monitor.service 28351 +usr/lib/gvfs/gvfs-goa-volume-monitor 28349 +usr/lib/x86_64-linux-gnu/libgoa-1.0.so.0.0.0 28348 +usr/lib/systemd/user/gvfs-afc-volume-monitor.service 28346 +usr/lib/gvfs/gvfs-afc-volume-monitor 28344 +usr/sbin/ferm 28343 +usr/share/gnome-shell/search-providers/gnome-control-center-search-provider.ini 28342 +usr/share/gnome-shell/search-providers/gnome-terminal-search-provider.ini 28341 +usr/share/gnome-shell/search-providers/org.gnome.Calculator-search-provider.ini 28340 +usr/share/gnome-shell/search-providers/org.gnome.Nautilus.search-provider.ini 28339 +usr/share/gnome-shell/search-providers/seahorse-search-provider.ini 28338 +usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Glob.pm 28337 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/File/Glob/Glob.so 28336 +etc/ferm/ferm.conf 28335 +usr/sbin/xtables-nft-multi 28334 +lib/x86_64-linux-gnu/libmnl.so.0.2.0 28333 +usr/lib/x86_64-linux-gnu/libnftnl.so.11.0.0 28332 +usr/lib/x86_64-linux-gnu/libnetfilter_conntrack.so.3.7.0 28331 +usr/lib/x86_64-linux-gnu/libnfnetlink.so.0.2.0 28330 +usr/lib/x86_64-linux-gnu/libxtables.so.12.2.0 28329 +usr/lib/x86_64-linux-gnu/xtables/libxt_conntrack.so 28328 +usr/lib/x86_64-linux-gnu/xtables/libxt_standard.so 28327 +etc/protocols 28326 +usr/lib/x86_64-linux-gnu/xtables/libxt_tcp.so 28325 +usr/lib/x86_64-linux-gnu/xtables/libxt_owner.so 28324 +usr/lib/x86_64-linux-gnu/xtables/libxt_multiport.so 28323 +usr/lib/x86_64-linux-gnu/xtables/libxt_udp.so 28322 +usr/lib/x86_64-linux-gnu/xtables/libipt_LOG.so 28321 +usr/lib/x86_64-linux-gnu/xtables/libipt_REJECT.so 28320 +usr/lib/x86_64-linux-gnu/xtables/libipt_REDIRECT.so 28319 +usr/lib/x86_64-linux-gnu/xtables/libip6t_LOG.so 28318 +usr/lib/x86_64-linux-gnu/xtables/libip6t_REJECT.so 28317 +usr/lib/x86_64-linux-gnu/xtables/libxt_state.so 28316 +usr/share/gnome-shell/extensions/TopIcons@phocean.net/metadata.json 28309 +usr/share/gnome-shell/extensions/TopIcons@phocean.net/extension.js 28308 +usr/share/gnome-shell/extensions/TopIcons@phocean.net/convenience.js 28303 +etc/network/if-up.d/ethtool 28302 +usr/share/gnome-shell/extensions/alternate-tab@gnome-shell-extensions.gcampax.github.com/metadata.json 28301 +usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 28300 +usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/extension.js 28299 +usr/lib/x86_64-linux-gnu/girepository-1.0/GMenu-3.0.typelib 28296 +usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/convenience.js 28293 +usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/stylesheet.css 28292 +usr/lib/x86_64-linux-gnu/libgnome-menu-3.so.0.0.1 28289 +usr/bin/xdg-user-dirs-update 28282 +etc/xdg/menus/gnome-applications.menu 28281 +etc/xdg/menus/applications-merged/Tails.menu 28280 +etc/xdg/user-dirs.conf 28279 +etc/xdg/user-dirs.defaults 28278 +etc/wpa_supplicant/ifupdown.sh 28275 +etc/wpa_supplicant/functions.sh 28272 +usr/bin/start-pulseaudio-x11 28267 +usr/bin/seq 28266 +usr/bin/pactl 28261 +usr/share/desktop-directories/ActionGames.directory 28258 +usr/share/desktop-directories/AdventureGames.directory 28257 +usr/share/desktop-directories/ArcadeGames.directory 28256 +usr/share/desktop-directories/AudioVideo.directory 28255 +usr/share/desktop-directories/BlocksGames.directory 28254 +usr/share/desktop-directories/BoardGames.directory 28253 +usr/share/desktop-directories/CardGames.directory 28252 +usr/share/desktop-directories/Debian.directory 28251 +usr/share/desktop-directories/Development.directory 28250 +usr/share/desktop-directories/Education.directory 28249 +usr/share/desktop-directories/Game.directory 28248 +usr/share/desktop-directories/GnomeScience.directory 28247 +usr/share/desktop-directories/Graphics.directory 28246 +usr/share/desktop-directories/KidsGames.directory 28245 +usr/share/desktop-directories/LogicGames.directory 28244 +usr/share/desktop-directories/Network.directory 28243 +usr/share/desktop-directories/Office.directory 28242 +usr/share/desktop-directories/RolePlayingGames.directory 28241 +usr/share/desktop-directories/Settings-System.directory 28240 +usr/share/desktop-directories/Settings.directory 28239 +usr/lib/pulse-12.2/modules/module-x11-publish.so 28238 +usr/share/desktop-directories/SimulationGames.directory 28235 +usr/share/desktop-directories/SportsGames.directory 28234 +usr/share/desktop-directories/StrategyGames.directory 28233 +usr/share/desktop-directories/System-Tools.directory 28232 +usr/share/desktop-directories/Tails.directory 28231 +usr/share/desktop-directories/Utility-Accessibility.directory 28230 +usr/share/desktop-directories/Utility.directory 28229 +usr/share/desktop-directories/X-GNOME-Menu-Applications.directory 28228 +usr/share/desktop-directories/X-GNOME-Other.directory 28225 +usr/share/desktop-directories/X-GNOME-SystemSettings.directory 28224 +usr/share/desktop-directories/X-GNOME-Utilities.directory 28223 +usr/share/desktop-directories/X-GNOME-WebApplications.directory 28222 +usr/lib/pulse-12.2/modules/module-x11-cork-request.so 28221 +usr/sbin/cupsd 28219 +usr/lib/x86_64-linux-gnu/libpaper.so.1.1.2 28218 +etc/cups/cups-files.conf 28217 +etc/cups/cupsd.conf 28216 +etc/papersize 28215 +usr/share/cups/mime/braille.types 28214 +usr/share/cups/mime/command.types 28213 +usr/share/cups/mime/cupsfilters.types 28212 +usr/share/cups/mime/mime.types 28211 +usr/share/cups/mime/pstotiff.types 28210 +etc/cups/raw.types 28209 +usr/share/cups/mime/braille.convs 28208 +usr/lib/pulse-12.2/modules/module-x11-xsmp.so 28207 +usr/share/cups/mime/cupsfilters-ghostscript.convs 28206 +usr/share/cups/mime/cupsfilters-mupdf.convs 28205 +usr/share/cups/mime/cupsfilters-poppler.convs 28204 +usr/share/cups/mime/cupsfilters.convs 28203 +usr/share/cups/mime/mime.convs 28202 +usr/share/cups/mime/pstotiff.convs 28201 +etc/cups/raw.convs 28200 +usr/share/cups/banners/classified 28199 +usr/share/cups/banners/confidential 28198 +usr/share/cups/banners/form 28197 +usr/share/cups/banners/secret 28196 +usr/share/cups/banners/standard 28195 +usr/share/cups/banners/topsecret 28194 +usr/share/cups/banners/unclassified 28193 +usr/lib/gnome-settings-daemon/gsd-printer 28189 +lib/systemd/system/tor@default.service 28188 +lib/systemd/system/tor@default.service.d/fix-obfs4proxy.conf 28187 +lib/systemd/system/tor@default.service.d/writable-etc-tor.conf 28186 +lib/systemd/system/tails-wait-until-tor-has-bootstrapped.service 28185 +lib/systemd/system/tails-tor-has-bootstrapped.target 28184 +usr/share/gnome-shell/extensions/auto-move-windows@gnome-shell-extensions.gcampax.github.com/metadata.json 28183 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/metadata.json 28182 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/extension.js 28181 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/prefs.js 28180 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopManager.js 28179 +lib/systemd/system/tails-tor-has-bootstrapped-flag-file.service 28178 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopGrid.js 28177 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/createFolderDialog.js 28176 +lib/systemd/system/tor.service 28175 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopIconsUtil.js 28174 +lib/systemd/system/nss-lookup.target 28173 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/fileItem.js 28170 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/dbusUtils.js 28169 +usr/local/lib/end-profile 28166 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/stylesheet.css 28163 +usr/lib/gnome-disk-utility/gsd-disk-utility-notify 28162 +usr/bin/gdbus 28159 +usr/bin/xdg-user-dirs-gtk-update 28156 +usr/lib/systemd/user/tracker-store.service 28155 +usr/lib/gnome-shell/gnome-shell-overrides-migration.sh 28152 +usr/lib/tracker/tracker-store 28150 +usr/bin/torsocks 28147 +usr/lib/x86_64-linux-gnu/tracker-2.0/libtracker-data.so.0.0.0 28146 +usr/lib/x86_64-linux-gnu/tracker-2.0/libtracker-common.so.0.0.0 28145 +usr/lib/x86_64-linux-gnu/libtracker-sparql-2.0.so.0.108.0 28144 +usr/share/gnome-shell/extensions/drive-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 28141 +usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com/metadata.json 28140 +usr/lib/evolution/evolution-data-server/evolution-alarm-notify 28139 +usr/lib/x86_64-linux-gnu/libedataserverui-1.2.so.2.0.0 28138 +usr/local/lib/start-systemd-desktop-target 28135 +usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-extensions.gcampax.github.com/metadata.json 28134 +sbin/getcap 28133 +usr/bin/openpgp-applet 28132 +usr/bin/xargs 28131 +usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 28130 +usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0 28127 +usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/extension.js 28126 +usr/lib/x86_64-linux-gnu/torsocks/libtorsocks.so.0.0.0 28125 +usr/lib/x86_64-linux-gnu/libical.so.3.0.4 28124 +usr/lib/x86_64-linux-gnu/libstemmer.so.0d.0.0 28123 +usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.23.0.0 28122 +usr/local/sbin/restart-tor 28121 +usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/convenience.js 28120 +usr/lib/locale/C.UTF-8/LC_CTYPE 28119 +usr/lib/x86_64-linux-gnu/libgcr-ui-3.so.1.0.0 28118 +etc/tor/torsocks.conf 28117 +usr/lib/systemd/user/desktop.target 28116 +usr/lib/x86_64-linux-gnu/libwebkit2gtk-4.0.so.37.39.5 28115 +usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/placeDisplay.js 28114 +bin/tempfile 28113 +usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/stylesheet.css 28112 +usr/share/tracker/domain-ontologies/default.rule 28111 +usr/share/tracker/ontologies/nepomuk/30-nie.ontology 28110 +usr/share/tracker/ontologies/nepomuk/32-nco.ontology 28109 +usr/share/tracker/ontologies/nepomuk/33-nfo.ontology 28108 +bin/su 28107 +etc/pam.d/su 28106 +lib/x86_64-linux-gnu/security/pam_mail.so 28105 +usr/share/tracker/ontologies/nepomuk/34-nmo.ontology 28104 +usr/share/tracker/ontologies/nepomuk/35-ncal.ontology 28103 +usr/share/tracker/ontologies/nepomuk/36-scal.ontology 28102 +usr/share/tracker/ontologies/nepomuk/37-nid3.ontology 28101 +usr/lib/systemd/user/tails-wait-until-tor-has-bootstrapped.service 28100 +usr/share/perl5/Gtk3.pm 28097 +usr/share/tracker/ontologies/nepomuk/38-nmm.ontology 28092 +usr/share/tracker/ontologies/nepomuk/39-mto.ontology 28091 +usr/share/tracker/ontologies/nepomuk/40-mlo.ontology 28090 +usr/share/tracker/ontologies/nepomuk/41-mfo.ontology 28089 +usr/share/tor/tor-service-defaults-torrc 28088 +usr/share/tracker/ontologies/nepomuk/89-mtp.ontology 28087 +usr/share/tracker/ontologies/nepomuk/90-tracker.ontology 28086 +usr/share/tracker/ontologies/nepomuk/91-maemo.ontology 28085 +usr/share/tracker/ontologies/nepomuk/92-slo.ontology 28084 +usr/lib/systemd/user/tails-virt-notify-user.service 28083 +usr/share/tracker/ontologies/nepomuk/93-libosinfo.ontology 28082 +usr/bin/tail 28081 +usr/lib/systemd/user/tails-upgrade-frontend.service 28080 +usr/lib/systemd/user/tails-security-check.service 28079 +usr/lib/x86_64-linux-gnu/libcamel-1.2.so.62.0.0 28078 +usr/lib/python3/dist-packages/sh.py 28077 +usr/local/lib/tails-htp-notify-user 28076 +usr/lib/systemd/user/tails-kill-gdm-session.service 28075 +usr/lib/systemd/user/tails-additional-software-install.service 28074 +usr/share/gnome-shell/extensions/screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com/metadata.json 28073 +usr/lib/x86_64-linux-gnu/perl5/5.28/Cairo/GObject.pm 28071 +usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/metadata.json 28070 +usr/lib/x86_64-linux-gnu/perl5/5.28/Cairo.pm 28069 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Cairo/Cairo.so 28068 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Data/Dumper.pm 28066 +usr/local/lib/tails-virt-notify-user 28064 +usr/share/perl5/Desktop/Notify.pm 28061 +usr/local/lib/tails-kill-gdm-session 28060 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus.pm 28059 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/DBus/DBus.so 28058 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Cairo/GObject/GObject.so 28057 +usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js 28056 +usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/lib.js 28055 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Bus.pm 28054 +lib/systemd/system/tails-additional-software-install.service 28053 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Connection.pm 28052 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message/MethodCall.pm 28051 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message.pm 28050 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Iterator.pm 28049 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message/Signal.pm 28047 +bin/cp 28046 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message/MethodReturn.pm 28045 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message/Error.pm 28044 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/PendingCall.pm 28043 +usr/lib/gdm3/gdm-session-worker-only-reauth 28042 +usr/share/gnome-shell/extensions/torstatus@tails.boum.org/metadata.json 28041 +usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js 28040 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Service.pm 28039 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/RemoteService.pm 28038 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/RemoteObject.pm 28037 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Introspector.pm 28036 +usr/share/perl5/XML/Twig.pm 28035 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Data/Dumper/Dumper.so 28032 +usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/metadata.json 28031 +usr/lib/x86_64-linux-gnu/libgdata.so.22.3.0 28030 +usr/share/perl/5.28.1/UNIVERSAL.pm 28029 +usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/metadata.json 28028 +usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/extension.js 28027 +usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/convenience.js 28026 +usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/stylesheet.css 28018 +usr/lib/x86_64-linux-gnu/libxslt.so.1.1.32 28016 +usr/lib/python3.7/ast.py 28013 +usr/lib/python3.7/pty.py 28010 +usr/share/perl/5.28.1/utf8.pm 28008 +usr/lib/python3.7/tty.py 28007 +usr/lib/python3.7/lib-dynload/resource.cpython-37m-x86_64-linux-gnu.so 28005 +usr/lib/python3/dist-packages/tailslib/__init__.py 28004 +usr/lib/python3/dist-packages/tailslib/systemd.py 28003 +usr/lib/python3/dist-packages/tailslib/exceptions.py 28002 +usr/lib/x86_64-linux-gnu/libjavascriptcoregtk-4.0.so.18.14.9 28001 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/Parser.pm 28000 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/Parser/Expat.pm 27999 +usr/share/gnome-shell/extensions/windowsNavigator@gnome-shell-extensions.gcampax.github.com/metadata.json 27998 +usr/share/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gcampax.github.com/metadata.json 27997 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/XML/Parser/Expat/Expat.so 27996 +bin/chvt 27995 +usr/lib/x86_64-linux-gnu/girepository-1.0/GdkPixdata-2.0.typelib 27993 +usr/lib/x86_64-linux-gnu/libwoff2dec.so.1.0.2 27992 +usr/lib/x86_64-linux-gnu/libharfbuzz-icu.so.0.20301.0 27991 +usr/lib/x86_64-linux-gnu/libgstapp-1.0.so.0.1404.0 27990 +usr/lib/x86_64-linux-gnu/libgstpbutils-1.0.so.0.1404.0 27989 +usr/bin/tor 27987 +usr/lib/x86_64-linux-gnu/libgstaudio-1.0.so.0.1404.0 27986 +usr/lib/x86_64-linux-gnu/libgsttag-1.0.so.0.1404.0 27985 +usr/lib/x86_64-linux-gnu/libgstvideo-1.0.so.0.1404.0 27984 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/ASyncReply.pm 27983 +usr/lib/x86_64-linux-gnu/libevent-2.1.so.6.0.2 27982 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Annotation.pm 27981 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Test/MockConnection.pm 27980 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Error.pm 27979 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Test/MockMessage.pm 27978 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Test/MockIterator.pm 27977 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Value.pm 27976 +usr/lib/x86_64-linux-gnu/libgstgl-1.0.so.0.1404.0 27975 +usr/share/perl5/Gtk3/SimpleList.pm 27974 +usr/share/perl5/Desktop/Notify/Notification.pm 27973 +usr/lib/x86_64-linux-gnu/libgstfft-1.0.so.0.1404.0 27972 +usr/lib/x86_64-linux-gnu/libwebpdemux.so.2.0.3 27971 +usr/share/perl5/Crypt/OpenPGP_Applet/GnuPG/Interface.pm 27970 +usr/share/perl5/Class/Accessor.pm 27969 +usr/lib/x86_64-linux-gnu/perl5/5.28/Sub/Name.pm 27968 +usr/lib/x86_64-linux-gnu/libenchant.so.1.6.0 27967 +usr/share/tracker/stop-words/stopwords.en 27966 +usr/share/perl5/Moo.pm 27964 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Sub/Name/Name.so 27963 +usr/lib/x86_64-linux-gnu/libhyphen.so.0.3.0 27962 +usr/share/perl5/Moo/_strictures.pm 27961 +usr/share/perl5/Moo/_mro.pm 27960 +usr/lib/x86_64-linux-gnu/perl/5.28.1/mro.pm 27959 +usr/share/tor/geoip 27955 +usr/share/perl/5.28.1/English.pm 27954 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/mro/mro.so 27953 +usr/share/perl5/Moo/_Utils.pm 27952 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Sub/Util.pm 27951 +usr/lib/x86_64-linux-gnu/liboauth.so.0.8.7 27950 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Tie/Hash/NamedCapture.pm 27949 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Tie/Hash/NamedCapture/NamedCapture.so 27948 +usr/share/perl5/Module/Runtime.pm 27947 +usr/share/perl5/Devel/GlobalDestruction.pm 27946 +usr/share/perl5/IPC/System/Simple.pm 27945 +usr/share/perl5/Sub/Exporter/Progressive.pm 27941 +usr/share/perl5/Moo/HandleMoose/_TypeMap.pm 27940 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl 27939 +usr/share/perl5/Moo/sification.pm 27938 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_git.pl 27937 +usr/share/perl5/Moo/Object.pm 27936 +usr/share/perl5/namespace/autoclean.pm 27935 +usr/share/perl5/URI.pm 27934 +usr/share/perl5/URI/Escape.pm 27933 +usr/share/perl5/B/Hooks/EndOfScope.pm 27932 +usr/share/perl5/Module/Implementation.pm 27931 +usr/share/perl5/Try/Tiny.pm 27930 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Reactor.pm 27929 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Watch.pm 27928 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Callback.pm 27927 +usr/lib/x86_64-linux-gnu/libwoff2common.so.1.0.2 27926 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Time/HiRes.pm 27925 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Time/HiRes/HiRes.so 27924 +usr/share/perl5/B/Hooks/EndOfScope/XS.pm 27923 +usr/lib/x86_64-linux-gnu/perl5/5.28/Variable/Magic.pm 27922 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Variable/Magic/Magic.so 27921 +usr/bin/systemd-detect-virt 27920 +usr/bin/xxd 27919 +sbin/killall5 27918 +usr/share/perl5/namespace/clean.pm 27917 +usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.7 27916 +usr/lib/x86_64-linux-gnu/libgstallocators-1.0.so.0.1404.0 27915 +usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.7 27914 +usr/share/perl5/Package/Stash.pm 27913 +usr/lib/x86_64-linux-gnu/perl5/5.28/Package/Stash/XS.pm 27912 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Package/Stash/XS/XS.so 27911 +usr/share/perl5/namespace/clean/_Util.pm 27910 +usr/lib/x86_64-linux-gnu/perl5/5.28/Sub/Identify.pm 27909 +bin/nc.openbsd 27908 +usr/share/perl/5.28.1/Fatal.pm 27907 +usr/share/perl/5.28.1/Tie/RefHash.pm 27906 +usr/share/perl/5.28.1/autodie/Util.pm 27905 +usr/share/perl/5.28.1/autodie/Scope/GuardStack.pm 27904 +usr/share/perl/5.28.1/autodie/Scope/Guard.pm 27903 +usr/share/icons/hicolor/scalable/status/tor-disconnected-symbolic.svg 27902 +usr/share/perl/5.28.1/Class/Struct.pm 27901 +usr/share/perl/5.28.1/Math/BigInt.pm 27900 +usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf 27899 +usr/share/perl/5.28.1/Math/BigInt/Calc.pm 27898 +usr/share/perl/5.28.1/Math/BigInt/Lib.pm 27897 +usr/share/perl/5.28.1/integer.pm 27896 +usr/share/icons/Adwaita/16x16/places/user-home-symbolic.symbolic.png 27895 +usr/share/icons/Adwaita/16x16/places/folder-documents-symbolic.symbolic.png 27894 +usr/share/icons/Adwaita/16x16/places/folder-pictures-symbolic.symbolic.png 27893 +usr/share/icons/Adwaita/16x16/places/folder-music-symbolic.symbolic.png 27892 +usr/share/icons/Adwaita/16x16/places/folder-download-symbolic.symbolic.png 27891 +usr/share/icons/Adwaita/16x16/places/folder-videos-symbolic.symbolic.png 27890 +usr/share/icons/Adwaita/16x16/places/user-desktop-symbolic.symbolic.png 27889 +usr/share/icons/Adwaita/16x16/mimetypes/inode-directory-symbolic.symbolic.png 27888 +usr/share/perl5/GnuPG/Options.pm 27887 +usr/share/perl5/MooX/HandlesVia.pm 27886 +usr/share/perl5/Moo/Role.pm 27885 +usr/share/perl5/Role/Tiny.pm 27884 +usr/share/perl5/GnuPG/HashInit.pm 27883 +usr/share/tor/geoip6 27882 +usr/share/perl5/Type/Utils.pm 27881 +usr/share/perl5/Type/Library.pm 27880 +usr/share/perl5/Eval/TypeTiny.pm 27879 +usr/share/perl5/Exporter/Tiny.pm 27878 +usr/share/perl5/Type/Tiny.pm 27877 +usr/share/perl5/Types/TypeTiny.pm 27876 +usr/lib/x86_64-linux-gnu/perl5/5.28/Type/Tiny/XS.pm 27875 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Type/Tiny/XS/XS.so 27874 +usr/share/perl5/Type/Registry.pm 27873 +usr/share/perl5/Type/Parser.pm 27872 +usr/share/perl5/Types/Standard.pm 27871 +usr/share/icons/Adwaita/16x16/devices/network-wired-symbolic.symbolic.png 27870 +usr/share/perl5/Type/Coercion.pm 27869 +usr/share/perl5/Data/Perl/Collection/Array/MooseLike.pm 27868 +usr/share/perl5/strictures.pm 27867 +usr/share/perl5/Role/Tiny/With.pm 27866 +usr/share/perl5/Class/Method/Modifiers.pm 27865 +usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc 27864 +usr/share/perl5/Data/Perl/Role/Collection/Array.pm 27863 +usr/lib/x86_64-linux-gnu/perl5/5.28/List/MoreUtils.pm 27862 +usr/lib/x86_64-linux-gnu/perl5/5.28/List/MoreUtils/PP.pm 27861 +usr/lib/x86_64-linux-gnu/perl5/5.28/List/MoreUtils/XS.pm 27860 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/List/MoreUtils/MoreUtils.so 27859 +usr/share/perl5/GnuPG/Handles.pm 27858 +usr/share/perl5/GnuPG/Interface.pm 27857 +usr/share/perl5/Type/Tiny/Class.pm 27856 +usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime.pm 27855 +usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime/Duration.pm 27854 +usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime/Helpers.pm 27853 +usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime/Types.pm 27852 +usr/share/perl5/Specio/Exporter.pm 27851 +usr/share/perl5/Specio/Helpers.pm 27850 +usr/share/perl5/Specio/Registry.pm 27849 +usr/share/perl5/Specio.pm 27848 +usr/share/perl5/Specio/Declare.pm 27847 +usr/share/perl5/Specio/Coercion.pm 27846 +usr/share/perl5/Specio/OO.pm 27845 +usr/share/perl5/MRO/Compat.pm 27844 +usr/share/perl5/Specio/PartialDump.pm 27843 +usr/share/perl5/Specio/TypeChecks.pm 27842 +usr/share/perl5/Specio/Role/Inlinable.pm 27841 +usr/share/perl5/Eval/Closure.pm 27840 +usr/share/perl5/Specio/Constraint/Simple.pm 27839 +usr/share/perl5/Specio/Constraint/Role/Interface.pm 27838 +usr/share/perl5/Specio/Exception.pm 27837 +usr/share/perl5/Devel/StackTrace.pm 27836 +usr/share/perl5/Devel/StackTrace/Frame.pm 27835 +usr/share/perl5/Specio/DeclaredAt.pm 27834 +usr/share/perl5/Specio/Library/Builtins.pm 27833 +usr/share/perl5/Specio/Constraint/Parameterizable.pm 27832 +usr/share/perl5/Specio/Constraint/Parameterized.pm 27831 +usr/share/perl5/Specio/Library/Numeric.pm 27830 +usr/share/perl5/Specio/Library/String.pm 27829 +usr/share/perl5/Specio/Constraint/AnyCan.pm 27828 +usr/share/perl5/Specio/Constraint/Role/CanType.pm 27827 +usr/share/perl5/Specio/Constraint/ObjectIsa.pm 27826 +usr/share/perl5/Specio/Constraint/Role/IsaType.pm 27825 +usr/share/perl5/Specio/Constraint/Enum.pm 27824 +usr/share/perl5/Specio/Constraint/Union.pm 27823 +usr/share/perl5/Specio/Constraint/ObjectCan.pm 27822 +usr/share/perl5/Params/ValidationCompiler.pm 27821 +usr/share/perl5/Params/ValidationCompiler/Compiler.pm 27820 +usr/share/perl5/Params/ValidationCompiler/Exceptions.pm 27819 +usr/share/perl5/Exception/Class.pm 27818 +usr/share/perl5/Exception/Class/Base.pm 27817 +usr/share/perl5/Class/Data/Inheritable.pm 27816 +usr/share/perl5/DateTime/Locale.pm 27814 +usr/share/perl5/DateTime/Locale/Data.pm 27813 +usr/share/perl5/File/ShareDir.pm 27812 +usr/share/perl5/Class/Inspector.pm 27811 +usr/lib/x86_64-linux-gnu/perl5/5.28/Params/Util.pm 27810 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Params/Util/Util.so 27809 +usr/share/perl5/DateTime/Locale/FromData.pm 27808 +usr/share/perl5/DateTime/Locale/Util.pm 27807 +usr/share/perl5/DateTime/TimeZone.pm 27806 +usr/share/perl5/DateTime/TimeZone/Catalog.pm 27805 +usr/share/perl5/DateTime/TimeZone/Floating.pm 27804 +usr/share/perl5/Class/Singleton.pm 27803 +usr/share/perl5/DateTime/TimeZone/OffsetOnly.pm 27802 +usr/share/perl5/DateTime/TimeZone/UTC.pm 27801 +usr/share/perl5/DateTime/TimeZone/Local.pm 27800 +usr/share/perl5/DateTime/TimeZone/OlsonDB/Change.pm 27799 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/DateTime/DateTime.so 27798 +usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime/Infinite.pm 27797 +usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Select.pm 27796 +usr/share/perl5/Locale/TextDomain.pm 27795 +usr/share/perl5/Locale/Messages.pm 27794 +usr/share/perl5/Locale/gettext_pp.pm 27793 +usr/share/perl/5.28.1/locale.pm 27792 +usr/share/perl5/Locale/Recode.pm 27791 +usr/share/perl5/Locale/Recode/_Conversions.pm 27790 +usr/share/perl5/Method/Generate/BuildAll.pm 27789 +usr/lib/systemd/user/evolution-source-registry.service 27788 +usr/lib/evolution/evolution-source-registry 27786 +usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0 27785 +usr/lib/x86_64-linux-gnu/libdb-5.3.so 27784 +usr/share/icons/hicolor/16x16/apps/seahorse.png 27783 +usr/lib/evolution-data-server/registry-modules/module-cache-reaper.so 27782 +usr/lib/evolution-data-server/registry-modules/module-gnome-online-accounts.so 27781 +usr/lib/evolution-data-server/registry-modules/module-google-backend.so 27780 +usr/lib/evolution-data-server/registry-modules/module-oauth2-services.so 27779 +usr/lib/evolution-data-server/registry-modules/module-outlook-backend.so 27778 +usr/lib/evolution-data-server/registry-modules/module-secret-monitor.so 27777 +usr/lib/evolution-data-server/registry-modules/module-trust-prompt.so 27776 +usr/lib/evolution-data-server/registry-modules/module-webdav-backend.so 27775 +usr/lib/evolution-data-server/registry-modules/module-yahoo-backend.so 27774 +usr/lib/evolution-data-server/credential-modules/module-credentials-goa.so 27773 +usr/lib/evolution-data-server/camel-providers/libcamelimapx.urls 27772 +usr/lib/evolution-data-server/camel-providers/libcamellocal.urls 27771 +usr/lib/evolution-data-server/camel-providers/libcamelnntp.urls 27770 +usr/lib/evolution-data-server/camel-providers/libcamelpop3.urls 27769 +usr/lib/evolution-data-server/camel-providers/libcamelsendmail.urls 27768 +usr/lib/evolution-data-server/camel-providers/libcamelsmtp.urls 27767 +usr/lib/evolution-data-server/camel-providers/libcamellocal.so 27766 +usr/lib/evolution-data-server/camel-providers/libcamelimapx.so 27765 +usr/share/perl5/auto/share/dist/OpenPGP_Applet/LocaleData/en/LC_MESSAGES/OpenPGP_Applet.mo 27764 +usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so 27763 +usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so 27762 +usr/lib/evolution-data-server/camel-providers/libcamelnntp.so 27761 +usr/lib/evolution-data-server/camel-providers/libcamelpop3.so 27760 +usr/share/X11/xkb/symbols/kr 27759 +usr/share/perl5/auto/share/dist/OpenPGP_Applet/pixmaps/22x22/OpenPGP_Applet-text.png 27758 +usr/share/zoneinfo/zone.tab 27757 +usr/share/icons/Adwaita/16x16/status/dialog-information-symbolic.symbolic.png 27756 +usr/share/icons/Adwaita/16x16/actions/window-close-symbolic.symbolic.png 27755 +usr/share/zoneinfo/EST 27754 +usr/share/zoneinfo/GMT 27753 +usr/share/zoneinfo/MST 27752 +usr/lib/systemd/user/evolution-calendar-factory.service 27751 +usr/lib/evolution/evolution-calendar-factory 27749 +usr/lib/x86_64-linux-gnu/libedata-cal-1.2.so.29.0.0 27748 +usr/lib/evolution-data-server/calendar-backends/libecalbackendcaldav.so 27747 +usr/lib/evolution-data-server/calendar-backends/libecalbackendcontacts.so 27746 +usr/lib/x86_64-linux-gnu/libebook-1.2.so.19.1.3 27745 +usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0 27744 +usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0 27743 +usr/lib/x86_64-linux-gnu/libphonenumber.so.7.0 27742 +usr/lib/x86_64-linux-gnu/libprotobuf.so.17.0.0 27741 +usr/lib/x86_64-linux-gnu/libboost_date_time.so.1.67.0 27740 +usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.67.0 27739 +usr/lib/x86_64-linux-gnu/libboost_system.so.1.67.0 27737 +usr/lib/x86_64-linux-gnu/libboost_thread.so.1.67.0 27736 +usr/lib/x86_64-linux-gnu/libboost_chrono.so.1.67.0 27735 +usr/lib/x86_64-linux-gnu/libboost_atomic.so.1.67.0 27734 +usr/lib/evolution-data-server/calendar-backends/libecalbackendfile.so 27733 +usr/lib/evolution-data-server/calendar-backends/libecalbackendgtasks.so 27732 +usr/lib/evolution-data-server/calendar-backends/libecalbackendhttp.so 27731 +usr/lib/evolution-data-server/calendar-backends/libecalbackendweather.so 27730 +usr/lib/systemd/user/evolution-addressbook-factory.service 27729 +usr/lib/evolution/evolution-addressbook-factory 27727 +usr/lib/evolution-data-server/addressbook-backends/libebookbackendcarddav.so 27726 +usr/lib/evolution-data-server/addressbook-backends/libebookbackendfile.so 27725 +usr/lib/evolution-data-server/addressbook-backends/libebookbackendgoogle.so 27724 +usr/lib/evolution-data-server/addressbook-backends/libebookbackendldap.so 27723 +usr/bin/nautilus 27720 +usr/lib/x86_64-linux-gnu/libnautilus-extension.so.1.5.0 27717 +usr/lib/x86_64-linux-gnu/libgnome-autoar-0.so.0.0.0 27716 +usr/lib/x86_64-linux-gnu/libarchive.so.13.3.3 27715 +usr/lib/gvfs/gvfsd-trash 27714 +usr/share/thumbnailers/evince.thumbnailer 27713 +usr/share/thumbnailers/gdk-pixbuf-thumbnailer.thumbnailer 27712 +usr/share/thumbnailers/librsvg.thumbnailer 27711 +usr/share/thumbnailers/totem.thumbnailer 27710 +usr/share/icons/Adwaita/48x48/places/user-trash.png 27709 +usr/share/pixmaps/whisperback.svg 27708 +usr/share/icons/Adwaita/24x24/emblems/emblem-symbolic-link.png 27707 +usr/bin/inotifywait 27706 +usr/lib/x86_64-linux-gnu/libinotifytools.so.0.4.1 27705 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libevince-properties-page.so 27704 +usr/lib/x86_64-linux-gnu/libevdocument3.so.4.0.0 27703 +usr/lib/x86_64-linux-gnu/libsynctex.so.2.0.0 27702 +usr/lib/x86_64-linux-gnu/evince/4/backends/comicsdocument.evince-backend 27701 +usr/lib/x86_64-linux-gnu/evince/4/backends/djvudocument.evince-backend 27700 +usr/lib/x86_64-linux-gnu/evince/4/backends/dvidocument.evince-backend 27699 +usr/lib/x86_64-linux-gnu/evince/4/backends/pdfdocument.evince-backend 27698 +usr/lib/x86_64-linux-gnu/evince/4/backends/psdocument.evince-backend 27697 +usr/lib/x86_64-linux-gnu/evince/4/backends/tiffdocument.evince-backend 27696 +usr/lib/x86_64-linux-gnu/evince/4/backends/xpsdocument.evince-backend 27695 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libgtkhash-properties-nautilus.so 27694 +usr/lib/x86_64-linux-gnu/libb2.so.1.0.4 27693 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-fileroller.so 27692 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-image-properties.so 27691 +usr/lib/x86_64-linux-gnu/libgexiv2.so.2.0.0 27690 +usr/lib/x86_64-linux-gnu/libexiv2.so.14.0.0 27689 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-python.so 27688 +usr/lib/x86_64-linux-gnu/libpython2.7.so.1.0 27687 +usr/lib/python2.7/site.py 27686 +usr/lib/python2.7/os.py 27685 +usr/lib/python2.7/posixpath.py 27684 +usr/lib/python2.7/stat.py 27683 +usr/lib/python2.7/genericpath.py 27682 +usr/lib/python2.7/warnings.py 27681 +usr/lib/python2.7/linecache.py 27680 +usr/lib/python2.7/types.py 27679 +usr/lib/python2.7/UserDict.py 27678 +usr/lib/python2.7/_abcoll.py 27677 +usr/lib/python2.7/abc.py 27676 +usr/lib/python2.7/_weakrefset.py 27675 +usr/lib/python2.7/copy_reg.py 27674 +usr/lib/python2.7/traceback.py 27673 +usr/lib/python2.7/sysconfig.py 27672 +usr/lib/python2.7/re.py 27671 +usr/lib/python2.7/sre_compile.py 27670 +usr/lib/python2.7/sre_parse.py 27669 +usr/lib/python2.7/sre_constants.py 27668 +usr/lib/python2.7/_sysconfigdata.py 27667 +usr/lib/python2.7/plat-x86_64-linux-gnu/_sysconfigdata_nd.py 27666 +etc/python2.7/sitecustomize.py 27665 +usr/lib/python2.7/encodings/__init__.py 27664 +usr/lib/python2.7/codecs.py 27663 +usr/lib/python2.7/encodings/aliases.py 27662 +usr/lib/python2.7/encodings/utf_8.py 27661 +usr/lib/python2.7/dist-packages/gi/__init__.py 27660 +usr/lib/python2.7/__future__.py 27659 +usr/lib/python2.7/pkgutil.py 27658 +usr/lib/python2.7/importlib/__init__.py 27657 +usr/lib/python2.7/dist-packages/gi/_gi.x86_64-linux-gnu.so 27656 +usr/lib/python2.7/dist-packages/gi/_error.py 27655 +usr/lib/python2.7/dist-packages/gi/_compat.py 27654 +usr/lib/python2.7/StringIO.py 27653 +usr/lib/python2.7/UserList.py 27652 +usr/lib/python2.7/collections.py 27651 +usr/lib/python2.7/keyword.py 27650 +usr/lib/python2.7/heapq.py 27649 +usr/lib/x86_64-linux-gnu/girepository-1.0/Nautilus-3.0.typelib 27648 +usr/lib/python2.7/dist-packages/gi/repository/__init__.py 27647 +usr/lib/python2.7/dist-packages/gi/importer.py 27646 +usr/lib/python2.7/contextlib.py 27645 +usr/lib/python2.7/functools.py 27644 +usr/lib/python2.7/dist-packages/gi/module.py 27643 +usr/lib/python2.7/string.py 27642 +usr/lib/python2.7/dist-packages/gi/types.py 27641 +usr/lib/python2.7/dist-packages/gi/_constants.py 27640 +usr/lib/python2.7/dist-packages/gi/docstring.py 27639 +usr/lib/python2.7/dist-packages/gi/_propertyhelper.py 27638 +usr/lib/python2.7/dist-packages/gi/_signalhelper.py 27637 +usr/lib/python2.7/dist-packages/gi/overrides/__init__.py 27636 +usr/lib/python2.7/dist-packages/gi/overrides/GLib.py 27635 +usr/lib/python2.7/socket.py 27634 +usr/lib/python2.7/lib-dynload/_ssl.x86_64-linux-gnu.so 27633 +usr/lib/python2.7/dist-packages/gi/_ossighelper.py 27632 +usr/lib/python2.7/threading.py 27631 +usr/lib/python2.7/dist-packages/gi/_option.py 27630 +usr/lib/python2.7/optparse.py 27629 +usr/lib/python2.7/textwrap.py 27628 +usr/lib/python2.7/gettext.py 27627 +usr/lib/python2.7/locale.py 27626 +usr/lib/python2.7/copy.py 27625 +usr/lib/python2.7/weakref.py 27624 +usr/lib/python2.7/struct.py 27623 +usr/lib/python2.7/dist-packages/gi/overrides/GObject.py 27622 +usr/lib/python2.7/dist-packages/gi/overrides/Pango.py 27621 +usr/lib/python2.7/dist-packages/gi/overrides/Gio.py 27620 +usr/lib/python2.7/dist-packages/gi/overrides/GdkPixbuf.py 27619 +usr/lib/python2.7/dist-packages/gi/overrides/Gdk.py 27618 +usr/lib/python2.7/dist-packages/gi/overrides/Gtk.py 27617 +usr/lib/python2.7/dist-packages/gi/_gtktemplate.py 27616 +usr/share/nautilus-python/extensions/mat2.py 27615 +usr/lib/python2.7/Queue.py 27614 +usr/lib/python2.7/urlparse.py 27613 +usr/lib/python2.7/subprocess.py 27612 +usr/lib/python2.7/pickle.py 27611 +usr/lib/python2.7/mimetypes.py 27610 +usr/lib/python2.7/urllib.py 27609 +usr/lib/python2.7/base64.py 27608 +usr/lib/python2.7/ssl.py 27607 +usr/share/nautilus-python/extensions/onionshare-nautilus.py 27606 +usr/lib/python2.7/json/__init__.py 27605 +usr/lib/python2.7/json/decoder.py 27604 +usr/lib/python2.7/json/scanner.py 27603 +usr/lib/python2.7/lib-dynload/_json.x86_64-linux-gnu.so 27602 +usr/lib/python2.7/json/encoder.py 27601 +usr/share/onionshare/locale/cs.json 27600 +usr/share/onionshare/locale/da.json 27599 +usr/share/onionshare/locale/de.json 27598 +usr/share/onionshare/locale/en.json 27597 +usr/share/onionshare/locale/eo.json 27596 +usr/share/onionshare/locale/es.json 27595 +usr/share/onionshare/locale/fi.json 27594 +usr/share/onionshare/locale/fr.json 27593 +usr/share/onionshare/locale/it.json 27592 +usr/share/onionshare/locale/nl.json 27591 +usr/share/onionshare/locale/no.json 27590 +usr/share/onionshare/locale/pt.json 27589 +usr/share/onionshare/locale/ru.json 27588 +usr/share/onionshare/locale/tr.json 27587 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-seahorse.so 27586 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-sendto.so 27585 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-wipe.so 27584 +usr/lib/x86_64-linux-gnu/libgsecuredelete.so.0.1.0 27583 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libterminal-nautilus.so 27582 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libtotem-properties-page.so 27581 +usr/bin/sort 27577 +lib/systemd/system/htpdate.service 27572 +etc/default/htpdate.pools 27571 +usr/local/sbin/htpdate 27564 +usr/share/perl/5.28.1/version.pm 27563 +usr/share/perl/5.28.1/version/regex.pm 27562 +usr/lib/x86_64-linux-gnu/perl/5.28.1/B.pm 27561 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/B/B.so 27560 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Sub/Identify/Identify.so 27559 +usr/lib/x86_64-linux-gnu/perl5/5.28/Class/XSAccessor.pm 27558 +usr/lib/x86_64-linux-gnu/perl5/5.28/Class/XSAccessor/Heavy.pm 27557 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Class/XSAccessor/XSAccessor.so 27556 +usr/share/perl5/DateTime/Format/DateParse.pm 27555 +usr/share/perl5/Date/Parse.pm 27554 +usr/share/perl/5.28.1/Time/Local.pm 27553 +usr/share/perl5/Time/Zone.pm 27552 +usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Spec/Functions.pm 27551 +usr/share/perl5/Getopt/Long/Descriptive.pm 27549 +usr/lib/x86_64-linux-gnu/perl5/5.28/Params/Validate.pm 27548 +usr/lib/x86_64-linux-gnu/perl5/5.28/Params/Validate/Constants.pm 27547 +usr/lib/x86_64-linux-gnu/perl5/5.28/Params/Validate/XS.pm 27546 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Params/Validate/XS/XS.so 27545 +usr/share/perl5/Getopt/Long/Descriptive/Opts.pm 27544 +usr/share/perl5/Getopt/Long/Descriptive/Usage.pm 27543 +usr/share/perl5/Sub/Exporter/Util.pm 27542 +usr/share/perl5/Data/OptList.pm 27541 +usr/share/perl5/Sub/Install.pm 27540 +usr/share/perl5/Sub/Exporter.pm 27539 +usr/share/perl/5.28.1/open.pm 27538 +usr/lib/x86_64-linux-gnu/perl/5.28.1/threads.pm 27537 +usr/share/icons/hicolor/scalable/status/tor-connected-symbolic.svg 27535 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/threads/threads.so 27534 +usr/bin/curl 27533 +usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0 27532 +usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt 27531 +usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt 27530 +usr/local/bin/tails-security-check 27528 +usr/local/bin/tails-upgrade-frontend-wrapper 27526 +usr/share/perl5/Carp/Assert/More.pm 27525 +usr/share/perl5/Carp/Assert.pm 27524 +usr/local/share/perl/5.28.1/Tails/Download/HTTPS.pm 27523 +usr/share/perl/5.28.1/autodie.pm 27522 +usr/share/perl/5.28.1/autodie/exception/system.pm 27519 +usr/share/perl/5.28.1/autodie/exception.pm 27518 +usr/lib/x86_64-linux-gnu/perl5/5.28/Function/Parameters.pm 27517 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Function/Parameters/Parameters.so 27516 +usr/lib/x86_64-linux-gnu/perl5/5.28/WWW/Curl/Easy.pm 27504 +usr/lib/x86_64-linux-gnu/perl5/5.28/WWW/Curl.pm 27503 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/WWW/Curl/Curl.so 27502 +usr/share/perl5/Method/Generate/Constructor.pm 27501 +usr/share/perl5/Sub/Quote.pm 27500 +usr/share/perl5/Sub/Defer.pm 27499 +usr/share/perl5/Method/Generate/Accessor.pm 27498 +usr/share/perl5/XML/Atom.pm 27497 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML.pm 27496 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/Error.pm 27495 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/NodeList.pm 27494 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/Boolean.pm 27493 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/Number.pm 27492 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/Literal.pm 27491 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/XPathContext.pm 27490 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/XML/LibXML/LibXML.so 27489 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/AttributeHash.pm 27488 +usr/share/perl5/XML/SAX/Exception.pm 27487 +usr/share/perl5/XML/Atom/ErrorHandler.pm 27486 +usr/share/perl5/XML/Atom/Feed.pm 27485 +usr/share/perl5/XML/Atom/Thing.pm 27484 +usr/share/perl5/XML/Atom/Base.pm 27483 +usr/share/perl5/XML/Atom/Util.pm 27482 +usr/share/perl5/XML/Atom/Category.pm 27481 +usr/share/perl5/XML/Atom/Link.pm 27480 +usr/share/perl5/LWP/UserAgent.pm 27479 +usr/share/perl5/LWP/MemberMixin.pm 27478 +usr/share/perl5/HTTP/Request.pm 27477 +usr/share/perl5/HTTP/Message.pm 27476 +usr/share/perl5/HTTP/Headers.pm 27475 +usr/share/perl5/HTTP/Response.pm 27474 +usr/share/perl5/HTTP/Status.pm 27473 +usr/share/perl5/HTTP/Date.pm 27472 +usr/share/perl5/LWP.pm 27471 +usr/share/perl5/LWP/Protocol.pm 27470 +usr/share/perl5/XML/Atom/Entry.pm 27469 +usr/lib/x86_64-linux-gnu/perl/5.28.1/MIME/Base64.pm 27468 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/MIME/Base64/Base64.so 27467 +usr/share/perl5/XML/Atom/Person.pm 27466 +usr/share/perl5/XML/Atom/Content.pm 27465 +usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt 27464 +usr/local/etc/ssl/certs/tails.boum.org-CA.pem 27462 +usr/local/lib/tails-shell-library/systemd.sh 27457 +usr/bin/gettext 27456 +usr/local/sbin/tails-notify-user 27455 +lib/systemd/system/tails-additional-software-upgrade.path 27451 +lib/systemd/system/tails-additional-software-upgrade.service 27450 +usr/bin/notify-send 27442 +usr/share/icons/Adwaita/scalable/actions/edit-find-symbolic.svg 27438 +usr/share/icons/Adwaita/64x64/actions/view-app-grid-symbolic.symbolic.png 27437 +usr/local/lib/tor-browser/browser/chrome/icons/default/default128.png 27436 +usr/share/icons/hicolor/64x64/apps/thunderbird.png 27435 +usr/share/icons/hicolor/scalable/apps/pidgin.svg 27434 +usr/share/icons/hicolor/64x64/apps/keepassxc.png 27433 +usr/share/icons/hicolor/512x512/apps/org.gnome.Nautilus.png 27432 +usr/share/icons/Adwaita/512x512/apps/utilities-terminal.png 27431 +usr/local/bin/tor-browser 27429 +usr/local/lib/tails-shell-library/tor-browser.sh 27428 +etc/tor-browser/locale-profiles/en-US.js 27427 +usr/local/lib/tor-browser/firefox.real 27426 +usr/local/lib/tor-browser/dependentlibs.list 27425 +usr/local/lib/tor-browser/libnspr4.so 27424 +usr/local/lib/tor-browser/libplc4.so 27423 +usr/local/lib/tor-browser/libplds4.so 27422 +usr/local/lib/tor-browser/libmozsandbox.so 27421 +usr/local/lib/tor-browser/liblgpllibs.so 27420 +usr/local/lib/tor-browser/libnssutil3.so 27419 +usr/local/lib/tor-browser/libnss3.so 27418 +usr/local/lib/tor-browser/libsmime3.so 27417 +usr/local/lib/tor-browser/libmozsqlite3.so 27416 +usr/local/lib/tor-browser/libssl3.so 27415 +usr/local/lib/tor-browser/libmozgtk.so 27414 +usr/local/lib/tor-browser/libxul.so 27413 +usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2.3.4 27412 +usr/lib/x86_64-linux-gnu/libXt.so.6.0.0 27411 +usr/lib/x86_64-linux-gnu/dri/i915_dri.so 27410 +usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 27409 +usr/lib/x86_64-linux-gnu/libLLVM-7.so.1 27408 +usr/lib/x86_64-linux-gnu/libsensors.so.5.0.0 27407 +usr/lib/x86_64-linux-gnu/libelf-0.176.so 27406 +usr/lib/x86_64-linux-gnu/libdrm_amdgpu.so.1.0.0 27405 +usr/lib/x86_64-linux-gnu/libedit.so.2.0.59 27404 +usr/local/lib/tor-browser/TorBrowser/Data/Browser/profiles.ini 27403 +usr/local/lib/tor-browser/omni.ja 27402 +usr/local/lib/tor-browser/browser/omni.ja 27401 +usr/local/lib/tor-browser/defaults/pref/channel-prefs.js 27400 +etc/ld.so.conf 27399 +etc/ld.so.conf.d/libc.conf 27398 +etc/ld.so.conf.d/x86_64-linux-gnu.conf 27397 +usr/bin/lsb_release 27396 +usr/local/share/tor-browser-extensions/{73a6fe31-595d-460b-a920-fcc0f8843232}.xpi 27395 +usr/local/lib/tor-browser/libsoftokn3.so 27394 +usr/local/lib/tor-browser/libfreeblpriv3.so 27393 +usr/local/lib/tor-browser/libnssckbi.so 27392 +usr/local/lib/tor-browser/browser/blocklist.xml 27391 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/manifest.json 27390 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/en/messages.json 27389 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ar/messages.json 27388 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/az/messages.json 27387 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/bg/messages.json 27386 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/bn/messages.json 27385 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/bs/messages.json 27384 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ca/messages.json 27383 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/cs/messages.json 27382 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/cv/messages.json 27381 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/da/messages.json 27380 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/de/messages.json 27379 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/el/messages.json 27378 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/en_GB/messages.json 27377 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/eo/messages.json 27376 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/es/messages.json 27375 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/et/messages.json 27374 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/eu/messages.json 27373 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fa/messages.json 27372 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fi/messages.json 27371 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fil/messages.json 27370 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fr/messages.json 27369 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fy/messages.json 27368 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/gl/messages.json 27367 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/he/messages.json 27366 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/hi/messages.json 27365 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/hr/messages.json 27364 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/hu/messages.json 27363 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/id/messages.json 27362 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/it/messages.json 27361 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ja/messages.json 27360 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ka/messages.json 27359 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/kk/messages.json 27358 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/kn/messages.json 27357 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ko/messages.json 27356 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/lt/messages.json 27355 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/lv/messages.json 27354 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ml/messages.json 27353 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/mr/messages.json 27352 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ms/messages.json 27351 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/nb/messages.json 27350 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/nl/messages.json 27349 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/pl/messages.json 27348 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/no/messages.json 27347 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/pt_BR/messages.json 27346 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/pt_PT/messages.json 27345 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ro/messages.json 27344 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ru/messages.json 27343 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sk/messages.json 27342 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sl/messages.json 27341 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sq/messages.json 27340 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sr/messages.json 27339 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sv/messages.json 27338 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ta/messages.json 27337 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/te/messages.json 27336 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/th/messages.json 27335 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/tr/messages.json 27334 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/uk/messages.json 27333 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ur/messages.json 27332 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/vi/messages.json 27331 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/zh_CN/messages.json 27330 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/zh_TW/messages.json 27329 +usr/local/share/tor-browser-extensions/langpack-zh-TW@firefox.mozilla.org.xpi 27328 +usr/local/share/tor-browser-extensions/langpack-zh-CN@firefox.mozilla.org.xpi 27327 +usr/local/share/tor-browser-extensions/langpack-vi@firefox.mozilla.org.xpi 27326 +usr/local/share/tor-browser-extensions/langpack-tr@firefox.mozilla.org.xpi 27325 +usr/local/share/tor-browser-extensions/langpack-sv-SE@firefox.mozilla.org.xpi 27324 +usr/local/share/tor-browser-extensions/langpack-ru@firefox.mozilla.org.xpi 27323 +usr/local/share/tor-browser-extensions/langpack-ro@firefox.mozilla.org.xpi 27322 +usr/local/share/tor-browser-extensions/langpack-pt-BR@firefox.mozilla.org.xpi 27321 +usr/local/share/tor-browser-extensions/langpack-pl@firefox.mozilla.org.xpi 27320 +usr/local/share/tor-browser-extensions/langpack-nl@firefox.mozilla.org.xpi 27319 +usr/local/share/tor-browser-extensions/langpack-nb-NO@firefox.mozilla.org.xpi 27318 +usr/local/share/tor-browser-extensions/langpack-mk@firefox.mozilla.org.xpi 27317 +usr/local/share/tor-browser-extensions/langpack-ko@firefox.mozilla.org.xpi 27316 +usr/local/share/tor-browser-extensions/langpack-ka@firefox.mozilla.org.xpi 27315 +usr/local/share/tor-browser-extensions/langpack-ja@firefox.mozilla.org.xpi 27314 +usr/local/share/tor-browser-extensions/langpack-it@firefox.mozilla.org.xpi 27313 +usr/local/share/tor-browser-extensions/langpack-is@firefox.mozilla.org.xpi 27312 +usr/local/share/tor-browser-extensions/langpack-id@firefox.mozilla.org.xpi 27311 +usr/local/share/tor-browser-extensions/langpack-hu@firefox.mozilla.org.xpi 27310 +usr/local/share/tor-browser-extensions/langpack-he@firefox.mozilla.org.xpi 27309 +usr/local/share/tor-browser-extensions/langpack-ga-IE@firefox.mozilla.org.xpi 27308 +usr/local/share/tor-browser-extensions/langpack-fr@firefox.mozilla.org.xpi 27307 +usr/local/share/tor-browser-extensions/langpack-fa@firefox.mozilla.org.xpi 27306 +usr/local/share/tor-browser-extensions/langpack-es-ES@firefox.mozilla.org.xpi 27305 +usr/local/share/tor-browser-extensions/langpack-es-AR@firefox.mozilla.org.xpi 27304 +usr/local/share/tor-browser-extensions/langpack-el@firefox.mozilla.org.xpi 27303 +usr/local/share/tor-browser-extensions/langpack-de@firefox.mozilla.org.xpi 27302 +usr/local/share/tor-browser-extensions/langpack-da@firefox.mozilla.org.xpi 27301 +usr/local/share/tor-browser-extensions/langpack-cs@firefox.mozilla.org.xpi 27300 +usr/local/share/tor-browser-extensions/langpack-ca@firefox.mozilla.org.xpi 27299 +usr/local/share/tor-browser-extensions/langpack-ar@firefox.mozilla.org.xpi 27298 +usr/local/share/tor-browser-extensions/https-everywhere-eff@eff.org.xpi 27297 +usr/local/lib/tor-browser/browser/features/onboarding@mozilla.org.xpi 27296 +usr/local/lib/tor-browser/TorBrowser/Data/fontconfig/fonts.conf 27295 +usr/local/lib/tor-browser/fonts/Arimo-Bold.ttf 27294 +usr/local/lib/tor-browser/fonts/Arimo-BoldItalic.ttf 27293 +usr/local/lib/tor-browser/fonts/Arimo-Italic.ttf 27292 +usr/local/lib/tor-browser/fonts/Arimo-Regular.ttf 27291 +usr/local/lib/tor-browser/fonts/Cousine-Regular.ttf 27290 +usr/local/lib/tor-browser/fonts/NotoEmoji-Regular.ttf 27289 +usr/local/lib/tor-browser/fonts/NotoNaskhArabic-Regular.ttf 27288 +usr/local/lib/tor-browser/fonts/NotoSansArmenian-Regular.ttf 27287 +usr/local/lib/tor-browser/fonts/NotoSansBengali-Regular.ttf 27286 +usr/local/lib/tor-browser/fonts/NotoSansBuginese-Regular.ttf 27285 +usr/local/lib/tor-browser/fonts/NotoSansCanadianAboriginal-Regular.ttf 27284 +usr/local/lib/tor-browser/fonts/NotoSansCherokee-Regular.ttf 27283 +usr/local/lib/tor-browser/fonts/NotoSansDevanagari-Regular.ttf 27282 +usr/local/lib/tor-browser/fonts/NotoSansEthiopic-Regular.ttf 27281 +usr/local/lib/tor-browser/fonts/NotoSansGeorgian-Regular.ttf 27280 +usr/local/lib/tor-browser/fonts/NotoSansGujarati-Regular.ttf 27279 +usr/local/lib/tor-browser/fonts/NotoSansGurmukhi-Regular.ttf 27278 +usr/local/lib/tor-browser/fonts/NotoSansHebrew-Regular.ttf 27277 +usr/local/lib/tor-browser/fonts/NotoSansJP-Regular.otf 27276 +usr/local/lib/tor-browser/fonts/NotoSansKR-Regular.otf 27275 +usr/local/lib/tor-browser/fonts/NotoSansKannada-Regular.ttf 27274 +usr/local/lib/tor-browser/fonts/NotoSansKhmer-Regular.ttf 27273 +usr/local/lib/tor-browser/fonts/NotoSansLao-Regular.ttf 27272 +usr/local/lib/tor-browser/fonts/NotoSansMalayalam-Regular.ttf 27271 +usr/local/lib/tor-browser/fonts/NotoSansMongolian-Regular.ttf 27270 +usr/local/lib/tor-browser/fonts/NotoSansMyanmar-Regular.ttf 27269 +usr/local/lib/tor-browser/fonts/NotoSansOriya-Regular.ttf 27268 +usr/local/lib/tor-browser/fonts/NotoSansSC-Regular.otf 27267 +usr/local/lib/tor-browser/fonts/NotoSansSinhala-Regular.ttf 27266 +usr/local/lib/tor-browser/fonts/NotoSansTC-Regular.otf 27265 +usr/local/lib/tor-browser/fonts/NotoSansTamil-Regular.ttf 27264 +usr/local/lib/tor-browser/fonts/NotoSansTelugu-Regular.ttf 27263 +usr/local/lib/tor-browser/fonts/NotoSansThaana-Regular.ttf 27262 +usr/local/lib/tor-browser/fonts/NotoSansThai-Regular.ttf 27261 +usr/local/lib/tor-browser/fonts/NotoSansTibetan-Regular.ttf 27260 +usr/local/lib/tor-browser/fonts/NotoSansYi-Regular.ttf 27259 +usr/local/lib/tor-browser/fonts/NotoSerifArmenian-Regular.ttf 27258 +usr/local/lib/tor-browser/fonts/NotoSerifKhmer-Regular.ttf 27257 +usr/local/lib/tor-browser/fonts/NotoSerifLao-Regular.ttf 27256 +usr/local/lib/tor-browser/fonts/NotoSerifThai-Regular.ttf 27255 +usr/local/lib/tor-browser/fonts/STIXMath-Regular.otf 27254 +usr/local/lib/tor-browser/fonts/Tinos-Bold.ttf 27253 +usr/local/lib/tor-browser/fonts/Tinos-BoldItalic.ttf 27252 +usr/local/lib/tor-browser/fonts/Tinos-Italic.ttf 27251 +usr/local/lib/tor-browser/fonts/Tinos-Regular.ttf 27250 +usr/local/lib/tor-browser/fonts/TwemojiMozilla.ttf 27249 +usr/lib/locale/C.UTF-8/LC_IDENTIFICATION 27248 +usr/lib/locale/C.UTF-8/LC_MEASUREMENT 27247 +usr/lib/locale/C.UTF-8/LC_TELEPHONE 27246 +usr/lib/locale/C.UTF-8/LC_ADDRESS 27245 +usr/lib/locale/C.UTF-8/LC_NAME 27244 +usr/lib/locale/C.UTF-8/LC_PAPER 27243 +usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES 27242 +usr/lib/locale/C.UTF-8/LC_MONETARY 27241 +usr/lib/locale/C.UTF-8/LC_COLLATE 27240 +usr/lib/locale/C.UTF-8/LC_TIME 27239 +usr/lib/locale/C.UTF-8/LC_NUMERIC 27238 +etc/mime.types 27237 +usr/share/mime/application/pdf.xml 27236 +usr/local/lib/tor-browser/browser/chrome/icons/default/default16.png 27235 +usr/local/lib/tor-browser/browser/chrome/icons/default/default32.png 27234 +usr/local/lib/tor-browser/browser/chrome/icons/default/default48.png 27233 +usr/local/lib/tor-browser/browser/chrome/icons/default/default64.png 27232 +usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules/im-ibus.so 27231 +etc/onion-grater.d/onioncircuits.yml 27229 +etc/onion-grater.d/onionshare.yml 27228 +etc/onion-grater.d/tor-browser.yml 27227 +etc/onion-grater.d/tor-launcher.yml 27226 +usr/lib/python3/dist-packages/stem/response/add_onion.py 27225 +usr/lib/python3/dist-packages/stem/response/authchallenge.py 27224 +usr/lib/python3/dist-packages/stem/response/getinfo.py 27223 +usr/lib/python3/dist-packages/stem/response/getconf.py 27222 +usr/lib/python3/dist-packages/stem/response/mapaddress.py 27221 +usr/lib/python3/dist-packages/stem/response/protocolinfo.py 27220 +usr/lib/x86_64-linux-gnu/libXss.so.1.0.0 27219 +usr/share/icons/Adwaita/16x16/actions/window-maximize-symbolic.symbolic.png 27218 +usr/share/icons/Adwaita/16x16/actions/window-minimize-symbolic.symbolic.png 27217 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/img/icon_16.png 27216 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/background.html 27215 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/console.js 27214 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/lib/lz4/lz4-block-codec-any.js 27213 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/lib/punycode.js 27212 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/lib/publicsuffixlist/publicsuffixlist.js 27211 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/vapi.js 27210 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/vapi-common.js 27209 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/vapi-background.js 27208 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/vapi-webrequest.js 27207 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/background.js 27206 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/traffic.js 27205 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/hntrie.js 27204 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/strie.js 27203 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/utils.js 27202 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/uritools.js 27201 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/lz4.js 27200 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/cachestorage.js 27199 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/assets.js 27198 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/filtering-context.js 27197 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/redirect-engine.js 27196 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/dynamic-net-filtering.js 27195 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/static-net-filtering.js 27194 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/url-net-filtering.js 27193 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/static-ext-filtering.js 27192 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/cosmetic-filtering.js 27191 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/scriptlet-filtering.js 27190 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/html-filtering.js 27189 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/hnswitches.js 27188 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/ublock.js 27187 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/messaging.js 27186 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/storage.js 27185 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/logger.js 27184 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/pagestore.js 27183 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/tab.js 27182 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/text-encode.js 27181 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/contextmenu.js 27180 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/reverselookup.js 27179 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/start.js 27178 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/commands.js 27177 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/assets.json 27176 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/vapi-client.js 27175 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/contentscript.js 27174 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat 27173 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/resources/scriptlets.js 27172 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/1x1.gif 27171 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/2x2.png 27170 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/3x2.png 27169 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/32x32.png 27168 +usr/lib/ibus/ibus-engine-libpinyin 27167 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/empty 27166 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noeval.js 27165 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noeval-silent.js 27164 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/nobab.js 27163 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/nofab.js 27162 +usr/lib/x86_64-linux-gnu/libpinyin.so.13.0.0 27161 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noop-0.1s.mp3 27160 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noop-1s.mp4 27159 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noop.js 27158 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noop.txt 27157 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/popads.js 27156 +usr/lib/ibus/ibus-engine-hangul 27155 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/popads-dummy.js 27154 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/window.open-defuser.js 27153 +usr/lib/x86_64-linux-gnu/libhangul.so.1.0.0 27152 +usr/lib/ibus/ibus-engine-chewing 27151 +usr/lib/x86_64-linux-gnu/libchewing.so.3.3.1 27150 +usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0.2400.32 27149 +usr/share/libhangul/hanja/hanja.txt 27148 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/thirdparties/www.malwaredomainlist.com/hostslist/hosts.txt 27147 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/thirdparties/easylist-downloads.adblockplus.org/easyprivacy.txt 27146 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/thirdparties/easylist-downloads.adblockplus.org/easylist.txt 27145 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/ublock/unbreak.txt 27144 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/ublock/resource-abuse.txt 27143 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/ublock/privacy.txt 27142 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/ublock/badware.txt 27141 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/ublock/filters.txt 27140 +usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0.2400.32 27139 +usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libgail.so 27138 +usr/lib/x86_64-linux-gnu/libgailutil.so.18.0.1 27137 +usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libatk-bridge.so 27136 +usr/share/themes/Adwaita/gtk-2.0/gtkrc 27135 +usr/share/themes/Adwaita/gtk-2.0/main.rc 27134 +usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libadwaita.so 27133 +usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libpixmap.so 27132 +usr/share/themes/Adwaita/gtk-2.0/apps.rc 27131 +usr/share/themes/Adwaita/gtk-2.0/hacks.rc 27130 +usr/share/themes/Default/gtk-2.0-key/gtkrc 27129 +usr/share/ibus-hangul/data/symbol.txt 27128 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/scriptlets/should-inject-contentscript.js 27127 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/scriptlets/subscriber.js 27126 +usr/local/bin/tails-upgrade-frontend 27125 +usr/share/perl/5.28.1/FindBin.pm 27124 +usr/lib/x86_64-linux-gnu/perl/5.28.1/lib.pm 27123 +usr/local/share/perl/5.28.1/Tails/IUK/Frontend.pm 27122 +usr/share/perl/5.28.1/Env.pm 27121 +usr/share/perl/5.28.1/Tie/Array.pm 27120 +usr/share/perl5/IPC/Run.pm 27119 +usr/share/perl5/IPC/Run/Debug.pm 27118 +usr/share/perl5/IPC/Run/IO.pm 27117 +usr/share/perl5/IPC/Run/Timer.pm 27116 +usr/share/perl5/Number/Format.pm 27115 +usr/share/perl5/Path/Tiny.pm 27114 +usr/share/perl5/String/Errf.pm 27113 +usr/share/perl5/String/Formatter.pm 27112 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Time/Piece.pm 27111 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Time/Seconds.pm 27110 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Time/Piece/Piece.so 27109 +usr/local/share/perl/5.28.1/Tails/RunningSystem.pm 27108 +usr/share/perl5/Sys/Statistics/Linux/MemStats.pm 27107 +usr/local/share/perl/5.28.1/Tails/Constants.pm 27106 +usr/share/perl5/MooX/late.pm 27105 +usr/local/share/perl/5.28.1/Tails/UDisks.pm 27104 +usr/share/perl/5.28.1/File/stat.pm 27103 +usr/share/perl5/Syntax/Keyword/Junction.pm 27102 +usr/share/perl5/Syntax/Keyword/Junction/All.pm 27101 +usr/share/perl5/Syntax/Keyword/Junction/Base.pm 27100 +usr/share/perl/5.28.1/if.pm 27099 +usr/share/perl5/Syntax/Keyword/Junction/Any.pm 27098 +usr/share/perl5/Syntax/Keyword/Junction/None.pm 27097 +usr/share/perl5/Syntax/Keyword/Junction/One.pm 27096 +usr/share/perl5/Types/Path/Tiny.pm 27095 +usr/share/perl5/Type/Tiny/Intersection.pm 27094 +usr/lib/x86_64-linux-gnu/perl5/5.28/Unix/Mknod.pm 27093 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Unix/Mknod/Mknod.so 27092 +usr/local/share/perl/5.28.1/Tails/Role/HasDBus/System.pm 27091 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/GLib.pm 27090 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/DBus/GLib/GLib.so 27089 +usr/local/share/perl/5.28.1/Tails.pm 27088 +usr/local/share/perl/5.28.1/Tails/Role/HasEncoding.pm 27087 +usr/local/share/perl/5.28.1/Tails/Role/HasCodeset.pm 27086 +usr/share/perl5/Type/Tiny/Union.pm 27085 +usr/local/share/perl/5.28.1/Tails/Role/DisplayError/Gtk3.pm 27084 +usr/local/share/perl/5.28.1/Tails/IUK/UpgradeDescriptionFile.pm 27083 +usr/share/perl5/Dpkg/Version.pm 27082 +usr/share/perl5/Dpkg/Gettext.pm 27081 +usr/share/perl/5.28.1/feature.pm 27080 +usr/share/perl5/Dpkg/ErrorHandling.pm 27079 +usr/share/perl5/Dpkg.pm 27078 +usr/share/perl5/YAML/Any.pm 27077 +usr/lib/x86_64-linux-gnu/perl5/5.28/YAML/XS.pm 27076 +usr/lib/x86_64-linux-gnu/perl5/5.28/YAML/XS/LibYAML.pm 27075 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/YAML/XS/LibYAML/LibYAML.so 27074 +usr/local/share/perl/5.28.1/Tails/IUK/Utils.pm 27073 +usr/lib/x86_64-linux-gnu/perl5/5.28/Filesys/Df.pm 27072 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Filesys/Df/Df.so 27071 +usr/local/share/perl/5.28.1/Tails/MirrorPool.pm 27070 +usr/share/perl5/MooX/Options.pm 27069 +usr/share/perl5/MooX/Options/Role.pm 27068 +usr/share/perl5/MooX/Options/Descriptive.pm 27067 +usr/share/perl5/MooX/Options/Descriptive/Usage.pm 27066 +usr/lib/x86_64-linux-gnu/perl5/5.28/Text/LineFold.pm 27065 +usr/share/perl5/MIME/Charset.pm 27064 +usr/lib/x86_64-linux-gnu/perl5/5.28/Unicode/LineBreak.pm 27063 +usr/lib/x86_64-linux-gnu/perl5/5.28/Unicode/GCString.pm 27062 +usr/lib/x86_64-linux-gnu/perl5/5.28/Unicode/LineBreak/Constants.pm 27061 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Unicode/LineBreak/LineBreak.so 27060 +usr/lib/x86_64-linux-gnu/libsombok.so.3.1.7 27059 +usr/share/perl5/MooX/Locale/Passthrough.pm 27058 +usr/local/bin/tails-iuk-get-upgrade-description-file 27057 +usr/local/share/perl/5.28.1/Tails/IUK/UpgradeDescriptionFile/Download.pm 27056 +usr/local/lib/tor-browser/libmozavutil.so 27054 +usr/local/lib/tor-browser/libmozavcodec.so 27053 diff --git a/config/chroot_apt/preferences b/config/chroot_apt/preferences index 9984cd513d5bc06175111ced91bc374819237f2f..4cf831f4674eb7ac3f7ac57d3abeb557134e720a 100644 --- a/config/chroot_apt/preferences +++ b/config/chroot_apt/preferences @@ -2,10 +2,6 @@ Package: amd64-microcode Pin: release o=Debian,n=sid Pin-Priority: 999 -Package: aufs-dkms -Pin: release o=Debian,n=sid -Pin-Priority: 999 - Package: b43-fwcutter Pin: release o=Debian,n=sid Pin-Priority: 999 @@ -36,6 +32,11 @@ Package: firmware-zd1211 Pin: release o=Debian,n=sid Pin-Priority: 999 +Explanation: install 2.04 (refs: #15806) +Package: grub* +Pin: release o=Debian,n=bullseye +Pin-Priority: 999 + Package: linux-compiler-* linux-headers-* linux-image-* linux-kbuild-* linux-source-* Pin: release o=Debian,n=sid 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 c8c15264d6a775f4f00c9f21b926485d663cf223..b527dcc29675d2d836119c8b1effed16c3e9e508 100755 --- a/config/chroot_local-hooks/04-change-gids-and-uids +++ b/config/chroot_local-hooks/04-change-gids-and-uids @@ -12,7 +12,8 @@ # side-effects, as the maintainer scripts, may react differently, if they are # not in charge of creating group/user themselves. -# We may get rid of this script with the switch to overlayfs (#8415, #15689). +# We may be able to get rid of this script with the switch from aufs to overlayfs +# (#17256). set -e diff --git a/config/chroot_local-hooks/08-install-Perl-programs b/config/chroot_local-hooks/08-install-Perl-programs index dfa0e3ef677b7a043c6896323ce538ba3bc3bb15..2b4b79ac96b535fa141f1fe3b745df975166b253 100755 --- a/config/chroot_local-hooks/08-install-Perl-programs +++ b/config/chroot_local-hooks/08-install-Perl-programs @@ -14,7 +14,7 @@ ensure_hook_dependency_is_installed \ libdist-zilla-plugin-test-notabs-perl \ libdist-zilla-plugin-test-perl-critic-perl -for dist in perl5lib iuk; do +for dist in perl5lib persistence-setup iuk; do dist_dir="/usr/src/${dist}" cd "$dist_dir" PERL5LIB=/usr/src/perl5lib/lib PERL_CPANM_OPT=--notest dzil install @@ -23,13 +23,10 @@ for dist in perl5lib iuk; do done rm -r /root/.cpanm -# Satisfy the dependency of the tails-persistence-setup package -# on tails-perl5lib -install_fake_package tails-perl5lib 4.0 - -apt-get install --yes tails-persistence-setup - -for patch in /usr/share/tails/build/run_t-p-s_as_its_dedicated_user.diff ; do - (cd / && patch --forward --batch -p1 < "$patch") - rm "$patch" -done +# dzil installs the tails-persistence-setup Perl program to +# /usr/local/bin/; we move it to /usr/bin/ and replace it in +# /usr/local/bin/ with a wrapper that runs it as the +# tails-persistence-setup user +mv /usr/local/bin/tails-persistence-setup /usr/bin/ +mv /usr/local/bin/tails-persistence-setup.wrapper \ + /usr/local/bin/tails-persistence-setup diff --git a/config/chroot_local-hooks/13-aufs b/config/chroot_local-hooks/13-aufs deleted file mode 100755 index edff20b29faa203f9eda984b6056aa0037d1574c..0000000000000000000000000000000000000000 --- a/config/chroot_local-hooks/13-aufs +++ /dev/null @@ -1,46 +0,0 @@ -#! /bin/sh - -set -e -set -u - -echo "Building the aufs module" - -. /usr/share/tails/build/variables - -# Import ensure_hook_dependency_is_installed() -. /usr/local/lib/tails-shell-library/build.sh - -ensure_hook_dependency_is_installed \ - "linux-source-${KERNEL_SOURCE_VERSION}" - -# aufs build needs fs/mount.h, which is in linux-source-* but not -# in linux-headers-*, so we'll symlink it. -tar --directory=/usr/src \ - -xf "/usr/src/linux-source-${KERNEL_SOURCE_VERSION}"*.tar.* - -arch=amd64 -ln -s \ - "/usr/src/linux-source-${KERNEL_SOURCE_VERSION}"*/fs \ - "/usr/src/linux-headers-${KERNEL_VERSION}-${arch}/fs" -( - cd /usr/src/aufs-standalone - perl -pi -E \ - 's{\A CONFIG_AUFS_DEBUG \s* = \s* y $}{CONFIG_AUFS_DEBUG =}xms' \ - config.mk - KDIR="/usr/src/linux-headers-${KERNEL_VERSION}-${arch}" - make clean KDIR="$KDIR" - make install KDIR="$KDIR" -) - -for modules_dir in /lib/modules/*/extra ; do - if [ ! -f "${modules_dir}/aufs.ko" ]; then - echo "Can not find aufs.ko module in '${modules_dir}" >&2 - exit 1 - fi -done - -strip --strip-debug /lib/modules/*/extra/aufs.ko - -depmod "${KERNEL_VERSION}-${arch}" -rm -r /usr/src/aufs-standalone -rm -r "/usr/src/linux-source-${KERNEL_SOURCE_VERSION}"*/ diff --git a/config/chroot_local-hooks/48-tweak-AppArmor-profiles b/config/chroot_local-hooks/48-tweak-AppArmor-profiles new file mode 100755 index 0000000000000000000000000000000000000000..4cc11eb9d1448ee84238dc2341fbed7b5da5ead3 --- /dev/null +++ b/config/chroot_local-hooks/48-tweak-AppArmor-profiles @@ -0,0 +1,19 @@ +#!/bin/sh + +set -e + +echo "Tweaking AppArmor profiles" + +# Pass all profiles the attach_disconnected flag, +# that's needed for compatibility with overlayfs (#9045) +find /etc/apparmor.d/ /etc/apparmor.d/abstractions -maxdepth 1 -type f \ + -exec perl -pi -E 's,([a-z]+\s+)[{],$1flags=(attach_disconnected) {,' '{}' \; + +find /etc/apparmor.d/ -maxdepth 1 -type f \ + -exec perl -pi -E 's|flags=[(]complain[)]\s+[{]|flags=(complain,attach_disconnected) {|' '{}' \; + +# Also pass the attach_disconnected flag to the Thunderbird and Tor Browser +# profiles, because the above regexps don't match these ones. +perl -pi -E 's,(profile.*[}]\s+)[{],$1flags=(attach_disconnected) {,' \ + /etc/apparmor.d/torbrowser.Browser.firefox \ + /etc/apparmor.d/usr.bin.thunderbird diff --git a/config/chroot_local-hooks/52-update-rc.d b/config/chroot_local-hooks/52-update-rc.d index 063be1fd95fc48856c7753379c60a0064e9c3ff7..fe55a3def9550089edbd281c8995682727ecd322 100755 --- a/config/chroot_local-hooks/52-update-rc.d +++ b/config/chroot_local-hooks/52-update-rc.d @@ -14,6 +14,7 @@ systemctl enable onion-grater.service systemctl enable tails-synchronize-data-to-new-persistent-volume-on-shutdown.service systemctl enable tails-autotest-broken-Xorg.service systemctl enable tails-autotest-remote-shell.service +systemctl enable tails-remove-overlayfs-dirs.service systemctl enable tails-set-wireless-devices-state.service systemctl enable tails-shutdown-on-media-removal.service systemctl enable tails-tor-has-bootstrapped.target diff --git a/config/chroot_local-includes/etc/apparmor.d/tunables/alias.d/tails b/config/chroot_local-includes/etc/apparmor.d/tunables/alias.d/tails index 69c0d89d4431aa0108d2b0ed1b0786262a88307a..feaf7479f8d33353ee0a37872b8341b3af56b082 100644 --- a/config/chroot_local-includes/etc/apparmor.d/tunables/alias.d/tails +++ b/config/chroot_local-includes/etc/apparmor.d/tunables/alias.d/tails @@ -1,3 +1,3 @@ -alias / -> /lib/live/mount/overlay/, +alias / -> /lib/live/mount/overlay/rw/, alias / -> /lib/live/mount/rootfs/*.squashfs/, - +alias / -> /rw/, diff --git a/config/chroot_local-includes/etc/apparmor.d/tunables/home.d/tails b/config/chroot_local-includes/etc/apparmor.d/tunables/home.d/tails index 2ef750a493ec6eeb6a6450a2a00aa7d3781da541..accbd81765b7264e076727227beaf5518a725288 100644 --- a/config/chroot_local-includes/etc/apparmor.d/tunables/home.d/tails +++ b/config/chroot_local-includes/etc/apparmor.d/tunables/home.d/tails @@ -1 +1,2 @@ -@{HOMEDIRS}+=/lib/live/mount/overlay/home/ +@{HOMEDIRS}+=/lib/live/mount/overlay/rw/home/ +@{HOMEDIRS}+=/rw/home/ diff --git a/config/chroot_local-includes/etc/memlockd.cfg b/config/chroot_local-includes/etc/memlockd.cfg index a2907fe2d6ef90d25fa46c672690a0d83a19c8bd..8e27e0599c2029b93c0d5aca50feaea402f570f9 100644 --- a/config/chroot_local-includes/etc/memlockd.cfg +++ b/config/chroot_local-includes/etc/memlockd.cfg @@ -13,6 +13,7 @@ +/bin/sh +/bin/sleep +/bin/systemctl +/lib/systemd/system/tails-remove-overlayfs-dirs.service /lib/systemd/system-shutdown/tails +/lib/systemd/systemd-shutdown +/usr/bin/eject diff --git a/config/chroot_local-includes/etc/sudoers.d/zzz_persistence-setup b/config/chroot_local-includes/etc/sudoers.d/zzz_persistence-setup index 91a41f74f0f60d7aeee9d1e703de2d64baa0671e..e62f619b05a3ae3d8da2d57b41208d2e6bffdb04 100644 --- a/config/chroot_local-includes/etc/sudoers.d/zzz_persistence-setup +++ b/config/chroot_local-includes/etc/sudoers.d/zzz_persistence-setup @@ -1,4 +1,4 @@ Cmnd_Alias PERSISTENCE_SETUP = /usr/bin/tails-persistence-setup "", /usr/bin/tails-persistence-setup --verbose, /usr/bin/tails-persistence-setup --step delete, /usr/bin/tails-persistence-setup --step delete --verbose, /usr/bin/tails-persistence-setup --force_enable_preset AdditionalSoftware amnesia ALL = (tails-persistence-setup) NOPASSWD: PERSISTENCE_SETUP -tails-persistence-setup ALL = (root) NOPASSWD: /usr/bin/tails-fix-persistent-volume-permissions "" +tails-persistence-setup ALL = (root) NOPASSWD: /usr/local/bin/tails-fix-persistent-volume-permissions "" diff --git a/config/chroot_local-includes/lib/systemd/system/systemd-update-utmp.service.d/empty-overlayfs-rw-tmpfs.conf b/config/chroot_local-includes/lib/systemd/system/systemd-update-utmp.service.d/empty-overlayfs-rw-tmpfs.conf new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/config/chroot_local-includes/lib/systemd/system/tails-remove-overlayfs-dirs.service b/config/chroot_local-includes/lib/systemd/system/tails-remove-overlayfs-dirs.service new file mode 100644 index 0000000000000000000000000000000000000000..66d66f5cd58830c63eeb23afd6a5711347b6f78c --- /dev/null +++ b/config/chroot_local-includes/lib/systemd/system/tails-remove-overlayfs-dirs.service @@ -0,0 +1,22 @@ +[Unit] +# We have to empty the tmpfs where the upperdir and +# workdir of the overlayfs are residing on, else +# the memory will not be cleaned. +Description=Remove the overlayfs directories +Documentation=https://tails.boum.org/contribute/design/memory_erasure/ +# We want to remove the overlayfs directories late in the +# shutdown process. Because at shutdown, units with an +# ordering dependency are stopped in reverse order, we +# want this service to be started very early +# during boot, i.e. before the sysinit.target. +Before=sysinit.target shutdown.target +Conflicts=shutdown.target +DefaultDependencies=no + +[Service] +Type=oneshot +RemainAfterExit=yes +ExecStop=/bin/rm -rf /lib/live/mount/overlay/rw /lib/live/mount/overlay/work + +[Install] +WantedBy=multi-user.target diff --git a/config/chroot_local-includes/usr/local/bin/tails-documentation b/config/chroot_local-includes/usr/local/bin/tails-documentation index f91598a6b067cc0fef7458f62f9ea50ba5ae9ad5..55cd02697ceb2c26f50b66ae1a9d1331642d579d 100755 --- a/config/chroot_local-includes/usr/local/bin/tails-documentation +++ b/config/chroot_local-includes/usr/local/bin/tails-documentation @@ -1,50 +1,67 @@ #!/usr/bin/env python3 import os -import os.path import sys from tailslib.systemd import tor_has_bootstrapped -# Main +WEBSITE_URL = 'https://tails.boum.org' +WEBSITE_LOCAL_PATH = '/usr/share/doc/tails/website' +LANG_CODE = os.getenv('LANG', 'en')[0:2] -try: - page = sys.argv[1] -except IndexError: - page = 'doc' -try: - anchor = sys.argv[2] -except IndexError: - anchor = None +def find_local_page(page: str) -> str: + for lang_code in (LANG_CODE, 'en', None): + local_page = get_local_path(page, lang_code) + if os.path.isfile(local_page): + return 'file://' + local_page + return "" -tails_homepage = 'https://tails.boum.org' -wiki_path = '/usr/share/doc/tails/website' -lang_code = os.getenv('LANG', 'en')[0:2] -# If possible, let's hand-off to our website, which should be the most -# up-to-date option. -if tor_has_bootstrapped(): - if os.path.isfile(os.path.join( - wiki_path, page + '.' + lang_code + ".html")): - uri = tails_homepage + '/' + page + '/index.' + lang_code + '.html' +def get_local_path(page, lang_code: str) -> str: + if lang_code: + return os.path.join(WEBSITE_LOCAL_PATH, page + '.' + lang_code + ".html") else: - uri = tails_homepage + '/' + page -else: - trials = [ - os.path.join(wiki_path, page + code + ".html") - for code in ['.' + lang_code, '.en', ''] - ] + return os.path.join(WEBSITE_LOCAL_PATH, page + ".html") + + +def parse_args() -> (str, str): + try: + page = sys.argv[1] + except IndexError: + page = 'doc' + try: - uri = 'file://' + next( - trial for trial in trials if os.path.isfile(trial) - ) - except StopIteration: - sys.exit('error: could not find the requested documentation page') - -if anchor is not None: - uri = uri + '#' + anchor - -os.environ['TOR_BROWSER_SKIP_OFFLINE_WARNING'] = 'yes' -os.execv('/usr/local/bin/tor-browser', - ['/usr/local/bin/tor-browser', '--new-tab', uri]) + anchor = sys.argv[2] + except IndexError: + anchor = None + + return page, anchor + + +def main(): + page, anchor = parse_args() + + # If possible, let's hand-off to our website, which should be the most + # up-to-date option. + if tor_has_bootstrapped(): + # Open page in the user-configured language, if available + if os.path.isfile(get_local_path(page, LANG_CODE)): + uri = WEBSITE_URL + '/' + page + '/index.' + LANG_CODE + '.html' + else: + uri = WEBSITE_URL + '/' + page + else: + uri = find_local_page(page) + if not uri: + sys.exit('error: could not find the requested documentation page') + + if anchor: + uri = uri + '#' + anchor + + os.environ['TOR_BROWSER_SKIP_OFFLINE_WARNING'] = 'yes' + os.execv('/usr/local/bin/tor-browser', + ['/usr/local/bin/tor-browser', '--new-tab', uri]) + + +if __name__ == "__main__": + main() diff --git a/config/chroot_local-includes/usr/local/bin/tails-persistence-setup b/config/chroot_local-includes/usr/local/bin/tails-persistence-setup.wrapper similarity index 100% rename from config/chroot_local-includes/usr/local/bin/tails-persistence-setup rename to config/chroot_local-includes/usr/local/bin/tails-persistence-setup.wrapper diff --git a/config/chroot_local-includes/usr/local/lib/initramfs-pre-shutdown-hook b/config/chroot_local-includes/usr/local/lib/initramfs-pre-shutdown-hook index 607c257978488be4819218e36b13c32a9d838e08..52027e904438bc8f85903fd6d15f9e734d329867 100755 --- a/config/chroot_local-includes/usr/local/lib/initramfs-pre-shutdown-hook +++ b/config/chroot_local-includes/usr/local/lib/initramfs-pre-shutdown-hook @@ -13,22 +13,14 @@ set -x # Debugging mount -# Otherwise aufs pseudo-links can't be cleaned and we cannot drop caches. +# Otherwise we can't drop caches. # This may also help for tracking remaining mounts. mount -o remount,rw /proc # Otherwise we can't create new mountpoints in /mnt mount -o remount,rw / -# Otherwise aufs pseudo-links can't be removed while unmounting /oldroot, -# and we can't clean up the content of /mnt/live/overlay. -mount -o remount,rw /oldroot/lib/live/mount/overlay - # Move /oldroot/* mountpoints out of the way -mkdir -p /mnt/live/overlay -mount --move \ - /oldroot/lib/live/mount/overlay \ - /mnt/live/overlay mkdir -p /mnt/live/squashfs mount --move \ /oldroot/lib/live/mount/rootfs/filesystem.squashfs \ @@ -37,11 +29,17 @@ mkdir -p /mnt/live/medium mount --move \ /oldroot/lib/live/mount/medium \ /mnt/live/medium +mkdir -p /mnt/live/dev +mount --move \ + /oldroot/dev \ + /mnt/live/dev +mkdir -p /mnt/live/run +mount --move \ + /oldroot/run \ + /mnt/live/run # Finally, really unmount relevant filesystems umount /oldroot -rm -rf /mnt/live/overlay/.w* /mnt/live/overlay/* -umount /mnt/live/overlay # Debugging mount diff --git a/config/chroot_local-includes/usr/local/lib/tails-shell-library/chroot-browser.sh b/config/chroot_local-includes/usr/local/lib/tails-shell-library/chroot-browser.sh index 49b9ae9ff558a88b2ab9b085e299cb13fb210b46..fe14dd537a333ab93a0e433b0b790999c11dafea 100644 --- a/config/chroot_local-includes/usr/local/lib/tails-shell-library/chroot-browser.sh +++ b/config/chroot_local-includes/usr/local/lib/tails-shell-library/chroot-browser.sh @@ -30,10 +30,10 @@ try_cleanup_browser_chroot () { for mnt in ${chroot_mounts} "${cow}"; do try_for 10 "umount ${mnt} 2>/dev/null" 0.1 done - rmdir "${cow}" "${chroot}" + rmdir "${cow}/rw" "${cow}/work" "${cow}" "${chroot}" } -# Setup a chroot on a clean aufs "fork" of the root filesystem. +# Setup a chroot on a clean overlayfs "fork" of the root filesystem. setup_chroot_for_browser () { local chroot="${1}" local cow="${2}" @@ -48,7 +48,7 @@ setup_chroot_for_browser () { local rootfs_dir local rootfs_dirs_path="/lib/live/mount/rootfs" local tails_module_path="/lib/live/mount/medium/live/Tails.module" - local aufs_dirs= + local lowerdirs= # We have to pay attention to the order we stack the filesystems; # newest must be first, and remember that the .module file lists @@ -56,21 +56,20 @@ setup_chroot_for_browser () { while read rootfs_dir; do rootfs_dir="${rootfs_dirs_path}/${rootfs_dir}" mountpoint -q "${rootfs_dir}" && \ - aufs_dirs="${rootfs_dir}=rr+wh:${aufs_dirs}" + lowerdirs="${rootfs_dir}:${lowerdirs}" done < "${tails_module_path}" - # But our copy-on-write dir must be at the very top. - aufs_dirs="${cow}=rw:${aufs_dirs}" + # Remove the trailing colon + lowerdirs=${lowerdirs%?} mkdir -p "${cow}" "${chroot}" && \ mount -t tmpfs tmpfs "${cow}" && \ - mount -t aufs -o "noatime,noxino,dirs=${aufs_dirs}" aufs "${chroot}" && \ + mkdir "${cow}/rw" "${cow}/work" && \ + mount -t overlay -o "noatime,lowerdir=${lowerdirs},upperdir=${cow}/rw,workdir=${cow}/work" overlay "${chroot}" && \ + chmod 755 "${chroot}" && \ mount -t proc proc "${chroot}/proc" && \ mount --bind "/dev" "${chroot}/dev" && \ mount -t tmpfs -o rw,nosuid,nodev tmpfs "${chroot}/dev/shm" || \ return 1 - - # Workaround for #6110 - chmod -t "${cow}" } browser_conf_dir () { diff --git a/config/chroot_local-includes/usr/local/lib/tails-unblock-network b/config/chroot_local-includes/usr/local/lib/tails-unblock-network index 3e33d08973d866723c2da92f9f6b0742f6c044e2..b31f1cc397fb306feeac25a56c2173c6d52de099 100755 --- a/config/chroot_local-includes/usr/local/lib/tails-unblock-network +++ b/config/chroot_local-includes/usr/local/lib/tails-unblock-network @@ -14,8 +14,10 @@ systemctl start tails-unblock-network.service # Without this, network is sometimes not unblocked, probably due to some # race condition between tails-unblock-network.service (that deletes the -# blacklist file) and udevadm trigger, possibly caused by yet another aufs -# weirdness (#9012)... +# blacklist file) and udevadm trigger. +# This might have been caused by an aufs weirdness (#9012), +# but this code is rather simple and it does not hurt to ensure +# our assumptions are verified. if [ "${TAILS_NETCONF}" != "disabled" ]; then echo "Waiting for ${NET_MODULES_BLACKLIST} to be gone..." >&2 while [ -e "${NET_MODULES_BLACKLIST}" ]; do @@ -33,7 +35,8 @@ ls -l /sys/class/net # changes to /etc/modprobe.d, for example if it monitors that # directory via its inode number at the time udev started: the inode # number of that directory might have changed since (this is -# a documented possibility with aufs' noxino mount option). +# a documented possibility without overlayfs xino= mount option; +# for details, see #17258). # So let's instruct udev to update its knowledge of the world. echo "Asking systemd-udevd to reload databases..." >&2 udevadm control --reload diff --git a/config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in b/config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in new file mode 100644 index 0000000000000000000000000000000000000000..421fca3fdab95f0e24bb62e7bb6e30c8b64fa947 --- /dev/null +++ b/config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in @@ -0,0 +1,9 @@ +[Desktop Entry] +Type=Application +_Name=Delete persistent volume +_Comment=Delete the persistent volume and its content +Icon=tails-persistence-setup.png +Exec=/usr/local/bin/tails-delete-persistent-volume +Terminal=false +Categories=System;Tails; +StartupNotify=false diff --git a/config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in b/config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in new file mode 100644 index 0000000000000000000000000000000000000000..68a9cc1c1f2dcc48b9c923286517fdaa1aa6d1bd --- /dev/null +++ b/config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in @@ -0,0 +1,9 @@ +[Desktop Entry] +Type=Application +_Name=Configure persistent volume +_Comment=Configure which files and application configuration are saved between working sessions +Icon=tails-persistence-setup.png +Exec=/usr/local/bin/tails-persistence-setup +Terminal=false +Categories=System;Tails; +StartupNotify=false diff --git a/config/chroot_local-includes/usr/share/pixmaps/tails-persistence-setup.png b/config/chroot_local-includes/usr/share/pixmaps/tails-persistence-setup.png new file mode 100644 index 0000000000000000000000000000000000000000..3d2f16f900f6e8945a771937cf9f88b632ec6acb Binary files /dev/null and b/config/chroot_local-includes/usr/share/pixmaps/tails-persistence-setup.png differ diff --git a/config/chroot_local-includes/usr/share/tails/build/run_t-p-s_as_its_dedicated_user.diff b/config/chroot_local-includes/usr/share/tails/build/run_t-p-s_as_its_dedicated_user.diff deleted file mode 100644 index 944e9b6f75fa14498adc03c938ef174661520918..0000000000000000000000000000000000000000 --- a/config/chroot_local-includes/usr/share/tails/build/run_t-p-s_as_its_dedicated_user.diff +++ /dev/null @@ -1,22 +0,0 @@ ---- a/usr/share/applications/tails-persistence-delete.desktop 2014-10-15 15:26:55.000000000 +0000 -+++ b/usr/share/applications/tails-persistence-delete.desktop 2014-11-26 17:13:35.000000000 +0000 -@@ -7,7 +7,7 @@ - Comment[fr]=Supprimer le volume de stockage persistant et son contenu - Comment[sv]=Ta bort den bestående lagringen och allt sparat i den - Icon=tails-persistence-setup.png --Exec=tails-persistence-setup --step delete -+Exec=/usr/local/bin/tails-delete-persistent-volume - Terminal=false - Categories=System;Tails; - StartupNotify=false ---- a/usr/share/applications/tails-persistence-setup.desktop 2014-10-15 15:26:55.000000000 +0000 -+++ b/usr/share/applications/tails-persistence-setup.desktop 2014-11-26 17:13:35.000000000 +0000 -@@ -7,7 +7,7 @@ - Comment[fr]=Configurer quelles données, et la configuration de quelles applications, sont conservées d'un démarrage à l'autre - Comment[sv]=Välj vilka filer och programinställningar som ska sparas mellan omstarter av systemet - Icon=tails-persistence-setup.png --Exec=tails-persistence-setup -+Exec=/usr/local/bin/tails-persistence-setup - Terminal=false - Categories=System;Tails; - StartupNotify=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 969aa24fac613664e974b01dc3e2658d5180d37d..5348c2fac22891e34a0c4ad0f8190a85d8629dae 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/9.0.7-build1/ +http://torbrowser-archive.tails.boum.org/9.0.9-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 391562c69136c9a14148e7c92bf921fabc456cc4..8af11ce12b1d646d6dc4c684be6d5e64ab60292d 100644 --- a/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt +++ b/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt @@ -1,2 +1,2 @@ -617b3d32166c77ee157017bc2ef164e3c96fef59c133358d2e433e2a9453ef86 tor-browser-linux64-9.0.7_en-US.tar.xz -d840760254fe88d2a76a6f04316c83bf53685c5e02b51d24b244c173574c6dc6 langpacks-tor-browser-linux64-9.0.7.tar.xz +cf910b9577dc94bcfeef60fe9904e7f8f29277bf1a7360600c32956225d04473 tor-browser-linux64-9.0.9_en-US.tar.xz +c90d6b87c671a9dadeeaed84311511a21e067f39eab52d1b4e15bcb4c2dcf1ef langpacks-tor-browser-linux64-9.0.9.tar.xz diff --git a/config/chroot_local-includes/usr/src/iuk/dist.ini b/config/chroot_local-includes/usr/src/iuk/dist.ini index 0c86fcc5c766a103b2c7773a093f74c901d32794..118f4c6654415714885506692451375da3b09816 100644 --- a/config/chroot_local-includes/usr/src/iuk/dist.ini +++ b/config/chroot_local-includes/usr/src/iuk/dist.ini @@ -29,7 +29,7 @@ module_finder = :ExecFiles script_finder = :InstallModules script_finder = :ExecFiles -; Managed in config/chroot_local-packageslists/tails-perl5lib.list +; Managed in config/chroot_local-packageslists/tails-iuk.list [Prereqs] [Prereqs / BuildRequires] diff --git a/config/chroot_local-includes/usr/src/iuk/features/create/step_definitions/Create_steps.pl b/config/chroot_local-includes/usr/src/iuk/features/create/step_definitions/Create_steps.pl index 732b81f88118e1fbcfbda44fb3afecce52d20cfb..a9c98ea1cb29e2891950b45a8cdc0c270fddf697 100755 --- a/config/chroot_local-includes/usr/src/iuk/features/create/step_definitions/Create_steps.pl +++ b/config/chroot_local-includes/usr/src/iuk/features/create/step_definitions/Create_steps.pl @@ -25,7 +25,7 @@ my $bindir = path(__FILE__)->parent->parent->parent->parent->child('bin')->absol use Env qw{@PATH}; unshift @PATH, $bindir; -my $union_type = $ENV{UNION_TYPE} // 'aufs'; +my $union_type = $ENV{UNION_TYPE} // 'overlayfs'; Given qr{^a usable temporary directory$}, fun ($c) { my $dirname = Path::Tiny->tempdir(CLEANUP => 0); diff --git a/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK.pm b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK.pm index 3bfc399a7befb2a3cdd40b0d634f37dfe34739a8..4d3b0e632befb85f294c6f5700e4f427d4faad5c 100644 --- a/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK.pm +++ b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK.pm @@ -248,15 +248,21 @@ method _build_mksquashfs_options () { [ qw{-no-progress -noappend}, qw{-comp xz -Xbcj x86 -b 1024K -Xdict-size 1024K}, ]} -method _build_union_type () { "aufs"; } +method _build_union_type () { "overlayfs"; } method _build_delete_files () { my $old_iso_obj = Device::Cdio::ISO9660::IFS->new(-source=>$self->old_iso->stringify); my $new_iso_obj = Device::Cdio::ISO9660::IFS->new(-source=>$self->new_iso->stringify); my @delete_files; - for (qw{EFI EFI/BOOT EFI/BOOT/grub}, + for ('EFI', + 'EFI/BOOT', + 'EFI/BOOT/grub', 'EFI/BOOT/grub/i386-efi', 'EFI/BOOT/grub/x86_64-efi', + 'EFI/debian', + 'EFI/debian/grub', + 'EFI/debian/grub/i386-efi', + 'EFI/debian/grub/x86_64-efi', qw{isolinux live syslinux tails}, qw{utils utils/mbr utils/linux}) { push @delete_files, diff --git a/config/chroot_local-includes/usr/src/iuk/t/specs/Create.t b/config/chroot_local-includes/usr/src/iuk/t/specs/Create.t index c4318032857d84c96d3410e7c999420bf3bb6b3f..4e324aaff15be92dac58500a6fff7b8ecc959fc8 100644 --- a/config/chroot_local-includes/usr/src/iuk/t/specs/Create.t +++ b/config/chroot_local-includes/usr/src/iuk/t/specs/Create.t @@ -7,7 +7,7 @@ use Path::Tiny; use Tails::IUK; use Test::Fatal qw{dies_ok}; -my $union_type = $ENV{UNION_TYPE} // 'aufs'; +my $union_type = $ENV{UNION_TYPE} // 'overlayfs'; my @genisoimage_opts = qw{--quiet -J -l -cache-inodes -allow-multidot}; my @genisoimage = ('genisoimage', @genisoimage_opts); diff --git a/config/chroot_local-includes/usr/src/persistence-setup/.gitignore b/config/chroot_local-includes/usr/src/persistence-setup/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..af589a4406c3991225c8fc3db56600f3be483ee9 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/.gitignore @@ -0,0 +1,16 @@ +blib* +/.build +/Makefile +Makefile.old +Build +Build.bat +_build* +pm_to_blib* +*.tar.gz +.lwpcookies +cover_db +pod2htm*.tmp +Tails-Persistence-* +*.bak +debian/ +*.mo diff --git a/config/chroot_local-includes/usr/src/persistence-setup/.perltidyrc b/config/chroot_local-includes/usr/src/persistence-setup/.perltidyrc new file mode 100644 index 0000000000000000000000000000000000000000..7ee7ff51f5f7ea4d48fbca6ae49eac2f229f903b --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/.perltidyrc @@ -0,0 +1,16 @@ +-l=78 # Max line width is 78 cols +-i=4 # Indent level is 4 cols +-ci=4 # Continuation indent is 4 cols +-b +-se # Errors to STDERR +-vt=2 # Maximal vertical tightness +-cti=0 # No extra indentation for closing brackets +-pt=1 # Medium parenthesis tightness +-bt=1 # Medium brace tightness +-sbt=1 # Medium square bracket tightness +-bbt=1 # Medium block brace tightness +-nsfs # No space before semicolons +-nolq # Don't outdent long quoted strings +-wbb="% + - * / x != == >= <= =~ !~ < > | & >= < = **= += *= &= <<= &&= -= /= |= >>= ||= .= %= ^= x=" + # Break before all operators + diff --git a/config/chroot_local-includes/usr/src/persistence-setup/.plsense b/config/chroot_local-includes/usr/src/persistence-setup/.plsense new file mode 100644 index 0000000000000000000000000000000000000000..68d988414371f6af2c4688837c55f00c436224ca --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/.plsense @@ -0,0 +1 @@ +lib-path=lib diff --git a/config/chroot_local-includes/usr/src/persistence-setup/Changes.OLD b/config/chroot_local-includes/usr/src/persistence-setup/Changes.OLD new file mode 100644 index 0000000000000000000000000000000000000000..8831f775ca82aba9f0263fa8d47deb4c1de9e127 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/Changes.OLD @@ -0,0 +1,248 @@ +0.42 20131026 + - Import updated translations from Transifex. + +0.41 20131017 + - Import updated translations from Transifex. + +0.40 20131015 + - Allow setting up persistence on a device connected via SDIO as well. + - Support detecting partitions on MMC block devices. + +0.39 20131002 + - Fix UID/GID check on persistence.conf. + +0.38 20131002 + - Check permissions of existing persistence.conf on startup. + - Move from the deprecated NoTabsTests to Test::NoTabs. + - Move from the deprecated CriticTests to Test::Perl::Critic. + +0.37 20130930 + - Make the created persistent filesystem root:root, 0775, with an ACL to + grant write access to the tails-persistence-setup user. + This is done with a tiny wrapper, meant to be run with sudo. + - Take ACLs into account when checking access rights on the + persistence filesystem. + - Use persistence.conf instead of the old live-persistence.conf. + - Explicitly give live-persistence.conf 0600 permissions. + +0.36 20130929 + - Add a printers persistence preset. + +0.35 20130909 + - Update many translations from Transifex. + +0.34 20130807 + - Update translations from Transifex. + New translated languages: da, ja, tr. + +0.33 20130730 + + - Remove obsolete system_partition_number attribute. + It was only needed by the code that fixed the system partition + attributes, that was dropped in commit c844f8f. + +0.32 20130605 + + - Remove ability to add custom mounts. + The plan is to have t-p-s able to enable innocuous persistent + presets only. + +0.31 20130524 + + - Format the created persistent volumes as ext4. + - After creating the persistent volume, wait for all udev events to be + handled before mounting it. + - Add icons search path that work on Wheezy. + - Make indentation consistent. + - Update tests to match the latest preset additions. + - Fix license name in dist.ini. + - Bump copyright years. + +0.30 20130503 + + - Update translations for many languages. + +0.29 20130411 + + - Use new canonical path to the Live OS mountpoint instead of + relying on a compatibility symlink. + - Update hard-coded numbers in test suite: we've added a few + presets a while ago. + +0.28 20130323 + + - Don't fix attributes on Tails system partition after creating + or deleting partitions. + + We're going to backport the parted bugfix so this is not needed + anymore. Rationale: we want t-p-s to do all its disk operations + through udisks, so that the live user does not need write access + to the Tails USB disk. + + Details: Debian#673042, + todo/palimpsest:_do_not_make_Tails_USB_unbootable. + + - Update Farsi and Chinese translations, + import new translations for Finnish and Swedish. + +0.27 20130214 + + - Update translations from Transifex: + ar, bg, es, fr, nl, pl and zh_CN. + +0.26 20121213 + + - Update French, German and Italian translations. + +0.25 20121213 + + - Update PO files. + - Import new translations (Hebrew and Latvian) from Transifex. + - Update Basque and Portugues (Brazil) translations from Transifex. + - Update French translation. + - Enable Arabic, Bulgarian, German, Greek, Basque, Farsi, Hebrew, + Hungarian and Latvian languages. The PO files were previously + imported without enabling the languages, so they were actually + not used. + +0.24 20121125 + Import Bulgarian translation. + Enable Bulgarian and Chinese languages. + +0.23 20121114 + Arabic language updates from NDI (Nov 9 2012) + Russian language updates from NDI (Nov 9 2012) + Import zh_CN translation from Transifex + +0.22 20121113 + Fix ambigious label. + Add preset for browser bookmarks. + +0.21 20121107 + Don't package incomplete translations. + Import completed translations from Transifex. + Add Arabic translations. + +0.20 20121029 + Enable forgotten translation languages. + +0.19 20121029 + Bumped the volume creation timeout to one hour. + Update translations. + +0.18 20120906 + Add preset for NetworkManager connections. + Update translations. + +0.17 20120604 + Move translators hints to the right place. + Bump mkfs timeout up to 600 minutes. + Tell the user what's going on when the Tails boot device cannot be found. + +0.16 20120425 + Add source=Persistent option for this preset. + +0.15 20120419 + Update translations. + +0.14 20120412 + Rephrase a bunch of GUI messages. + Fix URL to local documentation. + Update PO and POT files. + +0.13 20120411 + Update to match the rename of the "linkfiles" option to "link". + +0.12 20120408 + Take into account live.persist was renamed to live-persistence.conf. + +0.11 20120326 + Warn before suggesting to close the application. + Import translation, refresh PO files. + +0.10 20120321 + Adapt to new live.persist format. + +0.9 20120320 + Display GNOME Keyring preset before APT ones. + More tests. + More consistent naming of the Tails USB installer. + Some robustness improvements. + Fix buggy merging of presets and live.persist with Squeeze's + List::MoreUtils. + Make it clear any changes only take effect after rebooting. + Fix automatic steps selection and sanity checks. + Harden lock_luks_device to guard against the udisks timeout bug. + Disable the "dotfiles" preset by default. + +0.8.3 20120319 + Don't ever try to run non-existing reboot step. + Add safeguards in case we add more steps without checks in the future. + Add "GNOME Keyring" configuration preset. + Split APT presets into lists and packages. + Make APT packages cache presets store /var/cache/apt/archives/. + +0.8.2 20120319 + Use a fancy specific icon for each preset button. + Fix the icon for custom configuration buttons. + Fix the delete launcher menu icon. + fsync live.persist after saving. + +0.8.1 20120319 + Remove unneeded dependency on MooseX::Declare. + A few minor PO file updates. + Use absolute paths in custom-mounts sources. + Configure: check if persistence is enabled iff. no bootstrap step was run. + +0.8 20120318 + Make sanity check messages translatable. + Fix check to skip feature tests if Test::BDD::Cucumber is not installed. + Configure step: + - is now working, with lots of tests. + - support adding custom (source,destination) mappings. + - "checked" icon: consistent behaviour, right align. + - use lighter text color for disabled items. + - enable `Persistent' personal data directory preset by default. + +0.7 20120316 + Various robustness and GUI improvements. + Bootstrap: + - mount persistence partition in the end if needed. + - set TailsData label on the persistent filesystem too. + Delete: + - check that persistence is disabled. + - umount the partition if needed. + - add launcher that runs this step. + Configure: + - check that persistence is enabled read-write. + - read, parse and write live.persist configuration files. + - add persistence configuration presets. + - support merging presets with a configuration file. + - initial GUI. + +0.6 20120225 + Ship an icon and use it in the .desktop file. + Only run the bootstrap step by default. + +0.5 20120220 + Use bigger timeout for partition create operations. + +0.4 20120220 + Set correct attributes on Tails system partition after creating + or deleting partitions (workaround udisks bug). + Actually use passphrase entered by the user. + Hide introduction text once the go button is pressed. + +0.3 20120220 + Add missing dependency on IPC::System::Simple. + Many robustness and sanity checks improvements. + UI improvements. + Add manpage, improve documentation. + Add .desktop file. + Make room for single persistent setup entry point. + +0.2 20120216 + Early snapshot. + +0.1 20120216 + Early snapshot. diff --git a/config/chroot_local-includes/usr/src/persistence-setup/MANIFEST.SKIP b/config/chroot_local-includes/usr/src/persistence-setup/MANIFEST.SKIP new file mode 100644 index 0000000000000000000000000000000000000000..f2f854e2c3c227d0c19e0fe360799eb2cb2d34c2 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/MANIFEST.SKIP @@ -0,0 +1,5 @@ +^cover_db +~$ +^debian +\.bak$ +\.old$ diff --git a/config/chroot_local-includes/usr/src/persistence-setup/README b/config/chroot_local-includes/usr/src/persistence-setup/README new file mode 100644 index 0000000000000000000000000000000000000000..2fabeaa4e878f2037aa0cfa8306b6bac51ab7c2f --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/README @@ -0,0 +1,27 @@ +Licence +======= + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see <http://www.gnu.org/licenses/>. + +Special cases +------------- + +share/pixmaps/tails-persistence-setup.png was downloaded from +https://www.iconfinder.com/icons/62247/safe_icon + +Its author is The Working Group: http://blog.twg.ca/ + +It is published under the Creative Commons Attribution-ShareAlike 3.0 +Unported (CC BY-SA 3.0) licence: +https://creativecommons.org/licenses/by-sa/3.0/ diff --git a/config/chroot_local-includes/usr/src/persistence-setup/bin/tails-fix-persistent-volume-permissions b/config/chroot_local-includes/usr/src/persistence-setup/bin/tails-fix-persistent-volume-permissions new file mode 100755 index 0000000000000000000000000000000000000000..2e428f5dc6ff366546f9160d61c8e4c909ba94e1 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/bin/tails-fix-persistent-volume-permissions @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e +set -u + +PERSISTENCE_ROOT=/media/tails-persistence-setup/TailsData +/bin/chmod 0775 "$PERSISTENCE_ROOT" +/bin/mount -o remount,acl "$PERSISTENCE_ROOT" +/bin/setfacl -b "$PERSISTENCE_ROOT" +/bin/setfacl -m user:tails-persistence-setup:rwx "$PERSISTENCE_ROOT" diff --git a/config/chroot_local-includes/usr/src/persistence-setup/bin/tails-persistence-setup b/config/chroot_local-includes/usr/src/persistence-setup/bin/tails-persistence-setup new file mode 100755 index 0000000000000000000000000000000000000000..148ab5eaec3258ecf86c0fd56e866ce9b1fd7056 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/bin/tails-persistence-setup @@ -0,0 +1,51 @@ +#!/usr/bin/perl + +=head1 NAME + +tails-persistence-setup - setup Tails persistent storage + +=head1 VERSION + +Version 2.2.1 + +=cut + +use strictures 2; +use 5.10.1; + +our $VERSION = '2.2.1'; + +use FindBin; +use lib "$FindBin::Bin/../lib"; + +my $mu; +sub record_memory_usage { 1 } +sub report_memory_usage { 1 } + +my @options; + +BEGIN { + if (exists $ENV{REPORT_MEMORY_USAGE} + && defined $ENV{REPORT_MEMORY_USAGE} + && $ENV{REPORT_MEMORY_USAGE}) { + require Memory::Usage; + $mu = Memory::Usage->new(); + no warnings 'redefine'; + *record_memory_usage = sub { $mu->record(shift) }; + *report_memory_usage = sub { $mu->dump() }; + push @options, ('memory_usage' => $mu); + say STDERR "Enabled memory usage reporting"; + } +} + +$SIG{'INT'} = $SIG{'TERM'} = sub { report_memory_usage(); exit(0); }; +$SIG{'USR1'} = sub { report_memory_usage(); }; + +record_memory_usage('before loading Tails::Persistence::Setup'); +use Tails::Persistence::Setup; +record_memory_usage('after loading Tails::Persistence::Setup'); + +Tails::Persistence::Setup->new_with_options()->run; +record_memory_usage('after Tails::Persistence::Setup->run is done'); + +report_memory_usage(); diff --git a/config/chroot_local-includes/usr/src/persistence-setup/dist.ini b/config/chroot_local-includes/usr/src/persistence-setup/dist.ini new file mode 100644 index 0000000000000000000000000000000000000000..56d4d7ea0466ded3dd539d57be2b5ce68128bbb3 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/dist.ini @@ -0,0 +1,39 @@ +name = Tails-Persistence +version = 3.0 +main_module = bin/tails-persistence-setup +author = Tails developers <tails@boum.org> +license = GPL_3 +copyright_holder = Tails developers +copyright_year = 2013 + +[MetaResources] +homepage = https://tails.boum.org/ +repository.url = git://git.tails.boum.org/tails +repository.type = git + +[@Filter] +-bundle = @Basic +-remove = MakeMaker +-remove = Readme + +[ModuleBuild] + +[MetaJSON] + +[Test::Perl::Critic] +[PodSyntaxTests] +[Test::NoTabs] + +; Managed in config/chroot_local-packageslists/tails-persistence-setup.list +[Prereqs] + +[Prereqs / BuildRequires] + +[Prereqs / TestRequires] +Data::Dumper::Concise = 2.022 +LWP::Online = 1.07 +Module::Pluggable::Object = 3.9 +Path::Tiny = 0.100 +Test::BDD::Cucumber = 0.24 +Test::Most = 0.22 +Test::Spec = 0.40 diff --git a/config/chroot_local-includes/usr/src/persistence-setup/features/Configuration.feature b/config/chroot_local-includes/usr/src/persistence-setup/features/Configuration.feature new file mode 100644 index 0000000000000000000000000000000000000000..10dc7ed6a98f9ae59c9327ee1e0e74c40f8a817c --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/features/Configuration.feature @@ -0,0 +1,74 @@ +Feature: configuration model + As a Tails developer, + when I work on tails-persistence-setup, + I want to ensure the configuration model works correctly. + + Scenario: read from non-existing file + Given the file does not exist + When I create a ConfigFile object + Then the file should be created + And the list of lines in the file object should be empty + + Scenario: read from empty file + Given the file is empty + When I create a ConfigFile object + Then the list of lines in the file object should be empty + + Scenario: read from file that has a valid one-column line + Given the file has a valid one-column line + When I create a ConfigFile object + Then the list of options should be empty + + Scenario: read from file that has a line with source option set + Given the file has a valid line with options 'source=bla' + When I create a ConfigFile object + Then the options list should contain 1 element + + Scenario: read from file that has only a commented-out line + Given the file has only a commented-out line + When I create a ConfigFile object + Then the list of lines in the file object should be empty + + Scenario: read from file that contains two valid two-columns lines and output + Given the file has two valid two-columns lines + When I create a ConfigFile object + Then the output string should contain 2 lines + + Scenario: read and write file that contains two valid two-columns lines + Given the file has two valid two-columns lines + When I create a ConfigFile object + And I write in-memory configuration to file + Then the file should contain 2 lines + + Scenario: read file that contains a line with options + Given the file has a valid line with options 'optA,optB' + When I create a ConfigFile object + Then the options list should contain 2 elements + And 'optA' should be part of the options list + And 'optB' should be part of the options list + + Scenario: merge empty file with default presets + Given the file is empty + When I merge the presets and the file + Then the list of configuration atoms should contain 12 elements + And there should be 1 enabled configuration line + + Scenario: merge non-empty file with enabled-by-default preset in + Given the file has the following content + """ + /home/amnesia/Persistent source=Persistent + /home/amnesia/.myapp source=myapp + """ + When I merge the presets and the file + Then the list of configuration atoms should contain 13 elements + And there should be 2 enabled configuration lines + + Scenario: merge non-empty file with disabled-by-default preset in + Given the file has the following content + """ + /home/amnesia/.gnupg source=gnupg + /home/amnesia/.myapp source=myapp + """ + When I merge the presets and the file + Then the list of configuration atoms should contain 13 elements + And there should be 3 enabled configuration lines diff --git a/config/chroot_local-includes/usr/src/persistence-setup/features/Step_Configure.feature b/config/chroot_local-includes/usr/src/persistence-setup/features/Step_Configure.feature new file mode 100644 index 0000000000000000000000000000000000000000..a7cfb0ac0344993bfa9c88463947f1fe70637fad --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/features/Step_Configure.feature @@ -0,0 +1,59 @@ +Feature: configure step + As a Tails user, + in order to keep some persistent files, + I want to configure Tails persistence feature. + + Scenario: build a Step::Configure object + Given I have a Configuration object + And I have a Step::Configure object + Then I should have a defined Step::Configure object + And the list of displayed settings should contain 11 elements + And the list of configuration atoms should contain 12 elements + And the list box should have 22 children including separators + And there should be 1 active setting + And there should be 1 setting with a configuration button + And every active setting's atoms should be enabled + And every inactive setting's atoms should be disabled + + Scenario: toggling an inactive setting on + Given I have a Configuration object + And I have a Step::Configure object + When I toggle an inactive setting on + Then there should be 2 active settings + And every active setting's atoms should be enabled + And every inactive setting's atoms should be disabled + + Scenario: toggling an active setting off + Given I have a Configuration object + And I have a Step::Configure object + When I toggle an active setting off + Then there should be 0 active setting + And every active setting's atoms should be enabled + And every inactive setting's atoms should be disabled + + Scenario: click save button + Given I have a Configuration object + And I have a Step::Configure object + When I click the save button + Then the file should contain 1 line + + Scenario: toggle on inactive setting that maps to 1 path and click save button + Given I have a Configuration object + And I have a Step::Configure object + When I toggle the "Thunderbird" inactive setting on + And I click the save button + Then the file should contain 2 lines + + Scenario: toggle on inactive setting that maps to 2 paths and click save button + Given I have a Configuration object + And I have a Step::Configure object + When I toggle the "AdditionalSoftware" inactive setting on + And I click the save button + Then the file should contain 3 lines + + Scenario: toggle active setting off and click save button + Given I have a Configuration object + And I have a Step::Configure object + When I toggle the "PersonalData" active setting off + And I click the save button + Then the file should contain 0 line diff --git a/config/chroot_local-includes/usr/src/persistence-setup/features/step_definitions/Configuration_steps.pl b/config/chroot_local-includes/usr/src/persistence-setup/features/step_definitions/Configuration_steps.pl new file mode 100644 index 0000000000000000000000000000000000000000..e1554a6767e4262ca5a2852fb1936997d72f0382 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/features/step_definitions/Configuration_steps.pl @@ -0,0 +1,290 @@ +#!perl + +use 5.10.1; +use strictures 2; + +use lib "lib"; + +use Test::More; +use Test::BDD::Cucumber::StepFile; + +use Function::Parameters; +use List::Util qw{first}; +use List::MoreUtils qw{all}; +use Path::Tiny; +use File::Temp qw{tempfile}; + +use Tails::Persistence::Configuration; +use Tails::Persistence::Configuration::ConfigFile; +use Tails::Persistence::Step::Configure; + +fun get_temp_file () { + my ($fh, $filename) = tempfile(); + return path($filename); +} + +Given qr{^the file does not exist$}, sub { + my $config_path = get_temp_file(); + S->{config_path} = $config_path; + ok(defined($config_path)); +}; + +Given qr{^the file is empty$}, sub { + my $config_path = get_temp_file(); + S->{config_path} = $config_path; + $config_path->touch; + ok(-e $config_path); +}; + +Given qr{^the file has a valid one-column line$}, sub { + my $config_path = get_temp_file(); + S->{config_path} = $config_path; + my $fh = $config_path->openw; + say $fh "/home/amnesia"; +}; + +Given qr{^the file has only a commented-out line$}, sub { + my $config_path = get_temp_file(); + S->{config_path} = $config_path; + my $fh = $config_path->openw; + say $fh " #/home/amnesia"; +}; + +Given qr{^the file has a valid two-different-columns line$}, sub { + my $config_path = get_temp_file(); + S->{config_path} = $config_path; + my $fh = $config_path->openw; + say $fh "/home/amnesia /something/else"; +}; + +Given qr{^the file has two valid two-columns lines$}, sub { + my $config_path = get_temp_file(); + S->{config_path} = $config_path; + my $fh = $config_path->openw; + say $fh "/home/amnesia /something/else"; + say $fh "/var/lib/tor /var/lib/tor"; +}; + +Given qr{^the file has a valid line with options '([^']*)'$}, sub { + my $options = C->matches->[0]; + my $config_path = get_temp_file(); + S->{config_path} = $config_path; + my $fh = $config_path->openw; + say $fh "/home/amnesia $options"; +}; + +Given qr{^the file has the following content$}, sub { + my $content = C->data; + my $config_path = get_temp_file(); + S->{config_path} = $config_path; + my $fh = $config_path->openw; + say $fh $content; +}; + +Given qr{^I have a Configuration object$}, sub { + my $config_path = get_temp_file(); + S->{config_path} = $config_path; + $config_path->touch; + my $configuration = Tails::Persistence::Configuration->new( + config_file_path => $config_path + ); + S->{configuration} = $configuration; + ok(defined($configuration)); +}; + +Given qr{^I have a Step::Configure object$}, sub { + my $configure = Tails::Persistence::Step::Configure->new( + name => 'configure', + configuration => S->{configuration}, + drive_model => 'drive model', + drive_vendor => 'drive vendor', + go_callback => sub { S->{configuration}->save; }, + success_callback => sub { return 1; }, + persistence_partition_device_file => 'persistence partition device file', + persistence_partition_size => 12000, + ); + S->{configure} = $configure; + ok(defined($configure)); +}; + +When qr{^I create a ConfigFile object$}, sub { + my $config_path = S->{config_path}; + my $config_file = Tails::Persistence::Configuration::ConfigFile->new( + config_file_path => $config_path + ); + S->{config_file} = $config_file; + ok(defined($config_file)); +}; + +When qr{^I write in-memory configuration to file$}, sub { + S->{config_file}->save; + ok("in-memory configuration saved to file"); +}; + +When qr{^I merge the presets and the file$}, sub { + my $config_path = S->{config_path}; + my $configuration = Tails::Persistence::Configuration->new( + config_file_path => $config_path + ); + S->{configuration} = $configuration; + ok(defined($configuration)); +}; + +When qr{^I toggle an inactive setting on$}, sub { + my $setting = first { ! $_->is_active } S->{configure}->all_settings; + ok(defined($setting)); + $setting->set_active(1); + ok($setting->is_active); +}; + +When qr{^I toggle the "([^"]+)" inactive setting on$}, sub { + my $id = C->matches->[0]; + use Data::Dumper::Concise; + my $inactive_setting = first { + my $setting = $_; + ! $_->is_active && $setting->id eq $id; + } S->{configure}->all_settings; + ok(defined($inactive_setting)); + $inactive_setting->set_active(1); + ok($inactive_setting->is_active); +}; + +When qr{^I toggle an active setting off$}, sub { + my $setting = first { $_->is_active } S->{configure}->all_settings; + $setting->set_active(0); + ok(! $setting->is_active); +}; + +When qr{^I toggle the "([^"]+)" active setting off$}, sub { + my $id = C->matches->[0]; + my $active_setting = first { + my $setting = $_; + $setting->is_active && $setting->id eq $id; + } S->{configure}->all_settings; + ok(defined($active_setting)); + $active_setting->set_active(0); + ok(! $active_setting->is_active); +}; + +When qr{^I click the save button$}, sub { + S->{configure}->go_button->clicked; +}; + +Then qr{^the file should be created$}, sub { + ok(-e S->{config_file}->config_file_path->stringify); +}; + +Then qr{^the list of lines in the file object should be empty$}, sub { + is(S->{config_file}->all_lines, 0); +}; + +Then qr{^the list of options should be empty$}, sub { + my @lines = S->{config_file}->all_lines; + my $line = $lines[0]; + is($line->all_options, 0); +}; + +Then qr{^the output string should contain (\d+) lines$}, sub { + my $expected_lines = C->matches->[0]; + my $output = S->{config_file}->output; + chomp $output; + my $lines = split(/\n/, $output); + is($lines, $expected_lines); +}; + +Then qr{^the file should contain (\d+) line[s]?$}, sub { + my $expected_lines = C->matches->[0]; + my $config_path = S->{config_path}; + my @lines = path($config_path)->lines; + is(@lines, $expected_lines); +}; + +Then qr{^the file should contain the "([^"]*)" line$}, sub { + my $expected_line = C->matches->[0]; + my $config_path = S->{configuration}->config_file_path; + my $matching_lines = grep { + $_ eq $expected_line + } path($config_path)->lines({chomp => 1}); + is($matching_lines, 1); +}; + +Then qr{^the first line in file should have options '([^']*)'$}, sub { + my $expected_options = C->matches->[0]; + my $config_path = S->{config_path}; + my @lines = path($config_path)->lines; + my $first_line = $lines[0]; + my ($destination, $options) = split /\s+/, $first_line; + ok(defined($options) + && length($options) + && $options eq $expected_options + ); +}; + +Then qr/^the options list should contain (\d+) element[s]?$/, sub { + my $expected_elements_count = C->matches->[0]; + my @lines = S->{config_file}->all_lines; + my $line = $lines[0]; + is($line->count_options, $expected_elements_count); +}; + +Then qr/^'([^']*)' should be part of the options list$/, sub { + my $expected_option = C->matches->[0]; + my @lines = S->{config_file}->all_lines; + my $line = $lines[0]; + is($line->grep_options(sub { $_ eq $expected_option }), 1); +}; + +Then qr{^the list of configuration atoms should contain (\d+) elements$}, sub { + my $expected = C->matches->[0]; + is(scalar(S->{configuration}->all_atoms), $expected); +}; + +Then qr{^the list of displayed settings should contain (\d+) elements$}, sub { + my $expected = C->matches->[0]; + is(scalar(S->{configure}->all_settings), $expected); +}; + +Then qr{^there should be (\d+) enabled configuration lines?$}, sub { + my $expected = C->matches->[0]; + is(S->{configuration}->all_enabled_lines, $expected); +}; + +Then qr{^I should have a defined Step::Configure object$}, sub { + my $configure = S->{configure}; + ok(defined($configure)); +}; + +Then qr{^there should be (\d+) active setting[s]?$}, sub { + my $expected = C->matches->[0]; + my $nb_active_settings = grep { $_->is_active } S->{configure}->all_settings; + is($nb_active_settings, $expected); +}; + +Then qr{^there should be (\d+) setting[s]? with a configuration button$}, sub { + my $expected = C->matches->[0]; + my $nb_config_buttons = grep { + $_->has_configuration_button + } S->{configure}->all_settings; + is($nb_config_buttons, $expected); +}; + +Then qr{^every active setting's atoms should be enabled$}, sub { + my @active_settings = grep { $_->is_active } S->{configure}->all_settings; + ok(all { + my $active_setting = $_; + all { $_->enabled } @{$active_setting->atoms}; + } @active_settings); +}; + +Then qr{^every inactive setting's atoms should be disabled$}, sub { + my @inactive_settings = grep { ! $_->is_active } S->{configure}->all_settings; + ok(all { + my $active_setting = $_; + all { ! $_->enabled } @{$active_setting->atoms}; + } @inactive_settings); +}; + +Then qr{^the list box should have (\d+) child(?:ren)?(?: including separators)?$}, sub { + my @children = S->{configure}->list_box->get_children; + is(@children, C->matches->[0]); +}; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence.pm new file mode 100644 index 0000000000000000000000000000000000000000..0f1ec7cb1a9cbacf6c37f681102d891c9a9afbd2 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence.pm @@ -0,0 +1,10 @@ +=head1 NAME + +Tails::Persistence - main placeholder module + +=cut + +use 5.10.1; +use strictures 2; + +1; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration.pm new file mode 100644 index 0000000000000000000000000000000000000000..13bcc5d279835374fc0666a065b67bf003323026 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration.pm @@ -0,0 +1,142 @@ +=head1 NAME + +Tails::Persistence::Configuration - manage live-persistence.conf and presets + +=cut + +package Tails::Persistence::Configuration; +use Moo; +use MooX::late; +use MooX::HandlesVia; + +use 5.10.1; +use strictures 2; +use autodie qw(:all); +use Carp; +use Carp::Assert::More; + +use Function::Parameters; +use Tails::Persistence::Configuration::Atom; +use Tails::Persistence::Configuration::ConfigFile; +use Tails::Persistence::Configuration::Presets; +use Types::Path::Tiny qw{AbsPath}; + +use List::MoreUtils qw{none}; +use Locale::gettext; +use POSIX; +setlocale(LC_MESSAGES, ""); +textdomain("tails"); + +use namespace::clean; + + +=head1 ATTRIBUTES + +=cut + +has 'config_file_path' => ( + required => 1, + isa => AbsPath, + is => 'rw', + coerce => AbsPath->coercion, +); + +has 'file' => ( + lazy_build => 1, + is => 'rw', + isa => 'Tails::Persistence::Configuration::ConfigFile', +); +has 'presets' => ( + lazy_build => 1, + is => 'rw', + isa => 'Tails::Persistence::Configuration::Presets', +); +has 'force_enable_presets' => ( + is => 'ro', + isa => 'ArrayRef[Str]', + default => sub { [] }, +); +has 'atoms' => ( + lazy_build => 1, + is => 'rw', + isa => 'ArrayRef[Tails::Persistence::Configuration::Atom]', + handles_via => 'Array', + handles => { + all_atoms => 'elements', + push_atom => 'push', + }, +); + + +=head1 CONSTRUCTORS + +=cut + +method _build_file () { + my $file = Tails::Persistence::Configuration::ConfigFile->new( + config_file_path => $self->config_file_path + ); + return $file; +} + +method _build_presets () { + Tails::Persistence::Configuration::Presets->new(); +} + +method _build_atoms () { + return $self->merge_file_with_presets(); +} + +=head1 METHODS + +=cut + +method lines_not_in_presets () { + grep { + my $line = $_; + ! grep { $_->equals_line($line) } $self->presets->atoms + } $self->file->all_lines; +} + +method atoms_not_in_presets () { + grep { + my $atom = $_; + none { $atom->equals_atom($_) } $self->presets->atoms + } $self->all_atoms; +} + +method merge_file_with_presets () { + $self->presets->set_state_from_lines($self->file->all_lines); + $self->presets->set_state_from_overrides($self->force_enable_presets); + + [ + $self->presets->atoms, + map { + Tails::Persistence::Configuration::Atom->new_from_line( + $_, + enabled => 1 + ); + } $self->lines_not_in_presets, + ]; +} + +method all_enabled_atoms () { + grep { $_->enabled } $self->all_atoms; +} + +method all_enabled_lines () { + map { + Tails::Persistence::Configuration::Line->new( + destination => $_->destination, + options => $_->options, + ) + } $self->all_enabled_atoms; +} + +method save () { + $self->file->lines([ $self->all_enabled_lines ]); + $self->file->save; +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Atom.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Atom.pm new file mode 100644 index 0000000000000000000000000000000000000000..aa5f8a7fed4d782d5f8d4eef6c366572df97ee2b --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Atom.pm @@ -0,0 +1,94 @@ +=head1 NAME + +Tails::Persistence::Configuration::Atom - a GUI-friendly configuration line + +=cut + +package Tails::Persistence::Configuration::Atom; +use 5.10.1; +use strictures 2; +use Moo; +use MooX::late; + +with 'Tails::Persistence::Role::ConfigurationLine'; + +use autodie qw(:all); + +use Function::Parameters; +use List::MoreUtils qw{all pairwise}; +use Types::Standard qw(ClassName InstanceOf); + +use namespace::clean; + + +=head1 ATTRIBUTES + +=cut + +has 'enabled' => ( + required => 1, + is => 'rw', + isa => 'Bool', +); + +has 'id' => ( + lazy_build => 1, + is => 'rw', + isa => 'Str', +); + + +=head1 CONSTRUCTORS + +=cut + +method new_from_line ( + ClassName $class: + (InstanceOf['Tails::Persistence::Configuration::Line']) $line, + %args +) { + Tails::Persistence::Configuration::Atom->new( + destination => $line->destination, + options => $line->options, + %args, + ); +} + +method _build_id () { + 'Custom'; +} + + +=head1 METHODS + +=cut + +method equals_atom ( + (InstanceOf['Tails::Persistence::Configuration::Atom']) $other_atom +) { + $self->destination eq $other_atom->destination + and + $self->options_are(@{$other_atom->options}); +} + +method equals_line ( + (InstanceOf['Tails::Persistence::Configuration::Line']) $line +) { + $self->destination eq $line->destination + and + $self->options_are($line->all_options); +} + +method options_are (@expected_options) { + my @expected = sort(@expected_options); + my @options = sort($self->all_options); + + return unless @expected == @options; + + all { $_ } pairwise { + defined($a) and defined($b) and $a eq $b + } @expected, @options; +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/ConfigFile.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/ConfigFile.pm new file mode 100644 index 0000000000000000000000000000000000000000..73dae866e4bcb0a6ef9dbae85947a8d22429efe7 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/ConfigFile.pm @@ -0,0 +1,131 @@ +=head1 NAME + +Tails::Persistence::Configuration::ConfigFile - read, parse and write live-persistence.conf + +=cut + +package Tails::Persistence::Configuration::ConfigFile; +use 5.10.1; +use strictures 2; +use Moo; +use MooX::late; +use MooX::HandlesVia; + +use autodie qw(:all); +use Carp; +use Function::Parameters; +use IPC::System::Simple qw{systemx}; +use Tails::Persistence::Configuration::Line; +use Types::Path::Tiny qw{AbsPath}; + +use namespace::clean; + + +=head1 ATTRIBUTES + +=cut + +has 'config_file_path' => ( + isa => AbsPath, + is => 'ro', + coerce => AbsPath->coercion, + required => 1, +); + +has 'backup_config_file_path' => ( + lazy_build => 1, + isa => AbsPath, + is => 'ro', + coerce => AbsPath->coercion, +); + +has 'lines' => ( + lazy_build => 1, + is => 'rw', + isa => 'ArrayRef[Tails::Persistence::Configuration::Line]', + handles_via => [ 'Array' ], + handles => { + all_lines => 'elements', + }, +); + + +=head1 CONSTRUCTORS + +=cut + +method BUILD (@args) { + $self->config_file_path->exists || $self->config_file_path->touch; +} + +method _build_lines () { + return [ + grep { defined $_ } map { + Tails::Persistence::Configuration::Line->new_from_string($_) + } $self->config_file_path->lines({chomp => 1}) + ]; +} + +method _build_backup_config_file_path () { + $self->config_file_path . '.bak'; +} + +=head1 METHODS + +=cut + +=head2 output + +Returns the in-memory configuration, as a string in the live-persistence.conf format. + +=cut +method output () { + my $out = ""; + foreach ($self->all_lines) { + $out .= $_->stringify . "\n"; + } + return $out; +} + +=head2 backup + +Copy the on-disk configuration file to a backup file. + +=cut + +method backup () { + $self->config_file_path->copy($self->backup_config_file_path); + $self->backup_config_file_path->chmod(0600); + # Ensure our changes land on the disk + systemx('sync', $self->backup_config_file_path->stringify); + systemx('sync', $self->backup_config_file_path->parent->stringify); + # Ensure changes made elsewhere are written synchronously on the disk + # (in case something else ever needs to modify this file) + systemx('chattr', '+S', $self->backup_config_file_path->stringify); +} + +=head2 save + +Save the in-memory configuration to disk. +Throw exception on error. + +=cut +method save () { + my $config_file_was_empty = ! -s $self->config_file_path; + $self->backup unless $config_file_was_empty; + $self->config_file_path->spew($self->output); + $self->config_file_path->chmod(0600); + # Ensure our changes land on the disk + systemx('sync', $self->config_file_path->stringify); + systemx('sync', $self->config_file_path->parent->stringify); + # Ensure changes made by other code (e.g. live-persist) are written + # synchronously on the disk + systemx('chattr', '+S', $self->config_file_path->stringify); + # When persistence.conf was initially empty (for example, when + # we're initializing a new persistent volume), let's backup the + # (probably non-empty) version of it that we've just saved. + $self->backup if $config_file_was_empty; +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Line.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Line.pm new file mode 100644 index 0000000000000000000000000000000000000000..a21e9f8354e011c08a28aedd553b42e67fff00ff --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Line.pm @@ -0,0 +1,16 @@ +=head1 NAME + +Tails::Persistence::Configuration::Line - read, parse and write live-persistence.conf lines + +=cut + +package Tails::Persistence::Configuration::Line; +use 5.10.1; +use strictures 2; +use Moo; +with 'Tails::Persistence::Role::ConfigurationLine'; + +use namespace::clean; + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm new file mode 100644 index 0000000000000000000000000000000000000000..2b50ad76625cc9b197fa28258e664aa7096dc96c --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm @@ -0,0 +1,272 @@ +=head1 NAME + +Tails::Persistence::Configuration::Presets - available configuration snippets + +=cut + +package Tails::Persistence::Configuration::Presets; +use 5.10.1; +use strictures 2; +use Moo; +use MooX::HandlesVia; +use MooX::late; + +with 'Tails::Role::HasEncoding'; + +use autodie qw(:all); +use Carp; +use Function::Parameters; +use List::MoreUtils qw{all}; +use Tails::Persistence::Configuration::Atom; +use Types::Standard qw(ArrayRef Str); + +use Locale::gettext; +use POSIX; +setlocale(LC_MESSAGES, ""); +textdomain("tails"); + +use namespace::clean; + + +=head1 ATTRIBUTES + +=cut + +has '_presets' => ( + lazy_build => 1, + is => 'rw', + isa => 'ArrayRef', + handles_via => 'Array', + handles => { + count => 'count', + all => 'elements', + }, +); + + +=head1 CONSTRUCTORS + +=cut + +method _build__presets () { + my @presets = ( + { + id => 'PersonalData', + name => $self->encoding->decode(gettext(q{Personal Data})), + description => $self->encoding->decode(gettext( + q{Keep files stored in the `Persistent' directory} + )), + icon_name => 'stock_folder', + enabled => 1, + atoms_args => [ + { + destination => '/home/amnesia/Persistent', + options => [ 'source=Persistent' ], + }, + ] + }, + { + id => 'BrowserBookmarks', + name => $self->encoding->decode(gettext(q{Browser Bookmarks})), + description => $self->encoding->decode(gettext( + q{Bookmarks saved in the Tor Browser} + )), + icon_name => 'user-bookmarks', + enabled => 0, + atoms_args => [ + { + destination => '/home/amnesia/.mozilla/firefox/bookmarks', + options => [ 'source=bookmarks' ], + }, + ], + }, + { + id => 'NetworkConnections', + name => $self->encoding->decode(gettext(q{Network Connections})), + description => $self->encoding->decode(gettext( + q{Configuration of network devices and connections} + )), + icon_name => 'network-wired', + enabled => 0, + atoms_args => [ + { + destination => '/etc/NetworkManager/system-connections', + options => [ 'source=nm-system-connections' ], + }, + ], + }, + { + id => 'AdditionalSoftware', + name => $self->encoding->decode(gettext(q{Additional Software})), + description => $self->encoding->decode(gettext( + q{Software installed when starting Tails} + )), + icon_name => 'package-x-generic', + enabled => 0, + configuration_app_desktop_id => 'org.boum.tails.additional-software-config.desktop', + atoms_args => [ + { + destination => '/var/cache/apt/archives', + options => [ 'source=apt/cache' ], + }, + { + destination => '/var/lib/apt/lists', + options => [ 'source=apt/lists' ], + }, + ], + }, + { + id => 'Printers', + name => $self->encoding->decode(gettext(q{Printers})), + description => $self->encoding->decode(gettext( + q{Printers configuration} + )), + icon_name => 'printer', + enabled => 0, + atoms_args => [ + { + destination => '/etc/cups', + options => [ 'source=cups-configuration' ], + }, + ], + }, + { + id => 'Thunderbird', + name => $self->encoding->decode(gettext(q{Thunderbird})), + description => $self->encoding->decode(gettext( + q{Thunderbird emails, feeds, and settings} + )), + icon_name => 'thunderbird', + enabled => 0, + atoms_args => [ + { + destination => '/home/amnesia/.thunderbird', + options => [ 'source=thunderbird' ], + }, + ], + }, + { + id => 'GnuPG', + name => $self->encoding->decode(gettext(q{GnuPG})), + description => $self->encoding->decode(gettext( + q{GnuPG keyrings and configuration} + )), + icon_name => 'seahorse-key', + enabled => 0, + atoms_args => [ + { + destination => '/home/amnesia/.gnupg', + options => [ 'source=gnupg' ], + }, + ], + }, + { + id => 'BitcoinClient', + name => $self->encoding->decode(gettext(q{Bitcoin Client})), + description => $self->encoding->decode(gettext( + q{Electrum's bitcoin wallet and configuration} + )), + icon_name => 'electrum', + enabled => 0, + atoms_args => [ + { + destination => '/home/amnesia/.electrum', + options => [ 'source=electrum' ], + }, + ], + }, + { + id => 'Pidgin', + name => $self->encoding->decode(gettext(q{Pidgin})), + description => $self->encoding->decode(gettext( + q{Pidgin profiles and OTR keyring} + )), + icon_name => 'pidgin', + enabled => 0, + atoms_args => [ + { + destination => '/home/amnesia/.purple', + options => [ 'source=pidgin' ], + }, + ], + }, + { + id => 'SSHClient', + name => $self->encoding->decode(gettext(q{SSH Client})), + description => $self->encoding->decode(gettext( + q{SSH keys, configuration and known hosts} + )), + icon_name => 'seahorse-key-ssh', + enabled => 0, + atoms_args => [ + { + destination => '/home/amnesia/.ssh', + options => [ 'source=openssh-client'], + }, + ], + }, + { + id => 'Dotfiles', + name => $self->encoding->decode(gettext(q{Dotfiles})), + description => $self->encoding->decode(gettext( + q{Symlink into $HOME every file or directory found in the `dotfiles' directory} + )), + icon_name => 'preferences-desktop', + enabled => 0, + atoms_args => [ + { + destination => '/home/amnesia', + options => [ 'source=dotfiles', 'link' ], + }, + ], + }, + ); + + foreach my $preset (@presets) { + my @atoms; + foreach my $atom_init_args (@{$preset->{atoms_args}}) { + push @atoms, Tails::Persistence::Configuration::Atom->new( + id => $preset->{id}, + name => $preset->{name}, + description => $preset->{description}, + enabled => $preset->{enabled}, + %{$atom_init_args} + ); + } + $preset->{atoms} = \@atoms; + delete $preset->{atom_args}; + } + + return \@presets; +} + +method atoms () { + my @atoms; + foreach my $preset ($self->all) { + push @atoms, @{$preset->{atoms}}; + } + return @atoms; +} + + +=head1 METHODS + +=cut + +method set_state_from_lines (@lines) { + foreach my $atom ($self->atoms) { + $atom->enabled(1) if grep { $atom->equals_line($_) } @lines; + } + foreach my $preset ($self->all) { + $self->{enabled} = all { $_->enabled } @{$preset->{atoms}}; + } +} + +method set_state_from_overrides (ArrayRef[Str] $overrides) { + foreach my $atom ($self->atoms) { + $atom->enabled(1) if grep { $atom->id eq $_ } @$overrides; + } +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm new file mode 100644 index 0000000000000000000000000000000000000000..9f58679f21255614964e85479af2ff28c07ecd94 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm @@ -0,0 +1,242 @@ +=head1 NAME + +Tails::Persistence::Configuration::Setting - a persistence feature displayed in the GUI + +=cut + +package Tails::Persistence::Configuration::Setting; + +use 5.10.1; +use strictures 2; +use autodie qw(:all); +use Function::Parameters; +use Glib qw{TRUE FALSE}; +use List::MoreUtils qw{all}; +use Pango; +use UUID::Tiny ':std'; + +use Glib::Object::Introspection; +Glib::Object::Introspection->setup( + basename => 'Gio', + version => '2.0', + package => 'Gio' +); + +use Locale::gettext; +use POSIX; +setlocale(LC_MESSAGES, ""); +textdomain("tails"); + +use Moo; +use MooX::late; +with 'Tails::Role::HasEncoding'; +use namespace::clean; + + +=head1 ATTRIBUTES + +=cut + +has 'atoms' => ( + required => 1, + is => 'ro', + isa => 'ArrayRef[Tails::Persistence::Configuration::Atom]', +); + +foreach (qw{id name description icon_name}) { + has $_ => ( + lazy_build => 1, + is => 'rw', + isa => 'Str', + ); +} + +has 'icon' => ( + lazy_build => 1, + is => 'ro', + isa => 'Gtk3::Image', +); + +has 'main_widget' => ( + lazy_build => 1, + is => 'ro', + isa => 'Gtk3::HBox', +); + +has 'switch' => ( + lazy_build => 1, + is => 'ro', + isa => 'Gtk3::Switch', + handles => { + is_active => 'get_active', + set_active => 'set_active', + }, +); + +has 'icon_theme' => ( + is => 'ro', + isa => 'Gtk3::IconTheme', + builder => '_build_icon_theme', +); + +has 'title_label' => ( + lazy_build => 1, + is => 'ro', + isa => 'Gtk3::Label', +); + +has 'description_label' => ( + lazy_build => 1, + is => 'ro', + isa => 'Gtk3::Label', +); + +has 'configuration_button' => ( + lazy_build => 1, + is => 'ro', + isa => 'Gtk3::Button', +); + +has 'configuration_app_desktop_id' => ( + lazy_build => 1, + is => 'ro', + isa => 'Str', + predicate => 1, +); + + +=head1 CONSTRUCTORS + +=cut + +method _build_name () { + $self->encoding->decode(gettext('Custom')); +} + +method _build_id () { + create_uuid(); +} + +method _build_description () { + join(', ', map { $self->encoding->decode($_->destination) } @{$self->atoms}); +} + +method _build_icon_name () { + 'dialog-question' +} + +method _build_icon () { + Gtk3::Image->new_from_pixbuf($self->icon_theme->load_icon( + $self->icon_name, 48, 'use-builtin' + )); +} + +method _build_switch () { + my $switch = Gtk3::Switch->new(); + $switch->set_active($self->enabled); + $switch->set_valign('GTK_ALIGN_CENTER'); + $switch->set_vexpand(FALSE); + for (qw{start end top bottom}) { + my $method = "set_margin_${_}"; + $switch->$method(12); + } + $switch->signal_connect('notify::active' => sub { $self->toggled_cb }); + return $switch; +} + +method _build_configuration_button () { + my $button = Gtk3::Button->new_from_icon_name( + 'emblem-system-symbolic', 1, + ); + $button->set_valign('GTK_ALIGN_CENTER'); + $button->signal_connect('clicked' => sub { $self->configuration_cb() }); + + return $button; +} + +method _build_main_widget () { + my $main_box = Gtk3::HBox->new(); + $main_box->set_border_width(5); + + my $text_box = Gtk3::VBox->new(); + $text_box->set_border_width(5); + $text_box->pack_start($self->title_label, FALSE, FALSE, 0); + $text_box->pack_start($self->description_label, FALSE, FALSE, 0); + $text_box->set_margin_start(12); + $text_box->set_margin_end(12); + $text_box->set_margin_top(6); + $text_box->set_margin_bottom(6); + + $main_box->pack_start($self->icon, FALSE, FALSE, 0); + $main_box->pack_start($text_box, TRUE, TRUE, 0); + if ($self->has_configuration_app_desktop_id) { + $main_box->pack_start($self->configuration_button, FALSE, FALSE, 0); + } + $main_box->pack_start($self->switch, FALSE, FALSE, 0); + + return $main_box; +} + +method _build_icon_theme () { + my $theme = Gtk3::IconTheme::get_default(); + + $theme->append_search_path('/usr/share/pixmaps/cryptui/48x48'); + $theme->append_search_path('/usr/share/pixmaps/seahorse/48x48'); + $theme->append_search_path('/usr/share/icons/gnome-colors-common/32x32/apps/'); + $theme->append_search_path('/usr/share/app-install/icons/'); + + return $theme; + } + +method _build_title_label () { + my $title = Gtk3::Label->new($self->name); + $title->set_alignment(0.0, 0.5); + my $title_attrlist = Pango::AttrList->new; + $title_attrlist->insert($_) + foreach ( Pango::AttrScale->new(1.1),Pango::AttrWeight->new('bold') ); + $title->set_attributes($title_attrlist); + + return $title; +} + +method _build_description_label () { + my $description = Gtk3::Label->new($self->description); + $description->set_alignment(0.0, 0.5); + my $description_attrlist = Pango::AttrList->new; + $description_attrlist->insert( + Pango::AttrForeground->new(30000, 30000, 30000) + ); + $description->set_attributes($description_attrlist); + $description->set_line_wrap(TRUE); + $description->set_line_wrap_mode('word'); + $description->set_single_line_mode(FALSE); + + return $description; +} + + +=head1 METHODS + +=cut + +method enabled () { + all { $_->enabled } @{$self->atoms}; +} + +method toggled_cb () { + foreach my $atom (@{$self->atoms}) { + $atom->enabled($self->is_active) + } +} + +method configuration_cb () { + my $configuration_desktop_app_info = Gio::DesktopAppInfo->new( + $ENV{DEV_MODE} + ? 'yelp.desktop' + : $self->configuration_app_desktop_id, + ); + $configuration_desktop_app_info->launch(); +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Constants.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Constants.pm new file mode 100644 index 0000000000000000000000000000000000000000..4957e6ed0ba95403b4323302879ac5ae8e052caa --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Constants.pm @@ -0,0 +1,77 @@ +package Tails::Persistence::Constants; +use 5.10.1; +use strictures 2; +use Moo; +use MooX::late; +use Types::Path::Tiny qw{AbsPath}; + +use autodie qw(:all); +use Function::Parameters; + +use namespace::clean; + + +=head1 Attributes + +=cut +for (qw{partition_label partition_guid filesystem_type filesystem_label}) { + has "persistence_$_" => ( + lazy_build => 1, + is => 'ro', + isa => 'Str', + ); +} + +has "persistence_minimum_size" => ( + lazy_build => 1, + is => 'ro', + isa => 'Int', +); + +has 'persistence_filesystem_options' => ( + lazy_build => 1, + is => 'ro', + isa => 'HashRef[Str]', +); + +has 'persistence_state_file' => ( + isa => AbsPath, + is => 'ro', + lazy_build => 1, + coerce => AbsPath->coercion, + documentation => q{File where tails-greeter writes persistence state.}, +); + + +=head1 Constructors + +=cut +method _build_persistence_partition_label () { + 'TailsData' +} +method _build_persistence_minimum_size () { + 64 * 2 ** 20 +} +method _build_persistence_filesystem_type () { + 'ext4' +} +method _build_persistence_filesystem_label () { + 'TailsData' +} + +method _build_persistence_filesystem_options () { + { + label => $self->persistence_filesystem_label, + }; +} + +method _build_persistence_partition_guid () { + '8DA63339-0007-60C0-C436-083AC8230908' # Linux reserved +} + +method _build_persistence_state_file () { + '/var/lib/live/config/tails.persistence' +} + +no Moo; +1; # End of Tails::Persistence::Constants diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Role/ConfigurationLine.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Role/ConfigurationLine.pm new file mode 100644 index 0000000000000000000000000000000000000000..aee18f2abda0d5f50b8cff54282175016bef6c0e --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Role/ConfigurationLine.pm @@ -0,0 +1,104 @@ +=head1 NAME + +Tails::Persistence::Role::ConfigurationLine - live-persistence.conf data structure + +=cut + +package Tails::Persistence::Role::ConfigurationLine; +use 5.10.1; +use strictures 2; +use autodie qw(:all); +use Carp; +use Function::Parameters; +use Types::Standard qw(ClassName Str); + +use Moo::Role; # Moo::Role exports all methods declared after it's "use"'d +use MooX::late; +use MooX::HandlesVia; + +use namespace::clean; + + +=head1 ATTRIBUTES + +=cut + +has 'destination' => ( + lazy_build => 1, + is => 'ro', + isa => 'Str', +); + +has 'options' => ( + lazy_build => 1, + is => 'ro', + isa => 'ArrayRef[Str]', + handles_via => 'Array', + handles => { + count_options => 'count', + all_options => 'elements', + join_options => 'join', + grep_options => 'grep', + } +); + + +=head1 CONSTRUCTORS + +=cut + +method _build_options () { + return [] +} + + +=head2 new_from_string + +input: a line e.g. read from live-persistence.conf + +output: + - undef if that line can be safely ignored (e.g. comment) + - a new Tails::Persistence::Configuration::Line object if "normal" line + - throws exception on badly formatted line + +=cut +method new_from_string (ClassName $class: Str $line) { + chomp $line; + + # skip pure-whitespace lines + return if $line =~ m{^[[:space:]]*$}; + # skip commented-out lines + return if $line =~ m{^[[:space:]]*#}; + + my ($destination, $options) = split /\s+/, $line; + defined($destination) or croak "Unparseable line: $line"; + my @options = defined $options ? split(/,/, $options) : (); + + return Tails::Persistence::Configuration::Line->new( + destination => $destination, + options => [ @options ], + ); +} + + +=head1 METHODS + +=cut + +=head2 stringify + +Returns a in-memory configuration line, +as a string in the live-persistence.conf format, +with no trailing newline. + +=cut +method stringify () { + my $out = $self->destination; + if ($self->count_options) { + $out .= "\t" . $self->join_options(','); + } + return $out; +} + +no Moo::Role; +1; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Role/HasStatusArea.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Role/HasStatusArea.pm new file mode 100644 index 0000000000000000000000000000000000000000..f38acef2de8f556247575d28f5c7a5dee2be3c67 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Role/HasStatusArea.pm @@ -0,0 +1,18 @@ +=head1 NAME + +Tails::Persistence::Role::HasStatusArea - status area interface + +=cut + +package Tails::Persistence::Role::HasStatusArea; +use 5.10.1; +use strictures 2; +use Moo::Role; + +requires 'status_area'; +requires 'working'; + +use namespace::clean; + +no Moo::Role; +1; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Role/SetupStep.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Role/SetupStep.pm new file mode 100644 index 0000000000000000000000000000000000000000..7c0698834e8217073432f7b5236626d9d444a0ab --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Role/SetupStep.pm @@ -0,0 +1,131 @@ +=head1 NAME + +Tails::Persistence::Role::SetupStep - role for persistence setup steps + +=cut + +package Tails::Persistence::Role::SetupStep; + +use 5.10.1; +use strictures 2; +use autodie qw(:all); + +use Function::Parameters; +use Glib qw{TRUE FALSE}; +use Gtk3 qw{-init}; + +use Locale::gettext; +use POSIX; +setlocale(LC_MESSAGES, ""); +textdomain("tails"); + +use Moo::Role; +use MooX::late; +use namespace::clean; + +with 'Tails::Role::HasEncoding'; +with 'Tails::Persistence::Role::HasStatusArea'; + +requires '_build_main_widget'; +requires 'go_button_pressed'; + + +=head1 ATTRIBUTES + +=cut + +has 'name' => ( + required => 1, + is => 'ro', + isa => 'Str', +); + +has 'main_widget' => ( + lazy_build => 1, + is => 'rw', + isa => 'Gtk3::VBox', +); + +foreach (qw{title subtitle description}) { + has $_ => ( + lazy_build => 1, + is => 'rw', + isa => 'Gtk3::Label', + ); +} + +has 'go_button' => ( + lazy_build => 1, + is => 'rw', + isa => 'Gtk3::Button', +); +foreach (qw{go_callback success_callback}) { + has $_ => ( + required => 1, + is => 'ro', + isa => 'CodeRef', + ); +} + +foreach (qw{drive_vendor drive_model}) { + has $_ => ( + required => 1, + is => 'ro', + isa => 'Str', + ); +} + + +=head1 CONSTRUCTORS + +=cut + +method _build_title () { + my $label = Gtk3::Label->new(''); + $label->set_alignment(0.0, 0.5); + my $attrlist = Pango::AttrList->new; + $attrlist->insert($_) + foreach ( Pango::AttrScale->new(1.3),Pango::AttrWeight->new('bold') ); + $label->set_attributes($attrlist); + $label->set_padding(10, 10); + + return $label; +} + +method _build_subtitle () { + my $label = Gtk3::Label->new(''); + $label->set_alignment(0.0, 0.5); + my $attrlist = Pango::AttrList->new; + $attrlist->insert($_) + foreach ( Pango::AttrScale->new(1.1),Pango::AttrWeight->new('bold') ); + $label->set_attributes($attrlist); + $label->set_padding(10, 10); + $label->set_line_wrap(TRUE); + $label->set_line_wrap_mode('word'); + $label->set_single_line_mode(FALSE); + + return $label; +} + +method _build_description () { + my $label = Gtk3::Label->new(''); + $label->set_alignment(0.0, 0.5); + $label->set_padding(10, 10); + $label->set_line_wrap(TRUE); + $label->set_line_wrap_mode('word'); + $label->set_single_line_mode(FALSE); + + return $label; +} + +method _build_go_button () { + my $button = Gtk3::Button->new; + $button->set_sensitive(FALSE); + $button->set_can_default(TRUE); + $button->signal_connect('clicked', sub { $self->go_button_pressed }); + + return $button; +} + +no Moo::Role; +1; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Role/StatusArea.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Role/StatusArea.pm new file mode 100644 index 0000000000000000000000000000000000000000..7a094df8c0d3043dba9238a10b783ce6dc54c8f0 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Role/StatusArea.pm @@ -0,0 +1,83 @@ +=head1 NAME + +Tails::Persistence::Role::StatusArea - role to manage a status area + +=cut + +package Tails::Persistence::Role::StatusArea; +use 5.10.1; +use strictures 2; +use autodie qw(:all); +use Function::Parameters; +use Glib qw{TRUE FALSE}; +use Gtk3; + +use Moo::Role; +use MooX::late; +use namespace::clean; + + +=head1 ATTRIBUTES + +=cut + +has 'status_area' => ( + lazy_build => 1, + is => 'rw', + isa => 'Gtk3::HBox', +); +has 'spinner' => ( + lazy_build => 1, + is => 'rw', + isa => 'Gtk3::Spinner', +); +has 'working' => ( + lazy_build => 1, + is => 'rw', + isa => 'Bool', + +); + + +=head1 CONSTRUCTORS + +=cut + +method _build_status_area () { + my $box = Gtk3::HBox->new(FALSE, 64); + $box->set_border_width(10); + $box->pack_start($self->spinner, FALSE, FALSE, 0); + + return $box; +} + +method _build_spinner () { + my $spinner = Gtk3::Spinner->new; + $spinner->set_size_request(80,80); + return $spinner; +} + + +=head1 METHOD MODIFIERS + +=cut + +after 'working' => sub { + my $self = shift; + + return unless @_; + my $new_value = shift; + + if ($new_value) { + $self->spinner->start; + $self->spinner->show; + $self->go_button->set_sensitive(FALSE); + } + else { + $self->spinner->stop; + $self->spinner->hide; + } +}; + +no Moo::Role; +1; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm new file mode 100644 index 0000000000000000000000000000000000000000..64785e71e2ea94eb56ac13ced885bc649cf58887 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm @@ -0,0 +1,792 @@ +=head1 NAME + +Tails::Persistence::Setup - main application class + +=cut + +package Tails::Persistence::Setup; + +use 5.10.1; +use strictures 2; + +use autodie qw(:all); +use Carp::Assert::More; +use English qw{-no_match_vars}; +use Function::Parameters; +use Glib qw{TRUE FALSE}; +use Gtk3 qw{-init}; +use Net::DBus qw(:typing); +use Net::DBus::Annotation qw(:call); +use List::Util qw{first min max}; +use Number::Format qw(:subs); +use Path::Tiny; +use Types::Standard qw(Str HashRef); +use Try::Tiny; +use Types::Path::Tiny qw{Dir}; + +use Tails::RunningSystem; +use Tails::UDisks; +use Tails::Persistence::Configuration; +use Tails::Persistence::Constants; +use Tails::Persistence::Step::Bootstrap; +use Tails::Persistence::Step::Configure; +use Tails::Persistence::Step::Delete; +use Tails::Persistence::Utils qw{align_up_at_2MiB align_down_at_2MiB step_name_to_class_name get_variable_from_file check_config_file_permissions}; + +use Locale::gettext; +use POSIX; +setlocale(LC_MESSAGES, ""); +textdomain("tails"); + +no Moo::sification; +use Moo; +use MooX::late; +use MooX::HandlesVia; + +with 'Tails::Role::DisplayError::Gtk3'; +with 'Tails::Role::HasDBus::System'; +with 'Tails::Role::HasEncoding'; + +use namespace::clean; + +use MooX::Options; + + +=head1 ATTRIBUTES + +=cut + +option 'verbose' => ( + is => 'ro', + isa => 'Bool', + documentation => q{Get more output.}, + default => sub { + exists $ENV{DEBUG} && defined $ENV{DEBUG} && $ENV{DEBUG} + }, +); + +option 'force' => ( + lazy_build => 1, + is => 'ro', + isa => 'Bool', + documentation => q{Make some sanity checks non-fatal.}, +); + +has 'udisks' => ( + lazy_build => 1, + is => 'ro', + isa => 'Tails::UDisks', + handles => [ + qw{bytes_array_to_string device_has_partition_with_label + drive_is_optical drive_is_connected_via_a_supported_interface + device_partition_with_label get_block_device_property + get_filesystem_property get_partition_property luks_holder + mountpoints partitions udisks_service} + ], +); + +has 'running_system' => ( + lazy_build => 1, + is => 'ro', + isa => 'Tails::RunningSystem', + handles => [ + qw{boot_drive boot_block_device boot_device_file boot_drive_model boot_drive_vendor + boot_drive_size + started_from_device_installed_with_tails_installer} + ], +); + +has 'persistence_constants' => ( + lazy_build => 1, + is => 'ro', + isa => 'Tails::Persistence::Constants', + handles => [ + map { + "persistence_$_" + } qw{partition_label partition_guid filesystem_type filesystem_label + minimum_size filesystem_options state_file} + ], +); + +has 'main_window' => ( + lazy_build => 1, + is => 'ro', + isa => 'Gtk3::Window', +); + +option "$_" => ( + is => 'ro', + format => 's', + isa => 'Str', + predicate => 1, +) for (qw{override_liveos_mountpoint override_boot_drive + override_system_partition}); + +has 'persistence_partition_device_file' => ( + lazy_build => 1, + is => 'ro', + isa => 'Str', +); +has 'persistence_partition_size' => ( + lazy_build => 1, + is => 'ro', + isa => 'Int', +); +has 'persistence_is_enabled' => ( + lazy_build => 1, + is => 'ro', + isa => 'Bool', +); + +has 'persistence_partition_mountpoint' => ( + isa => Dir, + is => 'rw', + lazy_build => 1, + coerce => Dir->coercion, +); + +foreach (qw{beginning_of_free_space size_of_free_space}) { + has $_ => ( + lazy_build => 1, + is => 'ro', + isa => 'Int', + ); +} + +has 'current_step' => ( + is => 'rw', + isa => 'Object', + predicate => 'has_current_step', +); + +option 'steps' => ( + lazy_build => 1, + required => 1, + repeatable => 1, + format => 's@', + is => 'rw', + isa => 'ArrayRef[Str]', + handles_via => ['Array'], + handles => { + number_of_steps => 'count', + shift_steps => 'shift', + next_step => 'first', + }, + documentation => q{Specify once per wizard step to run. Supported steps are: bootstrap, configure, delete.}, +); + +has 'configuration' => ( + lazy_build => 1, + is => 'rw', + isa => 'Tails::Persistence::Configuration', + handles => { save_configuration => 'save' }, +); + +option 'force_enable_presets' => ( + is => 'ro', + repeatable => 1, + format => 's@', + isa => 'ArrayRef[Str]', + handles_via => ['Array'], + documentation => q{Specify once per additional preset to forcibly enable.}, + default => sub { [] }, +); + +option 'display_finished_message' => ( + is => 'ro', + isa => 'Bool', + documentation => q{Display an explanatory message once done.}, + default => sub { 1 }, + negativable => 1, +); + +option 'gui' => ( + is => 'ro', + isa => 'Bool', + documentation => q{Display the GUI. Only a few operations are available under --no-gui.}, + default => sub { 1 }, + negativable => 1, +); + + +=head1 CONSTRUCTORS AND BUILDERS + +=cut + +method BUILD (@args) { + if (! $self->gui) { + assert_is($self->number_of_steps, 1, + "Exactly one step is enabled under --no-gui"); + assert_is($self->steps->[0], 'configure', + "The requested step is 'configure' under --no-gui"); + } +} + +method _build_force () { 0; } + +method _build_persistence_constants () { Tails::Persistence::Constants->new(); } +method _build_udisks () { Tails::UDisks->new(); } + +method _build_running_system () { + + my @args; + for (qw{liveos_mountpoint boot_drive system_partition}) { + my $attribute = "override_$_"; + my $predicate = "has_$attribute"; + if ($self->$predicate) { + push @args, ($_ => $self->$attribute) + } + } + + Tails::RunningSystem->new(main_window => $self->main_window, @args); +} + +method _build_persistence_is_enabled () { + -e $self->persistence_state_file || return 0; + -r $self->persistence_state_file || return 0; + + my $value = $self->get_variable_from_persistence_state_file( + 'TAILS_PERSISTENCE_ENABLED' + ); + defined($value) && $value eq 'true'; +} + +method _build_steps () { + if ($self->device_has_persistent_volume) { + return [ qw{configure} ]; + } + else { + return [ qw{bootstrap configure} ] + } +} + +method _build_main_window () { + my $win = Gtk3::Window->new('toplevel'); + $win->set_title($self->encoding->decode(gettext('Setup Tails persistent volume'))); + + $win->set_border_width(10); + + $win->add($self->current_step->main_widget) if $self->has_current_step; + $win->signal_connect('destroy' => sub { Gtk3->main_quit; }); + $win->signal_connect('key-press-event' => sub { + my $twin = shift; + my $event = shift; + $win->destroy if $event->key->{keyval} == Gtk3::Gdk::keyval_from_name('Escape'); + }); + $win->set_default($self->current_step->go_button) if $self->has_current_step; + + return $win; +} + +method _build_persistence_partition_mountpoint () { + first { + $_ eq '/live/persistence/TailsData_unlocked' + or $_ eq '/media/'.getpwuid($UID).'/TailsData' + } $self->mountpoints($self->persistence_partition); +} + +method _build_beginning_of_free_space () { + align_up_at_2MiB( + max( + map { + $self->get_partition_property($_, 'Offset') + + $self->get_partition_property($_, 'Size') + } $self->partitions($self->boot_block_device) + ) + ); +} + +method _build_size_of_free_space () { + align_down_at_2MiB( + $self->get_block_device_property($self->boot_block_device, 'Size') + - $self->beginning_of_free_space + ); +} + +method _build_persistence_partition_device_file () { + return $self->bytes_array_to_string($self->get_block_device_property( + $self->persistence_partition, 'PreferredDevice' + )); +} + +method _build_persistence_partition_size () { + $self->get_block_device_property($self->persistence_partition, 'Size'); +} + +method _build_configuration () { + my $config_file_path = path($self->persistence_partition_mountpoint, 'persistence.conf'); + if (-e $config_file_path) { + # In Tails, tails-persistence-setup runs as the tails-persistence-setup + # user and the configuration file must be owned by + # tails-persistence-setup:tails-persistence-setup. + # When developing outside of Tails, the configuration file is also owned + # by the user:group that runs tails-persistence-setup. + # So in all cases, we effectively want the configuration file + # to be owned by the user:group that runs tails-persistence-setup. + my $expected_uid = getuid(); + my $expected_gid = getgid(); + $self->debug("Expected ownership: ${expected_uid}:${expected_gid}"); + try { + check_config_file_permissions( + $config_file_path, + { + uid => $expected_uid, + gid => $expected_gid, + mode => oct(600), + acl => '', + } + ); + } + catch { + $self->display_error( + $self->main_window, + $self->encoding->decode(gettext('Error')), + $self->encoding->decode(gettext( + $_, + ))); + exit 4; + }; + } + + Tails::Persistence::Configuration->new( + config_file_path => $config_file_path, + force_enable_presets => $self->force_enable_presets, + ); +} + + +=head1 METHODS + +=cut + +method debug (Str $mesg) { + say STDERR $self->encoding->encode($mesg) if $self->verbose; +} + +method check_sanity (Str $step_name) { + my %step_checks = ( + 'bootstrap' => [ + { + method => 'device_has_persistent_volume', + message => $self->encoding->decode(gettext( + "Device %s already has a persistent volume.")), + must_be_false => 1, + can_be_forced => 1, + needs_device_arg => 1, + }, + { + method => 'device_has_enough_free_space', + message => $self->encoding->decode(gettext( + "Device %s has not enough unallocated space.")), + }, + ], + 'delete' => [ + { + method => 'device_has_persistent_volume', + message => $self->encoding->decode(gettext( + "Device %s has no persistent volume.")), + needs_device_arg => 1, + }, + { + method => 'persistence_is_enabled', + message => $self->encoding->decode(gettext( + "Cannot delete the persistent volume on %s while in use. You should restart Tails without persistence.")), + must_be_false => 1, + }, + ], + 'configure' => [ + { + method => 'device_has_persistent_volume', + message => $self->encoding->decode(gettext( + "Device %s has no persistent volume.")), + needs_device_arg => 1, + }, + { + method => 'persistence_partition_is_unlocked', + message => $self->encoding->decode(gettext( + "Persistence volume on %s is not unlocked.")), + }, + { + method => 'persistence_filesystem_is_mounted', + message => $self->encoding->decode(gettext( + "Persistence volume on %s is not mounted.")), + }, + { + method => 'persistence_filesystem_is_readable', + message => $self->encoding->decode(gettext( + "Persistence volume on %s is not readable. Permissions or ownership problems?")), + }, + { + method => 'persistence_filesystem_is_writable', + message => $self->encoding->decode(gettext( + "Persistence volume on %s is not writable.")), + }, + ], + ); + + my @checks = ( + { + method => 'drive_is_connected_via_a_supported_interface', + message => $self->encoding->decode(gettext( + "Tails is running from non-USB / non-SDIO device %s.")), + needs_drive_arg => 1, + }, + { + method => 'drive_is_optical', + message => $self->encoding->decode(gettext( + "Device %s is optical.")), + must_be_false => 1, + needs_drive_arg => 1, + }, + { + method => 'started_from_device_installed_with_tails_installer', + message => $self->encoding->decode(gettext( + "Device %s was not created using a USB image or Tails Installer.")), + must_be_false => 0, + }, + ); + if ($step_name + && exists $step_checks{$step_name} + && defined $step_checks{$step_name} + ) { + push @checks, @{$step_checks{$step_name}}; + } + + foreach my $check (@checks) { + my $check_method = $self->can($check->{method}); + assert_defined($check_method); + my $res; + my @args = ($self); + if (exists($check->{needs_device_arg}) && $check->{needs_device_arg}) { + push @args, $self->boot_block_device; + } + elsif (exists($check->{needs_drive_arg}) && $check->{needs_drive_arg}) { + push @args, $self->boot_drive; + } + $res = $check_method->(@args); + if (exists($check->{must_be_false}) && $check->{must_be_false}) { + $res = ! $res; + } + if (! $res) { + my $message = $self->encoding->decode(sprintf( + gettext($check->{message}), + $self->boot_device_file)); + if ($self->force && exists($check->{can_be_forced}) && $check->{can_be_forced}) { + say STDERR "$message", + "... but --force is enabled, ignoring results of this sanity check."; + } + else { + $self->display_error( + $self->main_window, + $self->encoding->decode(gettext('Error')), + $message + ); + return; + } + } + } + + return 1; +} + +method run () { + $self->debug("Entering Tails::Persistence::Setup::run"); + $self->debug(sprintf("Working on device %s", $self->boot_device_file)); + + $self->main_window->set_visible(FALSE); + $self->goto_next_step; + if ($self->gui) { + $self->debug("Entering main Gtk3 loop."); + Gtk3->main; + } +} + +method device_has_persistent_volume ($device = undef) { + $device ||= $self->boot_block_device; + $self->debug("Entering device_has_persistent_volume"); + return $self->device_has_partition_with_label($device, $self->persistence_partition_label); +} + +method device_has_enough_free_space () { + $self->size_of_free_space >= $self->persistence_minimum_size; +} + +method persistence_partition () { + $self->debug("Entering persistence_partition"); + $self->device_partition_with_label( + $self->boot_block_device, + $self->persistence_partition_label + ); +} + +method create_persistence_partition (HashRef $opts) { + $opts->{end_cb} ||= sub { say STDERR "finished." }; + + $self->debug("Entering create_persistence_partition"); + + my $offset = $self->beginning_of_free_space; + my $size = $self->size_of_free_space; + my $type = $self->persistence_partition_guid; + my $label = $self->persistence_partition_label; + my $options = {}; + + $self->debug(sprintf( + "Creating partition of size %s at offset %s on device %s", + format_bytes($size, mode => "iec"), $offset, $self->boot_device_file + )); + + $self->udisks_service->get_object($self->boot_block_device) + ->as_interface('org.freedesktop.UDisks2.PartitionTable') + ->CreatePartition(dbus_call_async, $offset, $size, $type, $label, $options) + ->set_notify(sub { + $self->create_persistent_encrypted_filesystem($opts, @_); + }); + + $self->debug("waiting..."); +} + +method create_persistent_encrypted_filesystem ( + HashRef $opts, + $create_partition_reply +) { + $opts->{end_cb} ||= sub { say STDERR "finished." }; + my ($created_device, $create_partition_error); + + $self->debug("Entering create_persistent_encrypted_filesystem"); + + # For some reason, we cannot get the exception when Try::Tiny is used, + # so let's do it by hand. + { + local $@; + eval { $created_device = $create_partition_reply->get_result }; + $create_partition_error = $@; + } + if ($create_partition_error) { + return $opts->{end_cb}->({ + create_partition_error => $create_partition_error, + }); + } + + my $fstype = $self->persistence_filesystem_type; + my $fsoptions = { + %{$self->persistence_filesystem_options}, + 'encrypt.passphrase' => $opts->{passphrase}, + }; + + $self->udisks_service->get_object($self->persistence_partition) + ->as_interface('org.freedesktop.UDisks2.Block') + ->Format( + dbus_call_async, dbus_call_timeout, 3600 * 1000, + $fstype, $fsoptions) + ->set_notify(sub { $opts->{end_cb}->({ + created_device => $created_device, + format_reply => @_, + })}); + + $self->debug("waiting..."); +} + +method delete_persistence_partition (HashRef $opts = {}) { + $opts->{end_cb} ||= sub { say STDERR "finished." }; + + $self->debug(sprintf("Deleting partition %s", $self->persistence_partition_device_file)); + + my $obj = $self->udisks_service->get_object($self->persistence_partition); + + # lock the device if it is unlocked + my $luksholder = $self->luks_holder($self->persistence_partition); + if ($luksholder) { + if ($self->persistence_filesystem_is_mounted) { + $self->udisks_service + ->get_object($luksholder) + ->as_interface("org.freedesktop.UDisks2.Filesystem") + ->Unmount({}) + } + $obj->as_interface('org.freedesktop.UDisks2.Encrypted')->Lock({}); + } + + # TODO: wipe the LUKS header (#8436) + + my $iface = $obj->as_interface("org.freedesktop.UDisks2.Partition"); + $iface->Delete(dbus_call_async, {})->set_notify($opts->{end_cb}); + $self->debug("waiting..."); +} + +method mount_persistence_partition () { + $self->debug(sprintf("Mounting partition %s", $self->persistence_partition_device_file)); + + my $luks_holder = $self->luks_holder($self->persistence_partition); + + return $self->udisks_service + ->get_object($luks_holder) + ->as_interface("org.freedesktop.UDisks2.Filesystem") + ->Mount(dbus_call_sync, {}); +} + +method empty_main_window () { + my $child = $self->main_window->get_child; + $self->main_window->remove($child) if defined($child); +} + +method run_current_step () { + my ($width, $height) = $self->main_window->get_size(); + + $self->debug("Running step " . $self->current_step->name); + + if ($self->gui) { + $self->current_step->working(0); + $self->empty_main_window; + $self->main_window->add($self->current_step->main_widget); + $self->main_window->set_default($self->current_step->go_button); + $self->main_window->show_all; + $self->current_step->working(0); + $self->main_window->set_visible(TRUE); + + if($self->current_step->name eq 'configure') { + $self->main_window->resize( + $width, + max( + 900, + min(450, $self->main_window->get_screen()->get_height()), + ) + ); + } + else { + $self->main_window->resize($width, $height); + } + } else { + $self->debug("run_current_step: starting go_button_pressed..."); + $self->current_step->go_button_pressed; + $self->debug("run_current_step: go_button_pressed exited."); + } +} + +method goto_next_step () { + my $next_step; + + if ($next_step = $self->shift_steps) { + if ($self->check_sanity($next_step)) { + $self->current_step($self->step_object_from_name($next_step)); + $self->run_current_step; + } + else { + # check_sanity already has displayed an error dialog, + # that the user already closed. + exit 2; + } + } + else { + $self->debug("No more steps."); + if (! $self->display_finished_message) { + if ($self->gui) { + Gtk3->main_quit; + } else { + return; + } + } + $self->current_step->title->set_text($self->encoding->decode(gettext( + q{Persistence wizard - Finished} + ))); + $self->current_step->subtitle->set_text($self->encoding->decode(gettext( + q{Any changes you have made will only take effect after restarting Tails. + +You may now close this application.} + ))); + $self->current_step->description->set_text(' '); + $self->current_step->go_button->hide; + $self->current_step->status_area->hide; + } +} + +method step_object_from_name (Str $name) { + my $class_name = step_name_to_class_name($name); + + my %init_args; + + if ($name eq 'bootstrap') { + %init_args = ( + go_callback => sub { + $self->create_persistence_partition({ @_ }) + }, + size_of_free_space => $self->size_of_free_space, + mount_persistence_partition_cb => sub { + $self->mount_persistence_partition + }, + create_configuration_cb => sub { + $self->save_configuration; + my $asp_config_file = path( + $self->persistence_partition_mountpoint, + 'live-additional-software.conf' + ); + $asp_config_file->touch; + $asp_config_file->chmod(0644); + }, + ); + } + elsif ($name eq 'delete') { + %init_args = ( + go_callback => sub { + $self->delete_persistence_partition({ @_ }) + }, + persistence_partition => $self->persistence_partition, + persistence_partition_device_file => $self->persistence_partition_device_file, + persistence_partition_size => $self->persistence_partition_size, + ); + } + elsif ($name eq 'configure') { + %init_args = ( + go_callback => sub { $self->save_configuration }, + configuration => $self->configuration, + persistence_partition => $self->persistence_partition, + persistence_partition_device_file => $self->persistence_partition_device_file, + persistence_partition_size => $self->persistence_partition_size, + ); + } + + return $class_name->new( + name => $name, + encoding => $self->encoding, + success_callback => sub { $self->goto_next_step }, + drive_vendor => $self->boot_drive_vendor, + drive_model => $self->boot_drive_model, + %init_args + ); + +} + +method get_variable_from_persistence_state_file (Str $variable) { + get_variable_from_file($self->persistence_state_file->stringify, $variable); +} + +method persistence_filesystem_is_mounted () { + return scalar($self->mountpoints($self->persistence_partition)); +} + +method persistence_partition_is_unlocked () { + my $luks_holder = $self->luks_holder($self->persistence_partition) || return; + + return 1; +} + +method persistence_filesystem_is_readable () { + return unless my $mountpoint = $self->persistence_partition_mountpoint; + my $ret; + { + use filetest 'access'; # take ACLs into account + $ret = -r $self->persistence_partition_mountpoint; + } + return $ret; +} + +method persistence_filesystem_is_writable () { + return unless my $mountpoint = $self->persistence_partition_mountpoint; + my $ret; + { + use filetest 'access'; # take ACLs into account + $ret = -w $self->persistence_partition_mountpoint; + } + return $ret; +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm new file mode 100644 index 0000000000000000000000000000000000000000..4ec2232c9e5b1ca905691c83eb456b54e4b28d20 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm @@ -0,0 +1,377 @@ +=head1 NAME + +Tails::Persistence::Step::Bootstrap - bootstrap persistent storage + +=cut + +package Tails::Persistence::Step::Bootstrap; + +use 5.10.1; +use strictures 2; + +use Function::Parameters; +use Glib qw{TRUE FALSE}; + +use IPC::System::Simple qw{systemx}; +use Number::Format qw(:subs); +use Types::Standard qw(HashRef); + +use Locale::gettext; +use POSIX; +setlocale(LC_MESSAGES, ""); +textdomain("tails"); + +use Moo; +use MooX::late; +use namespace::clean; + + +=head1 ATTRIBUTES + +=cut + +foreach (qw{intro label verify_label warning_label}) { + has $_ => ( + lazy_build => 1, + is => 'rw', + isa => 'Gtk3::Label', + ); +} + +foreach (qw{passphrase_entry verify_passphrase_entry}) { + has $_ => ( + lazy_build => 1, + is => 'rw', + isa => 'Gtk3::Entry', + builder => '_build_passphrase_entry', + ); +} + +has 'table_alignment' => ( + lazy_build => 1, + is => 'rw', + isa => 'Gtk3::Alignment', +); +has 'table' => ( + lazy_build => 1, + is => 'rw', + isa => 'Gtk3::Table', +); +has 'warning_area' => ( + lazy_build => 1, + is => 'rw', + isa => 'Gtk3::HBox', +); +has 'warning_image' => ( + lazy_build => 1, + is => 'rw', + isa => 'Gtk3::Image', +); +has 'size_of_free_space' => ( + required => 1, + is => 'ro', + isa => 'Int', +); +foreach (qw{mount_persistence_partition_cb create_configuration_cb}) { + has $_ => ( + required => 1, + is => 'ro', + isa => 'CodeRef', + ); +} + +has 'passphrase_check_button' => ( + lazy_build => 1, + is => 'rw', + isa => 'Gtk3::CheckButton', +); + + +=head1 CONSTRUCTORS + +=cut + +method BUILD (@args) { + $self->title->set_text($self->encoding->decode(gettext( + q{Persistence wizard - Persistent volume creation} + ))); + $self->subtitle->set_text($self->encoding->decode(gettext( + q{Choose a passphrase to protect the persistent volume} + ))); + $self->description->set_markup($self->encoding->decode(sprintf( + # TRANSLATORS: size, device vendor, device model + gettext(q{A %s persistent volume will be created on the <b>%s %s</b> device. Data on this volume will be stored in an encrypted form protected by a passphrase.}), + format_bytes($self->size_of_free_space, mode => "iec"), + $self->drive_vendor, + $self->drive_model, + ))); + $self->go_button->set_label($self->encoding->decode(gettext(q{Create}))); +} + +method _build_main_widget () { + my $box = Gtk3::VBox->new(); + $box->set_spacing(6); + $box->pack_start($self->title, FALSE, FALSE, 0); + $box->pack_start($self->intro, FALSE, FALSE, 0); + $box->pack_start($self->subtitle, FALSE, FALSE, 0); + $box->pack_start($self->description, FALSE, FALSE, 0); + + my $show_passphrase_box = Gtk3::Box->new('GTK_ORIENTATION_HORIZONTAL', 0); + $show_passphrase_box->pack_end($self->passphrase_check_button, FALSE, FALSE, 0); + $box->add($show_passphrase_box); + my $passphrase_box = Gtk3::VBox->new(FALSE, 6); + $passphrase_box->set_spacing(6); + $passphrase_box->pack_start($self->table_alignment, FALSE, FALSE, 0); + $passphrase_box->pack_start($self->warning_area, FALSE, FALSE, 0); + + $box->pack_start($passphrase_box, FALSE, FALSE, 0); + + $self->verify_passphrase_entry->set_activates_default(TRUE); + + $box->pack_start($self->status_area, FALSE, FALSE, 0); + + my $button_alignment = Gtk3::Alignment->new(1.0, 0, 0.2, 1.0); + $button_alignment->set_padding(0, 0, 10, 10); + $button_alignment->add($self->go_button); + $box->pack_start($button_alignment, FALSE, FALSE, 0); + $self->passphrase_entry->grab_focus(); + + return $box; +} + +method _build_intro () { + my $intro = Gtk3::Label->new(''); + $intro->set_alignment(0.0, 0.5); + $intro->set_padding(10, 10); + $intro->set_line_wrap(TRUE); + $intro->set_line_wrap_mode('word'); + $intro->set_single_line_mode(FALSE); + $intro->set_max_width_chars(72); + $intro->set_markup($self->encoding->decode(gettext( + q{<b>Beware!</b> Using persistence has consequences that must be well understood. Tails can't help you if you use it wrong! See the <i>Encrypted persistence</i> page of the Tails documentation to learn more.} + ))); + + return $intro; +} + +method _build_warning_image () { + Gtk3::Image->new_from_stock('gtk-dialog-info', 'menu'); +} + +method _build_warning_area () { + my $ext_hbox = Gtk3::HBox->new(FALSE, 0); + $ext_hbox->set_border_width(10); + $ext_hbox->set_spacing(6); + + my $box = Gtk3::HBox->new(FALSE, 12); + $box->set_spacing(6); + $box->pack_start($self->warning_image, FALSE, FALSE, 0); + $box->pack_start($self->warning_label, FALSE, FALSE, 0); + + $ext_hbox->pack_start($box, FALSE, FALSE, 0); + $ext_hbox->pack_start(Gtk3::Label->new(' '), FALSE, FALSE, 0); + + return $ext_hbox; +} + +method _build_label () { + my $label = Gtk3::Label->new($self->encoding->decode(gettext( + q{Passphrase:} + ))); + $label->set_alignment(0.0, 0.5); + return $label; +} + +method _build_verify_label () { + my $label = Gtk3::Label->new($self->encoding->decode(gettext( + q{Verify Passphrase:} + ))); + $label->set_alignment(0.0, 0.5); + return $label; +} + +method _build_warning_label () { + my $label = Gtk3::Label->new(''); + $label->set_padding(10, 0); + $label->set_markup( + "<i>" + . $self->encoding->decode(gettext(q{Passphrase can't be empty})) + . "</i>" + ); + return $label; +} + +method _build_passphrase_entry () { + my $entry = Gtk3::Entry->new; + $entry->set_visibility(FALSE); + $entry->signal_connect("changed" => sub { $self->passphrase_entry_changed }); + + return $entry; +} + +method _build_table_alignment () { + my $table_alignment = Gtk3::Alignment->new(0.0, 0.0, 1.0, 1.0); + $table_alignment->add($self->table); + return $table_alignment; +} + +method _build_table () { + my $table = Gtk3::Table->new(1, 2, FALSE); + $table->set_border_width(10); + $table->set_col_spacings(12); + $table->set_row_spacings(6); + $table->attach($self->label, 0, 1, 0, 1, 'fill', [qw{expand fill}], 0, 0); + $table->attach_defaults($self->passphrase_entry, 1, 2, 0, 1); + $table->attach($self->verify_label, 0, 1, 1, 2, 'fill', [qw{expand fill}], 0, 0); + $table->attach_defaults($self->verify_passphrase_entry, 1, 2, 1, 2); + + return $table; +} + +method _build_passphrase_check_button () { + my $check_button = Gtk3::CheckButton->new_with_label( + $self->encoding->decode(gettext(q{Show Passphrase})) + ); + $check_button->set_active(FALSE); + $check_button->signal_connect( + toggled => sub { $self->passphrase_check_button_toggled } + ); + + return $check_button; +} + + +=head1 METHODS + +=cut + +method update_passphrase_ui () { + my $passphrase = $self->passphrase_entry->get_text; + my $passphrase_verify = $self->verify_passphrase_entry->get_text; + + # TODO: check passphrase strength (#7002) + + if ($passphrase ne $passphrase_verify) { + $self->warning_label->set_markup( + "<i>" + . $self->encoding->decode(gettext(q{Passphrases do not match})) + . "</i>" + ); + $self->warning_image->show; + $self->go_button->set_sensitive(FALSE); + } + elsif (length($passphrase) == 0) { + $self->warning_label->set_markup( + "<i>" + . $self->encoding->decode(gettext(q{Passphrase can't be empty})) + . "</i>" + ); + $self->warning_image->show; + $self->go_button->set_sensitive(FALSE); + } + else { + $self->warning_image->hide; + $self->warning_label->set_text(' '); + $self->go_button->set_sensitive(TRUE); + } +} + +method passphrase_entry_changed () { + $self->update_passphrase_ui; +} + +method passphrase_check_button_toggled () { + my $show_passphrase_op = $self->passphrase_check_button->get_active; + foreach my $entry ($self->passphrase_entry, $self->verify_passphrase_entry) { + $entry->set_visibility($show_passphrase_op); + } +} + +method operation_finished (HashRef $replies) { + my ($created_device, $error); + + say STDERR "Entering Bootstrap::operation_finished"; + + if (exists($replies->{created_device}) && defined($replies->{created_device})) { + $created_device = $replies->{created_device}; + # For some reason, we cannot get the exception when Try::Tiny is used, + # so let's do it by hand. + { + local $@; + eval { $replies->{format_reply}->get_result }; + $error = $@; + } + } + else { + $error = $replies->{create_partition_error}; + } + + if ($error) { + $self->working(0); + say STDERR "$error"; + $self->subtitle->set_text($self->encoding->decode(gettext(q{Failed}))); + $self->description->set_text($error); + } + else { + say STDERR "created ${created_device}."; + $self->working(0); + + $self->subtitle->set_text($self->encoding->decode(gettext( + q{Mounting Tails persistence partition.} + ))); + $self->description->set_text($self->encoding->decode(gettext( + q{The Tails persistence partition will be mounted.} + ))); + $self->working(1); + systemx(qw{/sbin/udevadm settle}); + my $mountpoint = $self->mount_persistence_partition_cb->(); + $self->working(0); + say STDERR "mounted persistence partition on $mountpoint"; + + $self->subtitle->set_text($self->encoding->decode(gettext( + q{Correcting permissions of the persistent volume.} + ))); + $self->description->set_text($self->encoding->decode(gettext( + q{The permissions of the persistent volume will be corrected.} + ))); + $self->working(1); + systemx(qw{sudo -n /usr/local/bin/tails-fix-persistent-volume-permissions}); + $self->working(0); + say STDERR "fixed permissions."; + + $self->subtitle->set_text($self->encoding->decode(gettext( + q{Creating default persistence configuration.} + ))); + $self->description->set_text($self->encoding->decode(gettext( + q{The default persistence configuration will be created.} + ))); + $self->working(1); + $self->create_configuration_cb->(); + $self->working(0); + say STDERR "created default persistence configuration."; + + $self->success_callback->(); + } +} + +method go_button_pressed () { + $_->hide foreach ($self->intro, $self->warning_area, $self->table,$self->passphrase_check_button); + $self->working(1); + $self->subtitle->set_text( + $self->encoding->decode(gettext(q{Creating...})), + ); + $self->description->set_text( + $self->encoding->decode(gettext(q{Creating the persistent volume...})), + ); + + $self->go_callback->( + passphrase => $self->passphrase_entry->get_text, + end_cb => sub { $self->operation_finished(@_) }, + ); +} + +with 'Tails::Persistence::Role::StatusArea'; +with 'Tails::Persistence::Role::SetupStep'; + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm new file mode 100644 index 0000000000000000000000000000000000000000..4fae8cce0421192e9c4df84dd35bcf952b08069b --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm @@ -0,0 +1,214 @@ +=head1 NAME + +Tails::Persistence::Step::Configure - configure which bits are persistent + +=cut + +package Tails::Persistence::Step::Configure; + +use 5.10.1; +use strictures 2; + +use Carp::Assert::More; +use Function::Parameters; +use Glib qw{TRUE FALSE}; +use Number::Format qw(:subs); +use Tails::Persistence::Configuration; +use Tails::Persistence::Configuration::Setting; +use Try::Tiny; + +use Locale::gettext; +use POSIX; +setlocale(LC_MESSAGES, ""); +textdomain("tails"); + +use Moo; +use MooX::late; +use MooX::HandlesVia; +use namespace::clean; + + +=head1 ATTRIBUTES + +=cut + +has 'configuration' => ( + required => 1, + is => 'ro', + isa => 'Tails::Persistence::Configuration', +); + +has 'persistence_partition_device_file' => ( + required => 1, + is => 'ro', + isa => 'Str', +); +has 'persistence_partition_size' => ( + required => 1, + is => 'ro', + isa => 'Int', +); + +has 'list_box' => ( + lazy_build => 1, + is => 'ro', + isa => 'Gtk3::ListBox', +); + +has 'settings_container' => ( + lazy_build => 1, + is => 'ro', + isa => 'Gtk3::ScrolledWindow', +); + +has 'settings' => ( + lazy_build => 1, + is => 'ro', + isa => 'ArrayRef[Tails::Persistence::Configuration::Setting]', + handles_via => [ 'Array' ], + handles => { + all_settings => 'elements', + push_settings => 'push', + }, +); + + +=head1 CONSTRUCTORS + +=cut + +method BUILD (@args) { + # Force initialization in the right order + assert_defined($self->configuration); + assert_defined($self->settings); + assert_defined($self->list_box); + assert_defined($self->settings_container); + + $self->title->set_text($self->encoding->decode(gettext( + q{Persistence wizard - Persistent volume configuration} + ))); + $self->subtitle->set_text($self->encoding->decode(gettext( + q{Specify the files that will be saved in the persistent volume} + ))); + $self->description->set_markup($self->encoding->decode(sprintf( + # TRANSLATORS: partition, size, device vendor, device model + gettext(q{The selected files will be stored in the encrypted partition %s (%s), on the <b>%s %s</b> device.}), + $self->persistence_partition_device_file, + format_bytes($self->persistence_partition_size, mode => "iec"), + $self->drive_vendor, + $self->drive_model + ))); + $self->go_button->set_label($self->encoding->decode(gettext(q{Save}))); + $self->go_button->set_sensitive(TRUE); +} + +method _build_settings_container () { + my $viewport = Gtk3::Viewport->new; + $viewport->set_shadow_type('GTK_SHADOW_NONE'); + $viewport->add($self->list_box); + + my $scrolled_win = Gtk3::ScrolledWindow->new; + $scrolled_win->set_policy('automatic', 'automatic'); + $scrolled_win->set_overlay_scrolling(FALSE); + $scrolled_win->add($viewport); + + return $scrolled_win; +} + +method _build_main_widget () { + my $box = Gtk3::VBox->new(); + $box->set_spacing(6); + $box->pack_start($self->title, FALSE, FALSE, 0); + $box->pack_start($self->subtitle, FALSE, FALSE, 0); + $box->pack_start($self->description, FALSE, FALSE, 0); + $box->pack_start($self->settings_container, TRUE, TRUE, 0); + $box->pack_start($self->status_area, FALSE, FALSE, 0); + + my $button_alignment = Gtk3::Alignment->new(1.0, 0, 0.2, 1.0); + $button_alignment->set_padding(0, 0, 10, 10); + $button_alignment->add($self->go_button); + $box->pack_start($button_alignment, FALSE, FALSE, 0); + + return $box; +} + +method _build_settings () { + my @settings; + foreach my $preset ($self->configuration->presets->all) { + my %init_args; + if (exists($preset->{configuration_app_desktop_id}) + && defined($preset->{configuration_app_desktop_id})) { + $init_args{configuration_app_desktop_id} = $preset->{configuration_app_desktop_id}; + } + push @settings, + Tails::Persistence::Configuration::Setting->new( + id => $preset->{id}, + atoms => $preset->{atoms}, + name => $preset->{name}, + description => $preset->{description}, + icon_name => $preset->{icon_name}, + enabled => $preset->{enabled}, + %init_args, + ); + } + foreach my $atom ($self->configuration->atoms_not_in_presets) { + push @settings, + Tails::Persistence::Configuration::Setting->new(atoms => [$atom]); + } + return \@settings; +} + +method _build_list_box () { + my $list_box = Gtk3::ListBox->new(); + $list_box->set_selection_mode('GTK_SELECTION_NONE'); + foreach my $setting ($self->all_settings) { + $list_box->insert($setting->main_widget, -1); + $list_box->insert(Gtk3::Separator->new('GTK_ORIENTATION_HORIZONTAL'), -1); + } + + return $list_box; +} + + +=head1 METHODS + +=cut + +method operation_finished ($error = undef) { + if ($error) { + $self->working(0); + say STDERR "$error"; + $self->subtitle->set_text($self->encoding->decode(gettext(q{Failed}))); + $self->description->set_text($error); + } + else { + say STDERR "done."; + $self->working(0); + $self->success_callback->(); + } +} + +method go_button_pressed () { + $self->settings_container->hide; + $self->working(1); + $self->subtitle->set_text( + $self->encoding->decode(gettext(q{Saving...})), + ); + $self->description->set_text( + $self->encoding->decode(gettext(q{Saving persistence configuration...})), + ); + + my $error; + try { + $self->go_callback->(); + } catch { + $error = $@; + }; + $self->operation_finished($error); +} + +with 'Tails::Persistence::Role::StatusArea'; +with 'Tails::Persistence::Role::SetupStep'; + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm new file mode 100644 index 0000000000000000000000000000000000000000..53b9f17c7ae91cf98885e0d1dba64958ba91880f --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm @@ -0,0 +1,132 @@ +=head1 NAME + +Tails::Persistence::Step::Delete - delete persistent storage + +=cut + +package Tails::Persistence::Step::Delete; + +use 5.10.1; +use strictures 2; + +use Function::Parameters; +use Glib qw{TRUE FALSE}; +use Number::Format qw(:subs); + +use Locale::gettext; +use POSIX; +setlocale(LC_MESSAGES, ""); +textdomain("tails"); + +use Moo; +use MooX::late; +use namespace::clean; + + +=head1 ATTRIBUTES + +=cut + +has 'persistence_partition_device_file' => ( + required => 1, + is => 'ro', + isa => 'Str', +); +has 'persistence_partition_size' => ( + required => 1, + is => 'ro', + isa => 'Int', +); +has 'warning_icon' => ( + lazy_build => 1, + is => 'rw', + isa => 'Gtk3::Image', +); + + +=head1 CONSTRUCTORS + +=cut + +method BUILD (@args) { + $self->title->set_text($self->encoding->decode(gettext( + q{Persistence wizard - Persistent volume deletion} + ))); + $self->subtitle->set_text($self->encoding->decode(gettext( + q{Your persistent data will be deleted.} + ))); + # TRANSLATORS: partition, size, device vendor, device model + $self->description->set_markup($self->encoding->decode(sprintf( + gettext(q{The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted.}), + $self->persistence_partition_device_file, + format_bytes($self->persistence_partition_size, mode => "iec"), + $self->drive_vendor, + $self->drive_model + ))); + $self->go_button->set_label($self->encoding->decode(gettext(q{Delete}))); + $self->go_button->set_sensitive(TRUE); +} + +method _build_warning_icon () { + Gtk3::Image->new_from_stock("gtk-dialog-warning", "GTK_ICON_SIZE_DIALOG"); +} + +method _build_main_widget () { + my $box = Gtk3::VBox->new(); + my $hbox = Gtk3::HBox->new(); + $box->set_spacing(6); + + $box->pack_start($self->title, FALSE, FALSE, 0); + $hbox->pack_start($self->warning_icon, FALSE, FALSE, 10); + $hbox->pack_start($self->subtitle, FALSE, FALSE, 0); + $box->pack_start($hbox, FALSE, FALSE, 0); + $box->pack_start($self->description, FALSE, FALSE, 0); + + $box->pack_start($self->status_area, FALSE, FALSE, 0); + + my $button_alignment = Gtk3::Alignment->new(1.0, 0, 0.2, 1.0); + $button_alignment->set_padding(0, 0, 10, 10); + $button_alignment->add($self->go_button); + $box->pack_start($button_alignment, FALSE, FALSE, 0); + + return $box; +} + +method operation_finished ($reply) { + my $error; + + { local $@; eval { $reply->get_result }; $error = $@; } + + if ($error) { + $self->working(0); + say STDERR "$error"; + $self->subtitle->set_text($self->encoding->decode(gettext(q{Failed}))); + $self->description->set_text($error); + } + else { + say STDERR "done."; + $self->working(0); + $self->warning_icon->hide(); + $self->success_callback->(); + } +} + +method go_button_pressed () { + $self->working(1); + $self->subtitle->set_text( + $self->encoding->decode(gettext(q{Deleting...})), + ); + $self->description->set_text( + $self->encoding->decode(gettext(q{Deleting the persistent volume...})), + ); + + $self->go_callback->( + end_cb => sub { $self->operation_finished(@_) }, + ); +} + +with 'Tails::Persistence::Role::StatusArea'; +with 'Tails::Persistence::Role::SetupStep'; + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Utils.pm b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Utils.pm new file mode 100644 index 0000000000000000000000000000000000000000..9e48c430ef12c60d23c5e3e78b9dd36634510c26 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Utils.pm @@ -0,0 +1,102 @@ +=head1 NAME + +Tails::Persistence::Utils - utilities for Tails persistent storage + +=cut + +package Tails::Persistence::Utils; + +use strictures 2; +use 5.10.1; + +use Carp; +use Function::Parameters; +use IPC::System::Simple qw{capturex}; +use List::MoreUtils qw{last_value}; +use Path::Tiny; +use Types::Standard qw(HashRef Int Str StrictNum); +use Types::Path::Tiny qw{Path}; + +use namespace::clean; + +use Exporter; +our @ISA = qw{Exporter}; +our @EXPORT = qw{align_up_at_2MiB align_down_at_2MiB step_name_to_class_name get_variable_from_file check_config_file_permissions}; + + +=head1 FUNCTIONS + +=cut + +fun round_down (StrictNum $number, StrictNum $round) { + return (int($number/$round)) * $round if $number % $round; + return $number; +} + +fun round_up (StrictNum $number, StrictNum $round) { + return (1 + int($number/$round)) * $round if $number % $round; + return $number; +} + +fun align_up_at_2MiB (Int $bytes) { + round_up($bytes, 2 * 2 ** 20) +} + +fun align_down_at_2MiB (Int $bytes) { + round_down($bytes, 2 * 2 ** 20) +} + +fun step_name_to_class_name (Str $name) { + 'Tails::Persistence::Step::' . ucfirst($name); +} + +fun get_variable_from_file (Str $file, Str $variable) { + foreach my $line (path($file)->lines({chomp => 1})) { + if (my ($name, $value) = + ($line =~ m{\A [[:space:]]* ($variable)=(.*) \z}xms)) { + return $value; + } + } + + return; +} + +=head2 check_config_file_permissions + +Refuse to read persistence.conf if it has different type, permission +or ownership than expected. We don't check the parent directory since +live-persist ensures it's right for us. + +=cut +fun check_config_file_permissions (Path $config_file_path, HashRef $expected) { + croak(q{persistence.conf is a symbolic link}) if -l $config_file_path; + croak(q{persistence.conf is not a plain file}) unless -f $config_file_path; + + my $st = $config_file_path->stat(); + + # ownership + foreach my $field (qw{uid gid}) { + my $actual_value = $st->$field; + croak("Expected value for '$field' is not defined") + unless defined $expected->{$field}; + $actual_value eq $expected->{$field} + or croak("persistence.conf has unsafe $field: '$actual_value'"); + } + + # mode + my $actual_mode = sprintf("%04o", $st->mode & oct(7777)); + my $expected_mode = sprintf("%04o", $expected->{mode}); + $actual_mode eq $expected_mode + or croak(sprintf( + "persistence.conf has unsafe mode: '%s'; expected: '%s'", + $actual_mode, $expected_mode)); + + # ACL + capturex('/bin/getfacl', '--omit-header', '--skip-base', $config_file_path) + eq $expected->{acl} + or croak("persistence.conf has unsafe ACLs"); + + return 1; +} + +1; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/t/00-load_all.t b/config/chroot_local-includes/usr/src/persistence-setup/t/00-load_all.t new file mode 100644 index 0000000000000000000000000000000000000000..daeac3549009acece08ebf998d1d1901ac5f344c --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/t/00-load_all.t @@ -0,0 +1,22 @@ +use Test::Most; + +use 5.10.1; +use strictures 2; + +use Module::Pluggable::Object; +eval { require Win32; }; + +# libs +my @needsX = qw{Tails::Persistence::Bootstrap}; +my $finder = Module::Pluggable::Object->new( + search_path => [ 'Tails::Persistence' ], +); +foreach my $class (grep !/\.ToDo/, + sort do { local @INC = ('lib'); $finder->plugins }) { + if (grep { $_ eq $class } @needsX) { + next unless defined($ENV{DISPLAY}) && length($ENV{DISPLAY}); + } + use_ok($class); +} + +done_testing(); diff --git a/config/chroot_local-includes/usr/src/persistence-setup/t/10-features.t b/config/chroot_local-includes/usr/src/persistence-setup/t/10-features.t new file mode 100644 index 0000000000000000000000000000000000000000..64cc4d16deca1604fa19e1e48e93f9e0ae0f4817 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/t/10-features.t @@ -0,0 +1,19 @@ +#!/usr/bin/perl + +use 5.10.1; +use strictures 2; + +use Test::More; + +BEGIN { + eval 'use Test::BDD::Cucumber::Loader'; + plan skip_all => 'Test::BDD::Cucumber::Loader required' if $@; +} + +use Test::BDD::Cucumber::Loader; +use Test::BDD::Cucumber::Harness::TestBuilder; + +my ($executor, @features) = Test::BDD::Cucumber::Loader->load('features/'); +my $harness = Test::BDD::Cucumber::Harness::TestBuilder->new({}); +$executor->execute( $_, $harness ) for @features; +done_testing; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/t/specs/Configuration.t b/config/chroot_local-includes/usr/src/persistence-setup/t/specs/Configuration.t new file mode 100644 index 0000000000000000000000000000000000000000..ab82382f0cf231a3394c5691daf4fa0821e4556a --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/t/specs/Configuration.t @@ -0,0 +1,74 @@ +use Test::Spec; + +use 5.10.1; +use File::Temp qw{tempfile}; +use Path::Tiny; +use Tails::Persistence::Configuration; + +describe 'A configuration object' => sub { + describe 'built with no argument and an empty configuration file' => sub { + my ($configuration, $config_fh, $config_filename); + before sub { + ($config_fh, $config_filename) = tempfile(); + print $config_fh ''; + close $config_fh; + $configuration = Tails::Persistence::Configuration->new( + config_file_path => $config_filename + ); + }; + it 'is defined' => sub { + ok(defined($configuration)); + }; + it 'has defined presets' => sub { + ok(defined($configuration->presets)); + }; + it 'can return all presets' => sub { + ok($configuration->presets->all); + }; + it 'can return all atoms' => sub { + ok($configuration->atoms); + }; + it 'has a GnuPG preset' => sub { + is(scalar(grep { $_->{id} eq 'GnuPG' } $configuration->presets->all), 1); + }; + it 'has a GnuPG atom' => sub { + is(scalar(grep { $_->destination eq '/home/amnesia/.gnupg' } $configuration->all_atoms), 1); + }; + it 'has 12 atoms' => sub { + is(scalar($configuration->all_atoms), 12); + }; + it 'has 1 enabled atom' => sub { + is(scalar($configuration->all_enabled_atoms), 1); + }; + it 'has 1 enabled line' => sub { + is(scalar($configuration->all_enabled_lines), 1); + }; + }; + describe 'built with no argument and a non-empty configuration file' => sub { + my ($configuration, $config_fh, $config_filename); + before sub { + ($config_fh, $config_filename) = tempfile(); + say $config_fh <<EOF +/home/amnesia link,source=dotfiles +/home/amnesia/.myapp source=myapp +/home/amnesia/.gnupg source=gnupg +EOF +; + close $config_fh; + $configuration = Tails::Persistence::Configuration->new( + config_file_path => $config_filename + ); + }; + it 'has 13 atoms' => sub { + is(scalar($configuration->all_atoms), 13); + }; + it 'has 4 enabled atoms' => sub { + is(scalar($configuration->all_enabled_atoms), 4); + }; + it 'has 4 enabled lines' => sub { + is(scalar($configuration->all_enabled_lines), 4); + }; + }; +}; + +runtests unless caller; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/t/specs/Configuration::Atom.t b/config/chroot_local-includes/usr/src/persistence-setup/t/specs/Configuration::Atom.t new file mode 100644 index 0000000000000000000000000000000000000000..553e3ecb493f3229e504406347fde0a87068ab95 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/t/specs/Configuration::Atom.t @@ -0,0 +1,84 @@ +use Test::Spec; +use Test::Exception; + +use 5.10.1; +use strictures 2; +use Function::Parameters; +use Tails::Persistence::Configuration::Atom; +use Tails::Persistence::Configuration::Line; + +fun stringify_and_split ($config_atom) { + split /\s+/, $config_atom->stringify; +} + +describe 'A configuration atom object' => sub { + describe 'built from a line' => sub { + my $atom; + before sub { + my $line = Tails::Persistence::Configuration::Line->new( + destination => 'dst' + ); + $atom = Tails::Persistence::Configuration::Atom->new_from_line( + $line, + enabled => 1, + ); + }; + it 'is defined' => sub { + ok(defined($atom)); + }; + }; + describe 'built with a destination' => sub { + my $atom; + before sub { + $atom = Tails::Persistence::Configuration::Atom->new( + destination => 'dst', enabled => 1, + ); + }; + it 'is defined' => sub { + ok(defined($atom)); + }; + it "stringifies to a string with exactly one column" => sub { + my ($destination, $options) = stringify_and_split($atom); + ok(defined($destination) && !defined($options)); + }; + }; + describe 'built with options optA,optB' => sub { + my $atom; + before sub { + $atom = Tails::Persistence::Configuration::Atom->new( + destination => 'dst', enabled => 1, options => [ qw{optA optB} ], + ); + }; + it 'has options equivalent to optA,optB' => sub { + ok($atom->options_are(qw{optA optB})); + }; + it 'has options equivalent to optB,optA' => sub { + ok($atom->options_are(qw{optB optA})); + }; + it 'has options not equivalent to optA,optB,optC' => sub { + ok(! $atom->options_are(qw{optA optB optC})); + }; + it 'has options not equivalent to optA' => sub { + ok(! $atom->options_are(qw{optA})); + }; + it 'equals equivalent line with options optA,optB' => sub { + my $line = Tails::Persistence::Configuration::Line->new( + destination => 'dst', options => [ qw{optA optB} ] + ); + ok($atom->equals_line($line)); + }; + it 'equals equivalent line with options optB,optA' => sub { + my $line = Tails::Persistence::Configuration::Line->new( + destination => 'dst', options => [ qw{optB optA} ] + ); + ok($atom->equals_line($line)); + }; + }; + describe '\'s constructor, run with no argument' => sub { + it 'dies' => sub { + dies_ok { Tails::Persistence::Configuration::Atom->new() }; + }; + }; +}; + +runtests unless caller; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/t/specs/Configuration::Line.t b/config/chroot_local-includes/usr/src/persistence-setup/t/specs/Configuration::Line.t new file mode 100644 index 0000000000000000000000000000000000000000..189e2b93085a649c94d9363dfec7b4cd1f441c72 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/t/specs/Configuration::Line.t @@ -0,0 +1,76 @@ +use Test::Spec; + +use 5.10.1; +use strictures 2; + +use Tails::Persistence::Configuration::Line; + +describe "A Line object" => sub { + + sub stringify_and_split { + my $config_line = shift; + split /\s+/, $config_line->stringify; + } + + describe "built with only a destination" => sub { + my $line; + before sub { + $line = Tails::Persistence::Configuration::Line->new( + destination => 'dst', + ); + }; + it "stringifies to a string with exactly one column" => sub { + my ($destination, $options) = stringify_and_split($line); + ok(defined($destination) && !defined($options)); + }; + }; + + describe "built from an empty string" => sub { + it "is undef" => sub { + ok(!defined( + Tails::Persistence::Configuration::Line->new_from_string("") + )); + }; + }; + + describe "built from a commented string" => sub { + it "is undef" => sub { + ok(!defined( + Tails::Persistence::Configuration::Line->new_from_string("# destination optA,optB") + )); + }; + }; + + describe "built from a one-column string" => sub { + my $line; + before sub { + $line = Tails::Persistence::Configuration::Line->new_from_string( + "/home/amnesia/Music" + ); + }; + it "stringifies to a string with exactly one column" => sub { + my ($destination, $options) = stringify_and_split($line); + ok(defined($destination) && !defined($options)); + }; + }; + + describe "built from a string with options" => sub { + my ($input_options, $line); + before sub { + $input_options = "optA,optB"; + $line = Tails::Persistence::Configuration::Line->new_from_string( + "destination $input_options" + ); + }; + it "stringifies to a string with the same options" => sub { + my ($destination, $options) = stringify_and_split($line); + ok(defined($options) + && length($options) + && $options eq $input_options + ); + }; + }; + +}; + +runtests unless caller; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/t/specs/Configuration::Presets.t b/config/chroot_local-includes/usr/src/persistence-setup/t/specs/Configuration::Presets.t new file mode 100644 index 0000000000000000000000000000000000000000..6ef3c7bca6c832911db8ddde7e497717e061d9e1 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/t/specs/Configuration::Presets.t @@ -0,0 +1,61 @@ +use Test::Spec; + +use 5.10.1; +use strictures 2; + +use Tails::Persistence::Configuration::Line; +use Tails::Persistence::Configuration::Presets; + +describe 'A configuration presets object' => sub { + my $presets; + before sub { + $presets = Tails::Persistence::Configuration::Presets->new(); + }; + it 'is defined' => sub { + ok(defined($presets)); + }; + it 'can return all presets' => sub { + ok($presets->all); + }; + it 'has 11 elements' => sub { + is(scalar($presets->all), 11); + }; + it 'has a GnuPG preset' => sub { + is(scalar(grep { $_->{name} eq 'GnuPG' } $presets->all), 1); + }; + it 'has a GnuPG atom' => sub { + is(scalar(grep { $_->destination eq '/home/amnesia/.gnupg' } $presets->atoms), 1); + }; + it 'has no XYZ preset' => sub { + is(scalar(grep { $_->{name} eq 'XYZ' } $presets->all), 0); + }; + describe 'with state set from a line that duplicates an enabled-by-default preset' => sub { + before sub { + $presets->set_state_from_lines( + Tails::Persistence::Configuration::Line->new( + destination => '/home/amnesia/Persistent', + ) + ); + }; + it 'has this preset enabled' => sub { + my @presets = grep { $_->destination eq '/home/amnesia/Persistent' } $presets->atoms; + ok($presets[0]->enabled); + }; + }; + describe 'with state set from a line that duplicates a disabled-by-default preset' => sub { + before sub { + $presets->set_state_from_lines( + Tails::Persistence::Configuration::Line->new( + destination => '/home/amnesia/.gnupg', + options => [ 'source=gnupg' ], + ) + ); + }; + it 'has this preset enabled' => sub { + my @presets = grep { $_->destination eq '/home/amnesia/.gnupg' } $presets->atoms; + ok($presets[0]->enabled); + }; + }; +}; + +runtests unless caller; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/t/specs/Utils.t b/config/chroot_local-includes/usr/src/persistence-setup/t/specs/Utils.t new file mode 100644 index 0000000000000000000000000000000000000000..14eb11b3f41fda7fe5c05c04d2422afcb06d2639 --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/t/specs/Utils.t @@ -0,0 +1,165 @@ +use Test::Spec; + +use 5.10.1; +use strictures 2; + +use Carp; +use File::stat; +use File::Temp qw{tempdir tempfile}; +use Path::Tiny; +use IPC::System::Simple qw{systemx}; +use Tails::Persistence::Utils qw{check_config_file_permissions get_variable_from_file}; +use Test::Fatal qw{dies_ok lives_ok}; + +describe 'A file' => sub { + my ($fh, $file); + before sub { + ($fh, $file) = tempfile(); + print $fh ''; + close $fh; + }; + describe 'that contains "a=b" on the first line' => sub { + before sub { + my $fh = path($file)->openw; + print $fh "a=b\n"; + }; + it 'has value "b" for variable "a"' => sub { + is(get_variable_from_file($file, "a"), "b"); + }; + }; + describe 'that contains " a=b" on the first line' => sub { + before sub { + my $fh = path($file)->openw; + print $fh " a=b\n"; + }; + it 'has value "b" for variable "a"' => sub { + is(get_variable_from_file($file, "a"), "b"); + }; + }; + describe 'that contains "a=b" on the second line' => sub { + before sub { + my $fh = path($file)->openw; + print $fh "bla\na=b\n"; + }; + it 'has value "b" for variable "a"' => sub { + is(get_variable_from_file($file, "a"), "b"); + }; + }; + describe 'that contains "a = b"' => sub { + before sub { + my $fh = path($file)->openw; + print $fh "a = b\n"; + }; + it 'has no value for variable "a"' => sub { + ok(! defined(get_variable_from_file($file, "a"))); + }; + }; +}; + +# check_config_file_permissions +describe 'A configuration file' => sub { + my ($file, $tempdir); + my $expected = { + mode => oct(600), + uid => '4242', + gid => '2424', + acl => '', + }; + before sub { + # Set up test environment + $tempdir = tempdir(CLEANUP => 1); + $file = path($tempdir, 'persistence.conf'); + # Check that we're running under fakeroot + my ($test_fh, $test_file) = tempfile(); + print $test_fh ''; + close $test_fh; + chown 0, 0, $test_file or croak "Please run this test under fakeroot"; + my $st = stat($test_file); + $st->uid eq 0 or croak "Please run this test under fakeroot"; + $st->gid eq 0 or croak "Please run this test under fakeroot"; + }; + describe 'that has correct ownership, permissions and ACL' => sub { + before sub { + $file->touch; + chown $expected->{uid}, $expected->{gid}, $file; + chmod $expected->{mode}, $file; + }; + it 'is accepted' => sub { + lives_ok { check_config_file_permissions($file, $expected) }; + }; + }; + describe 'that is a directory' => sub { + before sub { + mkdir $file; + chown $expected->{uid}, $expected->{gid}, $file; + chmod $expected->{mode}, $file; + }; + it 'is rejected' => sub { + dies_ok { check_config_file_permissions($file, $expected) }; + }; + }; + describe 'that is a broken symlink' => sub { + before sub { + my $destination = path($tempdir, 'destination'); + link $destination, $file; + }; + it 'is rejected' => sub { + dies_ok { check_config_file_permissions($file, $expected) }; + }; + }; + describe 'that is a symlink to a file with correct ownership, permissions and ACL' => sub { + before sub { + my $destination = path($tempdir, 'destination'); + $destination->touch; + chown $expected->{uid}, $expected->{gid}, $destination; + chmod $expected->{mode}, $destination; + symlink $destination, $file or croak "Could not link '$file' to '$destination'"; + }; + it 'is rejected' => sub { + dies_ok { check_config_file_permissions($file, $expected) }; + }; + }; + describe 'that has wrong owner' => sub { + before sub { + $file->touch; + chown 0, $expected->{gid}, $file; + chmod $expected->{mode}, $file; + }; + it 'is rejected' => sub { + dies_ok { check_config_file_permissions($file, $expected) }; + }; + }; + describe 'that has wrong owning group' => sub { + before sub { + $file->touch; + chown $expected->{uid}, 0, $file; + chmod $expected->{mode}, $file; + }; + it 'is rejected' => sub { + dies_ok { check_config_file_permissions($file, $expected) }; + }; + }; + describe 'that has wrong permissions' => sub { + before sub { + $file->touch; + chown $expected->{uid}, $expected->{gid}, $file; + chmod 0644, $file; + }; + it 'is rejected' => sub { + dies_ok { check_config_file_permissions($file, $expected) }; + }; + }; + describe 'that has wrong ACL' => sub { + before sub { + $file->touch; + chown $expected->{uid}, $expected->{gid}, $file; + chmod $expected->{mode}, $file; + systemx('/bin/setfacl', '-m', 'other:r', $file); + }; + it 'is rejected' => sub { + dies_ok { check_config_file_permissions($file, $expected) }; + }; + }; +}; + +runtests unless caller; diff --git a/config/chroot_local-includes/usr/src/persistence-setup/tails-persistence-setup.1.markdown b/config/chroot_local-includes/usr/src/persistence-setup/tails-persistence-setup.1.markdown new file mode 100644 index 0000000000000000000000000000000000000000..a4a250f8bab8186b6c1e2911f7ed35b12a4173eb --- /dev/null +++ b/config/chroot_local-includes/usr/src/persistence-setup/tails-persistence-setup.1.markdown @@ -0,0 +1,63 @@ +% TAILS-PERSISTENCE-SETUP(1) tails-persistence-setup user manual +% This manual page was written by Tails developers <tails@boum.org> +% February 20, 2012 + +NAME +==== + +tails-persistence-setup - Tails persistence setup wizard + +SYNOPSIS +======== + + tails-persistence-setup [OPTIONS] + +OPTIONS +======= + +`--help` +-------- + +Print usage information. + +`--verbose` +----------- + +Get more output. + +`--force` +--------- + +Make some sanity checks non-fatal. + +`--override-liveos-mountpoint` +------------------------------ + +Mountpoint of the Tails system image. + +`--override-system-partition` +----------------------------- + +The UDI of the partition where Tails is installed, e.g. +`/org/freedesktop/UDisks2/block_devices/sdb1`. + +`--step` +-------- + +Specify once per wizard step to run. + +Supported steps are: bootstrap, configure, delete. + +Example: `--step bootstrap --step configure`. + +`--force-enable-preset` +----------------------- + +Specify once per additional preset to forcibly enable. + +Example: `--force-enable-preset Thunderbird'` + +`--no-display-finished-message` +------------------------------- + +Don't display the "Persistence wizard - Finished" message. diff --git a/config/chroot_local-packageslists/tails-common.list b/config/chroot_local-packageslists/tails-common.list index 5ceeb43da7ddcf7b67100873566e554f8fd9ea6f..552c247d9a2cc2518985199ed0caaa7dea02c672 100644 --- a/config/chroot_local-packageslists/tails-common.list +++ b/config/chroot_local-packageslists/tails-common.list @@ -37,8 +37,6 @@ acl zenity # Needed by tails-htp-notify-user and others libdesktop-notify-perl -# Needed by tails-persistence-setup -libblockdev-crypto2 # Needed by tails-transform-mirror-url nodejs # Needed by SSH's ProxyCommand @@ -123,7 +121,9 @@ gobi-loader ## breaks lb because of desktop-base.postinst (see Debian bug #467620) #if ARCHITECTURE amd64 # grub +grub-efi-amd64-signed grub-efi-ia32 +shim-signed #endif gstreamer1.0-libav # Needed for audio in DVD playback diff --git a/config/chroot_local-packageslists/tails-iuk.list b/config/chroot_local-packageslists/tails-iuk.list index ccb66b5fb072e703d602961fe634df06488868d4..afaf1eccf0438331709e86f818684118672c0c07 100644 --- a/config/chroot_local-packageslists/tails-iuk.list +++ b/config/chroot_local-packageslists/tails-iuk.list @@ -23,4 +23,5 @@ libtry-tiny-perl libyaml-perl libyaml-libyaml-perl nocache +rsync sudo diff --git a/config/chroot_local-packageslists/tails-persistence-setup.list b/config/chroot_local-packageslists/tails-persistence-setup.list new file mode 100644 index 0000000000000000000000000000000000000000..d94dd239d8e149389eeed32eea8795a09627a190 --- /dev/null +++ b/config/chroot_local-packageslists/tails-persistence-setup.list @@ -0,0 +1,32 @@ +acl +electrum +gnome-icon-theme +libblockdev-crypto2 +libcarp-assert-more-perl +libclass-xsaccessor-perl +libclone-perl +libfunction-parameters-perl +libglib-perl +libgtk3-perl +libipc-system-simple-perl +liblist-moreutils-perl +liblocale-gettext-perl +libmoo-perl +libmoox-handlesvia-perl +libmoox-late-perl +libmoox-options-perl +libnamespace-clean-perl +libnet-dbus-glib-perl +libnet-dbus-perl +libnumber-format-perl +libpango-perl +libpath-tiny-perl +libstrictures-perl +libtry-tiny-perl +libtype-tiny-perl +libtype-tiny-xs-perl +libtypes-path-tiny-perl +libuuid-tiny-perl +pidgin +seahorse-daemon +thunderbird diff --git a/config/chroot_local-patches/apparmor-adjust-cupsd-profile.diff b/config/chroot_local-patches/apparmor-adjust-cupsd-profile.diff index c57ce30d9f7240229cb2132b28ad537a20950c1d..d85bdfcd88efb4fc0117723726f675079976407d 100644 --- a/config/chroot_local-patches/apparmor-adjust-cupsd-profile.diff +++ b/config/chroot_local-patches/apparmor-adjust-cupsd-profile.diff @@ -9,7 +9,7 @@ /usr/sbin/cupsd flags=(attach_disconnected) { #include <abstractions/base> #include <abstractions/bash> -@@ -58,9 +60,10 @@ +@@ -58,9 +60,9 @@ /dev/bus/usb/ r, /dev/bus/usb/** rw, /dev/parport* rw, @@ -17,13 +17,12 @@ - /etc/cups/** rw, - /etc/cups/interfaces/* ixrw, + @{etccups}/ rw, -+ /etc/.wh..wh.cups.*/ rw, + @{etccups}/** rw, + @{etccups}/interfaces/* ixrw, /etc/foomatic/* r, /etc/gai.conf r, /etc/papersize r, -@@ -75,9 +78,9 @@ +@@ -75,9 +77,9 @@ @{PROC}/*/auxv r, @{PROC}/sys/crypto/** r, /sys/** r, @@ -34,8 +33,8 @@ + /{usr/,}bin/{[^h],h[^p],hp[^i],hpi[^j],hpij[^s]}* ixr, /{usr/,}sbin/* ixr, /usr/lib/** rm, - -@@ -86,6 +89,7 @@ + +@@ -86,6 +88,7 @@ /usr/lib/cups/backend/dnssd ixr, /usr/lib/cups/backend/http ixr, /usr/lib/cups/backend/ipp ixr, @@ -43,8 +42,8 @@ /usr/lib/cups/backend/lpd ixr, /usr/lib/cups/backend/mdns ixr, /usr/lib/cups/backend/parallel ixr, -@@ -103,7 +107,14 @@ - +@@ -103,7 +106,14 @@ + # third party backends get no restrictions as they often need high # privileges and this is beyond our control - /usr/lib/cups/backend/* Cx -> third_party, @@ -56,33 +55,27 @@ + /usr/lib/cups/backend/gutenprint5[0-9]+usb Cx -> third_party, + /usr/lib/cups/backend/hp Cx -> third_party, + /usr/lib/cups/backend/hpfax Cx -> third_party, - + /usr/lib/cups/cgi-bin/* ixr, /usr/lib/cups/daemon/* ixr, -@@ -128,8 +139,13 @@ +@@ -128,6 +138,7 @@ /var/cache/cups/** rwk, /var/log/cups/ rw, /var/log/cups/* rw, + /var/spool/ rwk, /var/spool/cups/ rw, /var/spool/cups/** rw, -+ /var/cache/.wh..wh.cups.*/ rw, -+ /var/log/.wh..wh.cups.*/ rw, -+ /var/spool/.wh..wh.cups.*/ rw, -+ /var/.wh..wh.spool.*/ rw, - - # third-party printer drivers; no known structure here - /opt/** rix, -@@ -142,7 +158,7 @@ + +@@ -142,7 +153,7 @@ /etc/krb5.conf r, deny /etc/krb5.conf w, /etc/krb5.keytab rk, - /etc/cups/krb5.keytab rwk, + @{etccups}/krb5.keytab rwk, /tmp/krb5cc* k, - + # likewise authentication -@@ -198,8 +214,8 @@ +@@ -198,8 +209,8 @@ /{usr/,}bin/bash ixr, /{usr/,}bin/cp ixr, /etc/papersize r, diff --git a/config/chroot_local-patches/apparmor-adjust-tor-profile.diff b/config/chroot_local-patches/apparmor-adjust-tor-profile.diff index d984659cc5a0b11d5909c0a3b273a7d00c3b08a2..61eb3bfce7e6bfec8418862ae3dc5085c2657d1b 100644 --- a/config/chroot_local-patches/apparmor-adjust-tor-profile.diff +++ b/config/chroot_local-patches/apparmor-adjust-tor-profile.diff @@ -1,10 +1,9 @@ --- a/etc/apparmor.d/system_tor 2016-06-01 21:34:23.000000000 +0000 +++ b/etc/apparmor.d/system_tor 2016-06-10 11:09:09.249017739 +0000 -@@ -4,6 +4,18 @@ +@@ -4,6 +4,17 @@ profile system_tor flags=(attach_disconnected) { #include <abstractions/tor> - -+ link /etc/tor/.wh.torrc -> /.wh..wh.aufs, + + /etc/tor/* w, + + # Workaround Debian bug #862993 otherwise the Tor service cannot @@ -19,4 +18,3 @@ owner /var/lib/tor/** rwk, owner /var/lib/tor/ r, owner /var/log/tor/* w, - diff --git a/config/chroot_local-patches/live-boot:_dont_mount_live_overlay_twice.patch b/config/chroot_local-patches/live-boot:_expose_tmpfs_rw_branch.patch similarity index 63% rename from config/chroot_local-patches/live-boot:_dont_mount_live_overlay_twice.patch rename to config/chroot_local-patches/live-boot:_expose_tmpfs_rw_branch.patch index 82c3d1c258c449b63daaf31b6bb146520ddb37da..b4de6c0289673d7295383ca779d900666c315175 100644 --- a/config/chroot_local-patches/live-boot:_dont_mount_live_overlay_twice.patch +++ b/config/chroot_local-patches/live-boot:_expose_tmpfs_rw_branch.patch @@ -11,3 +11,10 @@ index 098111c..e1cfd15 100755 # Looking for persistence devices or files if [ -n "${PERSISTENCE}" ] && [ -z "${NOPERSISTENCE}" ] +@@ -360,5 +360,5 @@ + # ensure that a potentially stray tmpfs gets removed + # otherways, initramfs-tools is unable to remove /live + # and fails to boot +- umount /live/overlay > /dev/null 2>&1 || true ++ # umount /live/overlay > /dev/null 2>&1 || true + } diff --git a/debian/changelog b/debian/changelog index ccf16caa16433d8d3dbc2e8710f11242427a951d..b45c25dbd847d8d55141090a6b2a6713805dcc1f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,82 @@ +tails (4.5) unstable; urgency=medium + + * Security fixes + - Upgrade Tor Browser to 9.0.9-build1 (Closes: #17594). + - Upgrade BlueZ to 5.50-1.2~deb10u1 (DSA-4647). + - Upgrade GnuTLS to 3.6.7-4+deb10u3 (DSA-4652). + + -- Tails developers <tails@boum.org> Mon, 06 Apr 2020 21:51:05 +0200 + +tails (4.5~rc1) unstable; urgency=medium + + * Major changes + - Migrate from aufs to overlayfs (Closes: #8415). This change touches + many components which won't all be listed individually, but some + highlights are listed below: + ⋅ Adjust the build system to stop building the aufs kernel module. + ⋅ Switch the kernel command line from union=aufs to union=overlayfs. + ⋅ Adjust AppArmor profiles (Closes: #9045, #12112). + . Adapt chroot-browsers (Closes: #12105). + ⋅ Drop the aufs Git submodule. + ⋅ Make memory erasure feature compatible with overlayfs + (Closes: #15146). + ⋅ Make Upgrader support and also generate overlayfs-based IUKs by + default (Closes: #9373). + - Use GRUB with Secure Boot support for x86_64 (Closes: #6560, #15806). + This is also a large change, touching many components: + ⋅ Install grub from bullseye. + ⋅ Introduce a custom grub configuration file. + ⋅ Use a custom background image. + ⋅ Mimick Debian Installer's efi-image build script to handle all + details in binary local hooks. + ⋅ Add SYSLINUX in the syslinux bootloader menu, to make it easier to + troubleshoot GRUB vs. syslinux issues (Closes: #17538). + ⋅ Upgrader: Adjust to also handle files in EFI/debian when dealing + with file removals. + ⋅ Adjust test suite. + - Migrate test suite from Sikuli to a combination of OpenCV (image + matching), xdotool (mouse interaction), plus libvirt's send-key + (keyboard interaction) (Closes: #15460). This is another major + changes, allowing the test suite to run on Buster-based systems, + touching various areas of the test suite, among which: + ⋅ Add workaround for the Greeter when restoring snapshot. + ⋅ Fix dependencies for Buster. + ⋅ Replace some Sikuli-based options with some OpenCV-based ones + (e.g. --retry-find → --image-bumping-mode). + ⋅ Handle non-English keyboards. + ⋅ Fix --capture on Buster and above. + ⋅ Deal with Buster having migrated from avconv to ffmpeg. + + * Security fixes + - Upgrade ICU to 63.1-6+deb10u1 (DSA-4646). + + * Minor improvements and updates + - Refactor tails-documentation (Closes: #16903). + + * Build system + - Freeze APT snapshots for 4.5~rc1. + - Rakefile: always disable website caching when building from a tag + (Closes: #17513). + - Rakefile: fix recommended permissions (libvirt needs +r to share the + source tree with the Vagrant box). + - Import persistence-setup.git from its own repository into tails.git + (Closes: #17526, #6487). + - IUK: ensure rsync runtime dependency is installed. + + * Test suite + - Adjust for the aufs → overlayfs migration (Closes: #12106, #17440, + #17451). + - run_test_suite: don't print usage on error. + - run_test_suite: --view/--vnc-server-only are only supported on x11. + - Optimize checking if file is empty. + - Speed up some test failures to avoid resource starvation. + - Check for tcplay dependency. + - Increase chances chutney starts after unclean shutdown. + - Make chutney log what it is doing. + - Make opening Thunderbird's Extensions tab more robust. + + -- Tails developers <tails@boum.org> Thu, 26 Mar 2020 22:51:35 +0100 + tails (4.4.1) unstable; urgency=medium * Security fixes diff --git a/features/config/defaults.yml b/features/config/defaults.yml index 0c450ae03e0d0410ccf9ccef1bf04f920b8c8f49..eb89191a9058846300b8847bdd6abb12d79244fe 100644 --- a/features/config/defaults.yml +++ b/features/config/defaults.yml @@ -1,9 +1,8 @@ CAPTURE: false CAPTURE_ALL: false INTERACTIVE_DEBUGGING: false +IMAGE_BUMPING_MODE: false MAX_NEW_TOR_CIRCUIT_RETRIES: 10 -SIKULI_RETRY_FINDFAILED: false -SIKULI_FUZZY_IMAGE_MATCHING: false TMPDIR: "/tmp/TailsToaster" Unsafe_SSH_private_key: | diff --git a/features/emergency_shutdown.feature b/features/emergency_shutdown.feature index 17370e7bdb200ab5833ccd59f24cba0c8ee2fe65..408fe05f805848eb2d87d4982064f533c1af5807 100644 --- a/features/emergency_shutdown.feature +++ b/features/emergency_shutdown.feature @@ -14,7 +14,7 @@ Feature: Emergency shutdown When I eject the boot medium Then Tails eventually shuts down - Scenario: Tails erases memory on DVD boot medium removal: aufs read-write branch + Scenario: Tails erases memory on DVD boot medium removal: overlayfs read-write branch Given I have started Tails from DVD without network and logged in And I prepare Tails for memory erasure tests And I fill a 128 MiB file with a known pattern on the root filesystem diff --git a/features/erase_memory.feature b/features/erase_memory.feature index 84c7f13c31e361c51fc17ed3b9c427cfdec26ee1..6a0d50ce40b2f60cd1e155a99d2663322262f182 100644 --- a/features/erase_memory.feature +++ b/features/erase_memory.feature @@ -61,7 +61,7 @@ Feature: System memory erasure on shutdown When I umount the USB drive Then I find very few patterns in the guest's memory - Scenario: Erasure of the aufs read-write branch on shutdown + Scenario: Erasure of the overlayfs read-write branch on shutdown Given I have started Tails from DVD without network and logged in And I prepare Tails for memory erasure tests When I fill a 128 MiB file with a known pattern on the root filesystem diff --git a/features/evince.feature b/features/evince.feature index c9501f91ac8433a3e04cab75ce639d3de9b21afe..4750896cb2de1e4460d73fa0577665940b5a65ff 100644 --- a/features/evince.feature +++ b/features/evince.feature @@ -25,24 +25,24 @@ Feature: Using Evince Given I have started Tails from DVD without network and logged in And I copy "/usr/share/cups/data/default-testpage.pdf" to "/home/amnesia/.gnupg" as user "amnesia" Then the file "/home/amnesia/.gnupg/default-testpage.pdf" exists - And the file "/lib/live/mount/overlay/home/amnesia/.gnupg/default-testpage.pdf" exists - And the file "/live/overlay/home/amnesia/.gnupg/default-testpage.pdf" exists + And the file "/lib/live/mount/overlay/rw/home/amnesia/.gnupg/default-testpage.pdf" exists after at most 10 seconds + And the file "/live/overlay/rw/home/amnesia/.gnupg/default-testpage.pdf" exists after at most 10 seconds Given I start monitoring the AppArmor log of "/usr/bin/evince" When I try to open "/home/amnesia/.gnupg/default-testpage.pdf" with Evince Then I see "EvinceUnableToOpen.png" after at most 10 seconds And AppArmor has denied "/usr/bin/evince" from opening "/home/amnesia/.gnupg/default-testpage.pdf" When I close Evince Given I restart monitoring the AppArmor log of "/usr/bin/evince" - When I try to open "/lib/live/mount/overlay/home/amnesia/.gnupg/default-testpage.pdf" with Evince + When I try to open "/lib/live/mount/overlay/rw/home/amnesia/.gnupg/default-testpage.pdf" with Evince Then I see "EvinceUnableToOpen.png" after at most 10 seconds - And AppArmor has denied "/usr/bin/evince" from opening "/lib/live/mount/overlay/home/amnesia/.gnupg/default-testpage.pdf" + And AppArmor has denied "/usr/bin/evince" from opening "/lib/live/mount/overlay/rw/home/amnesia/.gnupg/default-testpage.pdf" When I close Evince Given I restart monitoring the AppArmor log of "/usr/bin/evince" - When I try to open "/live/overlay/home/amnesia/.gnupg/default-testpage.pdf" with Evince + When I try to open "/live/overlay/rw/home/amnesia/.gnupg/default-testpage.pdf" with Evince Then I see "EvinceUnableToOpen.png" after at most 10 seconds # Due to our AppArmor aliases, /live/overlay will be treated # as /lib/live/mount/overlay. - And AppArmor has denied "/usr/bin/evince" from opening "/lib/live/mount/overlay/home/amnesia/.gnupg/default-testpage.pdf" + And AppArmor has denied "/usr/bin/evince" from opening "/lib/live/mount/overlay/rw/home/amnesia/.gnupg/default-testpage.pdf" #10994 @fragile diff --git a/features/images/PinEntryPrompt.png b/features/images/PinEntryPrompt.png deleted file mode 100644 index f0bb6b9a642706de81620eaa9619291947fe77ed..0000000000000000000000000000000000000000 Binary files a/features/images/PinEntryPrompt.png and /dev/null differ diff --git a/features/images/PolicyKitAuthFailure.png b/features/images/PolicyKitAuthFailure.png index e39c5fba7d41b9ed9516c3439af9929cec771a36..67eea505c9c8a4c896db5483632690adc7e66f56 100644 Binary files a/features/images/PolicyKitAuthFailure.png and b/features/images/PolicyKitAuthFailure.png differ diff --git a/features/images/TailsBootMenuGRUB.png b/features/images/TailsBootMenuGRUB.png new file mode 100644 index 0000000000000000000000000000000000000000..827e9c43dd64e4277027a5c603021277e538df86 Binary files /dev/null and b/features/images/TailsBootMenuGRUB.png differ diff --git a/features/images/TailsBootMenuKernelCmdlineUEFI.png b/features/images/TailsBootMenuKernelCmdlineUEFI.png index 5e5de301cee9cb4c7b473665abce4d3d6bf31ec1..dbd098787ac295c24ddc03098526f6fc814d3710 100644 Binary files a/features/images/TailsBootMenuKernelCmdlineUEFI.png and b/features/images/TailsBootMenuKernelCmdlineUEFI.png differ diff --git a/features/images/TailsBootMenuSyslinux.png b/features/images/TailsBootMenuSyslinux.png new file mode 100644 index 0000000000000000000000000000000000000000..d6a974221664e2780da550fe2bcd88312ce24c26 Binary files /dev/null and b/features/images/TailsBootMenuSyslinux.png differ diff --git a/features/images/TailsGreeterAddMoreOptions.png b/features/images/TailsGreeterAddMoreOptions.png index 9c196356b7069cc5bf21a475416ed46ee7e34296..118934a3fcde8b100b470bea2c25b36f0cbee502 100644 Binary files a/features/images/TailsGreeterAddMoreOptions.png and b/features/images/TailsGreeterAddMoreOptions.png differ diff --git a/features/images/TailsUpgraderUpgradeTo2.2~test.png b/features/images/TailsUpgraderUpgradeTo2.2~test.png deleted file mode 100644 index be447ed5291326796fa33422c288f00939791855..0000000000000000000000000000000000000000 Binary files a/features/images/TailsUpgraderUpgradeTo2.2~test.png and /dev/null differ diff --git a/features/images/TailsUpgraderUpgradeTo2.2~testoverlayfs.png b/features/images/TailsUpgraderUpgradeTo2.2~testoverlayfs.png new file mode 100644 index 0000000000000000000000000000000000000000..4c6916048f399a84fab60e3a6a8c3f2975ad0d26 Binary files /dev/null and b/features/images/TailsUpgraderUpgradeTo2.2~testoverlayfs.png differ diff --git a/features/images/TailsUpgraderUpgradeTo2.3~test.png b/features/images/TailsUpgraderUpgradeTo2.3~test.png deleted file mode 100644 index c1431d3b83f0e98e93b1893ac5d3014ecea03ea7..0000000000000000000000000000000000000000 Binary files a/features/images/TailsUpgraderUpgradeTo2.3~test.png and /dev/null differ diff --git a/features/images/TailsUpgraderUpgradeTo2.3~testoverlayfs.png b/features/images/TailsUpgraderUpgradeTo2.3~testoverlayfs.png new file mode 100644 index 0000000000000000000000000000000000000000..1992bb8764b0af37478801d229e3aa29b97ba477 Binary files /dev/null and b/features/images/TailsUpgraderUpgradeTo2.3~testoverlayfs.png differ diff --git a/features/pidgin.feature b/features/pidgin.feature index 51a5aaeda2626b21ba41e97895086fe38619f6ef..dda9fc402b03e3262a5a1c79d79cf92b5a00f7cc 100644 --- a/features/pidgin.feature +++ b/features/pidgin.feature @@ -87,10 +87,10 @@ Feature: Chatting anonymously using Pidgin Then I cannot add a certificate from the "/home/amnesia/.gnupg" directory to Pidgin When I close Pidgin's certificate import failure dialog And I close Pidgin's certificate manager - Then I cannot add a certificate from the "/lib/live/mount/overlay/home/amnesia/.gnupg" directory to Pidgin + Then I cannot add a certificate from the "/lib/live/mount/overlay/rw/home/amnesia/.gnupg" directory to Pidgin When I close Pidgin's certificate import failure dialog And I close Pidgin's certificate manager - Then I cannot add a certificate from the "/live/overlay/home/amnesia/.gnupg" directory to Pidgin + Then I cannot add a certificate from the "/live/overlay/rw/home/amnesia/.gnupg" directory to Pidgin @check_tor_leaks Scenario: Using a persistent Pidgin configuration diff --git a/features/scripts/opencv_match_template.py b/features/scripts/opencv_match_template.py new file mode 100755 index 0000000000000000000000000000000000000000..7047fb73d5a1ef40afdacf57ef207a81ea2bbb3a --- /dev/null +++ b/features/scripts/opencv_match_template.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python3 + +# XXX:Buster: when we drop support for Stretch we can remove this +# import. +from __future__ import print_function + +import cv2 +import os +import sys +import traceback +from PIL import Image + +class FindFailed(RuntimeError): + pass + +def match(image, candidate, sensitivity, show_match=False): + """ + Returns the pos of candidate inside image, or raises if no match + """ + assert(sensitivity < 1.0) + image_rgb = cv2.imread(image, 1) + image_gray = cv2.cvtColor(image_rgb, cv2.COLOR_BGR2GRAY) + template = cv2.imread(candidate, 0) + w, h = template.shape[::-1] + res = cv2.matchTemplate(image_gray, template, cv2.TM_CCOEFF_NORMED) + _, val, _, pos = cv2.minMaxLoc(res) + x, y = pos + if val < sensitivity: + raise FindFailed + cv2.imwrite(os.environ.get('TMPDIR', '/tmp') + '/last_opencv_match.png', + image_rgb[y:y+h, x:x+w]) + if show_match: + cv2.rectangle(image_rgb, pos, (x + w, y + h), (0, 0, 255), 1) + cv2.imshow('Found match!', image_rgb) + cv2.waitKey(0) + return [x, y, w, h] + +def main(): + try: + try: + sensitivity = float(sys.argv[3]) + except IndexError: + sensitivity = 0.9 + try: + show_match = sys.argv[4] == 'true' + except IndexError: + show_match = False + print(*match(sys.argv[1], sys.argv[2], + sensitivity, show_match)) + except FindFailed: + sys.exit(1) + except IndexError: + print("error: first argument must be the screen and the second the " + + "image to find inside the screen", file=sys.stderr) + sys.exit(2) + except: + traceback.print_exc() + sys.exit(127) + +if __name__ == "__main__": + main() diff --git a/features/step_definitions/.rubocop.yml b/features/step_definitions/.rubocop.yml new file mode 100644 index 0000000000000000000000000000000000000000..6a53d221e695e051dde879ddca92fcc6d0815a14 --- /dev/null +++ b/features/step_definitions/.rubocop.yml @@ -0,0 +1,4 @@ +Lint/AmbiguousRegexpLiteral: + Enabled: false +Style/GlobalVars: + Enabled: false diff --git a/features/step_definitions/apt.rb b/features/step_definitions/apt.rb index bbb2eedc03f6b61d755177547115d985d760c48b..a8a4280c82a838c2a8b4ae8f0327f30aa14b3f87 100644 --- a/features/step_definitions/apt.rb +++ b/features/step_definitions/apt.rb @@ -151,7 +151,7 @@ When /^I update APT using Synaptic$/ do try_for(15*60, :msg => "Took too much time to download the APT data") { !$vm.has_process?("/usr/lib/apt/methods/tor+http") } - assert_raise(RuntimeError) do + assert_raise(Dogtail::Failure) do @synaptic.child(roleName: 'dialog', recursive: false) .child('Error', roleName: 'icon', retry: false) end diff --git a/features/step_definitions/browser.rb b/features/step_definitions/browser.rb index 2be54536614389f33d492588ce78b068bda07df5..6d2406339c1930f877a3a82be1a92b3db44de0e8 100644 --- a/features/step_definitions/browser.rb +++ b/features/step_definitions/browser.rb @@ -14,7 +14,7 @@ end # otherwise, browser.tabs.warnOnClose will block this with a # "Quit and close tabs?" dialog. When /^I close the (?:Tor|Unsafe) Browser$/ do - @screen.type("q", Sikuli::KeyModifier.CTRL) + @screen.press("ctrl", "q") end def xul_application_info(application) @@ -92,12 +92,12 @@ When /^I open the address "([^"]*)" in the (.*)$/ do |address, browser| # shown, which we work around by pasting the address from the # clipboard, in one go. $vm.set_clipboard(address) - @screen.type('v', Sikuli::KeyModifier.CTRL) - @screen.type(Sikuli::Key.ENTER) + @screen.press("ctrl", 'v') + @screen.press("Return") end recovery_on_failure = Proc.new do - @screen.type(Sikuli::Key.ESC) - @screen.waitVanish(info[:browser_stop_button_image], 3) + @screen.press("Escape") + @screen.wait_vanish(info[:browser_stop_button_image], 3) open_address.call end if browser == "Tor Browser" @@ -107,7 +107,7 @@ When /^I open the address "([^"]*)" in the (.*)$/ do |address, browser| end open_address.call retry_method.call(recovery_on_failure) do - @screen.waitVanish(info[:browser_stop_button_image], 120) + @screen.wait_vanish(info[:browser_stop_button_image], 120) @screen.wait(info[:browser_reload_button_image], 120) end end @@ -117,7 +117,7 @@ def page_has_loaded_in_the_Tor_Browser(page_titles, language) page_titles = [ page_titles ] end assert_equal(Array, page_titles.class) - if @language == 'German' + if $language == 'German' browser_name = 'Tor-Browser' reload_action = 'Neu laden' else @@ -142,7 +142,7 @@ end # This step is limited to the Tor Browser due to #7502 since dogtail # uses the same interface. Then /^"([^"]+)" has loaded in the Tor Browser$/ do |title| - page_has_loaded_in_the_Tor_Browser(title, @language) + page_has_loaded_in_the_Tor_Browser(title, $language) end Then /^the (.*) has no plugins installed$/ do |browser| @@ -217,7 +217,7 @@ end When /^I save the file to the default Tor Browser download directory$/ do @screen.click('BrowserDownloadDialogSaveAsButton.png') @screen.wait('Gtk3SaveFileDialog.png', 10) - @screen.type(Sikuli::Key.ENTER) + @screen.press("Return") end Then /^the file is saved to the default Tor Browser download directory$/ do @@ -248,8 +248,8 @@ Then /^I can listen to an Ogg audio track in Tor Browser$/ do step "I open the address \"#{test_url}\" in the Tor Browser" end recovery_on_failure = Proc.new do - @screen.type(Sikuli::Key.ESC) - @screen.waitVanish(info[:browser_stop_button_image], 3) + @screen.press("Escape") + @screen.wait_vanish(info[:browser_stop_button_image], 3) open_test_url.call end step "no application is playing audio" @@ -266,8 +266,8 @@ Then /^I can watch a WebM video in Tor Browser$/ do step "I open the address \"#{test_url}\" in the Tor Browser" end recovery_on_failure = Proc.new do - @screen.type(Sikuli::Key.ESC) - @screen.waitVanish(info[:browser_stop_button_image], 3) + @screen.press("Escape") + @screen.wait_vanish(info[:browser_stop_button_image], 3) open_test_url.call end open_test_url.call diff --git a/features/step_definitions/checks.rb b/features/step_definitions/checks.rb index 504f81dcabf780e62f554c8c732ae323725421bc..5166b4743a184109ed60243de138d44c44d7e207 100644 --- a/features/step_definitions/checks.rb +++ b/features/step_definitions/checks.rb @@ -95,7 +95,7 @@ Then /^the VirtualBox guest modules are available$/ do end Then /^the support documentation page opens in Tor Browser$/ do - if @language == 'German' + if $language == 'German' expected_title = 'Tails - Hilfe & Support' expected_heading = 'Die Dokumentation durchsuchen' else @@ -103,7 +103,7 @@ Then /^the support documentation page opens in Tor Browser$/ do expected_heading = 'Search the documentation' end step "\"#{expected_title}\" has loaded in the Tor Browser" - if @language == 'German' + if $language == 'German' browser_name = 'Tor-Browser' else browser_name = 'Tor Browser' @@ -193,9 +193,9 @@ end When /^I disable all networking in the Tails Greeter$/ do open_greeter_additional_settings() - @screen.wait_and_click('TailsGreeterNetworkConnection.png', 30) - @screen.wait_and_click('TailsGreeterDisableAllNetworking.png', 10) - @screen.wait_and_click("TailsGreeterAdditionalSettingsAdd.png", 10) + @screen.wait('TailsGreeterNetworkConnection.png', 30).click + @screen.wait('TailsGreeterDisableAllNetworking.png', 10).click + @screen.wait("TailsGreeterAdditionalSettingsAdd.png", 10).click end Then /^the Tor Status icon tells me that Tor is( not)? usable$/ do |not_usable| diff --git a/features/step_definitions/chutney.rb b/features/step_definitions/chutney.rb index 71d23a7e4a8c9026689467d63a9ff90dd9858e16..a071c651d1ce53305a84e87a21ecf0b2358b2833 100644 --- a/features/step_definitions/chutney.rb +++ b/features/step_definitions/chutney.rb @@ -16,7 +16,7 @@ def ensure_chutney_is_running network_definition = "#{GIT_DIR}/features/chutney/test-network" env = { 'CHUTNEY_LISTEN_ADDRESS' => chutney_listen_address, - 'CHUTNEY_DATA_DIR' => "#{$config['TMPDIR']}/chutney-data/", + 'CHUTNEY_DATA_DIR' => "#{$config['TMPDIR']}/chutney-data", # The default value (60s) is too short for "chutney wait_for_bootstrap" # to succeed reliably. 'CHUTNEY_START_TIME' => '600', @@ -29,11 +29,23 @@ def ensure_chutney_is_running end chutney_cmd = Proc.new do |cmd| + debug_log("chutney: #{cmd}") Dir.chdir(chutney_src_dir) do cmd_helper([chutney_script, cmd, network_definition], env) end end + # After an unclean shutdown of the test suite (e.g. Ctrl+C) the + # tor processes are left running, listening on the same ports we + # are about to use. If chutney's data dir also was removed, this + # will prevent chutney from starting the network unless the tor + # processes are killed manually. + begin + cmd_helper(["pkill", "--full", "--exact", + "tor -f #{env['CHUTNEY_DATA_DIR']}/nodes/.*/torrc --quiet"]) + rescue + end + if KEEP_SNAPSHOTS begin chutney_cmd.call('start') @@ -162,10 +174,15 @@ end def chutney_onionservice_redir(remote_address, remote_port) redir_unit_name = 'tails-test-suite-redir.service' + if ENV['USER'] == 'root' + bus = '--system' + else + bus = '--user' + end kill_redir = Proc.new do begin - if system('/bin/systemctl', '--quiet', 'is-active', redir_unit_name) - system('/bin/systemctl', 'stop', redir_unit_name) + if system('/bin/systemctl', bus, '--quiet', 'is-active', redir_unit_name) + system('/bin/systemctl', bus, 'stop', redir_unit_name) end rescue # noop @@ -175,6 +192,7 @@ def chutney_onionservice_redir(remote_address, remote_port) local_address, local_port, _ = chutney_onionservice_info $chutney_onionservice_job = fatal_system( '/usr/bin/systemd-run', + bus, "--unit=#{redir_unit_name}", '--service-type=forking', '--quiet', diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb index 965d11eb9b9ceb2c8f30bbfd5df0118d2c00dd70..6250d9bc0616856f46cc1061ca5c38a70cd05186 100644 --- a/features/step_definitions/common_steps.rb +++ b/features/step_definitions/common_steps.rb @@ -6,24 +6,32 @@ def post_vm_start_hook # focus to virt-viewer or similar) so we do that now rather than # having an important click lost. The point we click should be # somewhere where no clickable elements generally reside. - @screen.click_point(@screen.w - 1, @screen.h/2) - # Increase the chances that by the time we leave this function, if - # the above click has opened the Applications menu (which sometimes - # happens, go figure), that menu was closed and the desktop is back - # to its normal state. Otherwise, all kinds of trouble may arise: - # for example, pressing SUPER to open the Activities Overview would - # fail (SUPER has no effect when the Applications menu is still - # opened). We sleep here, instead of in "I start […] via GNOME - # Activities Overview", because it's our responsibility to return to - # a normal desktop state that any following step can rely upon. - @screen.type(Sikuli::Key.ESC) + @screen.click(@screen.w - 1, @screen.h/2) sleep 1 end -def post_snapshot_restore_hook +def post_snapshot_restore_hook(snapshot_name) $vm.wait_until_remote_shell_is_up post_vm_start_hook + # When restoring from a snapshot while the Greeter is running it + # seems virt-viewer's auto-resolution feature moves the Greeter's + # window outside of the visible screen. + if snapshot_name.end_with?('tails-greeter') + if ! @screen.exists('TailsGreeter.png') + $vm.execute_successfully("env $(tr '\\0' '\\n' < /proc/$(pgrep --newest --euid Debian-gdm gnome-shell)/environ | grep -E '(DBUS_SESSION_BUS_ADDRESS|DISPLAY|XAUTHORITY|XDG_RUNTIME_DIR)') sudo -u Debian-gdm xdotool search --onlyvisible 'Welcome to Tails!' windowmove --sync 0 0") + end + end + + # Increase the chances that by the time we leave this function, if + # the click in post_vm_start_hook() has opened the Applications menu + # (which sometimes happens, go figure), that menu is closed and the + # desktop is back to its normal state. Otherwise, all kinds of + # trouble may arise: for example, pressing SUPER to open the + # Activities Overview would fail (SUPER has no effect when the + # Applications menu is still opened). + @screen.press("Escape") + # The guest's Tor's circuits' states are likely to get out of sync # with the other relays, so we ensure that we have fresh circuits. # Time jumps and incorrect clocks also confuses Tor in many ways. @@ -187,80 +195,98 @@ end def boot_menu_cmdline_image case @os_loader - when "UEFI" + when 'UEFI' 'TailsBootMenuKernelCmdlineUEFI.png' else 'TailsBootMenuKernelCmdline.png' end end -Given /^Tails is at the boot menu's cmdline( after rebooting)?$/ do |reboot| - boot_timeout = 3*60 +def boot_menu_image + case @os_loader + when 'UEFI' + 'TailsBootMenuGRUB.png' + else + 'TailsBootMenuSyslinux.png' + end +end + +Given /^Tails is at the boot menu's cmdline$/ do + boot_timeout = 3 * 60 # Simply looking for the boot splash image is not robust; sometimes - # sikuli is not fast enough to see it. Here we hope that spamming - # TAB, which will halt the boot process by showing the prompt for - # the kernel cmdline, will make this a bit more robust. We want this - # spamming to happen in parallel with Sikuli waiting for the image, - # but multi-threading etc is working extremely poor in our Ruby + - # jrb environment when Sikuli is involved. Hence we run the spamming - # from a separate process. - tab_spammer_code = <<-EOF + # our image matching is not fast enough to see it. Here we hope that spamming + # UP, which will halt the boot process, will make this a bit more robust. + up_spammer_code = <<-SCRIPT require 'libvirt' - tab_key_code = 0xf + up_key_code = 0x67 virt = Libvirt::open("qemu:///system") begin domain = virt.lookup_domain_by_name('#{$vm.domain_name}') loop do - domain.send_key(Libvirt::Domain::KEYCODE_SET_LINUX, 0, [tab_key_code]) + domain.send_key(Libvirt::Domain::KEYCODE_SET_LINUX, 0, [up_key_code]) sleep 1 end ensure virt.close end - EOF + SCRIPT # The below code is not completely reliable, so we might have to # retry by rebooting. try_for(boot_timeout) do begin - tab_spammer = IO.popen(['ruby', '-e', tab_spammer_code]) - @screen.wait(boot_menu_cmdline_image, 15) + up_spammer = IO.popen(['ruby', '-e', up_spammer_code]) + @screen.wait(boot_menu_image, 15) rescue FindFailed => e - debug_log('We missed the boot menu before we could deal with it, ' + + debug_log('We missed the boot menu before we could deal with it, ' \ 'resetting...') $vm.reset raise e ensure - Process.kill("TERM", tab_spammer.pid) - tab_spammer.close + Process.kill('TERM', up_spammer.pid) + up_spammer.close end true end + + # Navigate to the end of the kernel command-line + case @os_loader + when 'UEFI' + @screen.type('e') + 3.times { @screen.press('Down') } + @screen.press('End') + else + @screen.press('Tab') + end + @screen.wait(boot_menu_cmdline_image, 5) end -Given /^the computer (re)?boots Tails( with genuine APT sources)?$/ do |reboot, keep_apt_sources| - step "Tails is at the boot menu's cmdline" + (reboot ? ' after rebooting' : '') - @screen.type(" autotest_never_use_this_option blacklist=psmouse #{@boot_options}" + - Sikuli::Key.ENTER) - @screen.wait('TailsGreeter.png', 5*60) +Given /^the computer (?:re)?boots Tails( with genuine APT sources)?$/ do |keep_apt_sources| + step "Tails is at the boot menu's cmdline" + boot_key = @os_loader == 'UEFI' ? 'F10' : 'Return' + @screen.type(' autotest_never_use_this_option' \ + ' blacklist=psmouse' \ + " #{@boot_options}", + [boot_key]) + @screen.wait('TailsGreeter.png', 5 * 60) $vm.wait_until_remote_shell_is_up step 'I configure Tails to use a simulated Tor network' # This is required to use APT in the test suite as explained in # commit e2510fae79870ff724d190677ff3b228b2bf7eac - step 'I configure APT to use non-onion sources' if not keep_apt_sources + step 'I configure APT to use non-onion sources' unless keep_apt_sources end Given /^I log in to a new session(?: in )?(|German)$/ do |lang| case lang when 'German' - @language = "German" - @screen.wait_and_click('TailsGreeterLanguage.png', 10) + $language = "German" + @screen.wait('TailsGreeterLanguage.png', 10).click @screen.wait('TailsGreeterLanguagePopover.png', 10) - @screen.type(@language) + @screen.type($language) sleep(2) # Gtk needs some time to filter the results - @screen.type(Sikuli::Key.ENTER) - @screen.wait_and_click("TailsGreeterLoginButton#{@language}.png", 10) + @screen.press("Return") + @screen.wait("TailsGreeterLoginButton#{$language}.png", 10).click when '' - @screen.wait_and_click('TailsGreeterLoginButton.png', 10) + @screen.wait('TailsGreeterLoginButton.png', 10).click else raise "Unsupported language: #{lang}" end @@ -268,7 +294,7 @@ Given /^I log in to a new session(?: in )?(|German)$/ do |lang| end def open_greeter_additional_settings - @screen.click('TailsGreeterAddMoreOptions.png') + @screen.wait('TailsGreeterAddMoreOptions.png', 10).click @screen.wait('TailsGreeterAdditionalSettingsDialog.png', 10) end @@ -278,28 +304,28 @@ end Given /^I enable the specific Tor configuration option$/ do open_greeter_additional_settings() - @screen.wait_and_click('TailsGreeterNetworkConnection.png', 30) - @screen.wait_and_click("TailsGreeterSpecificTorConfiguration.png", 10) - @screen.wait_and_click("TailsGreeterAdditionalSettingsAdd.png", 10) + @screen.wait('TailsGreeterNetworkConnection.png', 30).click + @screen.wait("TailsGreeterSpecificTorConfiguration.png", 10).click + @screen.wait("TailsGreeterAdditionalSettingsAdd.png", 10).click end Given /^I set an administration password$/ do open_greeter_additional_settings() - @screen.wait_and_click("TailsGreeterAdminPassword.png", 20) + @screen.wait("TailsGreeterAdminPassword.png", 20).click @screen.wait("TailsGreeterAdminPasswordDialog.png", 10) @screen.type(@sudo_password) - @screen.type(Sikuli::Key.TAB) + @screen.press("Tab") @screen.type(@sudo_password) - @screen.type(Sikuli::Key.ENTER) + @screen.press("Return") end Given /^the Tails desktop is ready$/ do - desktop_started_picture = "GnomeApplicationsMenu#{@language}.png" + desktop_started_picture = "GnomeApplicationsMenu#{$language}.png" @screen.wait(desktop_started_picture, 180) @screen.wait("DesktopTailsDocumentation.png", 30) # Disable screen blanking since we sometimes need to wait long - # enough for it to activate, which can mess with Sikuli wait():ing - # for some image. + # enough for it to activate, which can cause problems when we are + # waiting for an image for a very long time. $vm.execute_successfully( 'gsettings set org.gnome.desktop.session idle-delay 0', :user => LIVE_USER @@ -399,7 +425,7 @@ Given /^the Tor Browser loads the (startup page|Tails homepage|Tails roadmap)$/ else raise "Unsupported page: #{page}" end - page_has_loaded_in_the_Tor_Browser(titles, @language) + page_has_loaded_in_the_Tor_Browser(titles, $language) end When /^I request a new identity using Torbutton$/ do @@ -416,22 +442,22 @@ Given /^I add a bookmark to eff.org in the Tor Browser$/ do url = "https://www.eff.org" step "I open the address \"#{url}\" in the Tor Browser" step 'the Tor Browser shows the "The proxy server is refusing connections" error' - @screen.type("d", Sikuli::KeyModifier.CTRL) + @screen.press("ctrl", "d") @screen.wait("TorBrowserBookmarkPrompt.png", 10) @screen.type(url) # The new default location for bookmarks is "Other Bookmarks", but our test # expects the new entry is available in "Bookmark Menu", that's why we need # to select the location explicitly. - @screen.wait_and_click("TorBrowserBookmarkLocation.png", 10) - @screen.wait_and_click("TorBrowserBookmarkLocationBookmarksMenu.png", 10) + @screen.wait("TorBrowserBookmarkLocation.png", 10).click + @screen.wait("TorBrowserBookmarkLocationBookmarksMenu.png", 10).click # Need to sleep here, otherwise the changed Bookmark location is not taken # into account and we end up creating a bookmark in "Other Bookmark" location. sleep 1 - @screen.type(Sikuli::Key.ENTER) + @screen.press("Return") end Given /^the Tor Browser has a bookmark to eff.org$/ do - @screen.type("b", Sikuli::KeyModifier.ALT) + @screen.press("alt", "b") @screen.wait("TorBrowserEFFBookmark.png", 10) end @@ -440,8 +466,8 @@ Given /^all notifications have disappeared$/ do # bar, which when clicked opens the calendar. x, y = 512, 10 gnome_shell = Dogtail::Application.new('gnome-shell') - retry_action(10, recovery_proc: Proc.new { @screen.type(Sikuli::Key.ESC) }) do - @screen.click_point(x, y) + retry_action(10, recovery_proc: Proc.new { @screen.press("Escape") }) do + @screen.click(x, y) begin gnome_shell.child('Clear All', roleName: 'push button', showingOnly: true).click rescue @@ -451,7 +477,7 @@ Given /^all notifications have disappeared$/ do end gnome_shell.child?('No Notifications', roleName: 'label', showingOnly: true) end - @screen.type(Sikuli::Key.ESC) + @screen.press("Escape") # Increase the chances that by the time we leave this step, the # notifications menu was closed and the desktop is back to its # normal state. Otherwise, all kinds of trouble may arise: for @@ -465,7 +491,7 @@ end Then /^I (do not )?see "([^"]*)" after at most (\d+) seconds$/ do |negation, image, time| if negation - @screen.waitVanish(image, time.to_i) + @screen.wait_vanish(image, time.to_i) else @screen.wait(image, time.to_i) end @@ -483,13 +509,12 @@ Given /^I enter the sudo password in the pkexec prompt$/ do end def deal_with_polkit_prompt(password, opts = {}) - opts[:expect_success] ||= true + opts[:expect_success] = true if opts[:expect_success].nil? image = 'PolicyKitAuthPrompt.png' @screen.wait(image, 60) - @screen.type(password) - @screen.type(Sikuli::Key.ENTER) + @screen.type(password, ["Return"]) if opts[:expect_success] - @screen.waitVanish(image, 20) + @screen.wait_vanish(image, 20) else @screen.wait('PolicyKitAuthFailure.png', 20) end @@ -546,13 +571,13 @@ end When /^I request a shutdown using the emergency shutdown applet$/ do @screen.hide_cursor - @screen.wait_and_click('TailsEmergencyShutdownButton.png', 10) + @screen.wait('TailsEmergencyShutdownButton.png', 10).click # Sometimes the next button too fast, before the menu has settled # down to its final size and the icon we want to click is in its # final position. dogtail might allow us to fix that, but given how # rare this problem is, it's not worth the effort. step 'I wait 5 seconds' - @screen.wait_and_click('TailsEmergencyShutdownHalt.png', 10) + @screen.wait('TailsEmergencyShutdownHalt.png', 10).click end When /^I warm reboot the computer$/ do @@ -561,11 +586,11 @@ end When /^I request a reboot using the emergency shutdown applet$/ do @screen.hide_cursor - @screen.wait_and_click('TailsEmergencyShutdownButton.png', 10) + @screen.wait('TailsEmergencyShutdownButton.png', 10).click # See comment on /^I request a shutdown using the emergency shutdown applet$/ # that explains why we need to wait. step 'I wait 5 seconds' - @screen.wait_and_click('TailsEmergencyShutdownReboot.png', 10) + @screen.wait('TailsEmergencyShutdownReboot.png', 10).click end Given /^the package "([^"]+)" is( not)? installed( after Additional Software has been started)?$/ do |package, absent, asp| @@ -610,9 +635,9 @@ When /^I run "([^"]+)" in GNOME Terminal$/ do |command| if !$vm.has_process?("gnome-terminal-server") step "I start and focus GNOME Terminal" else - @screen.wait_and_click('GnomeTerminalWindow.png', 20) + @screen.wait('GnomeTerminalWindow.png', 20).click end - @screen.type(command + Sikuli::Key.ENTER) + @screen.type(command, ["Return"]) end When /^the file "([^"]+)" exists(?:| after at most (\d+) seconds)$/ do |file, timeout| @@ -645,8 +670,7 @@ end def is_persistent?(app) conf = get_persistence_presets_config(true)["#{app}"] c = $vm.execute("findmnt --noheadings --output SOURCE --target '#{conf}'") - # This check assumes that we haven't enabled read-only persistence. - c.success? and c.stdout.chomp != "aufs" + c.success? and c.stdout.chomp != "overlay" end Then /^persistence for "([^"]+)" is (|not )enabled$/ do |app, enabled| @@ -681,7 +705,7 @@ Given /^I start "([^"]+)" via GNOME Activities Overview$/ do |app_name| # Type the rest of the search query @screen.type(app_name[1..-1]) sleep 2 - @screen.type(Sikuli::Key.ENTER, Sikuli::KeyModifier.CTRL) + @screen.press("ctrl", "Return") end When /^I type "([^"]+)"$/ do |string| @@ -689,11 +713,7 @@ When /^I type "([^"]+)"$/ do |string| end When /^I press the "([^"]+)" key$/ do |key| - begin - @screen.type(eval("Sikuli::Key.#{key}")) - rescue RuntimeError - raise "unsupported key #{key}" - end + @screen.press(key) end Then /^the (amnesiac|persistent) Tor Browser directory (exists|does not exist)$/ do |persistent_or_not, mode| @@ -713,16 +733,17 @@ Then /^there is a GNOME bookmark for the (amnesiac|persistent) Tor Browser direc when "persistent" bookmark_image = 'TorBrowserPersistentFilesBookmark.png' end - @screen.wait_and_click('GnomePlaces.png', 10) + @screen.wait('GnomePlaces.png', 10).click @screen.wait(bookmark_image, 40) - @screen.type(Sikuli::Key.ESC) + @screen.press("Escape") end Then /^there is no GNOME bookmark for the persistent Tor Browser directory$/ do try_for(65) do - @screen.wait_and_click('GnomePlaces.png', 10) + @screen.wait('GnomePlaces.png', 10).click @screen.wait("GnomePlacesWithoutTorBrowserPersistent.png", 10) - @screen.type(Sikuli::Key.ESC) + @screen.press("Escape") + true end end @@ -743,22 +764,22 @@ When /^I double-click on the (Tails documentation|Report an Error) launcher on t info = xul_application_info('Tor Browser') # Sometimes the double-click is lost (#12131). retry_action(10) do - @screen.wait_and_double_click(image, 10) if $vm.execute("pgrep --uid #{info[:user]} --full --exact '#{info[:cmd_regex]}'").failure? + @screen.wait(image, 10).click(double: true) if $vm.execute("pgrep --uid #{info[:user]} --full --exact '#{info[:cmd_regex]}'").failure? step 'the Tor Browser has started' end end When /^I (can|cannot) save the current page as "([^"]+[.]html)" to the (.*) directory$/ do |should_work, output_file, output_dir| should_work = should_work == 'can' ? true : false - @screen.type("s", Sikuli::KeyModifier.CTRL) + @screen.press("ctrl", "s") @screen.wait("Gtk3SaveFileDialog.png", 10) if output_dir == "persistent Tor Browser" output_dir = "/home/#{LIVE_USER}/Persistent/Tor Browser" - @screen.wait_and_click("GtkTorBrowserPersistentBookmark.png", 10) + @screen.wait("GtkTorBrowserPersistentBookmark.png", 10).click @screen.wait("GtkTorBrowserPersistentBookmarkSelected.png", 10) # The output filename (without its extension) is already selected, # let's use the keyboard shortcut to focus its field - @screen.type("n", Sikuli::KeyModifier.ALT) + @screen.press("alt", "n") @screen.wait("TorBrowserSaveOutputFileSelected.png", 10) elsif output_dir == "default downloads" output_dir = "/home/#{LIVE_USER}/Tor Browser" @@ -767,8 +788,7 @@ When /^I (can|cannot) save the current page as "([^"]+[.]html)" to the (.*) dire end # Only the part of the filename before the .html extension can be easily replaced # so we have to remove it before typing it into the arget filename entry widget. - @screen.type(output_file.sub(/[.]html$/, '')) - @screen.type(Sikuli::Key.ENTER) + @screen.type(output_file.sub(/[.]html$/, ''), ["Return"]) if should_work try_for(20, :msg => "The page was not saved to #{output_dir}/#{output_file}") { $vm.file_exist?("#{output_dir}/#{output_file}") @@ -784,7 +804,7 @@ When /^I can print the current page as "([^"]+[.]pdf)" to the (default downloads else output_dir = "/home/#{LIVE_USER}/Tor Browser" end - @screen.type("p", Sikuli::KeyModifier.CTRL) + @screen.press("ctrl", "p") print_dialog = @torbrowser.child('Print', roleName: 'dialog') print_dialog.child('Print to File', 'table cell').click print_dialog.child('~/Tor Browser/output.pdf', roleName: 'push button').click() @@ -795,12 +815,12 @@ When /^I can print the current page as "([^"]+[.]pdf)" to the (default downloads # Only the file's basename is selected when the file selector dialog opens, # so we type only the desired file's basename to replace it $vm.set_clipboard(output_dir + '/' + output_file.sub(/[.]pdf$/, '')) - @screen.type('v', Sikuli::KeyModifier.CTRL) - @screen.type(Sikuli::Key.ENTER) + @screen.press("ctrl", 'v') + @screen.press("Return") # Yes, TorBrowserPrintButton.png != Gtk3PrintButton.png. # If you try to unite them, make sure this does not break the tests # that use either. - @screen.wait_and_click("TorBrowserPrintButton.png", 10) + @screen.wait("TorBrowserPrintButton.png", 10).click try_for(30, :msg => "The page was not printed to #{output_dir}/#{output_file}") { $vm.file_exist?("#{output_dir}/#{output_file}") } @@ -815,11 +835,11 @@ Given /^a web server is running on the LAN$/ do # I've tested ruby Thread:s, fork(), etc. but nothing works due to # various strange limitations in the ruby interpreter. For instance, # apparently concurrent IO has serious limits in the thread - # scheduler (e.g. sikuli's wait() would block WEBrick from reading - # from its socket), and fork():ing results in a lot of complex - # cucumber stuff (like our hooks!) ending up in the child process, - # breaking stuff in the parent process. After asking some supposed - # ruby pros, I've settled on the following. + # scheduler (e.g. when we used Sikuli, its wait() would block + # WEBrick from reading from its socket), and fork():ing results in a + # lot of complex cucumber stuff (like our hooks!) ending up in the + # child process, breaking stuff in the parent process. After asking + # some supposed ruby pros, I've settled on the following. code = <<-EOF require "webrick" STDOUT.reopen("/dev/null", "w") diff --git a/features/step_definitions/encryption.rb b/features/step_definitions/encryption.rb index eabd31786481bb2ac6d495a25f1a6f118e3a5193..53009456601b176f24da1766507ffef284ff121a 100644 --- a/features/step_definitions/encryption.rb +++ b/features/step_definitions/encryption.rb @@ -13,8 +13,8 @@ def seahorse_menu_click_helper(main, sub, verify = nil) try_for(60) do step "process \"#{verify}\" is running" if verify @screen.hide_cursor - @screen.wait_and_click(main, 10) - @screen.wait_and_click(sub, 10) + @screen.wait(main, 10).click + @screen.wait(sub, 10).click return end end @@ -49,15 +49,16 @@ When /^I type a message into gedit$/ do text_buffer.typeText("ATTACK AT DAWN") end +def deal_with_pinentry + pinentry = Dogtail::Application.new('pinentry-gtk-2') + pinentry.child('', roleName: 'password text').typeText(@passphrase) + pinentry.button('OK').click +end + def maybe_deal_with_pinentry begin - @screen.wait_and_click("PinEntryPrompt.png", 10) - # Without this sleep here (and reliable visual indicators) we can sometimes - # miss keystrokes by typing too soon. This sleep prevents this problem from - # coming up. - sleep 5 - @screen.type(@passphrase + Sikuli::Key.ENTER) - rescue FindFailed + deal_with_pinentry + rescue Dogtail::Failure # The passphrase was cached or we wasn't prompted at all (e.g. when # only encrypting to a public key) end @@ -79,7 +80,7 @@ end def encrypt_sign_helper gedit_copy_all_text seahorse_menu_click_helper('GpgAppletIconNormal.png', 'GpgAppletSignEncrypt.png') - @screen.wait_and_click("GpgAppletChooseKeyWindow.png", 30) + @screen.wait("GpgAppletChooseKeyWindow.png", 30).click # We don't have a good visual indicator for when we can continue without # keystrokes being lost. sleep 5 @@ -98,7 +99,9 @@ end When /^I encrypt the message using my OpenPGP key$/ do encrypt_sign_helper do - @screen.type(@key_name + Sikuli::Key.ENTER + Sikuli::Key.ENTER) + @screen.type(@key_name) + @screen.press("Return") + @screen.press("Return") end end @@ -109,7 +112,9 @@ end When /^I sign the message using my OpenPGP key$/ do encrypt_sign_helper do - @screen.type(Sikuli::Key.TAB + Sikuli::Key.DOWN + Sikuli::Key.ENTER) + @screen.press("Tab") + @screen.press("Down") + @screen.press("Return") end end @@ -120,11 +125,13 @@ end When /^I both encrypt and sign the message using my OpenPGP key$/ do encrypt_sign_helper do - @screen.wait_and_click('GpgAppletEncryptionKey.png', 20) - @screen.type(Sikuli::Key.SPACE) + @screen.wait('GpgAppletEncryptionKey.png', 20).click + @screen.press("space") @screen.wait('GpgAppletKeySelected.png', 10) - @screen.type(Sikuli::Key.TAB + Sikuli::Key.DOWN + Sikuli::Key.ENTER) - @screen.type(Sikuli::Key.ENTER) + @screen.press("Tab") + @screen.press("Down") + @screen.press("Return") + @screen.press("Return") end end @@ -138,7 +145,7 @@ When /^I symmetrically encrypt the message with password "([^"]+)"$/ do |pwd| @passphrase = pwd gedit_copy_all_text seahorse_menu_click_helper('GpgAppletIconNormal.png', 'GpgAppletEncryptPassphrase.png') - maybe_deal_with_pinentry # enter password - maybe_deal_with_pinentry # confirm password + deal_with_pinentry # enter password + deal_with_pinentry # confirm password gedit_paste_into_a_new_tab end diff --git a/features/step_definitions/erase_memory.rb b/features/step_definitions/erase_memory.rb index 59872214607eb9815b0ae70f749c66941f9865f8..2228eab1dd0d5d59abf3efbfcce712915df5bffa 100644 --- a/features/step_definitions/erase_memory.rb +++ b/features/step_definitions/erase_memory.rb @@ -183,10 +183,6 @@ Then /^I find very few patterns in the guest's memory$/ do "pattern, but less than #{"%.3f" % (max_coverage*100)}% was expected") end -When /^I stop the boot at the bootloader menu$/ do - step "Tails is at the boot menu's cmdline" -end - When /^I wait for Tails to finish wiping the memory$/ do @screen.wait("MemoryWipeCompleted.png", 90) end diff --git a/features/step_definitions/evince.rb b/features/step_definitions/evince.rb index 2baaebe69d1564cef77df886297a9c09315c035f..0a4abedc85e424859a53002bc10d28048dc78cb9 100644 --- a/features/step_definitions/evince.rb +++ b/features/step_definitions/evince.rb @@ -3,23 +3,23 @@ When /^I(?:| try to) open "([^"]+)" with Evince$/ do |filename| end Then /^I can print the current document to "([^"]+)"$/ do |output_file| - @screen.type("p", Sikuli::KeyModifier.CTRL) + @screen.press("ctrl", "p") @screen.wait("EvincePrintDialog.png", 10) - @screen.wait_and_click("EvincePrintToFile.png", 10) - @screen.wait_and_click("EvincePrintOutputFileButton.png", 10) + @screen.wait("EvincePrintToFile.png", 10).click + @screen.wait("EvincePrintOutputFileButton.png", 10).click @screen.wait("Gtk3PrintFileDialog.png", 10) # Only the file's basename is selected by double-clicking, # so we type only the desired file's basename to replace it $vm.set_clipboard(output_file.sub(/[.]pdf$/, '')) - @screen.type('v', Sikuli::KeyModifier.CTRL) - @screen.type(Sikuli::Key.ENTER) - @screen.wait_and_click("Gtk3PrintButton.png", 10) + @screen.press("ctrl", 'v') + @screen.press("Return") + @screen.wait("Gtk3PrintButton.png", 10).click try_for(10, :msg => "The document was not printed to #{output_file}") { $vm.file_exist?(output_file) } end When /^I close Evince$/ do - @screen.type("w", Sikuli::KeyModifier.CTRL) + @screen.press("ctrl", "w") step 'process "evince" has stopped running after at most 20 seconds' end diff --git a/features/step_definitions/git.rb b/features/step_definitions/git.rb index bd8fcf7db21b84a5d8b9e62e1ac558d7ff62d112..298a72708925db84cddb41ce0cc0b105c84af50b 100644 --- a/features/step_definitions/git.rb +++ b/features/step_definitions/git.rb @@ -6,7 +6,8 @@ When /^I clone the Git repository "([\S]+)" in GNOME Terminal$/ do |repo| $vm.execute("rm -rf /home/#{LIVE_USER}/#{repo_directory}", :user => LIVE_USER) step 'I kill the process "git"' - @screen.type('clear' + Sikuli::Key.ENTER) + @screen.type('clear') + @screen.press("Return") end retry_tor(recovery_proc) do diff --git a/features/step_definitions/mac_spoofing.rb b/features/step_definitions/mac_spoofing.rb index c4d337288f1f70c714d23af1639fbb800fb010bc..de6f7213a6dd6d72cd22b5e8aa1b5083dcf86ccc 100644 --- a/features/step_definitions/mac_spoofing.rb +++ b/features/step_definitions/mac_spoofing.rb @@ -6,9 +6,9 @@ end When /^I disable MAC spoofing in Tails Greeter$/ do open_greeter_additional_settings() - @screen.wait_and_click("TailsGreeterMACSpoofing.png", 30) - @screen.wait_and_click("TailsGreeterDisableMACSpoofing.png", 10) - @screen.wait_and_click("TailsGreeterAdditionalSettingsAdd.png", 10) + @screen.wait("TailsGreeterMACSpoofing.png", 30).click + @screen.wait("TailsGreeterDisableMACSpoofing.png", 10).click + @screen.wait("TailsGreeterAdditionalSettingsAdd.png", 10).click end Then /^the (\d+)(?:st|nd|rd|th) network device has (its real|a spoofed) MAC address configured$/ do |dev_nr, mode| diff --git a/features/step_definitions/pidgin.rb b/features/step_definitions/pidgin.rb index e2aa66273f888d48cfa6909dc00c92aa638871e8..1cfe5f222f964cd5ed484e1f5ae64efecff787d1 100644 --- a/features/step_definitions/pidgin.rb +++ b/features/step_definitions/pidgin.rb @@ -66,26 +66,31 @@ def pidgin_account_connected?(account, prpl_protocol) pidgin_force_allowed_dbus_call('PurpleAccountIsConnected', account_id) == 1 end +def click_mid_right_edge(pattern, **opts) + m = @screen.find(pattern, **opts) + @screen.click(m.x + m.w, m.y + m.h/2) +end + When /^I create my XMPP account$/ do account = xmpp_account("Tails_account") @screen.click("PidginAccountManagerAddButton.png") @screen.wait("PidginAddAccountWindow.png", 20) - @screen.click_mid_right_edge("PidginAddAccountProtocolLabel.png") + click_mid_right_edge("PidginAddAccountProtocolLabel.png") @screen.click("PidginAddAccountProtocolXMPP.png") # We first wait for some field that is shown for XMPP but not the # default (IRC) since we otherwise may decide where we click before # the GUI has updated after switching protocol. @screen.wait("PidginAddAccountXMPPDomain.png", 5) - @screen.click_mid_right_edge("PidginAddAccountXMPPUsername.png") + click_mid_right_edge("PidginAddAccountXMPPUsername.png") @screen.type(account["username"]) - @screen.click_mid_right_edge("PidginAddAccountXMPPDomain.png") + click_mid_right_edge("PidginAddAccountXMPPDomain.png") @screen.type(account["domain"]) - @screen.click_mid_right_edge("PidginAddAccountXMPPPassword.png") + click_mid_right_edge("PidginAddAccountXMPPPassword.png") @screen.type(account["password"]) @screen.click("PidginAddAccountXMPPRememberPassword.png") if account["connect_server"] @screen.click("PidginAddAccountXMPPAdvancedTab.png") - @screen.click_mid_right_edge("PidginAddAccountXMPPConnectServer.png") + click_mid_right_edge("PidginAddAccountXMPPConnectServer.png") @screen.type(account["connect_server"]) end @screen.click("PidginAddAccountXMPPAddButton.png") @@ -122,10 +127,9 @@ When /^I start a conversation with my friend$/ do # friend, given it's the only subscribed user that's online, which # we assume. r = @screen.find("PidginFriendOnline.png") - bottom_left = r.getBottomLeft() - x = bottom_left.getX + r.getW/2 - y = bottom_left.getY - @screen.doubleClick_point(x, y) + x = r.x + r.w/2 + y = r.y + r.h + @screen.click(x, y, double: true) # Since Pidgin sets the window name to the contact, we have no good # way to identify the conversation window. Let's just look for the # expected menu bar. @@ -134,14 +138,13 @@ end And /^I say (.*) to my friend( in the multi-user chat)?$/ do |msg, multi_chat| msg = "ping" if msg == "something" - msg = msg + Sikuli::Key.ENTER if multi_chat $vm.focus_window(@chat_room_jid.split("@").first) msg = @friend_name + ": " + msg else $vm.focus_window(@friend_name) end - @screen.type(msg) + @screen.type(msg, ["Return"]) end Then /^I receive a response from my friend( in the multi-user chat)?$/ do |multi_chat| @@ -167,7 +170,7 @@ end Then /^Pidgin automatically generates an OTR key$/ do @screen.wait("PidginOTRKeyGenPrompt.png", 30) - @screen.wait_and_click("PidginOTRKeyGenPromptDoneButton.png", 30) + @screen.wait("PidginOTRKeyGenPromptDoneButton.png", 30).click end Then /^an OTR session was successfully started with my friend$/ do @@ -181,9 +184,9 @@ end When /^I join some empty multi-user chat$/ do $vm.focus_window('Buddy List') @screen.click("PidginBuddiesMenu.png") - @screen.wait_and_click("PidginBuddiesMenuJoinChat.png", 10) - @screen.wait_and_click("PidginJoinChatWindow.png", 10) - @screen.click_mid_right_edge("PidginJoinChatRoomLabel.png") + @screen.wait("PidginBuddiesMenuJoinChat.png", 10).click + @screen.wait("PidginJoinChatWindow.png", 10).click + click_mid_right_edge("PidginJoinChatRoomLabel.png") account = xmpp_account("Tails_account") if account.has_key?("chat_room") && \ !account["chat_room"].nil? && \ @@ -195,9 +198,9 @@ When /^I join some empty multi-user chat$/ do @screen.type(chat_room) # We will need the conference server later, when starting the bot. - @screen.click_mid_right_edge("PidginJoinChatServerLabel.png") - @screen.type("a", Sikuli::KeyModifier.CTRL) - @screen.type("c", Sikuli::KeyModifier.CTRL) + click_mid_right_edge("PidginJoinChatServerLabel.png") + @screen.press("ctrl", "a") + @screen.press("ctrl", "c") conference_server = $vm.execute_successfully("xclip -o", :user => LIVE_USER).stdout.chomp @chat_room_jid = chat_room + "@" + conference_server @@ -208,7 +211,7 @@ When /^I join some empty multi-user chat$/ do # Room" prompt that Pidgin shows for some server configurations. images = ["PidginCreateNewRoomPrompt.png", "PidginChat1UserInRoom.png"] - image_found, _ = @screen.waitAny(images, 30) + image_found, _ = @screen.wait_any(images, 30) if image_found == "PidginCreateNewRoomPrompt.png" @screen.click("PidginCreateNewRoomAcceptDefaultsButton.png") end @@ -222,7 +225,7 @@ end When /^I clear the multi-user chat's scrollback$/ do $vm.focus_window(@chat_room_jid) @screen.click("PidginConversationMenu.png") - @screen.wait_and_click("PidginConversationMenuClearScrollback.png", 10) + @screen.wait("PidginConversationMenuClearScrollback.png", 10).click end Then /^I can see that my friend joined the multi-user chat$/ do @@ -289,8 +292,8 @@ def pidgin_otr_keys end When /^I open Pidgin's account manager window$/ do - @screen.wait_and_click('PidginMenuAccounts.png', 20) - @screen.wait_and_click('PidginMenuManageAccounts.png', 20) + @screen.wait('PidginMenuAccounts.png', 20).click + @screen.wait('PidginMenuManageAccounts.png', 20).click step "I see Pidgin's account manager window" end @@ -299,25 +302,25 @@ When /^I see Pidgin's account manager window$/ do end When /^I close Pidgin's account manager window$/ do - @screen.wait_and_click("PidginDialogCloseButton.png", 10) + @screen.wait("PidginDialogCloseButton.png", 10).click end When /^I close Pidgin$/ do $vm.focus_window('Buddy List') - @screen.type("q", Sikuli::KeyModifier.CTRL) - @screen.waitVanish('PidginAvailableStatus.png', 10) + @screen.press("ctrl", "q") + @screen.wait_vanish('PidginAvailableStatus.png', 10) end When /^I (de)?activate the "([^"]+)" Pidgin account$/ do |deactivate, account| @screen.click("PidginAccount_#{account}.png") - @screen.type(Sikuli::Key.LEFT + Sikuli::Key.SPACE) + @screen.type(["Left"], ["space"]) if deactivate - @screen.waitVanish('PidginAccountEnabledCheckbox.png', 5) + @screen.wait_vanish('PidginAccountEnabledCheckbox.png', 5) else # wait for the Pidgin to be connecting, otherwise sometimes the step # that closes the account management dialog happens before the account # is actually enabled - @screen.waitAny(['PidginConnecting.png', 'PidginAvailableStatus.png'], 5) + @screen.wait_any(['PidginConnecting.png', 'PidginAvailableStatus.png'], 5) end end @@ -352,7 +355,7 @@ Then /^Pidgin successfully connects to the "([^"]+)" account$/ do |account| # conversation window. At worst, the test will still fail... close_pidgin_conversation_window(account) end - on_screen, _ = @screen.waitAny([expected_channel_entry, reconnect_button], 60) + on_screen, _ = @screen.wait_any([expected_channel_entry, reconnect_button], 60) unless on_screen == expected_channel_entry raise "Connecting to account #{account} failed." end @@ -361,10 +364,10 @@ end Then /^I can join the "([^"]+)" channel on "([^"]+)"$/ do |channel, account| $vm.focus_window('Buddy List') - @screen.wait_and_click("PidginBuddiesMenu.png", 20) - @screen.wait_and_click("PidginBuddiesMenuJoinChat.png", 10) - @screen.wait_and_click("PidginJoinChatWindow.png", 10) - @screen.click_mid_right_edge("PidginJoinChatRoomLabel.png") + @screen.wait("PidginBuddiesMenu.png", 20).click + @screen.wait("PidginBuddiesMenuJoinChat.png", 10).click + @screen.wait("PidginJoinChatWindow.png", 10).click + click_mid_right_edge("PidginJoinChatRoomLabel.png") @screen.type(channel) @screen.click("PidginJoinChatButton.png") @chat_room_jid = channel + "@" + account @@ -372,17 +375,17 @@ Then /^I can join the "([^"]+)" channel on "([^"]+)"$/ do |channel, account| @screen.hide_cursor try_for(60) do begin - @screen.wait_and_click(chan_image(account, channel, 'conversation_tab'), 5) + @screen.wait(chan_image(account, channel, 'conversation_tab'), 5).click rescue FindFailed => e # If the channel tab can't be found it could be because there were # multiple connection attempts and the channel tab we want is off the # screen. We'll try closing tabs until the one we want can be found. - @screen.type("w", Sikuli::KeyModifier.CTRL) + @screen.press("ctrl", "w") raise e end end @screen.hide_cursor - @screen.wait( chan_image(account, channel, 'welcome'), 10) + @screen.wait(chan_image(account, channel, 'welcome'), 10) end Then /^I take note of the configured Pidgin accounts$/ do @@ -411,12 +414,12 @@ def pidgin_add_certificate_from (cert_file) step "I copy \"/usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_EV_Root_CA.crt\" to \"#{cert_file}\" as user \"amnesia\"" $vm.focus_window('Buddy List') - @screen.wait_and_click('PidginToolsMenu.png', 10) - @screen.wait_and_click('PidginCertificatesMenuItem.png', 10) + @screen.wait('PidginToolsMenu.png', 10).click + @screen.wait('PidginCertificatesMenuItem.png', 10).click @screen.wait('PidginCertificateManagerDialog.png', 10) - @screen.wait_and_click('PidginCertificateAddButton.png', 10) + @screen.wait('PidginCertificateAddButton.png', 10).click begin - @screen.wait_and_click('GtkFileChooserDesktopButton.png', 10) + @screen.wait('GtkFileChooserDesktopButton.png', 10).click rescue FindFailed # The first time we're run, the file chooser opens in the Recent # view, so we have to browse a directory before we can use the @@ -424,15 +427,15 @@ def pidgin_add_certificate_from (cert_file) # chooser is already in the Desktop directory, so we don't need to # do anything. Hence, this noop exception handler. end - @screen.wait_and_click('GtkFileTypeFileNameButton.png', 10) - @screen.type("l", Sikuli::KeyModifier.ALT) # "Location" field - @screen.type(cert_file + Sikuli::Key.ENTER) + @screen.wait('GtkFileTypeFileNameButton.png', 10).click + @screen.press("alt", "l") # "Location" field + @screen.type(cert_file, ["Return"]) end Then /^I can add a certificate from the "([^"]+)" directory to Pidgin$/ do |cert_dir| pidgin_add_certificate_from("#{cert_dir}/test.crt") wait_and_focus('PidginCertificateAddHostnameDialog.png', 10, 'Certificate Import') - @screen.type("XXX test XXX" + Sikuli::Key.ENTER) + @screen.type("XXX test XXX", ["Return"]) wait_and_focus('PidginCertificateTestItem.png', 10, 'Certificate Manager') end @@ -443,15 +446,15 @@ end When /^I close Pidgin's certificate manager$/ do wait_and_focus('PidginCertificateManagerDialog.png', 10, 'Certificate Manager') - @screen.type(Sikuli::Key.ESC) - # @screen.wait_and_click('PidginCertificateManagerClose.png', 10) - @screen.waitVanish('PidginCertificateManagerDialog.png', 10) + @screen.press("Escape") + # @screen.wait('PidginCertificateManagerClose.png', 10).click + @screen.wait_vanish('PidginCertificateManagerDialog.png', 10) end When /^I close Pidgin's certificate import failure dialog$/ do - @screen.type(Sikuli::Key.ESC) - # @screen.wait_and_click('PidginCertificateManagerClose.png', 10) - @screen.waitVanish('PidginCertificateImportFailed.png', 10) + @screen.press("Escape") + # @screen.wait('PidginCertificateManagerClose.png', 10).click + @screen.wait_vanish('PidginCertificateImportFailed.png', 10) end When /^I see the Tails roadmap URL$/ do @@ -462,7 +465,7 @@ When /^I see the Tails roadmap URL$/ do begin @screen.find('PidginTailsRoadmapUrl.png') rescue FindFailed => e - @screen.type(Sikuli::Key.PAGE_UP) + @screen.press("Page_Up") raise e end end diff --git a/features/step_definitions/root_access_control.rb b/features/step_definitions/root_access_control.rb index 8362342d0fd82296f40f112c772be64a8c81fd24..2f20d3cb5192d79bd73977a02726fff4fcceb854 100644 --- a/features/step_definitions/root_access_control.rb +++ b/features/step_definitions/root_access_control.rb @@ -36,6 +36,6 @@ Then /^I should not be able to run a command as root with pkexec and the standar ['', 'live', 'amnesia'].each do |password| deal_with_polkit_prompt(password, expect_success: false) end - @screen.type(Sikuli::Key.ESC) + @screen.press("Escape") @screen.wait('PolicyKitAuthCompleteFailure.png', 20) end diff --git a/features/step_definitions/snapshots.rb b/features/step_definitions/snapshots.rb index b12fd1de32f890b7d032594afa216884ee74ee9d..12984f26eb847371bc16ea1f300b9b0df236c2f2 100644 --- a/features/step_definitions/snapshots.rb +++ b/features/step_definitions/snapshots.rb @@ -124,7 +124,7 @@ def reach_checkpoint(name) step "a computer" if VM.snapshot_exists?(name) $vm.restore_snapshot(name) - post_snapshot_restore_hook + post_snapshot_restore_hook(name) else checkpoint = checkpoints[name] checkpoint_description = checkpoint[:description] @@ -136,7 +136,7 @@ def reach_checkpoint(name) else reach_checkpoint(parent_checkpoint) end - post_snapshot_restore_hook + post_snapshot_restore_hook(parent_checkpoint) end debug_log(scenario_indent + "Checkpoint: #{checkpoint_description}", color: :white, timestamp: false) diff --git a/features/step_definitions/ssh.rb b/features/step_definitions/ssh.rb index 7129a8e3c31169965e4894bc94f312cd9d2e225e..72674be8cb37ea894abf4df113ebcb3502e36cf8 100644 --- a/features/step_definitions/ssh.rb +++ b/features/step_definitions/ssh.rb @@ -61,7 +61,7 @@ end Given /^I (?:am prompted to )?verify the SSH fingerprint for the (?:Git|SSH) (?:repository|server)$/ do @screen.wait("SSHFingerprint.png", 60) sleep 1 # brief pause to ensure that the following keystrokes do not get lost - @screen.type('yes' + Sikuli::Key.ENTER) + @screen.type('yes', ["Return"]) end def get_free_tcp_port @@ -145,8 +145,7 @@ Then /^I verify the SSH fingerprint for the SFTP server$/ do end # Here we'd like to click on the button using Dogtail, but something # is buggy so let's just use the keyboard. - @screen.type(Sikuli::Key.TAB) - @screen.type(Sikuli::Key.ENTER) + @screen.type(["Tab"], ["Return"]) end Then /^I successfully connect to the SFTP server$/ do diff --git a/features/step_definitions/thunderbird.rb b/features/step_definitions/thunderbird.rb index c0473b2c3dc7d93edf54989ed47d8b0f5d477235..cd9ed3834b132e1d70a2d301f61c3df7b834cffb 100644 --- a/features/step_definitions/thunderbird.rb +++ b/features/step_definitions/thunderbird.rb @@ -54,7 +54,7 @@ Then /^I open Thunderbird's Add-ons Manager$/ do thunderbird_main.button('AppMenu') # ... then use keyboard shortcuts, with a little delay between both # so that the menu has a chance to pop up: - @screen.type('t', Sikuli::KeyModifier.ALT) + @screen.press("alt", 't') sleep(1) @screen.type('a') @thunderbird_addons = thunderbird_app.child( @@ -62,8 +62,18 @@ Then /^I open Thunderbird's Add-ons Manager$/ do ) end -Then /^I click the extensions tab$/ do - @thunderbird_addons.child('Extensions', roleName: 'list item').click +Then /^I open the Extensions tab$/ do + # Sometimes the Add-on manager loads its GUI slowly, so that the + # tabs move around, creating a race where we might find the + # Extensions tab at one place but it has moved to another when we + # finally do the click. + try_for(10) do + @thunderbird_addons + .child('Extensions', roleName: 'list item', retry: false).click + # Verify that we clicked correctly: + @thunderbird_addons + .child('Manage Your Extensions', roleName: 'label', retry: false) + end end Then /^I see that only the (.+) add-on(?:s are| is) enabled in Thunderbird$/ do |addons| diff --git a/features/step_definitions/tor.rb b/features/step_definitions/tor.rb index a12221fd16f16c9df411a2e9869997c9a7fc14d5..daa61d7b5aa83677cb57dd400cc359ab5659a676 100644 --- a/features/step_definitions/tor.rb +++ b/features/step_definitions/tor.rb @@ -325,9 +325,9 @@ When /^the Tor Launcher autostarts$/ do end When /^I configure some (\w+) pluggable transports in Tor Launcher$/ do |bridge_type| - @screen.wait_and_click('TorLauncherConfigureButton.png', 10) - @screen.wait_and_click('TorLauncherBridgeCheckbox.png', 10) - @screen.wait_and_click('TorLauncherBridgeList.png', 10) + @screen.wait('TorLauncherConfigureButton.png', 10).click + @screen.wait('TorLauncherBridgeCheckbox.png', 10).click + @screen.wait('TorLauncherBridgeList.png', 10).click @bridge_hosts = [] chutney_src_dir = "#{GIT_DIR}/submodules/chutney" bridge_dirs = Dir.glob( @@ -364,12 +364,12 @@ When /^I configure some (\w+) pluggable transports in Tor Launcher$/ do |bridge_ @bridge_hosts << { address: address, port: port.to_i } bridge_line = bridge_type + " " + address + ":" + port [fingerprint, extra].each { |e| bridge_line += " " + e.to_s if e } - @screen.type(bridge_line + Sikuli::Key.ENTER) + @screen.type(bridge_line, ["Return"]) end @screen.hide_cursor - @screen.wait_and_click('TorLauncherFinishButton.png', 10) + @screen.wait('TorLauncherFinishButton.png', 10).click @screen.wait('TorLauncherConnectingWindow.png', 10) - @screen.waitVanish('TorLauncherConnectingWindow.png', 120) + @screen.wait_vanish('TorLauncherConnectingWindow.png', 120) end When /^all Internet traffic has only flowed through the configured pluggable transports$/ do diff --git a/features/step_definitions/torified_gnupg.rb b/features/step_definitions/torified_gnupg.rb index cc5fd758c10f97429287df6044ff4ec026774e80..e94ce2ecd5bf452fc455d06f3f69bd541402556d 100644 --- a/features/step_definitions/torified_gnupg.rb +++ b/features/step_definitions/torified_gnupg.rb @@ -124,12 +124,12 @@ end Then /^I enable key synchronization in Seahorse$/ do step 'process "seahorse" is running' - @screen.wait_and_click("SeahorseWindow.png", 10) + @screen.wait("SeahorseWindow.png", 10).click seahorse_menu_click_helper('GnomeEditMenu.png', 'SeahorseEditPreferences.png', 'seahorse') @screen.wait('SeahorsePreferences.png', 20) - @screen.type("p", Sikuli::KeyModifier.ALT) # Option: "Publish keys to...". - @screen.type(Sikuli::Key.DOWN) # select HKP server - @screen.type(Sikuli::Key.ESC) # no "Close" button + @screen.press("alt", "p") # Option: "Publish keys to...". + @screen.press("Down") # select HKP server + @screen.press("Escape") # no "Close" button end Then /^I synchronize keys in Seahorse$/ do @@ -154,12 +154,12 @@ Then /^I synchronize keys in Seahorse$/ do end retry_tor(recovery_proc) do - @screen.wait_and_click("SeahorseWindow.png", 10) + @screen.wait("SeahorseWindow.png", 10).click seahorse_menu_click_helper('SeahorseRemoteMenu.png', 'SeahorseRemoteMenuSync.png', 'seahorse') @screen.wait('SeahorseSyncKeys.png', 20) - @screen.type("s", Sikuli::KeyModifier.ALT) # Button: Sync + @screen.press("alt", "s") # Button: Sync # There's no visual feedback of Seahorse in Tails/Jessie, except on error. try_for(120) { change_of_status? @@ -187,21 +187,21 @@ When /^I fetch the "([^"]+)" OpenPGP key using Seahorse( via the OpenPGP Applet) recovery_proc = Proc.new do setup_onion_keyserver @screen.click('GnomeCloseButton.png') if @screen.exists('GnomeCloseButton.png') - @screen.type("w", Sikuli::KeyModifier.CTRL) + @screen.press("ctrl", "w") end retry_tor(recovery_proc) do - @screen.wait_and_click("SeahorseWindow.png", 10) + @screen.wait("SeahorseWindow.png", 10).click seahorse_menu_click_helper('SeahorseRemoteMenu.png', 'SeahorseRemoteMenuFind.png', 'seahorse') @screen.wait('SeahorseFindKeysWindow.png', 10) # Seahorse doesn't seem to support searching for fingerprints # (https://gitlab.gnome.org/GNOME/seahorse/issues/177) - @screen.type(keyid + Sikuli::Key.ENTER) + @screen.type(keyid, ["Return"]) begin - @screen.waitAny(['SeahorseFoundKeyResult.png', + @screen.wait_any(['SeahorseFoundKeyResult.png', 'GnomeCloseButton.png'], 120) - rescue FindAnyFailed + rescue FindFailed # We may end up here if Seahorse appears to be "frozen". # Sometimes--but not always--if we click another window # the main Seahorse window will unfreeze, allowing us @@ -211,7 +211,7 @@ When /^I fetch the "([^"]+)" OpenPGP key using Seahorse( via the OpenPGP Applet) check_for_seahorse_error @screen.click("SeahorseKeyResultWindow.png") # Use the context menu to import the key: - @screen.right_click("SeahorseFoundKeyResult.png") + @screen.click("SeahorseFoundKeyResult.png", button: 'right') @screen.click("SeahorseImport.png") try_for(120) do change_of_status?(keyid) diff --git a/features/step_definitions/totem.rb b/features/step_definitions/totem.rb index 1bb0ce20b11c90e197ddc1d57d4055b7e576f2f1..67cf74020fe205c96b52eaa63652d54b3d86fcb7 100644 --- a/features/step_definitions/totem.rb +++ b/features/step_definitions/totem.rb @@ -5,7 +5,7 @@ Given /^I create sample videos$/ do @video_dir_on_host = "#{$config["TMPDIR"]}/video_dir" FileUtils.mkdir_p(@video_dir_on_host) add_after_scenario_hook { FileUtils.rm_r(@video_dir_on_host) } - fatal_system("avconv -loop 1 -t 30 -f image2 " + + fatal_system("#{ffmpeg} -loop 1 -t 30 -f image2 " + "-i 'features/images/USBTailsLogo.png' " + "-an -vcodec libx264 -y " + '-filter:v "crop=in_w-mod(in_w\,2):in_h-mod(in_h\,2)" ' + diff --git a/features/step_definitions/unsafe_browser.rb b/features/step_definitions/unsafe_browser.rb index 624379861a5de0f51b91493df2e684c57b7f5f9a..c3cda052db09c930e1561e57ae3f76e9eb7a6aea 100644 --- a/features/step_definitions/unsafe_browser.rb +++ b/features/step_definitions/unsafe_browser.rb @@ -1,7 +1,7 @@ # coding: utf-8 When /^I see and accept the Unsafe Browser start verification(?:| in the "([^"]+)" locale)$/ do |locale| @screen.wait('GnomeQuestionDialogIcon.png', 30) - @screen.type(Sikuli::Key.TAB + Sikuli::Key.ENTER) + @screen.type(["Tab"], ["Return"]) end def supported_torbrowser_languages @@ -48,12 +48,12 @@ end Then /^the Unsafe Browser has only Firefox's default bookmarks configured$/ do info = xul_application_info("Unsafe Browser") # "Show all bookmarks" - @screen.type("o", Sikuli::KeyModifier.SHIFT + Sikuli::KeyModifier.CTRL) - @screen.wait_and_click("UnsafeBrowserExportBookmarksButton.png", 20) - @screen.wait_and_click("UnsafeBrowserExportBookmarksMenuEntry.png", 20) + @screen.press("shift", "ctrl", "o") + @screen.wait("UnsafeBrowserExportBookmarksButton.png", 20).click + @screen.wait("UnsafeBrowserExportBookmarksMenuEntry.png", 20).click @screen.wait("UnsafeBrowserExportBookmarksSavePrompt.png", 20) path = "/home/#{info[:user]}/bookmarks" - @screen.type(path + Sikuli::Key.ENTER) + @screen.type(path, ["Return"]) chroot_path = "#{info[:chroot]}/#{path}.json" try_for(10) { $vm.file_exist?(chroot_path) } dump = JSON.load($vm.file_content(chroot_path)) @@ -81,7 +81,7 @@ Then /^the Unsafe Browser has only Firefox's default bookmarks configured$/ do assert_equal(5, mozilla_uris_counter, "Unexpected number (#{mozilla_uris_counter}) of mozilla " \ "bookmarks") - @screen.type(Sikuli::Key.F4, Sikuli::KeyModifier.ALT) + @screen.press("alt", "F4") end Then /^the Unsafe Browser has a red theme$/ do @@ -93,7 +93,7 @@ Then /^the Unsafe Browser shows a warning as its start page(?: in the "([^"]+)" # Use localized image for languages that have a translated version # of the Unsafe Browser homepage. when /\A([a-z]+)/ - if File.exists?("#{SIKULI_IMAGE_PATH}/UnsafeBrowserStartPage.#{$1}.png") + if File.exists?("#{OPENCV_IMAGE_PATH}/UnsafeBrowserStartPage.#{$1}.png") start_page_image = "UnsafeBrowserStartPage.#{$1}.png" else start_page_image = "UnsafeBrowserStartPage.png" diff --git a/features/step_definitions/untrusted_partitions.rb b/features/step_definitions/untrusted_partitions.rb index b4bf5d7921af44efa342a05b3ee62d7d46026c0d..7a3b11b920c6d240eb4eb4f115927e98c462f417 100644 --- a/features/step_definitions/untrusted_partitions.rb +++ b/features/step_definitions/untrusted_partitions.rb @@ -58,7 +58,7 @@ end Then /^Tails Greeter has( not)? detected a persistence partition$/ do |no_persistence| expecting_persistence = no_persistence.nil? @screen.find('TailsGreeter.png') - found_persistence = ! @screen.exists('TailsGreeterPersistencePassphrase.png').nil? + found_persistence = @screen.exists('TailsGreeterPersistencePassphrase.png') assert_equal(expecting_persistence, found_persistence, "Persistence is unexpectedly#{no_persistence} enabled") end diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb index 7638fc0834f249ba01ab471c7dfd3546d5c2be25..ae7e98011cbd1c89c537ef260aaef313d8ee6ef9 100644 --- a/features/step_definitions/usb.rb +++ b/features/step_definitions/usb.rb @@ -1,43 +1,44 @@ # coding: utf-8 + # Returns a hash that for each persistence preset the running Tails is aware of, # for each of the corresponding configuration lines, # maps the source to the destination. def get_persistence_presets_config(skip_links = false) # Perl script that prints all persistence configuration lines (one per line) # in the form: <mount_point>:<comma-separated-list-of-options> - script = <<-EOF + script = <<-SCRIPT use strict; use warnings FATAL => "all"; use Tails::Persistence::Configuration::Presets; foreach my $atom (Tails::Persistence::Configuration::Presets->new()->atoms) { say $atom->destination, ":", join(",", @{$atom->options}); } -EOF +SCRIPT # VMCommand:s cannot handle newlines, and they're irrelevant in the # above perl script any way script.delete!("\n") presets_configs = $vm.execute_successfully("perl -E '#{script}'") .stdout.chomp.split("\n") assert presets_configs.size >= 10, - "Got #{presets_configs.size} persistence preset configuration lines, " + - "which is too few" - persistence_mapping = Hash.new - for line in presets_configs - destination, options_str = line.split(":") - options = options_str.split(",") - is_link = options.include? "link" - next if is_link and skip_links + "Got #{presets_configs.size} persistence preset configuration " \ + 'lines, which is too few' + persistence_mapping = {} + presets_configs.each do |line| + destination, options_str = line.split(':') + options = options_str.split(',') + is_link = options.include? 'link' + next if is_link && skip_links source_str = options.find { |option| /^source=/.match option } # If no source is given as an option, live-boot's persistence # feature defaults to the destination minus the initial "/". - if source_str.nil? - source = destination.partition("/").last - else - source = source_str.split("=")[1] - end + source = if source_str.nil? + destination.partition('/').last + else + source_str.split('=')[1] + end persistence_mapping[source] = destination end - return persistence_mapping + persistence_mapping end def persistent_dirs @@ -49,15 +50,16 @@ def persistent_mounts end def persistent_volumes_mountpoints - $vm.execute("ls -1 -d /live/persistence/*_unlocked/").stdout.chomp.split + $vm.execute('ls -1 -d /live/persistence/*_unlocked/').stdout.chomp.split end -# Returns an array that for each persistence preset the running Tails is aware of, -# contains a hash with the following keys: id, enabled, has_configuration_button. +# Returns an array that for each persistence preset the running Tails is aware +# of, contains a hash with the following keys: +# id, enabled, has_configuration_button. def persistent_presets_ui_settings # Perl script that prints all persistence presets # in the form: <id>:<enabled>:<has_configuration_button> - script = <<-EOF + script = <<-SCRIPT use strict; use warnings FATAL => "all"; use Tails::Persistence::Configuration::Presets; @@ -72,28 +74,27 @@ def persistent_presets_ui_settings ), )); } -EOF +SCRIPT # VMCommand:s cannot handle newlines, and they're irrelevant in the # above perl script any way script.delete!("\n") presets = $vm.execute_successfully("perl -E '#{script}'") .stdout.chomp.split("\n") assert presets.size >= 10, - "Got #{presets.size} persistence presets, " + - "which is too few" - presets_ui_settings = Array.new + "Got #{presets.size} persistence presets, " \ + 'which is too few' + presets_ui_settings = [] for line in presets - id, enabled, has_configuration_button = line.split(":") + id, enabled, has_configuration_button = line.split(':') presets_ui_settings += [{ 'id' => id, 'enabled' => (enabled == '1'), - 'has_configuration_button' => (has_configuration_button == '1'), + 'has_configuration_button' => (has_configuration_button == '1') }] end - return presets_ui_settings + presets_ui_settings end - def recover_from_upgrader_failure $vm.execute('pkill --full tails-upgrade-frontend-wrapper') $vm.execute('killall tails-upgrade-frontend zenity') @@ -123,7 +124,7 @@ end def tails_installer_selected_device @installer.child('Target USB stick:', roleName: 'label').parent - .child('', roleName: 'combo box', recursive: false).name + .child('', roleName: 'combo box', recursive: false).name end def tails_installer_is_device_selected?(name) @@ -172,24 +173,24 @@ Then /^(no|the "([^"]+)") USB drive is selected$/ do |mode, name| end When /^I (install|reinstall|upgrade) Tails (?:to|on) USB drive "([^"]+)" by cloning$/ do |action, name| - step "I start Tails Installer" + step 'I start Tails Installer' # If the device was plugged *just* before this step, it might not be # completely ready (so it's shown) at this stage. try_for(10) { tails_installer_is_device_selected?(name) } begin - if action == 'reinstall' - label = 'Reinstall (delete all data)' - else - label = action.capitalize - end + label = if action == 'reinstall' + 'Reinstall (delete all data)' + else + action.capitalize + end @installer.button(label).click - if action == 'upgrade' - confirmation_label = 'Upgrade' - else - confirmation_label = 'Install' - end + confirmation_label = if action == 'upgrade' + 'Upgrade' + else + 'Install' + end @installer.child('Question', roleName: 'alert').button(confirmation_label).click - try_for(15*60, { :delay => 10 }) do + try_for(15 * 60, delay: 10) do @installer .child('Information', roleName: 'alert') .child('Installation complete!', roleName: 'label') @@ -220,52 +221,49 @@ Given /^I enable all persistence presets$/ do # Select the switch debug_log("typing TAB #{tabs_to_select_switch} times to select the switch") tabs_to_select_switch.times do - debug_log("typing TAB") - @screen.type(Sikuli::Key.TAB) + debug_log('typing TAB') + @screen.press("Tab") end # Activate the switch - if ! setting['enabled'] - debug_log("pressing space") - @screen.type(Sikuli::Key.SPACE) + if !setting['enabled'] + debug_log('pressing space') + @screen.press("space") else - debug_log("setting already enabled, skipping") + debug_log('setting already enabled, skipping') end end save_and_exit_the_persistence_wizard end def save_and_exit_the_persistence_wizard - @screen.type(Sikuli::Key.ENTER) # Press the Save button + @screen.press("Return") # Press the Save button @screen.wait('PersistenceWizardDone.png', 60) - @screen.type(Sikuli::Key.F4, Sikuli::KeyModifier.ALT) + @screen.press("alt", "F4") end When /^I disable the first persistence preset$/ do step 'I start "Configure persistent volume" via GNOME Activities Overview' @screen.wait('PersistenceWizardPresets.png', 300) - @screen.type(Sikuli::Key.TAB) - @screen.type(Sikuli::Key.SPACE) - @screen.type(Sikuli::Key.ENTER) + @screen.type(["Tab"], ["space"], ["Return"]) @screen.wait('PersistenceWizardDone.png', 30) - @screen.type(Sikuli::Key.F4, Sikuli::KeyModifier.ALT) + @screen.press("alt", "F4") end Given /^I create a persistent partition( for Additional Software)?$/ do |asp| - if not asp + unless asp step 'I start "Configure persistent volume" via GNOME Activities Overview' end @screen.wait('PersistenceWizardStart.png', 60) - @screen.type(@persistence_password + "\t" + @persistence_password + Sikuli::Key.ENTER) + @screen.type(@persistence_password) + @screen.press("Tab") + @screen.type(@persistence_password, ["Return"]) @screen.wait('PersistenceWizardPresets.png', 300) - if not asp - step "I enable all persistence presets" - end + step 'I enable all persistence presets' unless asp end def check_disk_integrity(name, dev, scheme) info = $vm.execute("udisksctl info --block-device '#{dev}'").stdout info_split = info.split("\n org\.freedesktop\.UDisks2\.PartitionTable:\n") - dev_info = info_split[0] part_table_info = info_split[1] assert(part_table_info.match("^ Type: +#{scheme}$"), "Unexpected partition scheme on USB drive '#{name}', '#{dev}'") @@ -292,13 +290,13 @@ end def tails_is_installed_helper(name, tails_root, loader) disk_dev = $vm.disk_dev(name) - part_dev = disk_dev + "1" - check_disk_integrity(name, disk_dev, "gpt") - check_part_integrity(name, part_dev, "filesystem", "vfat", "Tails", + part_dev = disk_dev + '1' + check_disk_integrity(name, disk_dev, 'gpt') + check_part_integrity(name, part_dev, 'filesystem', 'vfat', 'Tails', # EFI System Partition 'c12a7328-f81f-11d2-ba4b-00a0c93ec93b') - target_root = "/mnt/new" + target_root = '/mnt/new' $vm.execute("mkdir -p #{target_root}") $vm.execute("mount #{part_dev} #{target_root}") @@ -308,38 +306,38 @@ def tails_is_installed_helper(name, tails_root, loader) syslinux_files = $vm.execute("ls -1 #{target_root}/syslinux").stdout.chomp.split # We deal with these files separately - ignores = ["syslinux.cfg", "exithelp.cfg", "ldlinux.c32", "ldlinux.sys"] + ignores = ['syslinux.cfg', 'exithelp.cfg', 'ldlinux.c32', 'ldlinux.sys'] for f in syslinux_files - ignores do - c = $vm.execute("diff -q '#{tails_root}/#{loader}/#{f}' " + + c = $vm.execute("diff -q '#{tails_root}/#{loader}/#{f}' " \ "'#{target_root}/syslinux/#{f}'") - assert(c.success?, "USB drive '#{name}' has differences in " + + assert(c.success?, "USB drive '#{name}' has differences in " \ "'/syslinux/#{f}'") end # The main .cfg is named differently vs isolinux - c = $vm.execute("diff -q '#{tails_root}/#{loader}/#{loader}.cfg' " + + c = $vm.execute("diff -q '#{tails_root}/#{loader}/#{loader}.cfg' " \ "'#{target_root}/syslinux/syslinux.cfg'") - assert(c.success?, "USB drive '#{name}' has differences in " + + assert(c.success?, "USB drive '#{name}' has differences in " \ "'/syslinux/syslinux.cfg'") $vm.execute("umount #{target_root}") - $vm.execute("sync") + $vm.execute('sync') end Then /^the running Tails is installed on USB drive "([^"]+)"$/ do |target_name| - loader = boot_device_type == "usb" ? "syslinux" : "isolinux" - tails_is_installed_helper(target_name, "/lib/live/mount/medium", loader) + loader = boot_device_type == 'usb' ? 'syslinux' : 'isolinux' + tails_is_installed_helper(target_name, '/lib/live/mount/medium', loader) end Then /^there is no persistence partition on USB drive "([^"]+)"$/ do |name| - data_part_dev = $vm.disk_dev(name) + "2" + data_part_dev = $vm.disk_dev(name) + '2' assert(!$vm.execute("test -b #{data_part_dev}").success?, "USB drive #{name} has a partition '#{data_part_dev}'") end Then /^a Tails persistence partition exists on USB drive "([^"]+)"$/ do |name| - dev = $vm.disk_dev(name) + "2" - check_part_integrity(name, dev, "crypto", "crypto_LUKS", "TailsData") + dev = $vm.disk_dev(name) + '2' + check_part_integrity(name, dev, 'crypto', 'crypto_LUKS', 'TailsData') # The LUKS container may already be opened, e.g. by udisks after # we've run tails-persistence-setup. @@ -347,14 +345,14 @@ Then /^a Tails persistence partition exists on USB drive "([^"]+)"$/ do |name| if c.success? for candidate in c.stdout.split("\n") luks_info = $vm.execute("cryptsetup status '#{candidate}'") - if luks_info.success? and luks_info.stdout.match("^\s+device:\s+#{dev}$") + if luks_info.success? && luks_info.stdout.match("^\s+device:\s+#{dev}$") luks_dev = "/dev/mapper/#{candidate}" break end end end if luks_dev.nil? - c = $vm.execute("echo #{@persistence_password} | " + + c = $vm.execute("echo #{@persistence_password} | " \ "cryptsetup luksOpen #{dev} #{name}") assert(c.success?, "Couldn't open LUKS device '#{dev}' on drive '#{name}'") luks_dev = "/dev/mapper/#{name}" @@ -363,9 +361,9 @@ Then /^a Tails persistence partition exists on USB drive "([^"]+)"$/ do |name| # Adapting check_part_integrity() seems like a bad idea so here goes info = $vm.execute("udisksctl info --block-device '#{luks_dev}'").stdout assert info.match("^ CryptoBackingDevice: +'/[a-zA-Z0-9_/]+'$") - assert info.match("^ IdUsage: +filesystem$") - assert info.match("^ IdType: +ext[34]$") - assert info.match("^ IdLabel: +TailsData$") + assert info.match('^ IdUsage: +filesystem$') + assert info.match('^ IdType: +ext[34]$') + assert info.match('^ IdLabel: +TailsData$') mount_dir = "/mnt/#{name}" $vm.execute("mkdir -p #{mount_dir}") @@ -374,33 +372,33 @@ Then /^a Tails persistence partition exists on USB drive "([^"]+)"$/ do |name| "Couldn't mount opened LUKS device '#{dev}' on drive '#{name}'") $vm.execute("umount #{mount_dir}") - $vm.execute("sync") + $vm.execute('sync') $vm.execute("cryptsetup luksClose #{name}") end Given /^I enable persistence$/ do - @screen.wait_and_click('TailsGreeterPersistencePassphrase.png', 60) - @screen.type(@persistence_password + Sikuli::Key.ENTER) + @screen.wait('TailsGreeterPersistencePassphrase.png', 60).click + @screen.type(@persistence_password, ["Return"]) @screen.wait('TailsGreeterPersistenceUnlocked.png', 30) end def tails_persistence_enabled? - persistence_state_file = "/var/lib/live/config/tails.persistence" - return $vm.execute("test -e '#{persistence_state_file}'").success? && - $vm.execute(". '#{persistence_state_file}' && " + - 'test "$TAILS_PERSISTENCE_ENABLED" = true').success? + persistence_state_file = '/var/lib/live/config/tails.persistence' + $vm.execute("test -e '#{persistence_state_file}'").success? && + $vm.execute(". '#{persistence_state_file}' && " \ + 'test "$TAILS_PERSISTENCE_ENABLED" = true').success? end Given /^all persistence presets(| from the old Tails version)(| but the first one) are enabled$/ do |old_tails, except_first| - assert(old_tails.empty? || except_first.empty?, "Unsupported case.") - try_for(120, :msg => "Persistence is disabled") do + assert(old_tails.empty? || except_first.empty?, 'Unsupported case.') + try_for(120, msg: 'Persistence is disabled') do tails_persistence_enabled? end - unexpected_mounts = Array.new + unexpected_mounts = [] # Check that all persistent directories are mounted if old_tails.empty? expected_mounts = persistent_mounts - if ! except_first.empty? + unless except_first.empty? first_expected_mount_source = expected_mounts.keys[0] first_expected_mount_destination = expected_mounts[first_expected_mount_source] expected_mounts.delete(first_expected_mount_source) @@ -410,27 +408,28 @@ Given /^all persistence presets(| from the old Tails version)(| but the first on assert_not_nil($remembered_persistence_mounts) expected_mounts = $remembered_persistence_mounts end - mount = $vm.execute("mount").stdout.chomp + mount = $vm.execute('mount').stdout.chomp for _, dir in expected_mounts do assert(mount.include?("on #{dir} "), "Persistent directory '#{dir}' is not mounted") end for dir in unexpected_mounts do - assert(! mount.include?("on #{dir} "), + assert(!mount.include?("on #{dir} "), "Persistent directory '#{dir}' is mounted") end end Given /^persistence is disabled$/ do - assert(!tails_persistence_enabled?, "Persistence is enabled") + assert(!tails_persistence_enabled?, 'Persistence is enabled') end def boot_device # Approach borrowed from # config/chroot_local_includes/lib/live/config/998-permissions - boot_dev_id = $vm.execute("udevadm info --device-id-of-file=/lib/live/mount/medium").stdout.chomp + boot_dev_id = $vm.execute('udevadm info --device-id-of-file=/lib/live/mount/medium') + .stdout.chomp boot_dev = $vm.execute("readlink -f /dev/block/'#{boot_dev_id}'").stdout.chomp - return boot_dev + boot_dev end def device_info(dev) @@ -449,16 +448,16 @@ def parse_udisksctl_info(input) tree = {} section = nil key = nil - input.chomp.split("\n").each { |line| + input.chomp.split("\n").each do |line| case line when /^\/org\/freedesktop\/UDisks2\/block_devices\// # no-op, ignore first line = device when /^ (org\.freedesktop\.UDisks2\..+):$/ - section = $1 + section = Regexp.last_match(1) tree[section] = {} when /^\s+(.+?):\s+(.+)$/ - key = $1 - value = $2 + key = Regexp.last_match(1) + value = Regexp.last_match(2) tree[section][key] = value else # XXX: Best effort = consider this a continuation from previous @@ -466,18 +465,18 @@ def parse_udisksctl_info(input) # stripping anything (e.g. leading whitespaces) tree[section][key] += line end - } - return tree + end + tree end Then /^Tails is running from (.*) drive "([^"]+)"$/ do |bus, name| bus = bus.downcase - case bus - when "sata" - expected_bus = "ata" - else - expected_bus = bus - end + expected_bus = case bus + when 'sata' + 'ata' + else + bus + end assert_equal(expected_bus, boot_device_type) actual_dev = boot_device # The boot partition differs between an using Tails installer and @@ -486,39 +485,38 @@ Then /^Tails is running from (.*) drive "([^"]+)"$/ do |bus, name| # (#10504). expected_devs = ['', '1', '4'].map { |e| $vm.disk_dev(name) + e } assert(expected_devs.include?(actual_dev), - "We are running from device #{actual_dev}, but for #{bus} drive " + + "We are running from device #{actual_dev}, but for #{bus} drive " \ "'#{name}' we expected to run from one of #{expected_devs}") end Then /^the boot device has safe access rights$/ do - - super_boot_dev = boot_device.sub(/[[:digit:]]+$/, "") + super_boot_dev = boot_device.sub(/[[:digit:]]+$/, '') devs = $vm.execute("ls -1 #{super_boot_dev}*").stdout.chomp.split - assert(devs.size > 0, "Could not determine boot device") + assert(!devs.empty?, 'Could not determine boot device') all_users = $vm.execute("cut -d':' -f1 /etc/passwd").stdout.chomp.split all_users_with_groups = all_users.collect do |user| - groups = $vm.execute("groups #{user}").stdout.chomp.sub(/^#{user} : /, "").split(" ") + groups = $vm.execute("groups #{user}").stdout.chomp.sub(/^#{user} : /, '').split(' ') [user, groups] end for dev in devs do dev_owner = $vm.execute("stat -c %U #{dev}").stdout.chomp dev_group = $vm.execute("stat -c %G #{dev}").stdout.chomp dev_perms = $vm.execute("stat -c %a #{dev}").stdout.chomp - assert_equal("root", dev_owner) - assert(dev_group == "disk" || dev_group == "root", - "Boot device '#{dev}' owned by group '#{dev_group}', expected " + + assert_equal('root', dev_owner) + assert(dev_group == 'disk' || dev_group == 'root', + "Boot device '#{dev}' owned by group '#{dev_group}', expected " \ "'disk' or 'root'.") - assert_equal("660", dev_perms) + assert_equal('660', dev_perms) for user, groups in all_users_with_groups do - next if user == "root" - assert(!(groups.include?(dev_group)), - "Unprivileged user '#{user}' is in group '#{dev_group}' which " + + next if user == 'root' + assert(!groups.include?(dev_group), + "Unprivileged user '#{user}' is in group '#{dev_group}' which " \ "owns boot device '#{dev}'") end end info = $vm.execute("udisksctl info --block-device '#{super_boot_dev}'").stdout - assert(info.match("^ HintSystem: +true$"), + assert(info.match('^ HintSystem: +true$'), "Boot device '#{super_boot_dev}' is not system internal for udisks") end @@ -527,8 +525,8 @@ Then /^all persistent filesystems have safe access rights$/ do fs_owner = $vm.execute("stat -c %U #{mountpoint}").stdout.chomp fs_group = $vm.execute("stat -c %G #{mountpoint}").stdout.chomp fs_perms = $vm.execute("stat -c %a #{mountpoint}").stdout.chomp - assert_equal("root", fs_owner) - assert_equal("root", fs_group) + assert_equal('root', fs_owner) + assert_equal('root', fs_group) assert_equal('775', fs_perms) end end @@ -547,13 +545,13 @@ Then /^all persistence configuration files have safe access rights$/ do file_owner = $vm.execute("stat -c %U '#{f}'").stdout.chomp file_group = $vm.execute("stat -c %G '#{f}'").stdout.chomp file_perms = $vm.execute("stat -c %a '#{f}'").stdout.chomp - assert_equal("tails-persistence-setup", file_owner) - assert_equal("tails-persistence-setup", file_group) + assert_equal('tails-persistence-setup', file_owner) + assert_equal('tails-persistence-setup', file_group) case f when /.*\/live-additional-software.conf$/ - assert_equal("644", file_perms) + assert_equal('644', file_perms) else - assert_equal("600", file_perms) + assert_equal('600', file_perms) end end end @@ -573,11 +571,11 @@ Then /^all persistent directories(| from the old Tails version) have safe access dir_perms = $vm.execute_successfully("stat -c %a '#{full_src}'").stdout.chomp dir_owner = $vm.execute_successfully("stat -c %U '#{full_src}'").stdout.chomp if dest.start_with?("/home/#{LIVE_USER}") - expected_perms = "700" + expected_perms = '700' expected_owner = LIVE_USER else - expected_perms = "755" - expected_owner = "root" + expected_perms = '755' + expected_owner = 'root' end assert_equal(expected_perms, dir_perms, "Persistent source #{full_src} has permission " \ @@ -592,21 +590,21 @@ end When /^I write some files expected to persist$/ do persistent_mounts.each do |_, dir| owner = $vm.execute("stat -c %U #{dir}").stdout.chomp - assert($vm.execute("touch #{dir}/XXX_persist", :user => owner).success?, + assert($vm.execute("touch #{dir}/XXX_persist", user: owner).success?, "Could not create file in persistent directory #{dir}") end end When /^I write some dotfile expected to persist$/ do - assert($vm.execute("touch /live/persistence/TailsData_unlocked/dotfiles/.XXX_persist", - :user => LIVE_USER).success?, - "Could not create a file in the dotfiles persistence.") + assert($vm.execute('touch /live/persistence/TailsData_unlocked/dotfiles/.XXX_persist', + user: LIVE_USER).success?, + 'Could not create a file in the dotfiles persistence.') end When /^I remove some files expected to persist$/ do persistent_mounts.each do |_, dir| owner = $vm.execute("stat -c %U #{dir}").stdout.chomp - assert($vm.execute("rm #{dir}/XXX_persist", :user => owner).success?, + assert($vm.execute("rm #{dir}/XXX_persist", user: owner).success?, "Could not remove file in persistent directory #{dir}") end end @@ -614,7 +612,7 @@ end When /^I write some files not expected to persist$/ do persistent_mounts.each do |_, dir| owner = $vm.execute("stat -c %U #{dir}").stdout.chomp - assert($vm.execute("touch #{dir}/XXX_gone", :user => owner).success?, + assert($vm.execute("touch #{dir}/XXX_gone", user: owner).success?, "Could not create file in persistent directory #{dir}") end end @@ -642,33 +640,33 @@ end Then /^the expected persistent dotfile is present in the filesystem$/ do expected_dirs = persistent_dirs assert($vm.execute("test -L #{expected_dirs['dotfiles']}/.XXX_persist").success?, - "Could not find expected persistent dotfile link.") + 'Could not find expected persistent dotfile link.') assert($vm.execute("test -e $(readlink -f #{expected_dirs['dotfiles']}/.XXX_persist)").success?, - "Could not find expected persistent dotfile link target.") + 'Could not find expected persistent dotfile link target.') end Then /^only the expected files are present on the persistence partition on USB drive "([^"]+)"$/ do |name| assert(!$vm.is_running?) disk = { - :path => $vm.storage.disk_path(name), - :opts => { - :format => $vm.storage.disk_format(name), - :readonly => true + path: $vm.storage.disk_path(name), + opts: { + format: $vm.storage.disk_format(name), + readonly: true } } $vm.storage.guestfs_disk_helper(disk) do |g, disk_handle| partitions = g.part_list(disk_handle).map do |part_desc| - disk_handle + part_desc["part_num"].to_s + disk_handle + part_desc['part_num'].to_s end partition = partitions.find do |part| - g.blkid(part)["PART_ENTRY_NAME"] == "TailsData" + g.blkid(part)['PART_ENTRY_NAME'] == 'TailsData' end assert_not_nil(partition, "Could not find the 'TailsData' partition " \ "on disk '#{disk_handle}'") - luks_mapping = File.basename(partition) + "_unlocked" + luks_mapping = File.basename(partition) + '_unlocked' g.luks_open(partition, @persistence_password, luks_mapping) luks_dev = "/dev/mapper/#{luks_mapping}" - mount_point = "/" + mount_point = '/' g.mount(luks_dev, mount_point) assert_not_nil($remembered_persistence_mounts) $remembered_persistence_mounts.each do |dir, _| @@ -687,15 +685,15 @@ end When /^I delete the persistent partition$/ do step 'I start "Delete persistent volume" via GNOME Activities Overview' - @screen.wait("PersistenceWizardDeletionStart.png", 120) - @screen.type(" ") - @screen.wait("PersistenceWizardDone.png", 120) + @screen.wait('PersistenceWizardDeletionStart.png', 120) + @screen.press("space") + @screen.wait('PersistenceWizardDone.png', 120) end Then /^Tails has started in UEFI mode$/ do - assert($vm.execute("test -d /sys/firmware/efi").success?, - "/sys/firmware/efi does not exist") - end + assert($vm.execute('test -d /sys/firmware/efi').success?, + '/sys/firmware/efi does not exist') +end Given /^I create a ([[:alpha:]]+) label on disk "([^"]+)"$/ do |type, name| $vm.storage.disk_mklabel(name, type) @@ -741,17 +739,22 @@ TAILS_VERSION_ID="#{version}" path: 'usr/share/common-licenses/BSD', status: :removed }, + { + filesystem: :rootfs, + path: 'usr/share/doc/tor', + status: :removed + }, { filesystem: :medium, path: 'utils/linux/syslinux', status: :removed - }, + } ] case version - when '2.2~test' + when '2.2~testoverlayfs' changes - when '2.3~test' + when '2.3~testoverlayfs' changes + [ { filesystem: :rootfs, @@ -770,7 +773,7 @@ Some content 2.3 filesystem: :medium, path: 'utils/mbr/mbr.bin', status: :removed - }, + } ] else raise "Test suite implementation error: unsupported version #{version}" @@ -778,7 +781,7 @@ Some content 2.3 end Given /^the file system changes introduced in version (.+) are (not )?present(?: in the (\S+) Browser's chroot)?$/ do |version, not_present, chroot_browser| - assert(['2.2~test', '2.3~test'].include? version) + assert(['2.2~testoverlayfs', '2.3~testoverlayfs'].include?(version)) upgrade_applied = not_present.nil? chroot_browser = "#{chroot_browser.downcase}-browser" if chroot_browser changes = iuk_changes(version) @@ -814,13 +817,13 @@ Given /^the file system changes introduced in version (.+) are (not )?present(?: end Then /^I am proposed to install an incremental upgrade to version (.+)$/ do |version| - recovery_proc = Proc.new do + recovery_proc = proc do recover_from_upgrader_failure end failure_pic = 'TailsUpgraderFailure.png' success_pic = "TailsUpgraderUpgradeTo#{version}.png" retry_tor(recovery_proc) do - match, _ = @screen.waitAny([success_pic, failure_pic], 2*60) + match, = @screen.wait_any([success_pic, failure_pic], 2 * 60) assert_equal(success_pic, match) end end @@ -834,7 +837,7 @@ end Then /^I can successfully install the incremental upgrade to version (.+)$/ do |version| step 'I agree to install the incremental upgrade' - recovery_proc = Proc.new do + recovery_proc = proc do recover_from_upgrader_failure step "I am proposed to install an incremental upgrade to version #{version}" step 'I agree to install the incremental upgrade' @@ -842,7 +845,7 @@ Then /^I can successfully install the incremental upgrade to version (.+)$/ do | failure_pic = 'TailsUpgraderFailure.png' success_pic = 'TailsUpgraderDownloadComplete.png' retry_tor(recovery_proc) do - match, _ = @screen.waitAny([success_pic, failure_pic], 2*60) + match, = @screen.wait_any([success_pic, failure_pic], 2 * 60) assert_equal(success_pic, match) end @screen.click('TailsUpgraderApplyUpgradeButton.png') @@ -867,16 +870,16 @@ def installed_squashes listed_squashes.first, "Tails.module does not list #{default_squash} on the first line" ) - present_squashes = $vm.file_glob("#{live}/*.squashfs").map { |f| + present_squashes = $vm.file_glob("#{live}/*.squashfs").map do |f| f.sub('/lib/live/mount/medium/live/', '') - } + end # Sanity check assert_equal( listed_squashes.sort, present_squashes.sort, 'Tails.module does not match the present .squashfs files' ) - return listed_squashes + listed_squashes end Given /^Tails is fooled to think a (.+) SquashFS delta is installed$/ do |version| @@ -893,21 +896,20 @@ Given /^Tails is fooled to think a (.+) SquashFS delta is installed$/ do |versio installed_squashes, 'Implementation error, alert the test suite maintainer!' ) - last_version = installed_squashes.last.sub(/\.squashfs$/, '') $vm.execute_successfully( "sed --regexp-extended -i '1s/^\S+ /#{version}/' /etc/amnesia/version" ) $vm.execute_successfully( - "sed -i 's/^TAILS_VERSION_ID=.*/TAILS_VERSION_ID=#{version}/' " + - "/etc/amnesia/version" + "sed -i 's/^TAILS_VERSION_ID=.*/TAILS_VERSION_ID=#{version}/' " \ + '/etc/amnesia/version' ) end Then /^the Upgrader considers the system as up-to-date$/ do - try_for(120, :delay => 10) do + try_for(120, delay: 10) do $vm.execute_successfully( - "systemctl --user status tails-upgrade-frontend.service", - :user => LIVE_USER + 'systemctl --user status tails-upgrade-frontend.service', + user: LIVE_USER ) $vm.execute_successfully( "journalctl | grep -q -E 'tails-upgrade-frontend-wrapper\[[0-9]+\]: The system is up-to-date'" @@ -917,18 +919,18 @@ end def upgrader_trusted_signing_subkeys $vm.execute_successfully( - "sudo -u tails-upgrade-frontend gpg --batch --list-keys --with-colons '#{TAILS_SIGNING_KEY}'", + "sudo -u tails-upgrade-frontend gpg --batch --list-keys --with-colons '#{TAILS_SIGNING_KEY}'" ).stdout.split("\n") - .select { |line| /^sub:/.match(line) } - .map { |line| line[/^sub:.:\d+:\d+:(?<subkeyid>[A-F0-9]+):/, 'subkeyid'] } + .select { |line| /^sub:/.match(line) } + .map { |line| line[/^sub:.:\d+:\d+:(?<subkeyid>[A-F0-9]+):/, 'subkeyid'] } end Given /^the signing key used by the Upgrader is outdated$/ do - upgrader_trusted_signing_subkeys.each { |subkeyid| + upgrader_trusted_signing_subkeys.each do |subkeyid| $vm.execute_successfully( "sudo -u tails-upgrade-frontend gpg --batch --yes --delete-keys '#{subkeyid}!'" ) - } + end assert_equal(0, upgrader_trusted_signing_subkeys.length) end @@ -951,17 +953,17 @@ end Then /^the label of the system partition on "([^"]+)" is "([^"]+)"$/ do |name, label| assert($vm.is_running?) disk_dev = $vm.disk_dev(name) - part_dev = disk_dev + "1" - check_disk_integrity(name, disk_dev, "gpt") - check_part_integrity(name, part_dev, "filesystem", "vfat", label) + part_dev = disk_dev + '1' + check_disk_integrity(name, disk_dev, 'gpt') + check_part_integrity(name, part_dev, 'filesystem', 'vfat', label) end Then /^the system partition on "([^"]+)" is an EFI system partition$/ do |name| assert($vm.is_running?) disk_dev = $vm.disk_dev(name) - part_dev = disk_dev + "1" - check_disk_integrity(name, disk_dev, "gpt") - check_part_integrity(name, part_dev, "filesystem", "vfat", nil, + part_dev = disk_dev + '1' + check_disk_integrity(name, disk_dev, 'gpt') + check_part_integrity(name, part_dev, 'filesystem', 'vfat', nil, # EFI System Partition 'c12a7328-f81f-11d2-ba4b-00a0c93ec93b') end @@ -971,7 +973,7 @@ Then /^the FAT filesystem on the system partition on "([^"]+)" is at least (\d+) wanted_size = convert_to_bytes(size.to_i, unit) disk_dev = $vm.disk_dev(name) - part_dev = disk_dev + "1" + part_dev = disk_dev + '1' udisks_info = $vm.execute_successfully("udisksctl info --block-device #{part_dev}").stdout partition_size = parse_udisksctl_info(udisks_info)['org.freedesktop.UDisks2.Partition']['Size'].to_i @@ -990,7 +992,7 @@ end Then /^the UUID of the FAT filesystem on the system partition on "([^"]+)" was randomized$/ do |name| disk_dev = $vm.disk_dev(name) - part_dev = disk_dev + "1" + part_dev = disk_dev + '1' # Get the UUID from the block area: udisks_info = $vm.execute_successfully("udisksctl info --block-device #{part_dev}").stdout @@ -1003,7 +1005,7 @@ end Then /^the label of the FAT filesystem on the system partition on "([^"]+)" is "([^"]+)"$/ do |name, label| disk_dev = $vm.disk_dev(name) - part_dev = disk_dev + "1" + part_dev = disk_dev + '1' # Get FS label from the block area: udisks_info = $vm.execute_successfully("udisksctl info --block-device #{part_dev}").stdout @@ -1015,7 +1017,7 @@ end Then /^the system partition on "([^"]+)" has the expected flags$/ do |name| disk_dev = $vm.disk_dev(name) - part_dev = disk_dev + "1" + part_dev = disk_dev + '1' # Look at the flags from the partition area: udisks_info = $vm.execute_successfully("udisksctl info --block-device #{part_dev}").stdout @@ -1028,43 +1030,43 @@ Then /^the system partition on "([^"]+)" has the expected flags$/ do |name| "Got #{flags} as partition flags on #{part_dev} (for #{name}), instead of the expected #{expected_flags}") end - Given(/^I install a Tails USB image to the (\d+) MiB disk with GNOME Disks$/) do |size_in_MiB_of_destination_disk| # GNOME Disks displays devices sizes in GB, with 1 decimal digit precision size_in_GB_of_destination_disk = convert_from_bytes( convert_to_bytes(size_in_MiB_of_destination_disk.to_i, 'MiB'), 'GB' ).round(1).to_s - debug_log("Expected size of destination disk: " + + debug_log('Expected size of destination disk: ' + size_in_GB_of_destination_disk) step 'I start "Disks" via GNOME Activities Overview' disks = Dogtail::Application.new('gnome-disks') - disks.children(roleName: 'table cell').find { |row| + disks.children(roleName: 'table cell').find do |row| /^#{size_in_GB_of_destination_disk} GB Drive/.match(row.name) - }.grabFocus + end.grabFocus disks.child('Menu', roleName: 'toggle button').click disks.child('Restore Disk Image…', roleName: 'menu item').click - restore_dialog = disks.child('Restore Disk Image', roleName: 'dialog', + restore_dialog = disks.child('Restore Disk Image', + roleName: 'dialog', showingOnly: true) # Open the file chooser disks.pressKey('Enter') select_disk_image_dialog = disks.child('Select Disk Image to Restore', - roleName: 'file chooser', + roleName: 'file chooser', showingOnly: true) disks.typeText(@usb_image_path) sleep 2 # avoid ENTER being eaten by the auto-completion system disks.pressKey('Enter') try_for(10) do - ! select_disk_image_dialog.showing + !select_disk_image_dialog.showing end restore_dialog.child('Start Restoring…', roleName: 'push button').click disks.child('Information', roleName: 'alert', showingOnly: true) - .child('Restore', roleName: 'push button', showingOnly: true) - .click + .child('Restore', roleName: 'push button', showingOnly: true) + .click # Wait until the restoration job is finished job = disks.child('Job', roleName: 'label', showingOnly: true) try_for(60) do - ! job.showing + !job.showing end end diff --git a/features/step_definitions/veracrypt.rb b/features/step_definitions/veracrypt.rb index 189d0fdd502895cc5ba167e2ed1cdd49654f323b..bedb83beeb798b76a700871039a01bbd7e3217e9 100644 --- a/features/step_definitions/veracrypt.rb +++ b/features/step_definitions/veracrypt.rb @@ -136,13 +136,13 @@ When /^I unlock and mount this VeraCrypt (volume|file container) with Unlock Ver step 'I start "Unlock VeraCrypt Volumes" via GNOME Activities Overview' case support when 'volume' - @screen.wait_and_click('Gtk3UnlockButton.png', 10) + @screen.wait('Gtk3UnlockButton.png', 10).click when 'file container' - @screen.wait_and_click('UnlockVeraCryptVolumesAddButton.png', 10) + @screen.wait('UnlockVeraCryptVolumesAddButton.png', 10).click @screen.wait('Gtk3FileChooserDesktopButton.png', 10) @screen.type(@veracrypt_shared_dir_in_guest + '/' + $veracrypt_volume_name) sleep 2 # avoid ENTER being eaten by the auto-completion system - @screen.type(Sikuli::Key.ENTER) + @screen.press("Return") end @screen.wait('VeraCryptUnlockDialog.png', 10) @screen.type( @@ -150,13 +150,13 @@ When /^I unlock and mount this VeraCrypt (volume|file container) with Unlock Ver ) if @veracrypt_needs_pim # Go back to the PIM entry text field - @screen.type(Sikuli::Key.TAB, Sikuli::KeyModifier.SHIFT) + @screen.press("shift", "Tab") sleep 1 # Otherwise typing the PIM goes in the void @screen.type($veracrypt_pim) end @screen.click('VeraCryptUnlockDialogHiddenVolumeLabel.png') if @veracrypt_is_hidden - @screen.type(Sikuli::Key.ENTER) - @screen.waitVanish('VeraCryptUnlockDialog.png', 10) + @screen.press("Return") + @screen.wait_vanish('VeraCryptUnlockDialog.png', 10) try_for(30) do $vm.execute_successfully("ls /media/amnesia/*/GPL-3") end @@ -189,7 +189,7 @@ When /^I unlock and mount this VeraCrypt (volume|file container) with GNOME Disk begin filter.child('All Files', roleName: 'menu item').click true - rescue RuntimeError + rescue Dogtail::Failure # we probably clicked too early, which triggered an "Attempting # to generate a mouse event at negative coordinates" Dogtail error false @@ -197,7 +197,7 @@ When /^I unlock and mount this VeraCrypt (volume|file container) with GNOME Disk end @screen.type(@veracrypt_shared_dir_in_guest + '/' + $veracrypt_volume_name) sleep 2 # avoid ENTER being eaten by the auto-completion system - @screen.type(Sikuli::Key.ENTER) + @screen.press("Return") try_for(15) do begin disks.children(roleName: 'table cell').find { |row| @@ -226,14 +226,15 @@ When /^I unlock and mount this VeraCrypt (volume|file container) with GNOME Disk @screen.click('GnomeDisksUnlockDialogKeyfileComboBox.png') @screen.wait('Gtk3FileChooserDesktopButton.png', 10) $vm.file_overwrite('/tmp/keyfile', 'asdf') - @screen.type('/tmp/keyfile' + Sikuli::Key.ENTER) - @screen.waitVanish('Gtk3FileChooserDesktopButton.png', 10) + @screen.type('/tmp/keyfile', ['Return']) + @screen.wait_vanish('Gtk3FileChooserDesktopButton.png', 10) end - @screen.wait_and_click('GnomeDisksUnlockDialogHiddenVolumeLabel.png', 10) if @veracrypt_is_hidden - # Clicking is robust neither with Dogtail (no visible effect) nor with Sikuli - # (that sometimes clicks just a little bit outside of the button) + @screen.wait('GnomeDisksUnlockDialogHiddenVolumeLabel.png', 10).click if @veracrypt_is_hidden + # Clicking is robust neither with Dogtail (no visible effect) nor + # with imaget matching (that sometimes clicks just a little bit + # outside of the button) @screen.wait('Gtk3UnlockButton.png', 10) - @screen.type('u', Sikuli::KeyModifier.ALT) # "Unlock" button + @screen.press("alt", 'u') # "Unlock" button try_for(10, :msg => "Failed to mount the unlocked volume") do begin unlocked_volume = disks.child("#{size} VeraCrypt/TrueCrypt", roleName: 'panel', showingOnly: true) @@ -246,7 +247,7 @@ When /^I unlock and mount this VeraCrypt (volume|file container) with GNOME Disk disks.pressKey('Down') disks.child('', roleName: 'panel', description: 'Mount selected partition', showingOnly: true).click true - rescue RuntimeError + rescue Dogtail::Failure # we probably did something too early, which triggered a Dogtail error # such as "Attempting to generate a mouse event at negative coordinates" false diff --git a/features/support/config.rb b/features/support/config.rb index bba96ac9034ebcf5d848be18524549fcf52d9063..49e5a8eb3e5ba63a51852fa4ea9aa075f586819e 100644 --- a/features/support/config.rb +++ b/features/support/config.rb @@ -61,9 +61,8 @@ loop do break end end -SIKULI_CANDIDATES_DIR = "#{ARTIFACTS_DIR}/sikuli_candidates" -SIKULI_IMAGE_PATH = "#{Dir.pwd}/features/images/" -SIKULI_MIN_SIMILARITY = 0.9 +OPENCV_IMAGE_PATH = "#{Dir.pwd}/features/images/" +OPENCV_MIN_SIMILARITY = 0.9 # Constants that are statically initialized. CONFIGURED_KEYSERVER_HOSTNAME = 'zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion' diff --git a/features/support/helpers/display_helper.rb b/features/support/helpers/display_helper.rb index b4dce73395daa0d4027cb3bda9b5e4edd8ded48a..c6b2bc526fa09433b81bb19567294eba50dbcf2c 100644 --- a/features/support/helpers/display_helper.rb +++ b/features/support/helpers/display_helper.rb @@ -23,8 +23,8 @@ class Display @domain, :err => ["/dev/null", "w"]]) # We wait for the display to be active to not lose actions - # (e.g. key presses via sikuli) that come immediately after - # starting (or restoring) a vm + # (e.g. key presses) that come immediately after starting (or + # restoring) a vm try_for(20, { :delay => 0.1, :msg => "virt-viewer failed to start"}) { active? } @@ -45,4 +45,12 @@ class Display start end + def screenshot(target) + FileUtils.rm_f(target) + p = IO.popen(['import', '-quality', '100%', '-window', 'root', target]) + p.close + assert($?.success?) + assert(File.exists?(target)) + end + end diff --git a/features/support/helpers/dogtail.rb b/features/support/helpers/dogtail.rb index fa69f035b63e3faf4cab26e66608c796c0cb48ae..377ea7f24b5a1be4a869b06942b25d44d1452e94 100644 --- a/features/support/helpers/dogtail.rb +++ b/features/support/helpers/dogtail.rb @@ -35,6 +35,9 @@ module Dogtail :window, ] + class Failure < StandardError + end + # We want to keep this class immutable so that handles always are # left intact when doing new (proxied) method calls. This way we # can support stuff like: @@ -79,7 +82,7 @@ module Dogtail code = code.join("\n") if code.class == Array c = RemoteShell::PythonCommand.new($vm, code, user: @opts[:user]) if c.failure? - raise RuntimeError.new("The Dogtail script raised: #{c.exception}") + raise Failure.new("The Dogtail script raised: #{c.exception}") end return c end diff --git a/features/support/helpers/misc_helpers.rb b/features/support/helpers/misc_helpers.rb index 33e8a375146dafc869ccebd10956adbc87584c9c..5a05b90570730806c2aee0400c6738146d1e8032 100644 --- a/features/support/helpers/misc_helpers.rb +++ b/features/support/helpers/misc_helpers.rb @@ -37,16 +37,36 @@ def try_for(timeout, options = {}) return yield end options[:delay] ||= 1 + options[:log] = true if options[:log].nil? last_exception = nil # Create a unique exception used only for this particular try_for # call's Timeout to allow nested try_for:s. If we used the same one, # the innermost try_for would catch all outer ones', creating a # really strange situation. unique_timeout_exception = Class.new(UniqueTryForTimeoutError) + attempts = 0 + start_time = Time.now Timeout::timeout(timeout, unique_timeout_exception) do loop do begin - return if yield + attempts += 1 + elapsed = (Time.now - start_time) + # XXX: The commit that introduced this version check can be + # reverted when we drop support for running the test suite on + # Debian Stretch. + if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.4") + elapsed = ('%.2f' % elapsed).chomp(".00").chomp(".0").chomp("0") + else + elapsed = elapsed.ceil(2) + end + debug_log("try_for: attempt #{attempts} (#{elapsed}s elapsed " + + "of #{timeout}s)...") if options[:log] + if yield + debug_log("try_for: success!") if options[:log] + return + end + debug_log("try_for: failed by code block " + + "returning failure") if options[:log] rescue NameError, UniqueTryForTimeoutError => e # NameError most likely means typos, and hiding that is rarely # (never?) a good idea, so we rethrow them. See below why we @@ -57,6 +77,8 @@ def try_for(timeout, options = {}) # block. Well we save the last exception so we can print it in # case of a timeout. last_exception = e + debug_log("try_for: failed with exception: " + + "#{last_exception.class}: #{last_exception}") if options[:log] end sleep options[:delay] end @@ -132,7 +154,10 @@ def retry_action(max_retries, options = {}, &block) retries = 1 loop do begin + debug_log("retry_action: trying #{options[:operation_name]} (attempt " + + "#{retries} of #{max_retries})...") block.call + debug_log("retry_action: success!") return rescue NameError => e # NameError most likely means typos, and hiding that is rarely @@ -140,9 +165,8 @@ def retry_action(max_retries, options = {}, &block) raise e rescue Exception => e if retries <= max_retries - debug_log("#{options[:operation_name]} failed (Try #{retries} of " + - "#{max_retries}) with:\n" + - "#{e.class}: #{e.message}") + debug_log("retry_action: #{options[:operation_name]} failed with " + + "exception: #{e.class}: #{e.message}") options[:recovery_proc].call if options[:recovery_proc] retries += 1 else @@ -297,10 +321,10 @@ def pause(message = "Paused") STDOUT.write "\a" STDERR.puts loop do - STDERR.puts "Return: Continue; d: Debugging REPL" + STDERR.puts "Return/q: Continue; d: Debugging REPL" c = STDIN.getch case c - when "\r" + when "q", "\r", 3.chr # Ctrl+C => 3 return when "d" binding.pry(quiet: true) @@ -356,3 +380,11 @@ def dbus_send(*args, **opts) ret = ret_lines.join("\n") dbus_send_ret_conv(ret) end + +def ffmpeg + if cmd_helper('lsb_release --short --codename').chomp == 'stretch' + return 'avconv' + else + return 'ffmpeg' + end +end diff --git a/features/support/helpers/opencv.rb b/features/support/helpers/opencv.rb new file mode 100644 index 0000000000000000000000000000000000000000..5018768a38345b23ae7109acf2cd58bc4a0f649d --- /dev/null +++ b/features/support/helpers/opencv.rb @@ -0,0 +1,38 @@ +class OpenCVInternalError < StandardError +end + +module OpenCV + + if cmd_helper('lsb_release --short --codename').chomp == 'stretch' + @python = 'python2.7' + else + @python = 'python3' + end + + def self.matchTemplate(image, screen, sensitivity, show_match) + assert(sensitivity < 1.0) + # Do a deep-copy so we don't mess up the outer environment + env = Hash[ENV] + if ENV['USER_DISPLAY'].nil? || ENV['USER_DISPLAY'] == '' + show_match = false + else + env['DISPLAY'] = ENV['USER_DISPLAY'] + end + p = IO.popen( + [env, @python, "#{GIT_DIR}/features/scripts/opencv_match_template.py", + screen, image, sensitivity.to_s, show_match.to_s], + err: [:child, :out] + ) + out = p.readlines.join("\n") + p.close + case $?.exitstatus + when 0 + return out.chomp.split.map { |s| s.to_i } + when 1 + return nil + else + raise OpenCVInternalError.new(out) + end + end + +end diff --git a/features/support/helpers/remote_shell.rb b/features/support/helpers/remote_shell.rb index 011fefe5c1f13b09056a20fcdd51ef40b0421ef0..b8fa83c982912ea52f41ccf434fcdc3e78950cf5 100644 --- a/features/support/helpers/remote_shell.rb +++ b/features/support/helpers/remote_shell.rb @@ -70,7 +70,7 @@ module RemoteShell type = opts[:spawn] ? "spawn" : "call" debug_log("Remote shell: #{type}ing as #{opts[:user]}: #{cmd}") ret = RemoteShell.communicate(vm, 'sh_' + type, opts[:user], cmd, **opts) - debug_log("#{type} returned: #{ret}") if not(opts[:spawn]) + debug_log("Remote shell: #{type} returned: #{ret}") if not(opts[:spawn]) return ret end diff --git a/features/support/helpers/screen.rb b/features/support/helpers/screen.rb new file mode 100644 index 0000000000000000000000000000000000000000..7f4fdba8d8a8494a6bc24ca382cb1775784c6b1a --- /dev/null +++ b/features/support/helpers/screen.rb @@ -0,0 +1,396 @@ +class FindFailed < StandardError +end + +class Match + + attr_reader :w, :h, :x, :y, :image + + def initialize(image, screen, x, y, w, h) + @image = image + @screen = screen + @x = x + @y = y + @w = w + @h = h + end + + def middle + [@x + @w/2, @y + @h/2] + end + + def hover(**opts) + @screen.hover(*middle, **opts) + end + + def click(**opts) + @screen.click(*middle, **opts) + end + +end + +class Screen + + attr_reader :w, :h + + # Values extracted from the virkeyname-linux(7) man page. These are the + # keys that tend to be the same on all keyboards, no matter locale. + # Beware that this has not been tested/verified thoroughly! + COMMON_KEYMAP = { + "a" => [0x1e], "b" => [0x30], "c" => [0x2e], "d" => [0x20], "e" => [0x12], + "f" => [0x21], "g" => [0x22], "h" => [0x23], "i" => [0x17], "j" => [0x24], + "k" => [0x25], "l" => [0x26], "m" => [0x32], "n" => [0x31], "o" => [0x18], + "p" => [0x19], "q" => [0x10], "r" => [0x13], "s" => [0x1f], "t" => [0x14], + "u" => [0x16], "v" => [0x2f], "w" => [0x11], "x" => [0x2d], "y" => [0x15], + "z" => [0x2c], + + "A" => [0x2a, 0x1e], "B" => [0x2a, 0x30], "C" => [0x2a, 0x2e], + "D" => [0x2a, 0x20], "E" => [0x2a, 0x12], "F" => [0x2a, 0x21], + "G" => [0x2a, 0x22], "H" => [0x2a, 0x23], "I" => [0x2a, 0x17], + "J" => [0x2a, 0x24], "K" => [0x2a, 0x25], "L" => [0x2a, 0x26], + "M" => [0x2a, 0x32], "N" => [0x2a, 0x31], "O" => [0x2a, 0x18], + "P" => [0x2a, 0x19], "Q" => [0x2a, 0x10], "R" => [0x2a, 0x13], + "S" => [0x2a, 0x1f], "T" => [0x2a, 0x14], "U" => [0x2a, 0x16], + "V" => [0x2a, 0x2f], "W" => [0x2a, 0x11], "X" => [0x2a, 0x2d], + "Y" => [0x2a, 0x15], "Z" => [0x2a, 0x2c], + + "1" => [0x02], "2" => [0x03], "3" => [0x04], "4" => [0x05], + "5" => [0x06], "6" => [0x07], "7" => [0x08], "8" => [0x09], + "9" => [0x0a], "0" => [0x0b], + + "f1" => [0x3b], "f2" => [0x3c], "f3" => [0x3d], "f4" => [0x3e], + "f5" => [0x3f], "f6" => [0x40], "f7" => [0x41], "f8" => [0x42], + "f9" => [0x43], "f10" => [0x44], "f11" => [0x57], "f12" => [0x58], + + "page_up" => [0x68], "page_down" => [0x6d], "home" => [0x66], + "end" => [0x6b], "insert" => [0x6e], "delete" => [0x6f], + "up" => [0x67], "down" => [0x6c], "left" => [0x69], "right" => [0x6a], + "escape" => [0x01], "backspace" => [0x0e], + "printscreen" => [0x63], "sysrq" => [0x63], + "space" => [0x39], " " => [0x39], + "return" => [0x1c], "enter" => [0x1c], "\n" => [0x1c], + "tab" => [0x0f], "\t" => [0x0f], + "alt" => [0x38], "right_alt" => [0x64], + "ctrl" => [0x1d], "right_ctrl" => [0x61], + "shift" => [0x2a], "right_shift" => [0x36], + } + + US_KEYMAP = COMMON_KEYMAP.merge({ + "-" => [0x0c], "=" => [0x0d], ";" => [0x27], "'" => [0x28], + "`" => [0x29], "\\" => [0x2b], "," => [0x33], "." => [0x34], + "/" => [0x35], "<" => [0x56], "[" => [0x1a], "]" => [0x1b], + + "!" => [0x2a, 0x02], "@" => [0x2a, 0x03], "#" => [0x2a, 0x04], + "$" => [0x2a, 0x05], "%" => [0x2a, 0x06], "^" => [0x2a, 0x07], + "&" => [0x2a, 0x08], "*" => [0x2a, 0x09], "(" => [0x2a, 0x0a], + ")" => [0x2a, 0x0b], "_" => [0x2a, 0x0c], "+" => [0x2a, 0x0d], + "{" => [0x2a, 0x1a], "}" => [0x2a, 0x1b], ":" => [0x2a, 0x27], + "\"" => [0x2a, 0x28], "~" => [0x2a, 0x29], "|" => [0x2a, 0x2b], + "?" => [0x2a, 0x35], ">" => [0x2a, 0x56], + }) + + def initialize + @w = 1024 + @h = 768 + end + + def xdotool(*args) + out = cmd_helper(["xdotool"] + args.map { |x| x.to_s }) + assert(out.empty?, "xdotool reported an error:\n" + out) + end + + def match_screen(image, sensitivity, show_image) + screenshot = "#{$config["TMPDIR"]}/screenshot.png" + $vm.display.screenshot(screenshot) + return OpenCV.matchTemplate("#{OPENCV_IMAGE_PATH}/#{image}", + screenshot, sensitivity, show_image) + ensure + FileUtils.rm_f(screenshot) + end + + def real_find(pattern, **opts) + opts[:log] = true if opts[:log].nil? + opts[:sensitivity] ||= OPENCV_MIN_SIMILARITY + if pattern.instance_of?(String) + image = pattern + elsif pattern.instance_of?(Match) + image = pattern.image + else + raise "unsupported type: #{pattern.class}" + end + debug_log("Screen: trying to find #{image}") if opts[:log] + p = match_screen(image, opts[:sensitivity], false) + if p.nil? + raise FindFailed.new("cannot find #{image} on the screen") + end + m = Match.new(image, self, *p) + debug_log("Screen: found #{image} at (#{m.middle.join(', ')})") + return m + end + + def wait(pattern, timeout, **opts) + opts[:log] = true if opts[:log].nil? + debug_log("Screen: waiting for #{pattern}") if opts[:log] + try_for(timeout, delay: 0, log: false) do + return real_find(pattern, **opts.clone.update(log: false)) + end + rescue Timeout::Error + raise FindFailed.new("cannot find #{pattern} on the screen") + end + + def find(pattern, **opts) + debug_log("Screen: trying to find #{pattern}") if opts[:log] + wait(pattern, 2, **opts.clone.update(log: false)) + end + + def exists(pattern, **opts) + opts[:log] = true if opts[:log].nil? + return !!find(pattern, **opts) + rescue FindFailed + debug_log("cannot find #{pattern} on the screen") if opts[:log] + false + end + + def wait_vanish(pattern, timeout, **opts) + opts[:log] = true if opts[:log].nil? + debug_log("Screen: waiting for #{pattern} to vanish") if opts[:log] + try_for(timeout, delay: 0, log: false) do + not(exists(pattern, **opts.clone.update(log: false))) + end + debug_log("Screen: #{pattern} has vanished") if opts[:log] + return nil + rescue Timeout::Error + raise FindFailed.new("can still find #{pattern} on the screen") + end + + def find_any(patterns, **opts) + opts[:log] = true if opts[:log].nil? + debug_log("Screen: trying to find any of #{patterns.join(', ')}") if opts[:log] + patterns.each do |pattern| + begin + return [pattern, find(pattern, **opts.clone.update(log: false))] + rescue FindFailed + # Ignore. We'll throw an appropriate exception after having + # looped through all patterns and found none of them. + end + end + # If we've reached this point, none of the patterns could be found. + raise FindFailed.new("can not find any of the patterns #{patterns} " + + "on the screen") + end + + def exists_any(*args, **opts) + return !!find_any(*args, **opts) + rescue FindFailed + false + end + + def wait_any(patterns, time, **opts) + opts[:log] = true if opts[:log].nil? + debug_log("Screen: waiting for any of #{patterns.join(', ')}") if opts[:log] + try_for(time, delay: 0, log: false) do + return find_any(patterns, **opts.clone.update(log: false)) + end + rescue Timeout::Error + raise FindFailed.new("can not find any of the patterns #{patterns} " + + "on the screen") + end + + def press(*sequence, **opts) + opts[:log] = true if opts[:log].nil? + # This is the minimum time (in seconds) between key presses; + # repeatedly calling this method will ensure that key presses are + # emitted with this minimum interval. This helps preventing + # repeated calls interfering with each other. + opts[:delay] ||= 0.060 # Sikuli used 60ms delay. + # How long the key(s) are held (in seconds). With holdtime = 0 + # (like virsh does it) we have seen issues, in particular with key + # modifiers like Shift bleeding over to subsequent invocations, so + # e.g. type("A9f") actually results in "A(F" (with a US layout) + # because the Shift wasn't released *immediately* after the "A". + opts[:holdtime] ||= 0.010 + debug_log("Keyboard: pressing: #{sequence.join('+')}") if opts[:log] + codes = [] + sequence.each do |key| + keymap = case $language + when '' + US_KEYMAP + else + COMMON_KEYMAP + end + # We use lower-case to make it easier to get the keycodes right. + code = keymap[('A'..'Z').include?(key) ? key : key.downcase] + if code.nil? + err = "No key code defined for key '#{key}'" + err += " in #{$language}" unless $language.empty? + raise err + end + codes += code + end + $vm.domain.send_key(Libvirt::Domain::KEYCODE_SET_LINUX, + (opts[:holdtime]*1000).to_i, codes) + sleep(opts[:delay]) + return nil + end + + def type(*args) + args.each do |arg| + if arg.instance_of?(String) + debug_log("Keyboard: typing: #{arg}") + arg.each_char do |char| + press(char, log: false) + end + elsif arg.instance_of?(Array) + press(*arg) + else + raise("Unsupported type: #{arg.class}") + end + end + return nil + end + + def hover(*args, **opts) + opts[:log] = true if opts[:log].nil? + case args.size + when 1 + pattern = args[0] + m = find(pattern, **opts) + x, y = m.middle + when 2 + x, y = args + else + raise "unsupported arguments: #{args}" + end + debug_log("Mouse: moving to (#{x}, #{y})") if opts[:log] + xdotool('mousemove', x, y) + return [x, y] + end + + def hide_cursor + hover(@w - 1, @h/2) + end + + def click(*args, **opts) + opts[:button] ||= 1 + opts[:button] = 1 if opts[:button] == 'left' + opts[:button] = 2 if opts[:button] == 'middle' + opts[:button] = 3 if opts[:button] == 'right' + opts[:repeat] ||= 1 + opts[:repeat] = 2 if opts[:double] + opts[:log] = true if opts[:log].nil? + x, y = hover(*args, **opts.clone.update(log: false)) + action = "clicking" + if opts[:repeat] == 2 + action = "double-#{action}" + elsif opts[:repeat] > 2 + action = "#{action} (repeat: #{opts[:repeat]})" + end + button = {1 => 'left', 2 => 'middle', 3 => 'right'}[opts[:button]] + debug_log("Mouse: #{action} #{button} button at (#{x}, #{y})") if opts[:log] + xdotool('click', '--repeat', opts[:repeat], opts[:button]) + return [x, y] + end + +end + +class ImageBumpFailed < StandardError +end + +# This class is the same as Screen but with the image matching methods +# wrapped so failures (FindFailed) are intercepted, and we enter an +# interactive mode allowing images to be updated. Note that the the +# negative image matching methods (*_vanish()) are excepted (it +# doesn't make sense for them). +class ImageBumpingScreen + + def initialize + @screen = Screen.new + end + + def interactive_image_bump(image, opts = {}) + opts[:sensitivity] ||= OPENCV_MIN_SIMILARITY + $interactive_image_bump_ignores ||= [] + if $interactive_image_bump_ignores.include?(image) + raise ImageBumpFailed + end + message = "Failed to find #{image}" + notify_user(message) + STDERR.puts("Screen: #{message}, entering interactive image bumping mode") + # Ring the ASCII bell for a helpful notification in most terminal + # emulators. + STDOUT.write "\a" + loop do + STDERR.puts( + "\n" + + "a: Automatic bump\n" + + "r: Retry image (pro tip: manually update the image first!)\n" + + "i: Ignore this image for the remaining of the run\n" + + "d: Debugging REPL\n" + + "q: Abort (to the FindFailed exception)" + ) + c = STDIN.getch + case c + when 'a' + [0.80, 0.70, 0.60, 0.50, 0.40, 0.30].each do |sensitivity| + STDERR.puts "Trying with sensitivity #{sensitivity}..." + p = @screen.match_screen(image, sensitivity, true) + if p + STDERR.puts "Found match! Accept? (y/n)" + loop do + c = STDIN.getch + if c == 'y' + FileUtils.cp("#{$config["TMPDIR"]}/last_opencv_match.png", + "#{OPENCV_IMAGE_PATH}/#{image}") + return p + elsif c == 'n' || c == 3.chr # Ctrl+C => 3 + break + end + end + break if c == 3.chr # Ctrl+C => 3 + end + end + STDERR.puts "Failed to automatically bump image" + when 'r' + p = @screen.match_screen(image, opts[:sensitivity], true) + if p.nil? + STDERR.puts "Failed to find image" + else + STDERR.puts "Found match! Accept? (y/n)" + c = STDIN.getch + return p if c == 'y' + end + when 'i' + $interactive_image_bump_ignores << image + raise ImageBumpFailed + when 'q', 3.chr # Ctrl+C => 3 + raise ImageBumpFailed + when 'd' + binding.pry(quiet: true) + end + end + end + + screen_methods = Screen.instance_methods - Object.instance_methods + overrides = [:find, :exists, :wait, :find_any, :exists_any, + :wait_any, :hover, :click] + screen_methods.each do |m| + if overrides.include?(m) + define_method(m) do |*args, **opts| + begin + return @screen.method(m).call(*args, **opts) + rescue FindFailed => e + begin + image = args.first + return interactive_image_bump(image, **opts) + rescue ImageBumpFailed + raise e + end + end + end + else + define_method(m) do |*args| + return @screen.method(m).call(*args) + end + end + end + +end diff --git a/features/support/helpers/sikuli_helper.rb b/features/support/helpers/sikuli_helper.rb deleted file mode 100644 index 281f662edf492b2d5a4f0b85a6a468d2d6af0e0c..0000000000000000000000000000000000000000 --- a/features/support/helpers/sikuli_helper.rb +++ /dev/null @@ -1,290 +0,0 @@ -require 'rjb' -require 'rjbextension' -$LOAD_PATH << ENV['SIKULI_HOME'] -require 'sikulixapi.jar' -Rjb::load - -package_members = [ - "java.io.FileOutputStream", - "java.io.PrintStream", - "java.lang.System", - "org.sikuli.script.Finder", - "org.sikuli.script.Key", - "org.sikuli.script.KeyModifier", - "org.sikuli.script.Location", - "org.sikuli.script.Match", - "org.sikuli.script.Pattern", - "org.sikuli.script.Region", - "org.sikuli.script.Screen", - "org.sikuli.basics.Settings", - "org.sikuli.script.ImagePath", - ] - -# Note: we can't use anything that starts with "Java" on the right -# side, otherwise the :Java constant is defined and then -# test/unit/assertions will use JRuby-specific code that breaks our -# own code. -translations = Hash[ - "org.sikuli.script", "Sikuli", - "org.sikuli.basics", "Sikuli", - "java.lang", "RJava::Lang", - "java.io", "RJava::Io", - ] - -for p in package_members - imported_class = Rjb::import(p) - package, ignore, class_name = p.rpartition(".") - next if ! translations.include? package - mod_name = translations[package] - mod = mod_name.split("::").inject(Object) do |parent_obj, child_name| - if parent_obj.const_defined?(child_name, false) - parent_obj.const_get(child_name, false) - else - child_obj = Module.new - parent_obj.const_set(child_name, child_obj) - end - end - mod.const_set(class_name, imported_class) -end - -# Bind Java's stdout to debug_log() via our magical pseudo fifo -# logger. -def bind_java_to_pseudo_fifo_logger - file_output_stream = RJava::Io::FileOutputStream.new(DEBUG_LOG_PSEUDO_FIFO) - print_stream = RJava::Io::PrintStream.new(file_output_stream) - RJava::Lang::System.setOut(print_stream) -end - -class FindFailedHookFailure < StandardError -end - -def findfailed_hook(proxy, orig_method, args) - picture = args.first - candidate_path = "#{SIKULI_CANDIDATES_DIR}/#{picture}" - if $config['SIKULI_FUZZY_IMAGE_MATCHING'] - if ! File.exist?(candidate_path) - [0.80, 0.70, 0.60, 0.50, 0.40].each do |similarity| - pattern = Sikuli::Pattern.new(picture) - pattern.similar(similarity) - match = proxy._invoke('exists', 'Ljava.lang.Object;', pattern) - if match - capture = proxy._invoke('capture', 'Lorg.sikuli.script.Region;', match) - capture_path = capture.getFilename - # Let's verify that our screen capture actually matches - # with the default similarity - if proxy._invoke('exists', 'Ljava.lang.Object;', capture_path) - debug_log("Found fuzzy candidate picture for #{picture} with " + - "similarity #{similarity}") - FileUtils.mkdir_p(SIKULI_CANDIDATES_DIR) - FileUtils.mv(capture_path, candidate_path) - break - else - FileUtils.rm(capture_path) - end - end - end - if ! File.exist?(candidate_path) - debug_log("Failed to find fuzzy candidate picture for #{picture}") - end - end - - if File.exist?(candidate_path) - debug_log("Using fuzzy candidate picture for #{picture}") - args_with_candidate = [candidate_path] + args.drop(1) - return orig_method.call(*args_with_candidate) - end - - end # if $config['SIKULI_FUZZY_IMAGE_MATCHING'] - - if $config["SIKULI_RETRY_FINDFAILED"] - pause("FindFailed for: '#{picture}'") - return orig_method.call(*args) - else - raise FindFailedHookFailure - end -end - -# Since rjb imports Java classes without creating a corresponding -# Ruby class (it's just an instance of Rjb_JavaProxy) we can't -# monkey patch any class, so additional methods must be added -# to each Screen object. -# -# All Java classes' methods are immediately available in the proxied -# Ruby classes, but care has to be given to match their type. For a -# list of methods, see: <http://doc.sikuli.org/javadoc/index.html>. -# The type "PRSML" is a union of Pattern, Region, Screen, Match and -# Location. -# -# Also, due to limitations in Ruby's syntax we can't do: -# def Sikuli::Screen.new -# so we work around it with the following vairable. -sikuli_screen_proxy = Sikuli::Screen -$_original_sikuli_screen_new ||= Sikuli::Screen.method :new - -# For waitAny()/findAny() we are forced to throw this exception since -# Rjb::throw doesn't block until the Java exception has been received -# by Ruby, so strange things can happen. -class FindAnyFailed < StandardError -end - -def sikuli_screen_proxy.new(*args) - s = $_original_sikuli_screen_new.call(*args) - - findfail_overrides = [ - ['click', 'Ljava.lang.Object;'], - ['find', 'Ljava.lang.Object;'], - ['wait', 'Ljava.lang.Object;D'], - ] - - # The usage of `_invoke()` below exemplifies how one can wrap - # around Java objects' methods when they're imported using RJB. It - # isn't pretty. The seconds argument is the parameter signature, - # which can be obtained by creating the intended Java object using - # RJB, and then calling its `java_methods` method. - findfail_overrides.each do |method_name, signature| - s.define_singleton_method("#{method_name}_no_override") do |*args| - begin - self._invoke(method_name, signature, *args) - end - end - s.define_singleton_method(method_name) do |*args| - begin - args_desc = '' - if args.first.instance_of?(Rjb::Rjb_JavaProxy) - args_desc = args.first.toString - else - args_desc = '"' + args.first.to_s + '"' - end - debug_log("Sikuli: calling #{method_name}(#{args_desc})...") - orig_method = s.method("#{method_name}_no_override") - return orig_method.call(*args) - rescue Exception => exception - # We really would like to only capture the FindFailed - # exceptions imported by rjb here, but that hasn't happened - # at the time this code is run. Yeah, meta-programming! :) - if exception.class.name == "FindFailed" - begin - return findfailed_hook(self, orig_method, args) - rescue FindFailedHookFailure - debug_log("FindFailedHookFailure was raised, re-running the failing Sikuli method.") - # Due to bugs in rjb we cannot re-throw Java exceptions, - # which is what we want now. Instead we have to resort to - # a hack: let's re-run the failing Sikuli method to - # (hopefully) reproduce the exception. - # Upstream bug details: - # * https://github.com/arton/rjb/issues/59 - # * https://github.com/arton/rjb/issues/60 - new_args = args - if new_args.size > 1 && new_args[-1].is_a?(Numeric) - # Optimize the timeout - new_args[-1] = 0.01 - end - # There are situations where we actually could succeed - # now, e.g. if we timed out looking for an image *just* - # before it appeared, so it is first visible exactly when - # we arrive here. If so, well, let's enjoy! - return orig_method.call(*new_args) - end - else - raise exception - end - end - end - end - - def s.click_point(x, y) - self.click(Sikuli::Location.new(x, y)) - end - - def s.doubleClick_point(x, y) - self.doubleClick(Sikuli::Location.new(x, y)) - end - - def s.click_mid_right_edge(pic) - r = self.find(pic) - top_right = r.getTopRight() - x = top_right.getX - y = top_right.getY + r.getH/2 - self.click_point(x, y) - end - - def s.wait_and_click(pic, time) - self.click(self.wait(pic, time)) - end - - def s.wait_and_double_click(pic, time) - self.doubleClick(self.wait(pic, time)) - end - - def s.wait_and_right_click(pic, time) - self.rightClick(self.wait(pic, time)) - end - - def s.wait_and_hover(pic, time) - self.hover(self.wait(pic, time)) - end - - def s.existsAny(images) - images.each do |image| - region = self.exists(image) - return [image, region] if region - end - return nil - end - - def s.findAny(images) - images.each do |image| - begin - return [image, self.find_no_override(image)] - rescue FindFailed - # Ignore. We deal we'll throw an appropriate exception after - # having looped through all images and found none of them. - end - end - # If we've reached this point, none of the images could be found. - raise FindAnyFailed.new("can not find any of the images #{images} on the " + - "screen") - end - - def s.waitAny(images, time) - Timeout::timeout(time) do - loop do - result = self.existsAny(images) - return result if result - end - end - rescue Timeout::Error - raise FindAnyFailed.new("can not find any of the images #{images} on the " + - "screen") - end - - def s.hover_point(x, y) - self.hover(Sikuli::Location.new(x, y)) - end - - def s.hide_cursor - self.hover_point(self.w - 1, self.h/2) - end - - s -end - -# Configure sikuli -Sikuli::ImagePath.add(SIKULI_IMAGE_PATH) -# ruby and rjb doesn't play well together when it comes to static -# fields (and possibly methods) so we instantiate and access the field -# via objects instead. It actually works inside this file, but when -# it's required from "outside", and the file has been completely -# required, ruby's require method complains that the method for the -# field accessor is missing. -sikuli_settings = Sikuli::Settings.new -sikuli_settings.OcrDataPath = $config["TMPDIR"] -# sikuli_ruby, which we used before, defaulted to 0.9 minimum -# similarity, so all our current images are adapted to that value. -# Also, Sikuli's default of 0.7 is simply too low (many false -# positives). -sikuli_settings.MinSimilarity = SIKULI_MIN_SIMILARITY -sikuli_settings.ActionLogs = true -sikuli_settings.DebugLogs = true -sikuli_settings.InfoLogs = true -sikuli_settings.ProfileLogs = false diff --git a/features/support/helpers/vm_helper.rb b/features/support/helpers/vm_helper.rb index 8c9de943adb294edb3fd012f21d009c129ce0212..5a863ae129b8b3a0c472d3f231270f1acff6739d 100644 --- a/features/support/helpers/vm_helper.rb +++ b/features/support/helpers/vm_helper.rb @@ -523,7 +523,7 @@ class VM end def file_empty?(file) - return file_content(file).empty? + execute("test -s '#{file}'").failure? end def directory_exist?(directory) diff --git a/features/support/hooks.rb b/features/support/hooks.rb index 517406b6edce0abb43f83980414429f3c23bd66f..693418d43fe78273751939b813c8cf666e577546 100644 --- a/features/support/hooks.rb +++ b/features/support/hooks.rb @@ -65,29 +65,6 @@ AfterConfiguration do |config| raise "Cannot create temporary directory: #{e.to_s}" end end - - # Start a thread that monitors a pseudo fifo file and debug_log():s - # anything written to it "immediately" (well, as fast as inotify - # detects it). We're forced to a convoluted solution like this - # because CRuby's thread support is horribly as soon as IO is mixed - # in (other threads get blocked). - FileUtils.rm(DEBUG_LOG_PSEUDO_FIFO) if File.exist?(DEBUG_LOG_PSEUDO_FIFO) - FileUtils.touch(DEBUG_LOG_PSEUDO_FIFO) - at_exit do - FileUtils.rm(DEBUG_LOG_PSEUDO_FIFO) if File.exist?(DEBUG_LOG_PSEUDO_FIFO) - end - Thread.new do - File.open(DEBUG_LOG_PSEUDO_FIFO) do |fd| - watcher = INotify::Notifier.new - watcher.watch(DEBUG_LOG_PSEUDO_FIFO, :modify) do - line = fd.read.chomp - debug_log(line) if line and line.length > 0 - end - watcher.run - end - end - # Fix Sikuli's debug_log():ing. - bind_java_to_pseudo_fifo_logger end # Common @@ -223,7 +200,7 @@ Before('@product') do |scenario| if $config["CAPTURE"] video_name = sanitize_filename("#{scenario.name}.mkv") @video_path = "#{ARTIFACTS_DIR}/#{video_name}" - capture = IO.popen(['avconv', + capture = IO.popen([ffmpeg, '-f', 'x11grab', '-s', '1024x768', '-r', '15', @@ -236,9 +213,13 @@ Before('@product') do |scenario| ]) @video_capture_pid = capture.pid end - @screen = Sikuli::Screen.new + if $config["IMAGE_BUMPING_MODE"] + @screen = ImageBumpingScreen.new + else + @screen = Screen.new + end # English will be assumed if this is not overridden - @language = "" + $language = "" @os_loader = "MBR" @sudo_password = "asdf" @persistence_password = "asdf" @@ -269,8 +250,9 @@ After('@product') do |scenario| hrs = "%02d" % (time_of_fail / (60*60)) elapsed = "#{hrs}:#{mins}:#{secs}" info_log("Scenario failed at time #{elapsed}") - screen_capture = @screen.capture - save_failure_artifact("Screenshot", screen_capture.getFilename) + screenshot_path = sanitize_filename("#{scenario.name}.png") + $vm.display.screenshot(screenshot_path) + save_failure_artifact("Screenshot", screenshot_path) exception_name = scenario.exception.class.name case exception_name when 'FirewallAssertionFailedError' diff --git a/features/thunderbird.feature b/features/thunderbird.feature index 22936ac9171719a6e778fd16b7055f5061a42cce..3dbb506d68b8d0a35c166c39f88845a3c47b44d8 100644 --- a/features/thunderbird.feature +++ b/features/thunderbird.feature @@ -12,7 +12,7 @@ Feature: Thunderbird email client Scenario: Only the expected add-ons are installed Given I cancel setting up an email account When I open Thunderbird's Add-ons Manager - And I click the extensions tab + And I open the Extensions tab Then I see that only the Enigmail add-on is enabled in Thunderbird Scenario: Thunderbird's autoconfiguration wizard defaults to IMAP and secure protocols diff --git a/features/torified_browsing.feature b/features/torified_browsing.feature index dd023a9ef19006e3128adab6028a933eb4cb49d5..29af542decb34c102847b07875a8461a7148cad3 100644 --- a/features/torified_browsing.feature +++ b/features/torified_browsing.feature @@ -55,8 +55,8 @@ Feature: Browsing the web using the Tor Browser And I copy "/usr/share/synaptic/html/index.html" to "/home/amnesia/.gnupg/synaptic.html" as user "amnesia" And I copy "/usr/share/synaptic/html/index.html" to "/tmp/synaptic.html" as user "amnesia" Then the file "/home/amnesia/.gnupg/synaptic.html" exists - And the file "/lib/live/mount/overlay/home/amnesia/.gnupg/synaptic.html" exists - And the file "/live/overlay/home/amnesia/.gnupg/synaptic.html" exists + And the file "/lib/live/mount/overlay/rw/home/amnesia/.gnupg/synaptic.html" exists + And the file "/live/overlay/rw/home/amnesia/.gnupg/synaptic.html" exists And the file "/tmp/synaptic.html" exists Given I start monitoring the AppArmor log of "torbrowser_firefox" When I start the Tor Browser @@ -69,15 +69,15 @@ Feature: Browsing the web using the Tor Browser Then I do not see "TorBrowserSynapticManual.png" after at most 5 seconds And AppArmor has denied "torbrowser_firefox" from opening "/home/amnesia/.gnupg/synaptic.html" Given I restart monitoring the AppArmor log of "torbrowser_firefox" - When I open the address "file:///lib/live/mount/overlay/home/amnesia/.gnupg/synaptic.html" in the Tor Browser + When I open the address "file:///lib/live/mount/overlay/rw/home/amnesia/.gnupg/synaptic.html" in the Tor Browser Then I do not see "TorBrowserSynapticManual.png" after at most 5 seconds - And AppArmor has denied "torbrowser_firefox" from opening "/lib/live/mount/overlay/home/amnesia/.gnupg/synaptic.html" + And AppArmor has denied "torbrowser_firefox" from opening "/lib/live/mount/overlay/rw/home/amnesia/.gnupg/synaptic.html" Given I restart monitoring the AppArmor log of "torbrowser_firefox" - When I open the address "file:///live/overlay/home/amnesia/.gnupg/synaptic.html" in the Tor Browser + When I open the address "file:///live/overlay/rw/home/amnesia/.gnupg/synaptic.html" in the Tor Browser Then I do not see "TorBrowserSynapticManual.png" after at most 5 seconds # Due to our AppArmor aliases, /live/overlay will be treated # as /lib/live/mount/overlay. - And AppArmor has denied "torbrowser_firefox" from opening "/lib/live/mount/overlay/home/amnesia/.gnupg/synaptic.html" + And AppArmor has denied "torbrowser_firefox" from opening "/lib/live/mount/overlay/rw/home/amnesia/.gnupg/synaptic.html" # We do not get any AppArmor log for when access to files in /tmp is denied # since we explictly override (commit 51c0060) the rules (from the user-tmp # abstration) that would otherwise allow it, and we do so with "deny", which diff --git a/features/totem.feature b/features/totem.feature index 706af59e53f7e9a9b5e09ade58a19bab7b71e16d..362eaff1d007db986df767097ddece63a7ccd06c 100644 --- a/features/totem.feature +++ b/features/totem.feature @@ -25,21 +25,22 @@ Feature: Using Totem Then I see "TotemUnableToOpen.png" after at most 10 seconds And AppArmor has denied "/usr/bin/totem" from opening "/home/amnesia/.gnupg/video.mp4" Given I close Totem - And the file "/lib/live/mount/overlay/home/amnesia/.gnupg/video.mp4" exists + And the file "/lib/live/mount/overlay/rw/home/amnesia/.gnupg/video.mp4" exists And I restart monitoring the AppArmor log of "/usr/bin/totem" - When I try to open "/lib/live/mount/overlay/home/amnesia/.gnupg/video.mp4" with Totem + When I try to open "/lib/live/mount/overlay/rw/home/amnesia/.gnupg/video.mp4" with Totem Then I see "TotemUnableToOpen.png" after at most 10 seconds - And AppArmor has denied "/usr/bin/totem" from opening "/lib/live/mount/overlay/home/amnesia/.gnupg/video.mp4" + And AppArmor has denied "/usr/bin/totem" from opening "/lib/live/mount/overlay/rw/home/amnesia/.gnupg/video.mp4" Given I close Totem - And the file "/live/overlay/home/amnesia/.gnupg/video.mp4" exists + And the file "/live/overlay/rw/home/amnesia/.gnupg/video.mp4" exists And I restart monitoring the AppArmor log of "/usr/bin/totem" - When I try to open "/live/overlay/home/amnesia/.gnupg/video.mp4" with Totem + When I try to open "/live/overlay/rw/home/amnesia/.gnupg/video.mp4" with Totem Then I see "TotemUnableToOpen.png" after at most 10 seconds # Due to our AppArmor aliases, /live/overlay will be treated # as /lib/live/mount/overlay. - And AppArmor has denied "/usr/bin/totem" from opening "/lib/live/mount/overlay/home/amnesia/.gnupg/video.mp4" + And AppArmor has denied "/usr/bin/totem" from opening "/lib/live/mount/overlay/rw/home/amnesia/.gnupg/video.mp4" Given I close Totem And I copy "/home/amnesia/video.mp4" to "/home/amnesia/.purple/otr.private_key" as user "amnesia" + And the file "/home/amnesia/.purple/otr.private_key" exists And I restart monitoring the AppArmor log of "/usr/bin/totem" When I try to open "/home/amnesia/.purple/otr.private_key" with Totem Then I see "TotemUnableToOpen.png" after at most 10 seconds diff --git a/features/usb_install.feature b/features/usb_install.feature index c140649f4e0d7dba96a83c5fee1525d964de300a..6f737b91b76e7be5b7ad8b6fe259de401b70c179 100644 --- a/features/usb_install.feature +++ b/features/usb_install.feature @@ -80,7 +80,7 @@ Feature: Installing Tails to a USB drive And there is no persistence partition on USB drive "__internal" #13459 - @fragile + @fragile @uefi Scenario: Booting Tails from a USB drive in UEFI mode Given I have started Tails without network from a USB drive without a persistent partition and stopped at Tails Greeter's login screen Then I power off the computer diff --git a/features/usb_upgrade.feature b/features/usb_upgrade.feature index 99b171c510c656fb8c4ae428351f3ffdb433dd73..cf27ac02c289a32f49dad6a08cfb1a73b32b37f4 100644 --- a/features/usb_upgrade.feature +++ b/features/usb_upgrade.feature @@ -107,67 +107,67 @@ Feature: Upgrading an old Tails USB installation Scenario: Upgrading an initial Tails installation with an incremental upgrade Given I have started Tails without network from a USB drive with a persistent partition enabled and logged in And no SquashFS delta is installed - And Tails is fooled to think that version 2.0~test was initially installed - And Tails is fooled to think it is running version 2.0~test - And the file system changes introduced in version 2.2~test are not present - And the file system changes introduced in version 2.3~test are not present + And Tails is fooled to think that version 2.0~testoverlayfs was initially installed + And Tails is fooled to think it is running version 2.0~testoverlayfs + And the file system changes introduced in version 2.2~testoverlayfs are not present + And the file system changes introduced in version 2.3~testoverlayfs are not present When the network is plugged And Tor is ready - Then I am proposed to install an incremental upgrade to version 2.2~test - And I can successfully install the incremental upgrade to version 2.2~test + Then I am proposed to install an incremental upgrade to version 2.2~testoverlayfs + And I can successfully install the incremental upgrade to version 2.2~testoverlayfs Given I shutdown Tails and wait for the computer to power off When I start Tails from USB drive "__internal" with network unplugged and I login with persistence enabled - Then Tails is running version 2.2~test + Then Tails is running version 2.2~testoverlayfs And all persistence presets are enabled - And the file system changes introduced in version 2.2~test are present - And only the 2.2~test SquashFS delta is installed + And the file system changes introduced in version 2.2~testoverlayfs are present + And only the 2.2~testoverlayfs SquashFS delta is installed # Our IUK sets a release date that can make Tor bootstrapping impossible Given Tails system time is magically synchronized - # We'll really install Tails_amd64_2.0~test_to_2.3~test.iuk + # We'll really install Tails_amd64_2.0~testoverlayfs_to_2.3~testoverlayfs.iuk # but we need some way to force upgrading a second time in a row # even if only the initially installed version is considered - And Tails is fooled to think that version 2.1~test was initially installed + And Tails is fooled to think that version 2.1~testoverlayfs was initially installed When the network is plugged And Tor is ready - Then I am proposed to install an incremental upgrade to version 2.3~test - And I can successfully install the incremental upgrade to version 2.3~test + Then I am proposed to install an incremental upgrade to version 2.3~testoverlayfs + And I can successfully install the incremental upgrade to version 2.3~testoverlayfs Given I shutdown Tails and wait for the computer to power off When I start Tails from USB drive "__internal" with network unplugged and I login with persistence enabled - Then Tails is running version 2.3~test + Then Tails is running version 2.3~testoverlayfs And all persistence presets are enabled - And the file system changes introduced in version 2.3~test are present - And only the 2.3~test SquashFS delta is installed + And the file system changes introduced in version 2.3~testoverlayfs are present + And only the 2.3~testoverlayfs SquashFS delta is installed # Regression test for #17425 (i.e. the Upgrader would propose # upgrading to the version that's already running) Given Tails system time is magically synchronized - And Tails is fooled to think that version 2.1~test was initially installed + And Tails is fooled to think that version 2.1~testoverlayfs was initially installed When the network is plugged And Tor is ready Then the Upgrader considers the system as up-to-date # Regression test on #8158 (i.e. the IUK's filesystem is not part of the Unsafe Browser's chroot) And I successfully start the Unsafe Browser - And the file system changes introduced in version 2.3~test are present in the Unsafe Browser's chroot + And the file system changes introduced in version 2.3~testoverlayfs are present in the Unsafe Browser's chroot @automatic_upgrade Scenario: Upgrading a Tails that has several SquashFS deltas present with an incremental upgrade Given I have started Tails without network from a USB drive with a persistent partition enabled and logged in - And Tails is fooled to think that version 2.0~test was initially installed - And Tails is fooled to think it is running version 2.1~test - And Tails is fooled to think a 2.0.1~test SquashFS delta is installed - And Tails is fooled to think a 2.1~test SquashFS delta is installed + And Tails is fooled to think that version 2.0~testoverlayfs was initially installed + And Tails is fooled to think it is running version 2.1~testoverlayfs + And Tails is fooled to think a 2.0.1~testoverlayfs SquashFS delta is installed + And Tails is fooled to think a 2.1~testoverlayfs SquashFS delta is installed When the network is plugged And Tor is ready - Then I am proposed to install an incremental upgrade to version 2.2~test - And I can successfully install the incremental upgrade to version 2.2~test - Then only the 2.2~test SquashFS delta is installed + Then I am proposed to install an incremental upgrade to version 2.2~testoverlayfs + And I can successfully install the incremental upgrade to version 2.2~testoverlayfs + Then only the 2.2~testoverlayfs SquashFS delta is installed @automatic_upgrade Scenario: Upgrading a Tails whose signing key is outdated Given I have started Tails without network from a USB drive with a persistent partition enabled and logged in - And Tails is fooled to think that version 2.0~test was initially installed - And Tails is fooled to think it is running version 2.0~test + And Tails is fooled to think that version 2.0~testoverlayfs was initially installed + And Tails is fooled to think it is running version 2.0~testoverlayfs And the signing key used by the Upgrader is outdated But a current signing key is available on our website When the network is plugged And Tor is ready - Then I am proposed to install an incremental upgrade to version 2.2~test + Then I am proposed to install an incremental upgrade to version 2.2~testoverlayfs diff --git a/import-translations b/import-translations index e7f6c087cfeb4fbcd0e97e9b90d4b4225a1b7d5e..6fff3203ca99735a2c2e229e7b38da71ce37888e 100755 --- a/import-translations +++ b/import-translations @@ -31,9 +31,6 @@ if [ -f 'po/tails.pot' ]; then elif [ -f 'po/tails-greeter.pot' ]; then BRANCH='tails-greeter-2_completed' AFTER_IMPORT='./setup.py build_i18n' -elif [ -f 'po/tails-iuk.pot' ]; then - BRANCH='tails-iuk_completed' - AFTER_IMPORT='make -C po pot && make -C po update-po' elif [ -f 'po/onioncircuits.pot' ]; then LANG_DOT_PO_LAYOUT=no POTFILE=onioncircuits.pot @@ -42,9 +39,6 @@ elif [ -f 'po/onioncircuits.pot' ]; then elif [ -f 'po/tails-installer.pot' ]; then BRANCH='liveusb-creator_completed' AFTER_IMPORT='./setup.py build && ( cd po && for po in *.po ; do msgmerge --update "$po" tails-installer.pot ; done )' -elif [ -f 'po/tails-persistence-setup.pot' ]; then - BRANCH='tails-persistence-setup_completed' - AFTER_IMPORT='make -C po pot && make -C po update-po' elif [ -f 'po/whisperback.pot' ]; then BRANCH='whisperback_completed' AFTER_IMPORT='' diff --git a/po/POTFILES.in b/po/POTFILES.in index c2ec64d1cf253e779c35fffbdbdc8fdd8ae1e323..54a83a356565e5f8b81d1b5e10e5d3adaf96e55b 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -11,6 +11,12 @@ tmp/pot/greeter-persistence.py.pot tmp/pot/greeter-persistent_storage.py.pot tmp/pot/greeter-region_settings.py.pot tmp/pot/keepassxc.pot +tmp/pot/persistence-setup-Bootstrap.pm.pot +tmp/pot/persistence-setup-Configure.pm.pot +tmp/pot/persistence-setup-Delete.pm.pot +tmp/pot/persistence-setup-Presets.pm.pot +tmp/pot/persistence-setup-Setting.pm.pot +tmp/pot/persistence-setup-Setup.pm.pot tmp/pot/replace-su-with-sudo.pot tmp/pot/RunningSystem.pm.pot tmp/pot/status-menu-helper-extension.js.pot @@ -37,6 +43,8 @@ config/chroot_local-includes/etc/skel/Desktop/tails-documentation.desktop.in config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in config/chroot_local-includes/usr/share/applications/tails-about.desktop.in +config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in +config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in diff --git a/po/ar.po b/po/ar.po index 7c0a44e193bbe6fbe179b3c720e4aa67600b5a94..9c6aee727f3b86b3c14df3e5fb789b4305b1d6a5 100644 --- a/po/ar.po +++ b/po/ar.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-06 13:47+0000\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 13:13+0000\n" "Last-Translator: erinm\n" "Language-Team: Arabic (http://www.transifex.com/otf/torproject/language/" "ar/)\n" @@ -72,6 +72,7 @@ msgid "" msgstr "" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "" @@ -127,8 +128,8 @@ msgid "_Exit" msgstr "_Exit" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -187,39 +188,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -235,19 +236,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -261,20 +262,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -282,38 +283,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -322,15 +323,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -340,46 +341,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -387,7 +388,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -537,16 +538,320 @@ msgstr "" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "خطأ" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1163,6 +1468,24 @@ msgstr "" msgid "Learn more about Tails" msgstr "" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "" @@ -1299,10 +1622,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/ca.po b/po/ca.po index a104a773d3cced7dfcfbc85da69e4e3d359cf564..f77c3ea01a59dad12212b04f76b9711ec4cfbce1 100644 --- a/po/ca.po +++ b/po/ca.po @@ -14,7 +14,7 @@ # Guillem Arias Fauste <inactive+Mr_SpeedArt@transifex.com>, 2016 # Humbert, 2014 # Humbert, 2018 -# jmontane, 2019 +# jmontane, 2019-2020 # josep constantí mata <iceberg.jcm@gmail.com>, 2019 # laia_, 2014-2016 # Miquel Bosch, 2018 @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-06 13:47+0000\n" -"Last-Translator: erinm\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 14:52+0000\n" +"Last-Translator: jmontane\n" "Language-Team: Catalan (http://www.transifex.com/otf/torproject/language/" "ca/)\n" "Language: ca\n" @@ -79,6 +79,7 @@ msgstr "" "</p> \n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "" @@ -134,8 +135,8 @@ msgid "_Exit" msgstr "_Surt" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -194,39 +195,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -242,19 +243,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -268,20 +269,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -289,38 +290,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -329,15 +330,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -347,46 +348,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -394,7 +395,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -544,16 +545,320 @@ msgstr "" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Error" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1196,6 +1501,24 @@ msgstr "Com usar el Tails" msgid "Learn more about Tails" msgstr "Aprèn més sobre Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Navegador Tor" @@ -1332,10 +1655,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/cs.po b/po/cs.po index e2a5a70a8462a765a610869ff3578256ac999c31..3e28449e12ec0a28c6e6043be8c1e0de4af4527a 100644 --- a/po/cs.po +++ b/po/cs.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-06 13:47+0000\n" -"Last-Translator: Michal Stanke <mstanke@mozilla.cz>\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 13:13+0000\n" +"Last-Translator: erinm\n" "Language-Team: Czech (http://www.transifex.com/otf/torproject/language/cs/)\n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -60,6 +60,7 @@ msgid "" msgstr "" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "Dodatečný software" @@ -115,8 +116,8 @@ msgid "_Exit" msgstr "_Ukončit" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -175,39 +176,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -223,19 +224,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -249,20 +250,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -270,38 +271,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -310,15 +311,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -328,46 +329,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -375,7 +376,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -525,16 +526,320 @@ msgstr "Přejmenovat" msgid "Keep current name" msgstr "Ponechat současný název" -#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 -msgid "su is disabled. Please use sudo instead." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "Zobrazit heslo" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Chyba" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1161,6 +1466,24 @@ msgstr "Naučte se používat Tails" msgid "Learn more about Tails" msgstr "Zjistěte více o Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Prohlížeč Tor" @@ -1300,10 +1623,6 @@ msgstr "Výchozí nastavení" msgid "Encrypted _Persistent Storage" msgstr "Šifrované _Trvalé úložiště" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "Zobrazit heslo" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/da.po b/po/da.po index 20e1562a6eaf6110be0e36df3befd314112c1b19..e89275dc3e175e4976f94f81ed9ec5adaa1b8408 100644 --- a/po/da.po +++ b/po/da.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-03-14 16:00+0000\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-27 08:35+0000\n" "Last-Translator: scootergrisen\n" "Language-Team: Danish (http://www.transifex.com/otf/torproject/language/" "da/)\n" @@ -74,6 +74,7 @@ msgstr "" "</p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "Yderligere software" @@ -140,8 +141,8 @@ msgid "_Exit" msgstr "_Afslut" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -217,16 +218,16 @@ msgstr "systemet har ikke nok tilgængelig hukommelse" msgid "No explanation available for reason '%{reason}s'." msgstr "Ingen forklaring tilgængelig fordi \"%{reason}s\"." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "Systemet er ajour" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" "Denne version af Tails er forældet, og kan indeholde sikkerhedsproblemer." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " @@ -235,7 +236,7 @@ msgstr "" "Den tilgængelige gradvise opgradering kræver %{space_needed} ledig plads på " "Tails system-partitionen, men der er kun %{free_space} til rådighed." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " @@ -244,7 +245,7 @@ msgstr "" "Den tilgængelige gradvise opgradering kræver %{memory_needed} ledig " "hukommelse, men der er kun %{free_memory} til rådighed." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." @@ -253,11 +254,11 @@ msgstr "" "komplet opgradering.\n" "Dette burde ikke ske. Rapportér venligst fejlen." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "Der opstod en fejl mens der blev søgt efter tilgængelige opgraderinger" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -283,19 +284,19 @@ msgstr "" "\n" "Vil du at opgradere nu?" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "Opgradering tilgængelig" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "Opgrader nu" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "Opgrader senere" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -318,20 +319,20 @@ msgstr "" "Lær at foretage manual opgradering på https://tails.boum.org/doc/upgrade/" "#manual" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "En ny version er tilgængelig" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "Downloader opgradering" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "Downloader opgraderingen til %{name}s %{version}s..." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -343,12 +344,12 @@ msgstr "" "problemet ikke forsvinder, gå til file:///usr/share/doc/tails/website/doc/" "upgrade/error/download.en.html" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "Fejl under download af opgradering" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " @@ -357,15 +358,15 @@ msgstr "" "Outputfilen \"%{output_file}s\" eksisterer ikke, men tails-iuk-get-target-" "file meldte ingen fejl. Rapportér venligst en fejl." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "Der opstod en fejl under oprettelsen af den midlertidige downloadmappe" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "Den midlertidige downloadmappe kunne ikke oprettes" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" @@ -375,11 +376,11 @@ msgstr "" "\n" "Dette burde ikke ske. Rapportérr venligst en fejl." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "Der opstod en fejl under valg af downloadserver" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -393,15 +394,15 @@ msgstr "" "\n" "Gem venligst dit arbejde og luk alle andre programmer." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "Opgradering downloadet" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "Anvend opgradering" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -417,39 +418,39 @@ msgstr "" "\n" "Vil du genstarte nu?" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "Genstart Tails" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "Genstart nu" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "Genstart senere" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "Der opstod en fejl under genstart af systemet" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "Systemet kunne ikke genstartes" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "Der opstod en fejl under nedlukningen af netværket" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "Kunne ikke lukke netværket" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "Opgraderer systemet" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" @@ -459,7 +460,7 @@ msgstr "" "\n" "Af sikkerhedsgrunde er al brug af netværk nu deaktiveret." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -471,7 +472,7 @@ msgstr "" "\\nVær venlig at følge instruktionerne i filen:///usr/share/doc/tails/" "website/doc/upgrade/error/install.en.html" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "Fejl under installeringen af opgradering" @@ -640,16 +641,320 @@ msgstr "Omdøb" msgid "Keep current name" msgstr "Behold nuværende navn" -#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 -msgid "su is disabled. Please use sudo instead." -msgstr "su er deaktiveret. Brug venligst sudo i stedet." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "Vis adgangsfrase" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Fejl" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "su er deaktiveret. Brug venligst sudo i stedet." + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1337,6 +1642,24 @@ msgstr "Lær hvordan man bruger Tails" msgid "Learn more about Tails" msgstr "Lær mere om Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Tor Browser" @@ -1489,10 +1812,6 @@ msgstr "Standardindstillinger" msgid "Encrypted _Persistent Storage" msgstr "Krypteret _vedvarende lager" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "Vis adgangsfrase" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/de.po b/po/de.po index 32d04430ebc490d74fbfe21366f658bf34152363..dabef26f7c75ab5a10554c4806353b275ee61597 100644 --- a/po/de.po +++ b/po/de.po @@ -11,7 +11,7 @@ # DoKnGH26" 21 <inactive+dokngh2621@transifex.com>, 2015 # D P, 2015 # Emma Peel, 2018 -# Ettore Atalan <atalanttore@googlemail.com>, 2014-2019 +# Ettore Atalan <atalanttore@googlemail.com>, 2014-2020 # Fritz Hauser <fritz@fritzhauser.com>, 2018 # gerhard <listmember@rinnberger.de>, 2013 # Jonas Kröber <murmel.schelm@gmail.com>, 2020 @@ -37,9 +37,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-07 17:38+0000\n" -"Last-Translator: Jonas Kröber <murmel.schelm@gmail.com>\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-26 15:22+0000\n" +"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n" "Language-Team: German (http://www.transifex.com/otf/torproject/language/" "de/)\n" "Language: de\n" @@ -91,6 +91,7 @@ msgstr "" "dass Sie Tails nutzen.</p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "" @@ -146,8 +147,8 @@ msgid "_Exit" msgstr "_Beenden" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -206,39 +207,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -254,19 +255,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -280,20 +281,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -301,38 +302,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -341,15 +342,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -359,46 +360,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -406,7 +407,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -556,16 +557,320 @@ msgstr "" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Fehler" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1199,6 +1504,24 @@ msgstr "Lernen Sie wie Sie Tails benutzen" msgid "Learn more about Tails" msgstr "Mehr über Tails erfahren" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Tor-Browser" @@ -1336,10 +1659,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/el.po b/po/el.po index 04b81bfd1b3504e641ff3b785b2d4d58d855986c..3ec14bf04e931f597f5a400ea2dc32b7e70dde79 100644 --- a/po/el.po +++ b/po/el.po @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-06 13:47+0000\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 13:13+0000\n" "Last-Translator: erinm\n" "Language-Team: Greek (http://www.transifex.com/otf/torproject/language/el/)\n" "Language: el\n" @@ -82,6 +82,7 @@ msgstr "" "</p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "" @@ -137,8 +138,8 @@ msgid "_Exit" msgstr "_Έξοδος" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -197,39 +198,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -245,19 +246,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -271,20 +272,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -292,38 +293,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -332,15 +333,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -350,46 +351,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -397,7 +398,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -547,16 +548,320 @@ msgstr "" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Σφάλμα" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1195,6 +1500,24 @@ msgstr "" msgid "Learn more about Tails" msgstr "Μάθετε περισσότερα σχετικά με Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Tor Browser" @@ -1333,10 +1656,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/es.po b/po/es.po index 74d48dad867feda30be40262cfaa908a98a0f3c9..0b2c8a9af77e6f28d32bc80880bb7a4b2c75de73 100644 --- a/po/es.po +++ b/po/es.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-03-02 07:12+0000\n" -"Last-Translator: David Figuera <dfb@fastmail.com>\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 17:02+0000\n" +"Last-Translator: eulalio barbero espinosa <eulaliob@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/otf/torproject/language/" "es/)\n" "Language: es\n" @@ -73,6 +73,7 @@ msgstr "" "</p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "Software Adicional" @@ -139,8 +140,8 @@ msgid "_Exit" msgstr "_Salir" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -216,16 +217,16 @@ msgstr "no hay suficiente memoria libre en este sistema" msgid "No explanation available for reason '%{reason}s'." msgstr "No hay una explicación disponible por motivo de '%{reason}s'." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "El sistema está actualizado" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" "Esta versión de Tails está desfasada, y puede tener problemas de seguridad." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " @@ -235,7 +236,7 @@ msgstr "" "libre en la partición de sistema de Tails, pero sólo hay %{free_space}s " "disponible(s)." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " @@ -244,17 +245,17 @@ msgstr "" "La actualización incremental disponible requiere %{memory_needed}s de " "memoria libre, pero sólo hay %{memory_needed}s disponible(s)." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "Error al comprobar si hay actualizaciones" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -283,19 +284,19 @@ msgstr "" "\n" "¿Quieres actualizar ahora? " -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "Actualización disponible" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "Actualizar ahora" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "Actualizar más tarde" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -318,20 +319,20 @@ msgstr "" "Para aprender cómo hacer una actualización manual, ve a https://tails.boum." "org/doc/upgrade/#manual" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "Nueva versión disponible" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "Descargando actualización" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -343,27 +344,27 @@ msgstr "" "problema persiste, lee file:///usr/share/doc/tails/website/doc/upgrade/error/" "download.es.html" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "Error al descargar la actualización" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "Error al crear directorio de descarga temporal" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "Fallo al crear directorio de descarga temporal" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" @@ -373,11 +374,11 @@ msgstr "" "\n" "Esto no debería ocurrir. Por favor infórmanos del problema." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "Error al escoger un servidor de descarga" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -390,15 +391,15 @@ msgstr "" "\n" "Guarda tus trabajos y cierra todas las aplicaciones, gracias." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "La actualización se ha bajado correctamente." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "Aplicar la actualización" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -414,39 +415,39 @@ msgstr "" "\n" "¿Quieres reiniciar ahora?" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "Reiniciar Tails" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "Reiniciar ahora" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "Reiniciar más tarde" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "Error al reiniciar el sistema" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "Fallo al reiniciar el sistema" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "Actualizando el sistema" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" @@ -456,7 +457,7 @@ msgstr "" "\n" "Por motivos de seguridad, las conexiones de red ahora están deshabilitadas." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -468,7 +469,7 @@ msgstr "" "\\nPor favor, sigue las instrucciones en file:///usr/share/doc/tails/website/" "doc/upgrade/error/install.es.html" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "Error al instalar la actualización" @@ -639,16 +640,320 @@ msgstr "Renombrar" msgid "Keep current name" msgstr "Mantener el nombre actual" -#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 -msgid "su is disabled. Please use sudo instead." -msgstr "su está desactivado. En su lugar usa sudo." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "Mostrar contraseña" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Error" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "su está desactivado. En su lugar usa sudo." + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1340,6 +1645,24 @@ msgstr "Aprende a usar Tails" msgid "Learn more about Tails" msgstr "Aprende más acerca de Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Tor Browser" @@ -1493,10 +1816,6 @@ msgstr "Configuración predeterminada" msgid "Encrypted _Persistent Storage" msgstr "Almacenamiento _Persistente Cifrado" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "Mostrar contraseña" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/es_AR.po b/po/es_AR.po index e2c7103c049ac2f3fb00cff8f841bc52aa4a1145..7535f2fa9cfc3e64e7b96b1fbe8405c59218e540 100644 --- a/po/es_AR.po +++ b/po/es_AR.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-06 13:47+0000\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 13:13+0000\n" "Last-Translator: erinm\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/otf/torproject/" "language/es_AR/)\n" @@ -69,6 +69,7 @@ msgstr "" "</p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "Programas adicionales" @@ -131,8 +132,8 @@ msgid "_Exit" msgstr "_Salir" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -191,39 +192,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -239,19 +240,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -265,20 +266,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -286,38 +287,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -326,15 +327,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -344,46 +345,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -391,7 +392,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -541,16 +542,320 @@ msgstr "" 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 está deshabilitado. Por favor usar sudo en vez." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Error" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "su está deshabilitado. Por favor usar sudo en vez." + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1235,6 +1540,24 @@ msgstr "Aprendé cómo usar Tails" msgid "Learn more about Tails" msgstr "Aprendé más acerca de Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Navegador Tor" @@ -1375,10 +1698,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/fi.po b/po/fi.po index a181ca4a4fcbed582b0567e456d5420c80cb2d76..93a52659b6cca8a36597df0388228d308bfc082d 100644 --- a/po/fi.po +++ b/po/fi.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-06 13:47+0000\n" -"Last-Translator: Mikko Päivärinta <paivarinta.mikko.o@gmail.com>\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 13:13+0000\n" +"Last-Translator: erinm\n" "Language-Team: Finnish (http://www.transifex.com/otf/torproject/language/" "fi/)\n" "Language: fi\n" @@ -68,6 +68,7 @@ msgstr "" "</p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "" @@ -123,8 +124,8 @@ msgid "_Exit" msgstr "_Lopeta" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -183,39 +184,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -231,19 +232,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -257,20 +258,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -278,38 +279,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -318,15 +319,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -336,46 +337,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -383,7 +384,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -533,16 +534,320 @@ msgstr "" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Virhe" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1169,6 +1474,24 @@ msgstr "Opi kuinka käyttää Tails-ohjelmaa." msgid "Learn more about Tails" msgstr "Opi lisää Tails-ohjelmasta" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Tor-selain" @@ -1305,10 +1628,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/fr.po b/po/fr.po index 5045349f44e95c446764b621db97064bf6cd5943..1ab361857597ec62548f7b5950a7b56bb7477549 100644 --- a/po/fr.po +++ b/po/fr.po @@ -40,8 +40,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-03-04 21:58+0000\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-04-03 17:26+0000\n" "Last-Translator: AO <ao@localizationlab.org>\n" "Language-Team: French (http://www.transifex.com/otf/torproject/language/" "fr/)\n" @@ -92,6 +92,7 @@ msgstr "" "</p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "Logiciels additionnels" @@ -158,8 +159,8 @@ msgid "_Exit" msgstr "_Quitter" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -238,16 +239,16 @@ msgstr "il n’y a pas assez de mémoire disponible sur ce système" msgid "No explanation available for reason '%{reason}s'." msgstr "Il n’y a aucune explication pour la raison '%{reason}s'." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "Le système est à jour" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" "Cette version de Tails est obsolète et peut poser des problèmes de sécurité." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " @@ -257,7 +258,7 @@ msgstr "" "sur la partition système de Tails, mais seulement %{free_space}s est " "disponible." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " @@ -266,7 +267,7 @@ msgstr "" "La mise à jour incrémentale proposée exige %{memory_needed}s de mémoire " "libre, mais seulement %{free_memory}s est disponible." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." @@ -275,11 +276,11 @@ msgstr "" "complète ne l’est.\n" "Cela ne devrait pas arriver. Veuillez signaler un bogue." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "Erreur lors de la détection des mises à jour disponibles" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -307,19 +308,19 @@ msgstr "" "\n" "Voulez-vous mettre à jour maintenant ?" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "Une mise à jour est disponible" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "Mettre à jour maintenant" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "Mettre à jour plus tard" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -338,25 +339,25 @@ msgstr "" "s.\n" "\n" "Il n’est pas possible de mettre à jour votre appareil automatiquement vers " -"cette nouvelle version : %{explanation}s.\n" +"cette nouvelle version : %{explanation}s.\n" "\n" "Pour apprendre à faire une mise à jour manuelle, visitez https://tails.boum." "org/doc/upgrade/index.fr.html#manual" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "Une nouvelle version est disponible" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "Téléchargement de la mise à jour" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "Téléchargement de la mise à jour vers %{name}s %{version}s…" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -368,12 +369,12 @@ msgstr "" "le problème persiste, consultez file:///usr/share/doc/tails/website/doc/" "upgrade/error/download.fr.html" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "Erreur lors du téléchargement de la mise à jour" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " @@ -382,15 +383,15 @@ msgstr "" "Le fichier de sortie '%{output_file}s' n’existe pas, mais tails-iuk-get-" "target-file ne s’en est pas plaint. Veuillez signaler un bogue." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "Erreur lors de la création du répertoire temporaire de téléchargement" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "Échec de création du répertoire temporaire de téléchargement" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" @@ -400,11 +401,11 @@ msgstr "" "\n" "Cela ne devrait pas arriver. Veuillez signaler un bogue." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "Erreur lors du choix d’un serveur de téléchargement" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -418,15 +419,15 @@ msgstr "" "\n" "Veuillez enregistrer vos travaux et fermer toutes autres applications." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "La mise à jour a été téléchargée avec succès" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "Appliquer la mise à jour" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -442,39 +443,39 @@ msgstr "" "\n" "Voulez-vous redémarrer maintenant ?" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "Redémarrer Tails" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "Redémarrer maintenant" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "Redémarrer plus tard" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "Erreur lors du redémarrage du système" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "Échec de redémarrage du système" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "Erreur lors de l’arrêt du réseau" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "Échec d’arrêt du réseau" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "Mise à jour du système" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" @@ -484,7 +485,7 @@ msgstr "" "\n" "Pour des raisons de sécurité, le réseau est actuellement désactivé." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -496,7 +497,7 @@ msgstr "" "\\n\\nVeuillez suivre les instructions sur file:///usr/share/doc/tails/" "website/doc/upgrade/error/install.fr.html" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "Erreur lors de l’installation de la mise à jour" @@ -537,7 +538,7 @@ msgstr "Directe (par défaut)" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:217 msgid "Bridge & Proxy" -msgstr "Pont (bridge) et mandataire (proxy)" +msgstr "Pont et mandataire" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:219 msgid "Offline" @@ -668,16 +669,342 @@ msgstr "Renommer" msgid "Keep current name" msgstr "Garder le nom actuel" -#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 -msgid "su is disabled. Please use sudo instead." -msgstr "su est désactivé. Merci d’utiliser sudo à la place." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "Assistant de persistance – Création du volume persistant" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "Choisissez une phrase de passe pour protéger le volume persistant" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" +"Un volume persistant %s sera créé sur le périphérique <b>%s %s</b>. Les " +"données stockées sur ce volume seront chiffrées et protégées par une phrase " +"de passe." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "Créer" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" +"<b>Attention !</b> L’utilisation de la persistance a des conséquences qui " +"doivent être bien comprises. Tails ne peut pas vous aider si vous l’utilisez " +"mal ! Consultez la page <i>Persistance chiffrée</i> de la documentation de " +"Tails pour en apprendre davantage." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "Phrase de passe :" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "Vérifier la phrase de passe :" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "La phrase de passe ne peut pas être vide" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "Afficher la phrase de passe" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "Les phrases de passe ne correspondent pas" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "Échec" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "Montage de la partition persistante de Tails." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "La partition persistante de Tails sera montée." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "Correction des droits du volume persistant." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "Les droits du volume persistant seront corrigés." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "Création de la configuration par défaut de la persistance." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "La configuration par défaut de la persistance sera créée." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "Création…" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "Création du volume persistant…" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "Assistant de persistance – Configuration du volume persistant" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "Indiquez les fichiers à enregistrer dans le volume persistant" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" +"Les fichiers sélectionnés seront stockés dans la partition chiffrée %s (%s) " +"sur le périphérique <b>%s %s</b>." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "Enregistrer" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "Enregistrement…" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "Enregistrement de la configuration de la persistance…" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "Assistant de persistance – Suppression du volume persistant" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "Vos données persistantes seront supprimées." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" +"Le volume persistant %s (%s) du périphérique <b>%s %s</b> sera supprimé." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "Supprimer" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "Suppression…" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "Suppression du volume persistant…" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "Données personnelles" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "Conserver les fichiers stockés dans le répertoire `Persistent’" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "Marque-pages du navigateur" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "Marque-pages enregistrés dans le Navigateur Tor" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "Connexions réseau" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "Configuration des périphériques du réseau et connexions" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "Logiciels installés lors du démarrage de Tails" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "Imprimantes" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "Configuration des imprimantes" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" +msgstr "Thunderbird" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "Courriels, flux et paramètres de Thunderbird" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "GnuPG" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "Trousseaux et configuration de GnuPG" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "Client Bitcoin" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "Porte-monnaie Bitcoin et configuration d’Electrum" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "Pidgin" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "Profils Pidgin et trousseau OTR" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "Client SSH" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "Clés, configuration et hôtes connus SSH" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "Dotfiles" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" +"Créer un lien symbolique, dans $HOME, pour chaque fichier ou dossier qui se " +"trouve dans le dossier `dotfiles'" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "Personnalisé" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "Configurer le volume persistant de Tails" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Erreur" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "Le périphérique %s comprend déjà un volume persistant." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "Le périphérique %s n’a pas assez d’espace libre." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "Le périphérique %s n’a pas de volume persistant." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" +"Impossible de supprimer le volume persistant sur %s pendant qu’il est " +"utilisé. Vous devriez redémarrer Tails sans persistance." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "Le volume persistant sur %s n’est pas déverrouillé." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "Le volume persistant sur %s n’est pas monté." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" +"Le volume persistant sur %s n’est pas accessible en lecture. Problèmes de " +"droits ou de propriété ?" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "Le volume persistant sur %s n’est pas accessible en écriture." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "Tails fonctionne à partir du périphérique non USB/non SDIO %s." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "Le périphérique %s est un lecteur optique." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" +"Le périphérique %s n’a pas été créé en utilisant une image USB ou le " +"programme d’installation de Tails." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "Assistant de persistance – Terminé" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" +"Toute modification effectuée ne prendra effet qu’après redémarrage de " +"Tails.\n" +"\n" +"Vous pouvez maintenant fermer cette application." + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "su est désactivé. Merci d’utiliser sudo à la place." + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1108,7 +1435,7 @@ msgstr "État de Tor" #: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:50 msgid "Open Onion Circuits" -msgstr "Ouvrir Onion Circuits" +msgstr "Ouvrir Circuits onion" #. Translators: Don't translate {volume_label} or {volume_size}, #. they are placeholders and will be replaced. @@ -1376,6 +1703,26 @@ msgstr "Apprendre à utiliser Tails" msgid "Learn more about Tails" msgstr "En apprendre davantage sur Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "Supprimer le volume persistant" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "Supprimer le volume persistant et son contenu" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "Configurer le volume persistant" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" +"Configurer quels fichiers et configurations d’application sont enregistrés " +"entre les sessions de travail" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Navigateur Tor" @@ -1490,9 +1837,8 @@ msgid "" "disable all networking." msgstr "" "Si votre connexion Internet est censurée, filtrée ou relayée par un " -"mandataire (proxy), vous pouvez configurer un pont (bridge) Tor ou un " -"mandataire (proxy) local. Pour travailler complètement hors ligne, vous " -"pouvez désactiver le réseau." +"mandataire, vous pouvez configurer un pont Tor ou un mandataire local. Pour " +"travailler complètement hors ligne, vous pouvez désactiver le réseau." #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:367 msgid "Connect directly to the Tor network (default)" @@ -1500,7 +1846,7 @@ msgstr "Se connecter directement au réseau Tor (par défaut)" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:413 msgid "Configure a Tor bridge or local proxy" -msgstr "Configurer un pont (bridge) Tor ou un mandataire (proxy) local" +msgstr "Configurer un pont Tor ou un mandataire local" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:457 msgid "Disable all networking" @@ -1511,8 +1857,8 @@ msgid "" "You will configure the Tor bridge and local proxy later on after connecting " "to a network." msgstr "" -"Vous configurerez le pont (bridge) Tor et le mandataire (proxy) local plus " -"tard, après vous être connecté à un réseau." +"Vous configurerez le pont Tor et le mandataire local plus tard, après vous " +"être connecté à un réseau." #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:152 msgid "Welcome to Tails!" @@ -1530,10 +1876,6 @@ msgstr "Paramètres par défaut" msgid "Encrypted _Persistent Storage" msgstr "_Stockage persistant chiffré" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "Afficher la phrase de passe" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/ga.po b/po/ga.po index dbebf9b44310172f7b1a6ed377953ff1f4c3ae8a..735183a7756e36b8179f1e81bd5088df1fe83aed 100644 --- a/po/ga.po +++ b/po/ga.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-06 13:47+0000\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 13:13+0000\n" "Last-Translator: erinm\n" "Language-Team: Irish (http://www.transifex.com/otf/torproject/language/ga/)\n" "Language: ga\n" @@ -61,6 +61,7 @@ msgstr "" "</p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "Bogearraí Breise" @@ -127,8 +128,8 @@ msgid "_Exit" msgstr "_Scoir" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -187,39 +188,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -235,19 +236,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -261,20 +262,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -282,38 +283,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -322,15 +323,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -340,46 +341,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -387,7 +388,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -557,16 +558,320 @@ msgstr "Tá, cuir an t-ainm nua air." msgid "Keep current name" msgstr "Níl, ná hathraigh an t-ainm" -#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 -msgid "su is disabled. Please use sudo instead." -msgstr "Tá su díchumasaithe. Bain úsáid as sudo ina áit." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Earráid" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "Tá su díchumasaithe. Bain úsáid as sudo ina áit." + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1253,6 +1558,24 @@ msgstr "Foghlaim conas Tails a úsáid" msgid "Learn more about Tails" msgstr "Tuilleadh eolais faoi Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Brabhsálaí Tor" @@ -1406,10 +1729,6 @@ msgstr "Réamhshocruithe" msgid "Encrypted _Persistent Storage" msgstr "Stóras _Seasmhach Criptithe" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/he.po b/po/he.po index 3505f0af8af587b108563826efecf5ffd208d5c3..9183fa5702975c5596352204a9727c2deb25643e 100644 --- a/po/he.po +++ b/po/he.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-07 11:27+0000\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-28 22:07+0000\n" "Last-Translator: ION\n" "Language-Team: Hebrew (http://www.transifex.com/otf/torproject/language/" "he/)\n" @@ -65,6 +65,7 @@ msgstr "" "</p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "" @@ -120,8 +121,8 @@ msgid "_Exit" msgstr "_צא" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -180,39 +181,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -228,19 +229,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -254,20 +255,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -275,38 +276,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -315,15 +316,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -333,46 +334,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -380,7 +381,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -530,16 +531,320 @@ msgstr "" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "הראה ביטוי סיסמה" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "שגיאה" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1181,6 +1486,24 @@ msgstr "למד איך להשתמש ב־Tails" msgid "Learn more about Tails" msgstr "למד עוד אודות Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "דפדפן Tor" @@ -1317,10 +1640,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "הראה ביטוי סיסמה" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/hu.po b/po/hu.po index 4d01f65922730838826aa9ab549b0d4add0f6089..abbba8a2bbdd9d476dab42a819b4bd14881bb119 100644 --- a/po/hu.po +++ b/po/hu.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-03-16 14:24+0000\n" -"Last-Translator: vargaviktor <viktor.varga@gmail.com>\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 13:13+0000\n" +"Last-Translator: erinm\n" "Language-Team: Hungarian (http://www.transifex.com/otf/torproject/language/" "hu/)\n" "Language: hu\n" @@ -69,6 +69,7 @@ msgstr "" "</p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "További szoftverek" @@ -133,8 +134,8 @@ msgid "_Exit" msgstr "_Kilépés" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -193,39 +194,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -241,19 +242,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -267,20 +268,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -288,38 +289,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -328,15 +329,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -346,46 +347,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -393,7 +394,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -543,16 +544,320 @@ msgstr "" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Hiba" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1234,6 +1539,24 @@ msgstr "A Tails használati útmutatója" msgid "Learn more about Tails" msgstr "Tudjon meg többet a Tails-ről." +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Tor Browser" @@ -1374,10 +1697,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/id.po b/po/id.po index 18d532dc6ea9e179bf1867da1760fcb49cc34696..937c2b72e190813bb862d98ffcd2a6964d9722e7 100644 --- a/po/id.po +++ b/po/id.po @@ -22,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-02-05 08:11+0000\n" -"Last-Translator: ical\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 13:13+0000\n" +"Last-Translator: erinm\n" "Language-Team: Indonesian (http://www.transifex.com/otf/torproject/language/" "id/)\n" "Language: id\n" @@ -61,6 +61,7 @@ msgid "" msgstr "" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "" @@ -116,8 +117,8 @@ msgid "_Exit" msgstr "_Keluar" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -176,39 +177,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -224,19 +225,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -250,20 +251,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -271,38 +272,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -311,15 +312,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -329,46 +330,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -376,7 +377,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -526,16 +527,320 @@ msgstr "" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1152,6 +1457,24 @@ msgstr "" msgid "Learn more about Tails" msgstr "" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "" @@ -1288,10 +1611,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/it.po b/po/it.po index 269a89ecc7cbfb4d547f0a5e45fd4eaa75bd47b3..3b25ec3227cd27acbee6e085d62ad984bae8700f 100644 --- a/po/it.po +++ b/po/it.po @@ -10,6 +10,7 @@ # il_doc, 2014 # Francesca Ciceri <madamezou@zouish.org>, 2014 # Francesco Tombolini <tombo@adamantio.net>, 2015,2019 +# Gabriele <gabboxl0@gmail.com>, 2020 # Giandomenico Lombardi <transifex.com@l1t.it>, 2019 # Giovanni Giorgio <bottilorenzobg@gmail.com>, 2018 # Giuseppe Pignataro <rogepix@gmail.com>, 2015-2016 @@ -32,8 +33,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-07 14:41+0000\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-30 13:37+0000\n" "Last-Translator: Random_R\n" "Language-Team: Italian (http://www.transifex.com/otf/torproject/language/" "it/)\n" @@ -85,6 +86,7 @@ msgstr "" "</p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "Software aggiuntivo" @@ -147,8 +149,8 @@ msgid "_Exit" msgstr "_Esci" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -207,39 +209,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -255,19 +257,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -281,20 +283,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -302,38 +304,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -342,15 +344,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -360,46 +362,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -407,7 +409,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -565,16 +567,320 @@ msgstr "Rinomina" msgid "Keep current name" msgstr "Mantieni il nome attuale" -#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 -msgid "su is disabled. Please use sudo instead." -msgstr "su è disattivato. Per favore usa sudo." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Errore" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "su è disattivato. Per favore usa sudo." + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1259,6 +1565,24 @@ msgstr "Impara a usare Tails" msgid "Learn more about Tails" msgstr "Maggiori informazioni su Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Tor Browser" @@ -1399,10 +1723,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/km.po b/po/km.po index e5e8fc88099395dae6d3314159a8e307c47f6b70..5858b2674223a83c53907615ed88afff5e5c64d1 100644 --- a/po/km.po +++ b/po/km.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-06 13:47+0000\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 13:13+0000\n" "Last-Translator: erinm\n" "Language-Team: Khmer (http://www.transifex.com/otf/torproject/language/km/)\n" "Language: km\n" @@ -47,6 +47,7 @@ msgid "" msgstr "" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "" @@ -102,8 +103,8 @@ msgid "_Exit" msgstr "ចេញ" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -162,39 +163,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -210,19 +211,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -236,20 +237,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -257,38 +258,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -297,15 +298,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -315,46 +316,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -362,7 +363,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -512,16 +513,320 @@ msgstr "" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "កំហុស" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1146,6 +1451,24 @@ msgstr "សិក្សាពីវិធីប្រើ Tails" msgid "Learn more about Tails" msgstr "ស្វែងយល់បន្ថែមអំពី Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "" @@ -1282,10 +1605,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/ko.po b/po/ko.po index 57811704d41f0b3246392b278d7f88f328d7d13c..bc18a199050fa31eb80e6f220c8e128b3b8463b3 100644 --- a/po/ko.po +++ b/po/ko.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-06 13:47+0000\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 13:13+0000\n" "Last-Translator: erinm\n" "Language-Team: Korean (http://www.transifex.com/otf/torproject/language/" "ko/)\n" @@ -54,6 +54,7 @@ msgid "" msgstr "" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "" @@ -109,8 +110,8 @@ msgid "_Exit" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -169,39 +170,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -217,19 +218,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -243,20 +244,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -264,38 +265,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -304,15 +305,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -322,46 +323,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -369,7 +370,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -519,16 +520,320 @@ msgstr "" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1145,6 +1450,24 @@ msgstr "" msgid "Learn more about Tails" msgstr "" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "" @@ -1281,10 +1604,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/lt.po b/po/lt.po index 687c4cfc0e5506c6dbfe1bd028732ecc8a7af81a..386ffae7d17146155f886030f79145b3a269337f 100644 --- a/po/lt.po +++ b/po/lt.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-07 22:47+0000\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 16:55+0000\n" "Last-Translator: Moo\n" "Language-Team: Lithuanian (http://www.transifex.com/otf/torproject/language/" "lt/)\n" @@ -51,6 +51,7 @@ msgid "" msgstr "" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "Papildoma programinė įranga" @@ -106,8 +107,8 @@ msgid "_Exit" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -166,39 +167,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -214,19 +215,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -240,20 +241,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -261,38 +262,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -301,15 +302,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -319,46 +320,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -366,7 +367,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -516,16 +517,320 @@ msgstr "Pervadinti" 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 yra išjungta. Vietoj to, naudokite sudo." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Klaida" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "su yra išjungta. Vietoj to, naudokite sudo." + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1160,6 +1465,24 @@ msgstr "" msgid "Learn more about Tails" msgstr "" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "Ištrinti ilgalaikį tomą" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "Ištrinti ilgalaikį tomą ir jo turinį" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "Konfigūruoti ilgalaikį tomą" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Tor Naršyklė" @@ -1296,10 +1619,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/mk.po b/po/mk.po index d4eb7e435675adb91599f94e28e1ad74331fa20a..9dd0eba0857dba7d5767b733d000efecdb595d1f 100644 --- a/po/mk.po +++ b/po/mk.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-09 06:44+0000\n" -"Last-Translator: Zarko Gjurov <zarkogjurov@gmail.com>\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 13:13+0000\n" +"Last-Translator: Liljana Ackovska <liljanagjurova@gmail.com>\n" "Language-Team: Macedonian (http://www.transifex.com/otf/torproject/language/" "mk/)\n" "Language: mk\n" @@ -66,6 +66,7 @@ msgstr "" "</p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "Дополнителен софтвер" @@ -132,8 +133,8 @@ msgid "_Exit" msgstr "_Излез" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -210,15 +211,15 @@ msgstr "нема достапно доволно меморија на овој msgid "No explanation available for reason '%{reason}s'." msgstr "Нема достапно објаснување за причината '%{reason}s'" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "Ситемот е ажуриран" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "Оваа верзија на Tails е застарена, и може да има безбедносни проблеми." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " @@ -227,7 +228,7 @@ msgstr "" "Достапното делумно ажурирање бара %{space_needed}s од слободниот простор на " "Tails систем партицијата, но само %{free_space}s е достапен." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " @@ -236,7 +237,7 @@ msgstr "" "Достапното делумно ажурирање бара %{memory_needed}s од слободната меморија, " "но само %{free_memory}s е достапна." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." @@ -244,11 +245,11 @@ msgstr "" "Делумното ажурирање е достапно, но не и целосното ажурирање.\n" "Ова не би требало да се случи. Ве молиме пријавете грешка." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "Грешка за време на детектирањето на достапни ажурирања" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -275,19 +276,19 @@ msgstr "" "\n" "Дали сакате да ажурирате сега?" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "Ажурирање достапно" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "Ажурирај сега" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "Ажурирај подоцна" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -310,20 +311,20 @@ msgstr "" "За да научите како да направите рачна надградба, одете на https://tails." "boum.org/doc/upgrade/#manual" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "Достапна е нова верзија" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "Преземање на ажурирање" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "Преземање на ажурирањето во %{name}s %{version}s..." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -335,12 +336,12 @@ msgstr "" "го ажурирате.\\n\\nАко проблемот сеуште го има, одете во file:///usr/share/" "doc/tails/website/doc/upgrade/error/download.en.html" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "Грешка за време на преземање на ажурирањето" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " @@ -349,15 +350,15 @@ msgstr "" "Излезната датотека '%{output_file}s' не постои, но ails-iuk-get-target-file " "не се пожали. Ве молиме пријавете грешка." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "Грешка за време на создавање на привремениот директориум за преземање" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "Не успеа создавањето на привремен директориум за преземање" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" @@ -367,11 +368,11 @@ msgstr "" "\n" "Ова не би требало да се случи. Ве молиме пријавете грешка." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "Грешка за време на избирање на сервер за преземање" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -385,15 +386,15 @@ msgstr "" "\n" "Ве молиме зачувајте ја вашата работа и затворете ги сите други апликации." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "Ажурирањето беше успешно преземено" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "Примени ажурирање" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -410,39 +411,39 @@ msgstr "" "\n" "Дали сакаш да го стартуваш повторно сега?" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "Повторно стартување на Tails" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "Повторно стартувај сега" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "Повторно стартувај подоцна" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "Грешка при повторното стартување на системот" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "Не успеа повторното стартување на системот" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "Грешка при исклучувањето на мрежата" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "Не успеа исклучувањето на мрежата" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "Ажурирање на системот" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" @@ -452,7 +453,7 @@ msgstr "" "\n" "Од безбедносни причини, поврзувањето на мрежата не е оневозможено." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -464,7 +465,7 @@ msgstr "" "\\nВе молиме следете ги инструкциите на file:///usr/share/doc/tails/website/" "doc/upgrade/error/install.en.html" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "Грешка за време инсталирање на ажурирањето" @@ -634,16 +635,320 @@ msgstr "Преименување" 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/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "Покажи лозинка" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Грешка" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +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/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1339,6 +1644,24 @@ msgstr "Научи како да го користиш Tails" msgid "Learn more about Tails" msgstr "Научи повеќе за Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Тор прелистувач" @@ -1492,10 +1815,6 @@ msgstr "Основни поставки" msgid "Encrypted _Persistent Storage" msgstr "Енкриптиран_Постојан склад" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "Покажи лозинка" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/nl.po b/po/nl.po index e65ab9604fd826e26ec9ff512d5a1bbdc324af54..e1033b35b05873019f1a1e3ed6816cbded55faf2 100644 --- a/po/nl.po +++ b/po/nl.po @@ -36,8 +36,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-03-12 12:31+0000\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 19:47+0000\n" "Last-Translator: Tonnes <tonnes.mb@gmail.com>\n" "Language-Team: Dutch (http://www.transifex.com/otf/torproject/language/nl/)\n" "Language: nl\n" @@ -74,6 +74,7 @@ msgid "" msgstr "" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "Extra software" @@ -129,8 +130,8 @@ msgid "_Exit" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -189,39 +190,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -237,19 +238,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -263,20 +264,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -284,38 +285,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -324,15 +325,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -342,46 +343,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -389,7 +390,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -539,16 +540,320 @@ msgstr "Hernoemen" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1165,6 +1470,24 @@ msgstr "" msgid "Learn more about Tails" msgstr "" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "" @@ -1301,10 +1624,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/pl.po b/po/pl.po index 7dd1bd3ca8facea60b4efb11200ab42b288fa6ad..018638effe4d557ca46054ba7c9e8fdb823e58d0 100644 --- a/po/pl.po +++ b/po/pl.po @@ -26,9 +26,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-03-21 17:51+0000\n" -"Last-Translator: Bartosz Duszel <bartosz.duszel@protonmail.com>\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 13:13+0000\n" +"Last-Translator: erinm\n" "Language-Team: Polish (http://www.transifex.com/otf/torproject/language/" "pl/)\n" "Language: pl\n" @@ -67,6 +67,7 @@ msgid "" msgstr "" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "" @@ -122,8 +123,8 @@ msgid "_Exit" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -182,39 +183,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -230,19 +231,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -256,20 +257,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -277,38 +278,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -317,15 +318,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -335,46 +336,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -382,7 +383,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -532,16 +533,320 @@ msgstr "" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1158,6 +1463,24 @@ msgstr "" msgid "Learn more about Tails" msgstr "" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "" @@ -1294,10 +1617,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/pt_BR.po b/po/pt_BR.po index dbbbdfe6886ec5bfafeb96baf234f51bf712248e..2e9bd320d133c3d5180c9976867740d8f4ebc556 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -33,8 +33,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-06 23:03+0000\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-28 01:41+0000\n" "Last-Translator: C. E.\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/otf/torproject/" "language/pt_BR/)\n" @@ -83,6 +83,7 @@ msgstr "" "que você está usando Tails. </p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "" @@ -138,8 +139,8 @@ msgid "_Exit" msgstr "_Saída" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -198,39 +199,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -246,19 +247,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -272,20 +273,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -293,38 +294,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -333,15 +334,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -351,46 +352,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -398,7 +399,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -550,16 +551,320 @@ msgstr "" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Erro" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1212,6 +1517,24 @@ msgstr "Saiba como usar o Tails" msgid "Learn more about Tails" msgstr "Saiba mais sobre o Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Navegador Tor" @@ -1361,10 +1684,6 @@ msgstr "Configurações-Padrão" msgid "Encrypted _Persistent Storage" msgstr "Criptografado_ Armazenamento Persistente" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/pt_PT.po b/po/pt_PT.po index c4ff3023c1b1b950489170bd890f07f60697923a..b5e5e1582561650cfb9340d43503307fdfc435a8 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-31 18:18+0000\n" -"Last-Translator: Hugo9191 <hugoncosta@gmail.com>\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 13:13+0000\n" +"Last-Translator: Rui <xymarior@yandex.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/otf/" "torproject/language/pt_PT/)\n" "Language: pt_PT\n" @@ -51,6 +51,7 @@ msgid "" msgstr "" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "" @@ -106,8 +107,8 @@ msgid "_Exit" msgstr "_Sair" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -166,39 +167,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -214,19 +215,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -240,20 +241,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -261,38 +262,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -301,15 +302,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -319,46 +320,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -366,7 +367,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -516,16 +517,320 @@ msgstr "" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Erro" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1146,6 +1451,24 @@ msgstr "Saiba como utilizar o Tails" msgid "Learn more about Tails" msgstr "Saber mais sobre Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Tor Browser" @@ -1282,10 +1605,6 @@ msgstr "Definições Predefinidas" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/ro.po b/po/ro.po index 195581fc21faaeee3da5237b0c89aced271601b2..423d33279b06a64a2ef5e847fadbda22d31dd25d 100644 --- a/po/ro.po +++ b/po/ro.po @@ -26,9 +26,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-02-21 16:14+0000\n" -"Last-Translator: eduard pintilie <eduard.pintilie@gmail.com>\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 13:13+0000\n" +"Last-Translator: erinm\n" "Language-Team: Romanian (http://www.transifex.com/otf/torproject/language/" "ro/)\n" "Language: ro\n" @@ -88,6 +88,7 @@ msgstr "" "</p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "Aplicații adiționale" @@ -150,8 +151,8 @@ msgid "_Exit" msgstr "_Iesire" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -210,39 +211,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -258,19 +259,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -284,20 +285,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -305,38 +306,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -345,15 +346,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -363,46 +364,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -410,7 +411,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -560,16 +561,320 @@ msgstr "" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Eroare" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1254,6 +1559,24 @@ msgstr "Învățați cum să utilizați Tails" msgid "Learn more about Tails" msgstr "Învățați mai multe despre Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Tor Browser" @@ -1394,10 +1717,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/sv.po b/po/sv.po index 4310cfd57f288cb8d55833c54a445acaec90742c..93b062b1a78a52107eb92e13e0ec7db4512a1a92 100644 --- a/po/sv.po +++ b/po/sv.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-10 16:53+0000\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 21:31+0000\n" "Last-Translator: Jonatan Nyberg\n" "Language-Team: Swedish (http://www.transifex.com/otf/torproject/language/" "sv/)\n" @@ -76,6 +76,7 @@ msgstr "" "</p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "Extra program" @@ -138,8 +139,8 @@ msgid "_Exit" msgstr "_Avsluta" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -198,39 +199,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -246,19 +247,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -272,20 +273,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -293,38 +294,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -333,15 +334,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -351,46 +352,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -398,7 +399,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -548,16 +549,320 @@ msgstr "" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Fel" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -843,7 +1148,7 @@ msgstr "" #: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87 msgid "Failed to synchronize the clock!" -msgstr "Misslyckades med att synkronisera klockan!" +msgstr "Det gick inte att synkronisera klockan!" #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110 msgid "Lock Screen" @@ -886,8 +1191,8 @@ msgid "" "temporarily disabled.\n" "You might prefer to restart Tails and disable MAC spoofing." msgstr "" -"Misslyckades med att fejka MAC för nätverkskort ${nic_name} (${nic}) så det " -"har temporärt inaktiverats.\n" +"Det gick inte att fejka MAC för nätverkskort ${nic_name} (${nic}) så det har " +"temporärt inaktiverats.\n" "Du vill nog starta om Tails och inaktivera fejkning av MAC." #: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62 @@ -901,8 +1206,8 @@ msgid "" "recovery also failed so all networking is disabled.\n" "You might prefer to restart Tails and disable MAC spoofing." msgstr "" -"Misslyckades med att fejka MAC för nätverkskort ${nic_name} (${nic}). " -"Dessutom misslyckades felåterhämtningen, så alla nätverk har inaktiverats.\n" +"Det gick inte att fejka MAC för nätverkskort ${nic_name} (${nic}). Dessutom " +"misslyckades felåterhämtningen, så alla nätverk har inaktiverats.\n" "Du vill nog starta om Tails och inaktivera fejkning av MAC." #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 @@ -1175,7 +1480,7 @@ msgstr "" #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67 msgid "Failed to restart Tor." -msgstr "Misslyckades med att starta om Tor." +msgstr "Det gick inte att starta om Tor." #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1 @@ -1192,11 +1497,11 @@ msgstr "" #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:96 msgid "Failed to setup chroot." -msgstr "Misslyckades med att skapa chroot-miljön." +msgstr "Det gick inte att ställa in chroot." #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103 msgid "Failed to configure browser." -msgstr "Misslyckades med att konfigurera webbläsaren." +msgstr "Det gick inte att konfigurera webbläsare." #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109 msgid "" @@ -1208,7 +1513,7 @@ msgstr "" #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:120 msgid "Failed to run browser." -msgstr "Misslyckades att starta webbläsare." +msgstr "Det gick inte att starta webbläsare." #: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1 msgid "Report an error" @@ -1235,6 +1540,24 @@ msgstr "Lär dig hur du använder Tails" msgid "Learn more about Tails" msgstr "Lär dig mer om Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Tor Browser" @@ -1375,10 +1698,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/tails.pot b/po/tails.pot index d884243785d0812f770d9ef79bd809df55ce4260..cb56684ede7afcff5edaa3626912303f7a8297da 100644 --- a/po/tails.pot +++ b/po/tails.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\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" @@ -45,6 +45,7 @@ msgid "" msgstr "" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "" @@ -100,8 +101,8 @@ msgid "_Exit" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -160,39 +161,39 @@ msgstr "" msgid "No explanation available for reason '%{reason}s'." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " "Tails system partition, but only %{free_space}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " "but only %{free_memory}s is available." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -208,19 +209,19 @@ msgid "" "Do you want to upgrade now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -234,20 +235,20 @@ msgid "" "upgrade/#manual" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -255,38 +256,38 @@ msgid "" "download.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " "did not complain. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" "This should not happen. Please report a bug." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -295,15 +296,15 @@ msgid "" "Please save your work and close all other applications." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -313,46 +314,46 @@ msgid "" "Do you want to restart now?" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" "For security reasons, the networking is now disabled." msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -360,7 +361,7 @@ msgid "" "install.en.html" msgstr "" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "" @@ -510,16 +511,320 @@ msgstr "" 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." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1136,6 +1441,24 @@ msgstr "" msgid "Learn more about Tails" msgstr "" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "" @@ -1272,10 +1595,6 @@ msgstr "" msgid "Encrypted _Persistent Storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/tr.po b/po/tr.po index d1e1c89ec1de27d5a9dfd61a63cd8603bbe6a77e..8ac0468b9c438102e999745931873c0398da57f7 100644 --- a/po/tr.po +++ b/po/tr.po @@ -12,7 +12,7 @@ # imratirtil <d.imra.gundogdu@gmail.com>, 2014 # ecocan <eecocan@yahoo.com>, 2014 # ecocan <eecocan@yahoo.com>, 2014 -# Emma Peel, 2018 +# Emma Peel, 2018,2020 # imratirtil <d.imra.gundogdu@gmail.com>, 2014 # Kaya Zeren <kayazeren@gmail.com>, 2015-2020 # metint, 2014 @@ -29,8 +29,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-01-20 10:41+0000\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-04-05 19:09+0000\n" "Last-Translator: Kaya Zeren <kayazeren@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/otf/torproject/language/" "tr/)\n" @@ -84,6 +84,7 @@ msgstr "" "</p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "Ek Uygulamalar" @@ -150,8 +151,8 @@ msgid "_Exit" msgstr "Çı_kış" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -223,15 +224,15 @@ msgstr "bu sistemde yeterli bellek yok" msgid "No explanation available for reason '%{reason}s'." msgstr "'%{reason}s' nedeni için bir açıklama yok." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "Sistem güncel" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "Bu Tails sürümü güncel değil ve güvenlik sorunları olabilir." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " @@ -240,7 +241,7 @@ msgstr "" "Yüklenebilecek artımlı güncelleme için Tails sistem bölümünde %{space_needed}" "s boş alan gerekli ancak yalnız %{free_space}s var." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " @@ -249,7 +250,7 @@ msgstr "" "Yüklenebilecek artımlı güncelleme için %{memory_needed}s boş bellek gerekli " "ancak yalnız %{free_memory}s var." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." @@ -257,11 +258,11 @@ msgstr "" "Artımlı bir yükseltme varken tam yükseltme yok gibi görünüyor.\n" "Bu olmamalıydı. Lütfen bu sorunu bildirin." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "Güncellemeler denetlenirken sorun çıktı" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -288,19 +289,19 @@ msgstr "" "\n" "Şimdi güncellemek ister misiniz?" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "Güncelleme yayınlanmış" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "Şimdi güncelle" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "Daha sonra güncelle" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -323,20 +324,20 @@ msgstr "" "El ile güncellemenin nasıl yapılacağını öğrenmek için https://tails.boum.org/" "doc/upgrade/#manual adresine bakabilirsiniz" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "Yeni bir sürüm yayınlanmış" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "Güncelleme indiriliyor" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." -msgstr "%{name} %{version} güncellemesi indiriliyor..." +msgstr "%{name}s %{version}s güncellemesi indiriliyor..." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -348,12 +349,12 @@ msgstr "" "sürüyorsa, file:///usr/share/doc/tails/website/doc/upgrade/error/download.en." "html adresine bakabilirsiniz." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "Güncelleme indirilirken sorun çıktı" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " @@ -362,15 +363,15 @@ msgstr "" "'%{output_file}s' çıktı dosyası bulunamadı ancak tails-iuk-get-target-file " "uygulaması bunu bir sorun olarak bildirmedi. Lütfen bu hatayı bildirin." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "Geçiçi indirme klasörü oluşturulurken sorun çıktı" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "Geçici indirme klasörü oluşturulamadı" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" @@ -380,11 +381,11 @@ msgstr "" "\n" "Bu olmamalıydı. Lütfen hata olarak bildirin." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "İndirme sunucusu seçilirken sorun çıktı" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -398,15 +399,15 @@ msgstr "" "\n" "Lütfen çalışmalarınızı kaydedip açık olan tüm uygulamaları kapatın." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "Güncelleme indirildi" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "Güncellemeyi uygula" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -422,39 +423,39 @@ msgstr "" "\n" "Şimdi yeniden başlatmak ister misiniz?" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "Tails Uygulamasını Yeniden Başlat" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "Şimdi yeniden başlat" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "Daha sonra yeniden başlat" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "Sistem yeniden başlatılırken sorun çıktı" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "Sistem yeniden başlatılamadı" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "Ağ kapatılırken sorun çıktı" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "Ağ kapatılamadı" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "Sistem güncelleniyor" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" @@ -464,7 +465,7 @@ msgstr "" "\n" "Güvenlik nedenlerinden dolayı, ağ devre dışı bırakıldı." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -476,7 +477,7 @@ msgstr "" "share/doc/tails/website/doc/upgrade/error/install.en.html adresindeki " "yönergeleri izleyin." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "Güncelleme kurulurken sorun çıktı" @@ -646,17 +647,339 @@ msgstr "Yeniden Adlandır" msgid "Keep current name" msgstr "Geçerli ad korunsun" -#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 -msgid "su is disabled. Please use sudo instead." +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "Kalıcılık yardımcısı - Kalıcı depolama oluşturma" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "Kalıcı depolamayı korumak için bir parola seçin" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." msgstr "" -" su komutu devre dışı bırakılmış. Lütfen yerine sudo komutunu kullanın." +"<b>%s %s</b> aygıtında kalıcı bir %s depolaması oluşturulacak. Buradaki " +"veriler parola ile şifrelenmiş olarak depolanacak." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "Oluştur" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" +"<b>Dikkat!</b> Kalıcı kullanımın iyi anlamanız gereken sonuçları vardır. " +"Yanlış kullanırsanız Tails uygulamasının size yardımı olmaz. Ayrıntılı bilgi " +"almak için Tails belgelerindeki <i>Şifrelenmiş kaıcılık</i> bölümüne " +"bakabilirsiniz." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "Parola:" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "Parola Onayı:" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "Parola boş bırakılamaz" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "Parola Görüntülensin" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "Parola ile onayı aynı değil" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "Başarısız" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "Tails kalıcılık bölümü takılıyor" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "Tails kalıcılık bölümü takılacak" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "Kalıcı depolama izinleri düzeltiliyor." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "Kalıcı depolama izinleri düzeltilecek." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "Varsayılan kalıcılık ayarları oluşturuluyor." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "Varsayılan kalıcılık yapılandırması oluşturulacak." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "Oluşturuluyor..." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "Kalıcı depolama oluşturuluyor..." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "Kalıcılık yardımcısı - Kalıcı depolama yapılandırması" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "Kalıcı depolamaya kaydedilecek dosyaları belirtin" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" +"Seçilmiş dosyalar <b>%s %s</b> aygıtında bulunan şifreli %s (%s) bölümüne " +"depolanacak." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "Kaydet" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "Kaydediliyor..." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "Kalıcılık ayarları kaydediliyor..." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "Kalıcılık yardımcısı - Kalıcı depolamayı silme" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "Kalıcı depolama verileriniz silinecek." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "<b>%s %s</b> aygıtındaki, %s (%s) kalıcı depolama silinecek." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "Sil" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "Siliniyor..." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "Kalıcı depolama siliniyor..." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "Kişisel Veriler" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "Dosyalar `Persistent' klasöründe depolansın" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "Yer İmlerine Göz At" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "Tor Browser üzerine kaydedilmiş yer imleri" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "Ağ Bağlantıları" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "Ağ aygıt ve bağlantılarının ayarları" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "Tails başlatılırken kurulan uygulamalar" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "Yazıcılar" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "Yazıcı ayarları" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" +msgstr "Thunderbird" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "Thunderbird e-postalar, akışlar ve ayarlar" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "GnuPG" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "GnuPG anahtarlık ve ayarları" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "Bitcoin İstemcisi" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "Electrum bitcoin cüzdanı ve ayarları" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "Pidgin" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "Pidgin profilleri ve Kayıt Dışı anahtarlığı" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "SSH İstemcisi" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "SSH anahtarları, ayarları ve bilinen sunucular" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "Dotfiles" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" +"`dotfiles' klasöründe bulunan tüm dosya ve klasörler için $HOME üzerinde " +"sembolik bağlantı oluşturur" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "Özel" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "Tails kalıcı depolaması kur" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "Hata" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "%s aygıtında zaten bir kalıcı depolama var." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "%s aygıtında yeteri kadar boş alan yok." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "%s aygıtında bir kalıcı depolama yok." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" +"%s üzerindeki kalıcı depolama kullanımda olduğundan silinemedi. Tails " +"uygulamasını kalıcılık olmadan yeniden başlatmalısınız." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "%s üzerindeki kalıcı depolama birimi kilitlenmemiş." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "%s üzerindeki kalıcı depolama birimi takılmamış." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" +"%s üzerindeki kalıcı depolama birimi okunamadı. İzin ya da sahiplik sorunu " +"olabilir mi?" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "%s üzerindeki kalıcı depolama birimi yazılabilir değil." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "Tails, USB ya da SDIO olmayan %s aygıtından çalışıyor." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "%s aygıtı optik." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" +"%s aygıtı bir USB kalıbı ya da Tails Kurucu kullanılarak oluşturulmamış." + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "Kalıcılık yardımcısı - Tamamlandı" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +msgstr "" +"Yaptığınız değişiklikler Tails yeniden başlatıldıktan sonra geçerli olacak.\n" +"\n" +"Şimdi bu uygulamayı kapatabilirsiniz." + +#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21 +msgid "su is disabled. Please use sudo instead." +msgstr "" +" su komutu devre dışı bırakılmış. Lütfen yerine sudo komutunu kullanın." + #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1346,6 +1669,26 @@ msgstr "Tails uygulamasını nasıl kullanacağınızı öğrenin" msgid "Learn more about Tails" msgstr "Tails hakkında ayrıntılı bilgi alın" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "Kalıcı depolamayı sil" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "Kalıcı depolamayı ve içeriğini siler" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "Kalıcı depolamayı yapılandır" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" +"Çalışma oturumları arasında kaydedilecek dosya ve uygulama ayarlarını " +"yapılandırır." + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Tor Browser" @@ -1498,10 +1841,6 @@ msgstr "Varsayılan Ayarlar" msgid "Encrypted _Persistent Storage" msgstr "Şifreli _Kalıcı Depolama" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "Parola Görüntülensin" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/po/zh_CN.po b/po/zh_CN.po index 173928b76efa25935de7d6c6beed89f7caefb885..14b98cbf8f0c5bffdf8f128fb2389197d35d313b 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -33,9 +33,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-01-06 11:20+0100\n" -"PO-Revision-Date: 2020-02-05 14:50+0000\n" -"Last-Translator: ff98sha\n" +"POT-Creation-Date: 2020-03-21 09:59+0100\n" +"PO-Revision-Date: 2020-03-25 13:13+0000\n" +"Last-Translator: erinm\n" "Language-Team: Chinese (China) (http://www.transifex.com/otf/torproject/" "language/zh_CN/)\n" "Language: zh_CN\n" @@ -81,6 +81,7 @@ msgstr "" "</p>\n" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" msgstr "附加软件" @@ -140,8 +141,8 @@ msgid "_Exit" msgstr "退出(_E)" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:610 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:793 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794 msgid "" "For debugging information, execute the following command: sudo tails-" "debugging-info" @@ -210,15 +211,15 @@ msgstr "在此系统上没有足够的可用内存" msgid "No explanation available for reason '%{reason}s'." msgstr "对原因“%{reason}s”没有可用的说明。" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346 msgid "The system is up-to-date" msgstr "系统已是最新" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351 msgid "This version of Tails is outdated, and may have security issues." msgstr "此版本的 Tails 已过时,可能存在安全性问题。" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:382 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383 #, perl-brace-format msgid "" "The available incremental upgrade requires %{space_needed}s of free space on " @@ -227,7 +228,7 @@ msgstr "" "可用的增量升级,需要在 Tails 的系统分区有 %{space_needed}s 空闲空间,而目前仅" "有 %{free_space}s 可用。" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399 #, perl-brace-format msgid "" "The available incremental upgrade requires %{memory_needed}s of free memory, " @@ -236,7 +237,7 @@ msgstr "" "可用的增量升级,需要有 %{memory_needed}s 空闲内存,而目前仅有 " "%{memory_needed}s 内存可用。" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421 msgid "" "An incremental upgrade is available, but no full upgrade is.\n" "This should not happen. Please report a bug." @@ -244,11 +245,11 @@ msgstr "" "增量升级可用但是没有完整升级。\n" "这不应该发生,请将此事报告为bug。" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425 msgid "Error while detecting available upgrades" msgstr "检测可用升级时出错" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435 #, perl-brace-format msgid "" "<b>You should upgrade to %{name}s %{version}s.</b>\n" @@ -274,19 +275,19 @@ msgstr "" "\n" "您想现在升级吗?" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 msgid "Upgrade available" msgstr "有升级可用" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 msgid "Upgrade now" msgstr "现在升级" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451 msgid "Upgrade later" msgstr "稍后升级" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459 #, perl-brace-format msgid "" "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" @@ -308,20 +309,20 @@ msgstr "" "关于如何进行手动升级,请见 https://tails.boum.org/doc/first_steps/upgrade/" "#manual" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475 msgid "New version available" msgstr "新版本可用" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556 msgid "Downloading upgrade" msgstr "正在下载升级" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559 #, perl-brace-format msgid "Downloading the upgrade to %{name}s %{version}s..." msgstr "正在下载升级包到%{name}s %{version}s..." -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:599 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600 msgid "" "<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network " "connection, and restart Tails to try upgrading again.\\n\\nIf the problem " @@ -332,12 +333,12 @@ msgstr "" "级。\\n\\n如果依旧有这个问题,请到 file:///usr/share/doc/tails/website/doc/" "upgrade/error/download.en.html" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:615 -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:634 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635 msgid "Error while downloading the upgrade" msgstr "在下载升级时出现错误" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628 #, perl-brace-format msgid "" "Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file " @@ -346,15 +347,15 @@ msgstr "" "输出文件“%{output_file}s”不存在,但是 tails-iuk-get-target-file 并没有察觉," "请将此事件报告为 bug。" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647 msgid "Error while creating temporary downloading directory" msgstr "建立临时下载目录时出错" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650 msgid "Failed to create temporary download directory" msgstr "创建临时下载目录时错误" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674 msgid "" "<b>Could not choose a download server.</b>\n" "\n" @@ -364,11 +365,11 @@ msgstr "" "\n" "这不应该发生,请将此事件报告为 bug。" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678 msgid "Error while choosing a download server" msgstr "选择下载服务器时出错" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693 msgid "" "The upgrade was successfully downloaded.\n" "\n" @@ -382,15 +383,15 @@ msgstr "" "\n" "请保存所有工作,并关闭其他所有应用程序。" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699 msgid "Upgrade successfully downloaded" msgstr "更新下载成功" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701 msgid "Apply upgrade" msgstr "安装更新" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708 msgid "" "<b>Your Tails device was successfully upgraded.</b>\n" "\n" @@ -406,39 +407,39 @@ msgstr "" "\n" "您想重启么?" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 msgid "Restart Tails" msgstr "重启 Tails" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 msgid "Restart now" msgstr "现在重启" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715 msgid "Restart later" msgstr "稍后重启" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726 msgid "Error while restarting the system" msgstr "重启系统时出现错误" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729 msgid "Failed to restart the system" msgstr "重启系统失败" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744 msgid "Error while shutting down the network" msgstr "关闭网络时错误" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747 msgid "Failed to shutdown network" msgstr "关闭网络失败" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754 msgid "Upgrading the system" msgstr "正在升级系统" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756 msgid "" "<b>Your Tails device is being upgraded...</b>\n" "\n" @@ -448,7 +449,7 @@ msgstr "" "\n" "由于安全原因,网络连接已经被禁用。" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789 msgid "" "<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device " "needs to be repaired and might be unable to restart.\\n\\nPlease follow the " @@ -459,7 +460,7 @@ msgstr "" "\\n请查看以下说明:file:///usr/share/doc/tails/website/doc/upgrade/error/" "install.en.html" -#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799 msgid "Error while installing the upgrade" msgstr "安装升级时出错" @@ -627,16 +628,320 @@ msgstr "重命名" 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/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96 +msgid "Persistence wizard - Persistent volume creation" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99 +msgid "Choose a passphrase to protect the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103 +#, perl-format +msgid "" +"A %s persistent volume will be created on the <b>%s %s</b> device. Data on " +"this volume will be stored in an encrypted form protected by a passphrase." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108 +msgid "Create" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151 +msgid "" +"<b>Beware!</b> Using persistence has consequences that must be well " +"understood. Tails can't help you if you use it wrong! See the <i>Encrypted " +"persistence</i> page of the Tails documentation to learn more." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179 +msgid "Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187 +msgid "Verify Passphrase:" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266 +msgid "Passphrase can't be empty" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 +msgid "Show Passphrase" +msgstr "显示密码" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257 +msgid "Passphrases do not match" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103 +msgid "Failed" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320 +msgid "Mounting Tails persistence partition." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323 +msgid "The Tails persistence partition will be mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332 +msgid "Correcting permissions of the persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335 +msgid "The permissions of the persistent volume will be corrected." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343 +msgid "Creating default persistence configuration." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346 +msgid "The default persistence configuration will be created." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361 +msgid "Creating..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364 +msgid "Creating the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88 +msgid "Persistence wizard - Persistent volume configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91 +msgid "Specify the files that will be saved in the persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95 +#, perl-format +msgid "" +"The selected files will be stored in the encrypted partition %s (%s), on the " +"<b>%s %s</b> device." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101 +msgid "Save" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195 +msgid "Saving..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198 +msgid "Saving persistence configuration..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53 +msgid "Persistence wizard - Persistent volume deletion" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56 +msgid "Your persistent data will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60 +#, perl-format +msgid "" +"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66 +msgid "Delete" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117 +msgid "Deleting..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120 +msgid "Deleting the persistent volume..." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55 +msgid "Personal Data" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57 +msgid "Keep files stored in the `Persistent' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70 +msgid "Browser Bookmarks" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72 +msgid "Bookmarks saved in the Tor Browser" +msgstr "" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85 +msgid "Network Connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87 +msgid "Configuration of network devices and connections" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102 +msgid "Software installed when starting Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:120 +msgid "Printers" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:122 +msgid "Printers configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135 +msgid "Thunderbird" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137 +msgid "Thunderbird emails, feeds, and settings" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150 +msgid "GnuPG" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152 +msgid "GnuPG keyrings and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165 +msgid "Bitcoin Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167 +msgid "Electrum's bitcoin wallet and configuration" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180 +msgid "Pidgin" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182 +msgid "Pidgin profiles and OTR keyring" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195 +msgid "SSH Client" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197 +msgid "SSH keys, configuration and known hosts" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210 +msgid "Dotfiles" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212 +msgid "" +"Symlink into $HOME every file or directory found in the `dotfiles' directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113 +msgid "Custom" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265 +msgid "Setup Tails persistent volume" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 msgid "Error" msgstr "错误" +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372 +#, perl-format +msgid "Device %s already has a persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380 +#, perl-format +msgid "Device %s has not enough unallocated space." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387 +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401 +#, perl-format +msgid "Device %s has no persistent volume." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393 +#, perl-format +msgid "" +"Cannot delete the persistent volume on %s while in use. You should restart " +"Tails without persistence." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407 +#, perl-format +msgid "Persistence volume on %s is not unlocked." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412 +#, perl-format +msgid "Persistence volume on %s is not mounted." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417 +#, perl-format +msgid "" +"Persistence volume on %s is not readable. Permissions or ownership problems?" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422 +#, perl-format +msgid "Persistence volume on %s is not writable." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431 +#, perl-format +msgid "Tails is running from non-USB / non-SDIO device %s." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437 +#, perl-format +msgid "Device %s is optical." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444 +#, perl-format +msgid "Device %s was not created using a USB image or Tails Installer." +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688 +msgid "Persistence wizard - Finished" +msgstr "" + +#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691 +msgid "" +"Any changes you have made will only take effect after restarting Tails.\n" +"\n" +"You may now close this application." +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/src/perl5lib/lib/Tails/RunningSystem.pm:225 msgid "" "The device Tails is running from cannot be found. Maybe you used the 'toram' " @@ -1291,6 +1596,24 @@ msgstr "了解如何使用 Tails" msgid "Learn more about Tails" msgstr "更深入了解 Tails" +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1 +msgid "Delete persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2 +msgid "Delete the persistent volume and its content" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1 +msgid "Configure persistent volume" +msgstr "" + +#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2 +msgid "" +"Configure which files and application configuration are saved between " +"working sessions" +msgstr "" + #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" msgstr "Tor 浏览器" @@ -1434,10 +1757,6 @@ msgstr "默认设置" msgid "Encrypted _Persistent Storage" msgstr "加密的持久存储(_P)" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 -msgid "Show Passphrase" -msgstr "显示密码" - #. The label for this placeholder text is not very big, so keep this string short. #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" diff --git a/refresh-translations b/refresh-translations index f890b2c692b8c5f4f8e22ef462128ddd7fecaf7b..a25f79d4dae1ef4df2cdbad2cb512bfb39f638f8 100755 --- a/refresh-translations +++ b/refresh-translations @@ -6,17 +6,19 @@ set -u PERL_PROGS="/usr/local/bin/tails-security-check \ /usr/local/lib/tails-htp-notify-user \ /usr/local/lib/tails-virt-notify-user \ - $(find config/chroot_local-includes/usr/src/iuk/bin \ + $(find \ + config/chroot_local-includes/usr/src/iuk/bin \ + config/chroot_local-includes/usr/src/persistence-setup/bin \ -type f \ | perl -p -E 's{^config/chroot_local-includes}{}' \ - )" -PERL_LIBS=$(\ - find \ + ) \ + $(find \ config/chroot_local-includes/usr/src/iuk/lib \ config/chroot_local-includes/usr/src/perl5lib/lib \ + config/chroot_local-includes/usr/src/persistence-setup/lib \ -type f -name *.pm \ | perl -p -E 's{^config/chroot_local-includes}{}' \ -) +)" PYTHON_PROGS="/etc/whisperback/config.py \ /usr/local/bin/electrum \ /usr/local/bin/replace-su-with-sudo \ @@ -81,6 +83,9 @@ prog_potfile () { /usr/lib/python3/dist-packages/tailsgreeter/*) domain="greeter-$(basename "$prog")" ;; + /usr/src/persistence-setup/lib/*) + domain="persistence-setup-$(basename "$prog")" + ;; *) domain=$(basename $prog) ;; @@ -197,7 +202,7 @@ trap "rm -fr po/*.new po/*.orig ; [ "$KEEP_TMP_POT" = yes ] || rm -fr tmp/pot" E # Update POT files mkdir -p tmp/pot -for prog in $PERL_PROGS $PERL_LIBS ; do create_pot $prog Perl ; done +for prog in $PERL_PROGS ; do create_pot $prog Perl ; done for prog in $PYTHON_PROGS ; do create_pot $prog Python ; done for prog in $SHELL_PROGS ; do create_pot $prog Shell ; done for prog in $JAVASCRIPT_PROGS ; do create_pot $prog JavaScript ; done diff --git a/run_test_suite b/run_test_suite index a471128a51f3d23e9a75c7abd00061b6bccf5046..9222fb7c4d9834de9c7dd9a26661e959903fc6a7 100755 --- a/run_test_suite +++ b/run_test_suite @@ -13,9 +13,8 @@ dnsmasq-base gawk git i18nspector -libav-tools +imagemagick libcap2-bin -libsikulixapi-java libvirt-clients libvirt-daemon-system libvirt-dev @@ -34,17 +33,32 @@ ruby-json ruby-libvirt ruby-packetfu ruby-rb-inotify -ruby-rjb ruby-rspec ruby-test-unit seabios tcpdump +tcplay tor unclutter virt-viewer +xdotool xvfb " +if [ "$(lsb_release --short --codename)" = "stretch" ]; then + GENERAL_DEPENDENCIES="${GENERAL_DEPENDENCIES} +libav-tools +python-opencv +python-pil +" +else + GENERAL_DEPENDENCIES="${GENERAL_DEPENDENCIES} +ffmpeg +python3-opencv +python3-pil +" +fi + usage() { echo "Usage: $NAME [OPTION]... [--] [CUCUMBER_ARGS]... Sets up an appropriate environment and invokes cucumber. Note that this script @@ -65,15 +79,14 @@ Options for '@product' features: On failure, pause test suite until pressing Enter. Also offer the option to open an interactive Ruby shell (pry) in the Cucumber world's context. + --image-bumping-mode + When any image matching fails, enter an interactive mode + that allows to update the image. If run from a graphical + environment, any found candidate image will be displayed + in a pop-up. --keep-snapshots Don't ever delete any snapshots (including ones marked as temporary). This can be a big time saver when debugging new features. - --retry-find Print a warning whenever Sikuli fails to find an image - and allow *one* retry after pressing ENTER. This is useful - for updating outdated images. - --fuzzy-image-matching - When Sikuli fails to find an image, let it retry with more - fuzziness (or \"lower similarity factor\" in Sikuli terms). --tmpdir Directory where various temporary files are written during a test, e.g. VM snapshots and memory dumps, failure screenshots, pcap files and disk images @@ -103,7 +116,6 @@ pretty debugging printed to a file with \`--format pretty --format debug error() { echo "${NAME}: error: ${*}" >&2 - usage exit 1 } @@ -155,7 +167,8 @@ start_xvfb() { sleep 1 done echo "Virtual X framebuffer started on display ${TARGET_DISPLAY}" - # Hide the mouse cursor so it won't mess up Sikuli's screen scanning + # Hide the mouse cursor so it won't be in the way when we are + # trying to match images. unclutter -display $TARGET_DISPLAY -root -idle 0.1 >/dev/null 2>&1 & } @@ -184,13 +197,12 @@ LOG_FILE= VNC_VIEWER= VNC_SERVER= INTERACTIVE_DEBUGGING= +IMAGE_BUMPING_MODE= KEEP_SNAPSHOTS= -SIKULI_RETRY_FINDFAILED= -SIKULI_FUZZY_IMAGE_MATCHING= TAILS_ISO= OLD_TAILS_ISO= -LONGOPTS="artifacts-base-uri:,view,vnc-server-only,capture,capture-all,help,tmpdir:,keep-snapshots,retry-find,fuzzy-image-matching,iso:,old-iso:,interactive-debugging" +LONGOPTS="artifacts-base-uri:,view,vnc-server-only,capture,capture-all,help,tmpdir:,keep-snapshots,iso:,old-iso:,interactive-debugging,image-bumping-mode" OPTS=$(getopt -o "" --longoptions $LONGOPTS -n "${NAME}" -- "$@") eval set -- "$OPTS" while [ $# -gt 0 ]; do @@ -219,15 +231,12 @@ while [ $# -gt 0 ]; do --interactive-debugging) export INTERACTIVE_DEBUGGING="yes" ;; + --image-bumping-mode) + export IMAGE_BUMPING_MODE="yes" + ;; --keep-snapshots) export KEEP_SNAPSHOTS="yes" ;; - --retry-find) - export SIKULI_RETRY_FINDFAILED="yes" - ;; - --fuzzy-image-matching) - export SIKULI_FUZZY_IMAGE_MATCHING="yes" - ;; --tmpdir) shift export TMPDIR="$(readlink -f $1)" @@ -261,13 +270,17 @@ TARGET_DISPLAY=$(next_free_display) start_xvfb if [ -n "${VNC_SERVER:-}" ]; then + if [ "${XDG_SESSION_TYPE}" != "x11" ]; then + error "the --view and --vnc-server-only are only supported on x11," \ + "but you use ${XDG_SESSION_TYPE}" + fi start_vnc_server fi if [ -n "${VNC_VIEWER:-}" ]; then start_vnc_viewer fi -export SIKULI_HOME="/usr/share/java" +export USER_DISPLAY="${DISPLAY:-}" export DISPLAY=${TARGET_DISPLAY} cucumber ${@} diff --git a/submodules/aufs-standalone b/submodules/aufs-standalone deleted file mode 160000 index 32eca4355a554c8d0939572efe335b3577b3b3e3..0000000000000000000000000000000000000000 --- a/submodules/aufs-standalone +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 32eca4355a554c8d0939572efe335b3577b3b3e3 diff --git a/vagrant/definitions/tails-builder/config/APT_snapshots.d/debian-security/serial b/vagrant/definitions/tails-builder/config/APT_snapshots.d/debian-security/serial index 67f21113a8cb3822c171e0c6d22772120592c704..94533aa1efc2f8c2391c1912a215cc184b6cf660 100644 --- a/vagrant/definitions/tails-builder/config/APT_snapshots.d/debian-security/serial +++ b/vagrant/definitions/tails-builder/config/APT_snapshots.d/debian-security/serial @@ -1 +1 @@ -2019100904 +2020032503 diff --git a/vagrant/definitions/tails-builder/config/APT_snapshots.d/debian/serial b/vagrant/definitions/tails-builder/config/APT_snapshots.d/debian/serial index 67f21113a8cb3822c171e0c6d22772120592c704..94533aa1efc2f8c2391c1912a215cc184b6cf660 100644 --- a/vagrant/definitions/tails-builder/config/APT_snapshots.d/debian/serial +++ b/vagrant/definitions/tails-builder/config/APT_snapshots.d/debian/serial @@ -1 +1 @@ -2019100904 +2020032503 diff --git a/vagrant/definitions/tails-builder/config/APT_snapshots.d/tails/serial b/vagrant/definitions/tails-builder/config/APT_snapshots.d/tails/serial index e626b97d652ffba5744ddc35a479d08de528e532..94533aa1efc2f8c2391c1912a215cc184b6cf660 100644 --- a/vagrant/definitions/tails-builder/config/APT_snapshots.d/tails/serial +++ b/vagrant/definitions/tails-builder/config/APT_snapshots.d/tails/serial @@ -1 +1 @@ -2019102001 +2020032503 diff --git a/vagrant/provision/assets/build-tails b/vagrant/provision/assets/build-tails index 1762a7f28df6925674d5e68223f7d9303cb95a39..92406ea247199d45a05acb92df79f87090ff97b7 100755 --- a/vagrant/provision/assets/build-tails +++ b/vagrant/provision/assets/build-tails @@ -52,7 +52,7 @@ remove_build_dirs() { old_build_dirs() { mount | \ - perl -ni -E 'say $mountpoint if (($mountpoint) = ($_ =~ m{^(?:aufs|tmpfs|devpts-live|proc-live|sysfs-live) on (/tmp/tails-build(?:-tmpfs)?\.[/[:alnum:]]+)}))' + perl -ni -E 'say $mountpoint if (($mountpoint) = ($_ =~ m{^(?:tmpfs|devpts-live|proc-live|sysfs-live) on (/tmp/tails-build(?:-tmpfs)?\.[/[:alnum:]]+)}))' } ntp_enabled() { diff --git a/wiki/src/about.ar.po b/wiki/src/about.ar.po index f2e3fc95506f53231ae806eab124c08d27312cfb..18eed06b933b5ec1cdff7b647a49470a49b30156 100644 --- a/wiki/src/about.ar.po +++ b/wiki/src/about.ar.po @@ -134,7 +134,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "resist attacks that block the usage of Tor using circumvention tools such as " -"[[bridges|doc/first_steps/startup_options/bridge_mode]]." +"[[bridges|doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" #. type: Plain text diff --git a/wiki/src/about.ca.po b/wiki/src/about.ca.po index 41658cbbfa2e5e076ae8393eabfe957c9a7b8838..ac8fc468caf9abe8e78bb39ed7b6e32f73ac9dc4 100644 --- a/wiki/src/about.ca.po +++ b/wiki/src/about.ca.po @@ -128,7 +128,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "resist attacks that block the usage of Tor using circumvention tools such as " -"[[bridges|doc/first_steps/startup_options/bridge_mode]]." +"[[bridges|doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" #. type: Plain text diff --git a/wiki/src/about.de.po b/wiki/src/about.de.po index 9e54016604ff909c8f5c9bb714ca7eecfed7bfd6..4bb3df520bf43dc1346e704f42945054b0e1418b 100644 --- a/wiki/src/about.de.po +++ b/wiki/src/about.de.po @@ -163,10 +163,10 @@ msgstr "Sich mit Diensten verbinden, die andernfalls zensiert wären;" #. type: Bullet: ' - ' msgid "" "resist attacks that block the usage of Tor using circumvention tools such as " -"[[bridges|doc/first_steps/startup_options/bridge_mode]]." +"[[bridges|doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" "Angriffen, die Tor blockieren, widerstehen, indem Sie Umgehungssoftware wie " -"[[Tor-Bridges|doc/first_steps/startup_options/bridge_mode]] (Brücken in das " +"[[Tor-Bridges|doc/first_steps/welcome_screen/bridge_mode]] (Brücken in das " "Tor-Netzwerk) einsetzen." #. type: Plain text diff --git a/wiki/src/about.es.po b/wiki/src/about.es.po index c0e16a0c4d89b815f366f31fd476910d8dd4c776..30e16528ae8eb6fea6e7cd97c61d0a1ea95cc1f5 100644 --- a/wiki/src/about.es.po +++ b/wiki/src/about.es.po @@ -159,10 +159,10 @@ msgstr "conectarte a servicios que de otro modo estarían censurados;" #. type: Bullet: ' - ' msgid "" "resist attacks that block the usage of Tor using circumvention tools such as " -"[[bridges|doc/first_steps/startup_options/bridge_mode]]." +"[[bridges|doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" "resistir ataques que bloquean el uso de Tor, mediante herramientas de " -"elusión como los [[puentes|doc/first_steps/startup_options/bridge_mode]]." +"elusión como los [[puentes|doc/first_steps/welcome_screen/bridge_mode]]." #. type: Plain text msgid "" diff --git a/wiki/src/about.fa.po b/wiki/src/about.fa.po index 851cb2d442d088dae01a1101171580861e07932e..ec3502952f05e50598cd8703ee4283dd06c04b44 100644 --- a/wiki/src/about.fa.po +++ b/wiki/src/about.fa.po @@ -175,10 +175,10 @@ msgstr "به سیستمهایی متصل شوید که در غیر این ص #. type: Bullet: ' - ' msgid "" "resist attacks that block the usage of Tor using circumvention tools such as " -"[[bridges|doc/first_steps/startup_options/bridge_mode]]." +"[[bridges|doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" "مقاومت در مقابل حملاتی که با استفاده از ابزارهای فیلتر شکن مانند " -"[[bridges|doc/first_steps/startup_options/bridge_mode]]. مانع از استفاده تور " +"[[bridges|doc/first_steps/welcome_screen/bridge_mode]]. مانع از استفاده تور " "میشوند." #. type: Plain text diff --git a/wiki/src/about.fr.po b/wiki/src/about.fr.po index ad786d9bc28bb9224326a91061a6636e4137217f..f88ee0944517bd14d355b797505480142f490e47 100644 --- a/wiki/src/about.fr.po +++ b/wiki/src/about.fr.po @@ -160,11 +160,11 @@ msgstr "vous connecter à des services qui seraient censurés sinon ;" #. type: Bullet: ' - ' msgid "" "resist attacks that block the usage of Tor using circumvention tools such as " -"[[bridges|doc/first_steps/startup_options/bridge_mode]]." +"[[bridges|doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" "résister à des attaques qui bloquent l'utilisation de Tor, grâce à des " "outils de contournement tels que les [[bridges|doc/first_steps/" -"startup_options/bridge_mode]]." +"welcome_screen/bridge_mode]]." #. type: Plain text msgid "" diff --git a/wiki/src/about.id.po b/wiki/src/about.id.po index 70825b4db69e9683cccc90a29711a0b64212b10f..27b82127bb8e5d0e4e800cfacb31a454c4178a22 100644 --- a/wiki/src/about.id.po +++ b/wiki/src/about.id.po @@ -130,7 +130,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "resist attacks that block the usage of Tor using circumvention tools such as " -"[[bridges|doc/first_steps/startup_options/bridge_mode]]." +"[[bridges|doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" #. type: Plain text diff --git a/wiki/src/about.it.po b/wiki/src/about.it.po index bdf042dd723f62003f099cf9f49b0403c5d3b3a7..8bf41e517dd500984cc5e59bdc3349e6b9277388 100644 --- a/wiki/src/about.it.po +++ b/wiki/src/about.it.po @@ -161,10 +161,10 @@ msgstr "connetterti a servizi che altrimenti sarebbero censurati;" #. type: Bullet: ' - ' msgid "" "resist attacks that block the usage of Tor using circumvention tools such as " -"[[bridges|doc/first_steps/startup_options/bridge_mode]]." +"[[bridges|doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" "resistere ad attacchi che bloccano l'uso di Tor, usando strumenti di " -"aggiramento come i [[bridge|doc/first_steps/startup_options/bridge_mode]]." +"aggiramento come i [[bridge|doc/first_steps/welcome_screen/bridge_mode]]." #. type: Plain text msgid "" diff --git a/wiki/src/about.mdwn b/wiki/src/about.mdwn index 786a36d7a76d45fbabce72eb3ce8c5fabded1215..d711fd83f1c8efd95598e7eb8bff402c8582547f 100644 --- a/wiki/src/about.mdwn +++ b/wiki/src/about.mdwn @@ -50,7 +50,7 @@ Using Tor you can: - be anonymous online by hiding your location, - connect to services that would be censored otherwise; - resist attacks that block the usage of Tor using circumvention tools - such as [[bridges|doc/first_steps/startup_options/bridge_mode]]. + such as [[bridges|doc/first_steps/welcome_screen/bridge_mode]]. To learn more about Tor, see the official [Tor website](https://www.torproject.org/), particularly the following pages: diff --git a/wiki/src/about.pl.po b/wiki/src/about.pl.po index e79df91240cfec10bfd3abfa5de3a5d02557a98f..adb6861d91bb1793d56e319bc6db65ecd4d838dd 100644 --- a/wiki/src/about.pl.po +++ b/wiki/src/about.pl.po @@ -129,7 +129,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "resist attacks that block the usage of Tor using circumvention tools such as " -"[[bridges|doc/first_steps/startup_options/bridge_mode]]." +"[[bridges|doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" #. type: Plain text diff --git a/wiki/src/about.pt.po b/wiki/src/about.pt.po index 440d5a07b6cd07e5570661868ae0d704c49da3b8..d7181e1b83def0e5edaaccd8ce501d3353f79dd4 100644 --- a/wiki/src/about.pt.po +++ b/wiki/src/about.pt.po @@ -160,10 +160,10 @@ msgstr "conectar à serviços que de outra forma estariam censurados;" #. type: Bullet: ' - ' msgid "" "resist attacks that block the usage of Tor using circumvention tools such as " -"[[bridges|doc/first_steps/startup_options/bridge_mode]]." +"[[bridges|doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" "resistir a ataques que bloqueiam o uso do Tor usando ferramentas de " -"circunscrição tais como [[bridges|doc/first_steps/startup_options/" +"circunscrição tais como [[bridges|doc/first_steps/welcome_screen/" "bridge_mode]]." #. type: Plain text diff --git a/wiki/src/about.ru.po b/wiki/src/about.ru.po index da8c144d02d6d708886b28e987abc5b6ba77a6a6..dbe118e8643123eab4af98664d6b8976fa4b6dcb 100644 --- a/wiki/src/about.ru.po +++ b/wiki/src/about.ru.po @@ -147,11 +147,11 @@ msgstr "пользоваться сервисами, которые запрещ #. type: Bullet: ' - ' msgid "" "resist attacks that block the usage of Tor using circumvention tools such as " -"[[bridges|doc/first_steps/startup_options/bridge_mode]]." +"[[bridges|doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" "отражать атаки, которые блокируют использование Tor, используя обходные " "инструменты, например, [[сетевые " -"мосты|doc/first_steps/startup_options/bridge_mode]]." +"мосты|doc/first_steps/welcome_screen/bridge_mode]]." #. type: Plain text msgid "" diff --git a/wiki/src/about.sr_Latn.po b/wiki/src/about.sr_Latn.po index dfaca14e498f4674e0bb433db25aa51ba5d4e404..3c7d9428e0aba060d239f03c8a2d002c2293caa7 100644 --- a/wiki/src/about.sr_Latn.po +++ b/wiki/src/about.sr_Latn.po @@ -125,7 +125,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "resist attacks that block the usage of Tor using circumvention tools such as " -"[[bridges|doc/first_steps/startup_options/bridge_mode]]." +"[[bridges|doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" #. type: Plain text diff --git a/wiki/src/about.tr.po b/wiki/src/about.tr.po index 2591809cf0735c6128b5b1d171caaaa5f41ac470..ee2e24052c551750c71fd9ac2c4ad3551f43b5cf 100644 --- a/wiki/src/about.tr.po +++ b/wiki/src/about.tr.po @@ -128,7 +128,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "resist attacks that block the usage of Tor using circumvention tools such as " -"[[bridges|doc/first_steps/startup_options/bridge_mode]]." +"[[bridges|doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" #. type: Plain text diff --git a/wiki/src/about.zh.po b/wiki/src/about.zh.po index a9d1e84ca934fc881bb9cb7355a3acf68defeff5..c0e407ba01f93ebdc1996f4d1f9b17d0e5a83a57 100644 --- a/wiki/src/about.zh.po +++ b/wiki/src/about.zh.po @@ -138,9 +138,9 @@ msgstr "连接上已被审查禁止的服务" #. type: Bullet: ' - ' msgid "" "resist attacks that block the usage of Tor using circumvention tools such as " -"[[bridges|doc/first_steps/startup_options/bridge_mode]]." +"[[bridges|doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" -"使用[[网桥|doc/first_steps/startup_options/bridge_mode]]作为规避工具抵抗对 Tor 的封锁攻击。" +"使用[[网桥|doc/first_steps/welcome_screen/bridge_mode]]作为规避工具抵抗对 Tor 的封锁攻击。" #. type: Plain text msgid "" diff --git a/wiki/src/about.zh_TW.po b/wiki/src/about.zh_TW.po index 0d0e24f557873d8c835e5bb92dc1d1a8f66b5674..56fb4e89a314129b3ef867fb809d38668cb54bfc 100644 --- a/wiki/src/about.zh_TW.po +++ b/wiki/src/about.zh_TW.po @@ -137,9 +137,9 @@ msgstr "連結上可能已被審查禁止的服務" #. type: Bullet: ' - ' msgid "" "resist attacks that block the usage of Tor using circumvention tools such as " -"[[bridges|doc/first_steps/startup_options/bridge_mode]]." +"[[bridges|doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" -"使用Tor作為規避工具來抵抗封鎖攻擊,例如[[Tor-橋接|doc/first_steps/startup_options/bridge_mode]] 。" +"使用Tor作為規避工具來抵抗封鎖攻擊,例如[[Tor-橋接|doc/first_steps/welcome_screen/bridge_mode]] 。" #. type: Plain text msgid "" diff --git a/wiki/src/about/staging/about.de.po b/wiki/src/about/staging/about.de.po index 41141954c2fa5e305c7008cbc249686473f599a1..f12290324461eb8e36f5b9321542ae62c20240ee 100644 --- a/wiki/src/about/staging/about.de.po +++ b/wiki/src/about/staging/about.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-03-28 02:22+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-03-15 08:35+0000\n" "Last-Translator: Muri Nicanor <muri@immerda.ch>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -438,7 +438,9 @@ msgstr "" "fingerprint]]" #. type: Content of: <section><div><div><ul><li> -msgid "[[Tor bridge mode|doc/first_steps/startup_options/bridge_mode]]" +#, fuzzy +#| msgid "[[Tor bridge mode|doc/first_steps/startup_options/bridge_mode]]" +msgid "[[Tor bridge mode|doc/first_steps/welcome_screen/bridge_mode]]" msgstr "[[Tor Bridge Modus|doc/first_steps/startup_options/bridge_mode]]" #. type: Content of: <section><div><h2> diff --git a/wiki/src/about/staging/about.es.po b/wiki/src/about/staging/about.es.po index fb7a50da03ffe5a83f4451fabfa41f7a4affab31..b8cd7add0313c651376d6decd690fe266ea04636 100644 --- a/wiki/src/about/staging/about.es.po +++ b/wiki/src/about/staging/about.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-03-28 02:22+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-03-16 17:35+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -424,7 +424,9 @@ msgstr "" "[[¿Puedo ocultar el hecho de que estoy usando Tails?|doc/about/fingerprint]]" #. type: Content of: <section><div><div><ul><li> -msgid "[[Tor bridge mode|doc/first_steps/startup_options/bridge_mode]]" +#, fuzzy +#| msgid "[[Tor bridge mode|doc/first_steps/startup_options/bridge_mode]]" +msgid "[[Tor bridge mode|doc/first_steps/welcome_screen/bridge_mode]]" msgstr "[[Tor modo puente|doc/first_steps/startup_options/bridge_mode]]" #. type: Content of: <section><div><h2> diff --git a/wiki/src/about/staging/about.fa.po b/wiki/src/about/staging/about.fa.po index a2d9073fa2741789c399e350e0caa63a832804cc..a3beef33793077c76e96a263ee68ca003986d39c 100644 --- a/wiki/src/about/staging/about.fa.po +++ b/wiki/src/about/staging/about.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-03-28 02:22+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\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" @@ -346,7 +346,7 @@ msgid "[[Can I hide the fact that I am using Tails?|doc/about/fingerprint]]" msgstr "" #. type: Content of: <section><div><div><ul><li> -msgid "[[Tor bridge mode|doc/first_steps/startup_options/bridge_mode]]" +msgid "[[Tor bridge mode|doc/first_steps/welcome_screen/bridge_mode]]" msgstr "" #. type: Content of: <section><div><h2> diff --git a/wiki/src/about/staging/about.fr.po b/wiki/src/about/staging/about.fr.po index 9b2eb1e95fa29ff056a72b6bb7e7058456fa7075..9ecf45065c328138d1ad73f1ff02eac68428b001 100644 --- a/wiki/src/about/staging/about.fr.po +++ b/wiki/src/about/staging/about.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-03-28 02:22+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-03-21 14:35+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -440,7 +440,9 @@ msgstr "" "fingerprint]]" #. type: Content of: <section><div><div><ul><li> -msgid "[[Tor bridge mode|doc/first_steps/startup_options/bridge_mode]]" +#, fuzzy +#| msgid "[[Tor bridge mode|doc/first_steps/startup_options/bridge_mode]]" +msgid "[[Tor bridge mode|doc/first_steps/welcome_screen/bridge_mode]]" msgstr "[[Tor en mode bridge|doc/first_steps/startup_options/bridge_mode]]" #. type: Content of: <section><div><h2> diff --git a/wiki/src/about/staging/about.html b/wiki/src/about/staging/about.html index 477379ed905fa1962f86f9a5def9c3e8399dbe2e..73db2ed1e915000d77d83d866b7183c78480ec07 100644 --- a/wiki/src/about/staging/about.html +++ b/wiki/src/about/staging/about.html @@ -397,7 +397,7 @@ P12: [WORK] The card could be intercepted. The phone line could be cut. <p>See also:</p> <ul> <li>[[Can I hide the fact that I am using Tails?|doc/about/fingerprint]]</li> - <li>[[Tor bridge mode|doc/first_steps/startup_options/bridge_mode]]</li> + <li>[[Tor bridge mode|doc/first_steps/welcome_screen/bridge_mode]]</li> </ul> </div> diff --git a/wiki/src/about/staging/about.it.po b/wiki/src/about/staging/about.it.po index b80318c9f8af6bc39f0cb30742129395f5bd4966..de403bdb593bad00f8a0964b9482819edd750c2b 100644 --- a/wiki/src/about/staging/about.it.po +++ b/wiki/src/about/staging/about.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-03-28 02:22+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-03-12 17:35+0000\n" "Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -430,7 +430,9 @@ msgstr "" "fingerprint]]" #. type: Content of: <section><div><div><ul><li> -msgid "[[Tor bridge mode|doc/first_steps/startup_options/bridge_mode]]" +#, fuzzy +#| msgid "[[Tor bridge mode|doc/first_steps/startup_options/bridge_mode]]" +msgid "[[Tor bridge mode|doc/first_steps/welcome_screen/bridge_mode]]" msgstr "[[Tor in modalità bridge|doc/first_steps/startup_options/bridge_mode]]" #. type: Content of: <section><div><h2> diff --git a/wiki/src/about/staging/about.pt.po b/wiki/src/about/staging/about.pt.po index f8b1e03d2353ff2b7d60c34c96ae6b0682718cb9..29bfa5c4a76aaa667785ce6f0e257d42f0702ed2 100644 --- a/wiki/src/about/staging/about.pt.po +++ b/wiki/src/about/staging/about.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-03-28 02:22+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-02-28 16:27+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -435,7 +435,9 @@ msgstr "" "fingerprint]]" #. type: Content of: <section><div><div><ul><li> -msgid "[[Tor bridge mode|doc/first_steps/startup_options/bridge_mode]]" +#, fuzzy +#| msgid "[[Tor bridge mode|doc/first_steps/startup_options/bridge_mode]]" +msgid "[[Tor bridge mode|doc/first_steps/welcome_screen/bridge_mode]]" msgstr "" "[[Usando Tor no modo ponte|doc/first_steps/startup_options/bridge_mode]]" diff --git a/wiki/src/blueprint/Debian_testing.mdwn b/wiki/src/blueprint/Debian_testing.mdwn index 8bbb1e7009687df564f4061b28a11bcb3014e39f..3c4f0fafa55d00d0accda33db02a7e7b43b18a7a 100644 --- a/wiki/src/blueprint/Debian_testing.mdwn +++ b/wiki/src/blueprint/Debian_testing.mdwn @@ -313,15 +313,15 @@ Example (YAML): - caribou - dasher - orca - - page: doc/first_steps/startup_options + - page: doc/first_steps/welcome_screen package: tails-greeter files: - config/binary_local-hooks/*grub* - config/binary_local-hooks/*syslinux* - config/chroot_local-includes/etc/dconf/db/local.d/00_Tails_defaults - - page: doc/first_steps/startup_options/administration_password + - page: doc/first_steps/welcome_screen/administration_password package: tails-greeter - - page: doc/first_steps/startup_options/bridge_mode + - page: doc/first_steps/welcome_screen/bridge_mode packages: - obfs4proxy - tor @@ -345,8 +345,8 @@ Example (YAML): - features/images/TailsGreeter* pages: - doc/first_steps/persistence/use - - doc/first_steps/startup_options - - doc/first_steps/startup_options/* + - doc/first_steps/welcome_screen + - doc/first_steps/welcome_screen/* ### Automated testing diff --git a/wiki/src/blueprint/update_camouflage_for_jessie.mdwn b/wiki/src/blueprint/update_camouflage_for_jessie.mdwn index 6e4d406bfe07440b519b9ac273be3e927ea32342..8a4e6829d25aef8515fcddbcabb9a81c1fab6362 100644 --- a/wiki/src/blueprint/update_camouflage_for_jessie.mdwn +++ b/wiki/src/blueprint/update_camouflage_for_jessie.mdwn @@ -1,11 +1,11 @@ # Introduction -Our [[documentation|doc/first_steps/startup_options/windows_camouflage]] reads "if +Our [[documentation|doc/first_steps/welcome_screen/windows_camouflage]] reads "if you are using a computer in public you may want to avoid attracting unwanted attention by changing the way Tails looks into something that resembles Microsoft Windows 8." This is what we call the "Windows camouflage". -[[!img doc/first_steps/startup_options/windows_camouflage/windows_camouflage.jpg size=320x240 link=no]] +[[!img doc/first_steps/welcome_screen/windows_camouflage/windows_camouflage.jpg size=320x240 link=no]] The Windows camouflage will be [[!tails_ticket 8064 desc="broken in Debian Jessie based Tails"]]. This blueprint describes what should be done to update the Windows camouflage to Jessie. @@ -40,7 +40,7 @@ Windows camouflage update MUST include: - a GNOME Shell theme/extension that looks like Windows 8.1 desktop panel compatible with the version on GNOME Shell shipped in Debian Jessie (3.14.2) - a way to enable all the required components to provide the camouflage mode - that can be triggered by [[Tails Greeter|/doc/first_steps/startup_options#greeter]] + that can be triggered by [[Tails Greeter|/doc/first_steps/welcome_screen]] Windows camouflage MAY include: diff --git a/wiki/src/contribute.de.po b/wiki/src/contribute.de.po index 21efd49838a92095a666b4065dee53012e920df8..c829c1688d2d15be658eb816f0e4347f5c192f02 100644 --- a/wiki/src/contribute.de.po +++ b/wiki/src/contribute.de.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: 2020-03-21 09:51+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-03-12 17:35+0000\n" "Last-Translator: Muri Nicanor <muri@immerda.ch>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -522,7 +522,7 @@ msgid "Sysadmin: [[contact|contribute/how/sysadmin/#contact]]" msgstr "" #. type: Bullet: ' - ' -msgid "*Tails Greeter* (Python): alan, intrigeri" +msgid "Welcome Screen (Python): alan, intrigeri" msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/contribute.es.po b/wiki/src/contribute.es.po index 82e9459fe00e9ee30f2bdaf04d872fbed44427f7..2843436bf9ebebd47748f1b45177f52d9bfbca9d 100644 --- a/wiki/src/contribute.es.po +++ b/wiki/src/contribute.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2020-03-21 09:51+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-03-31 09:34+0000\n" "Last-Translator: emma peel <emmapeel@torproject.org>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -410,17 +410,14 @@ msgstr "" " - [[Gestor de bugs Redmine|contribute/working_together/Redmine]]\n" " - [[Tareas iniciales|starter_tasks]] para nuevos contribuidores\n" " - [Tareas](https://redmine.tails.boum.org/code/projects/tails/issues) \n" -" puede filtrarse por tipo de trabajo (mira enlaces en la barra lateral)" -"\n" +" puede filtrarse por tipo de trabajo (mira enlaces en la barra lateral)\n" " - [[Compilar una imagen de Tails|contribute/build]]\n" " - [[Compilar una copia local de la web|contribute/build/website]]\n" " - [[Configurar Tails|contribute/customize]]\n" " - [Nightly ISO builds](http://nightly.tails.boum.org)\n" " - Debian packages\n" -" - [[APT repository|contribute/APT_repository]], para almacenar nuestros " -"paquetes personalizados de Debian\n" -" - Cómo manejamos y actualizamos el [[kernel de Linux|contribute/" -"Linux_kernel]].\n" +" - [[APT repository|contribute/APT_repository]], para almacenar nuestros paquetes personalizados de Debian\n" +" - Cómo manejamos y actualizamos el [[kernel de Linux|contribute/Linux_kernel]].\n" " - Cómo manejamos y actualizamos [[contribute/tor]].\n" " - [[Glossary for contributors|contribute/glossary]]\n" @@ -490,7 +487,9 @@ msgid "Sysadmin: [[contact|contribute/how/sysadmin/#contact]]" msgstr "Sysadmin: [[contact|contribute/how/sysadmin/#contact]]" #. type: Bullet: ' - ' -msgid "*Tails Greeter* (Python): alan, intrigeri" +#, fuzzy +#| msgid "*Tails Greeter* (Python): alan, intrigeri" +msgid "Welcome Screen (Python): alan, intrigeri" msgstr "*Tails Greeter* (Python): alan, intrigeri" #. type: Bullet: ' - ' diff --git a/wiki/src/contribute.fa.po b/wiki/src/contribute.fa.po index ed34efa9ef6d36dbc035aaf69d7ca7fa841d0697..9630b5770555086873d4e4fa4ab4fbdd27b646ba 100644 --- a/wiki/src/contribute.fa.po +++ b/wiki/src/contribute.fa.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: 2020-03-21 09:51+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2015-10-15 15:23+0000\n" "Last-Translator: sprint5 <translation5@451f.org>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" @@ -514,7 +514,7 @@ msgid "Sysadmin: [[contact|contribute/how/sysadmin/#contact]]" msgstr "" #. type: Bullet: ' - ' -msgid "*Tails Greeter* (Python): alan, intrigeri" +msgid "Welcome Screen (Python): alan, intrigeri" msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/contribute.fr.po b/wiki/src/contribute.fr.po index eabd16641b63547e40b88804f8e2c41f48a2495d..6915b7244f0fc5fffeca02eaf7854755d0f70a75 100644 --- a/wiki/src/contribute.fr.po +++ b/wiki/src/contribute.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2020-03-21 09:51+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-03-22 09:35+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -416,10 +416,8 @@ msgstr "" " - [[Customize Tails|contribute/customize]]\n" " - [Nightly ISO builds](http://nightly.tails.boum.org)\n" " - Debian packages\n" -" - [[APT repository|contribute/APT_repository]], to store our custom " -"Debian packages\n" -" - How we manage and upgrade the [[Linux kernel|contribute/Linux_kernel]]." -"\n" +" - [[APT repository|contribute/APT_repository]], to store our custom Debian packages\n" +" - How we manage and upgrade the [[Linux kernel|contribute/Linux_kernel]].\n" " - How we manage and upgrade [[contribute/tor]].\n" " - [[Glossary for contributors|contribute/glossary]]\n" @@ -489,7 +487,9 @@ msgid "Sysadmin: [[contact|contribute/how/sysadmin/#contact]]" msgstr "Sysadmin: [[contact|contribute/how/sysadmin/#contact]]" #. type: Bullet: ' - ' -msgid "*Tails Greeter* (Python): alan, intrigeri" +#, fuzzy +#| msgid "*Tails Greeter* (Python): alan, intrigeri" +msgid "Welcome Screen (Python): alan, intrigeri" msgstr "*Tails Greeter* (Python): alan, intrigeri" #. type: Bullet: ' - ' diff --git a/wiki/src/contribute.it.po b/wiki/src/contribute.it.po index c6d72c899f575eddd6c0c094be85b7a9858cff28..906a1755677db4514203eaaaeb0c782b7b3dc0c6 100644 --- a/wiki/src/contribute.it.po +++ b/wiki/src/contribute.it.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: 2020-03-21 09:51+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-03-12 17:35+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -382,7 +382,7 @@ msgid "Sysadmin: [[contact|contribute/how/sysadmin/#contact]]" msgstr "" #. type: Bullet: ' - ' -msgid "*Tails Greeter* (Python): alan, intrigeri" +msgid "Welcome Screen (Python): alan, intrigeri" msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/contribute.mdwn b/wiki/src/contribute.mdwn index a1788d7446b4e8ac0640c1fea068f453d28919bf..fdda5e8edd884effdb37bb5116708df00e499c53 100644 --- a/wiki/src/contribute.mdwn +++ b/wiki/src/contribute.mdwn @@ -168,7 +168,7 @@ using the usual communication channels. - *OpenPGP Applet* (Perl): nodens - Persistence setup (Perl): intrigeri, kurono - Sysadmin: [[contact|contribute/how/sysadmin/#contact]] - - *Tails Greeter* (Python): alan, intrigeri + - Welcome Screen (Python): alan, intrigeri - *Tails Installer* (Python): alan, kurono, u - *Tails Upgrader* (Perl): intrigeri - *Tails Verification* (JavaScript): sajolida, anonym diff --git a/wiki/src/contribute.pt.po b/wiki/src/contribute.pt.po index b05e4b9719f7203fade5f048d305e8f31a2f7660..0ebd5ca345b0d28dbfde79b1cfb855c613515faa 100644 --- a/wiki/src/contribute.pt.po +++ b/wiki/src/contribute.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2020-03-21 09:51+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-02-26 15:27+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: Portuguese <LL@li.org>\n" @@ -525,7 +525,7 @@ msgstr "" #. type: Bullet: ' - ' #, fuzzy #| msgid "*Tails Greeter*: alan, intrigeri" -msgid "*Tails Greeter* (Python): alan, intrigeri" +msgid "Welcome Screen (Python): alan, intrigeri" msgstr "*Tails Greeter*: alan, intrigeri" #. type: Bullet: ' - ' diff --git a/wiki/src/contribute/Linux_kernel.mdwn b/wiki/src/contribute/Linux_kernel.mdwn index d9e9036317f14434fb4fd2cbf18255d850747231..546b750ec2221a6f1176f9f895e900c35fdfb8d3 100644 --- a/wiki/src/contribute/Linux_kernel.mdwn +++ b/wiki/src/contribute/Linux_kernel.mdwn @@ -85,11 +85,6 @@ To learn how the new kernel works for us: run our entire test suite (`+force-all-tests`). But since this branch has no commit on top of `devel`, Jenkins will ignore it, so you need to create a dummy commit. -2. Adjust the `aufs` submodule: in the `submodules/aufs-standalone` - directory, use `git fetch` and `git branch -a` to find the most - suitable branch for this kernel version, check it out, then move - back to the top level directory. `git diff` should show an updated - `Subproject commit` accordingly, and that can be committed. 3. Push this new branch to our CI. 4. Set the _Feature Branch_ field on the ticket to the name of your new branch. diff --git a/wiki/src/contribute/build/website.mdwn b/wiki/src/contribute/build/website.mdwn index 06b27ec22abf3e6e1dcf2989fea987f85c5fd8ba..b7e6c8e013932001d54476947206e573416fc42a 100644 --- a/wiki/src/contribute/build/website.mdwn +++ b/wiki/src/contribute/build/website.mdwn @@ -62,7 +62,7 @@ Build the website in Tails - APT Packages - APT Lists -2. Restart Tails, [[enable the persistence|doc/first_steps/persistence/use]], and [[set up an administration password|doc/first_steps/startup_options/administration_password]]. +2. Restart Tails, [[enable the persistence|doc/first_steps/persistence/use]], and [[set up an administration password|doc/first_steps/welcome_screen/administration_password]]. 3. Update the list of available packages: diff --git a/wiki/src/contribute/design.mdwn b/wiki/src/contribute/design.mdwn index 0c28800b06efce04684d28321ce8a342935f03ff..bfe81386f5fc9d950130f85a49298f4349fdbdbc 100644 --- a/wiki/src/contribute/design.mdwn +++ b/wiki/src/contribute/design.mdwn @@ -625,7 +625,7 @@ aims at recovering a Live system's in-memory filesystem and partial recovery of its previously deleted contents. Most current Live systems do not protect against that kind of attacks: at best, they erase free memory on shutdown, leaving intact in memory any data saved in the -unionfs/aufs ramdisk branch. +unionfs (aufs, overlayfs, etc.) ramdisk branch. This was [discussed](http://archives.seul.org/or/talk/Jan-2011/msg00137.html) @@ -999,7 +999,7 @@ We only modify this Tor Browser installation slightly: We add a mandatory signing exception for this add-on. * We use the myspell/hunspell dictionaries provided by Debian. * We ship all langpacks and select the UI language depending on - the locale chosen by the user in our *Greeter*. + the locale chosen by the user in our Welcome Screen. * Tails does not install the Tor Launcher extension as part of the browser. Instead we extract Tor Launcher from the bundled .xpi and make it available as a stand-alone XUL application for Tor diff --git a/wiki/src/contribute/design/MAC_address.mdwn b/wiki/src/contribute/design/MAC_address.mdwn index 800bd93059c346761ed109dfd7a9bf90006e483b..55e0805c40826fa7ad808bf8b761c21c18bdc20d 100644 --- a/wiki/src/contribute/design/MAC_address.mdwn +++ b/wiki/src/contribute/design/MAC_address.mdwn @@ -350,7 +350,7 @@ The current implementation leaves the OUI part unchanged, and only spoofs the last three bytes of any network device's MAC address immediately after it is added by udev. Furthermore, to deal with potential network leaks before the user has chosen whether to enable MAC spoofing or not, the -addition of network devices is delayed until after Tails Greeter knows +addition of network devices is delayed until after the Welcome Screen knows the user's final decision. ## Network blocking @@ -361,7 +361,7 @@ whether to enable MAC spoofing or not. The way we do this is by generating a list of all network device modules during build time, and add these to a `modprobe.d`-type blacklist. An implication of this is that in-kernel drivers and modules installed after build time will not -be in the blacklist and hence are not supported. In Tails Greeter's +be in the blacklist and hence are not supported. In the Welcome Screen's post-login script (when we know the user's decision) we unblock the network by simply removing that list, and then we have udev "re-probe" for network devices and load their modules. @@ -461,7 +461,7 @@ that some devices are pretty much only used in some geographical areas. Note that collecting such data probably is orders of magnitude harder than `macchiato`'s current quest, and that the user interface would be further complicated (in Tails we'd have to ask for the -current geographical location in Tails Greeter, or similar). The real +current geographical location in the Welcome Screen, or similar). The real impact of this should be evaluated; it's very likely that the benefits still outweigh this risk. diff --git a/wiki/src/contribute/design/Tor_enforcement/DNS.mdwn b/wiki/src/contribute/design/Tor_enforcement/DNS.mdwn index fce864375d82b7e370439ca38d15ba138c80ffb9..fc6a448e61edcb1032ca0a44b1e36195c90b4450 100644 --- a/wiki/src/contribute/design/Tor_enforcement/DNS.mdwn +++ b/wiki/src/contribute/design/Tor_enforcement/DNS.mdwn @@ -33,7 +33,7 @@ The following is the complete list of the applications allowed to use the clearnet DNS configuration: * the `tor` process itself, but only if the user requested to - configure Tor's network settings in Tails Greeter; in this case + configure Tor's network settings in the Welcome Screen; in this case `tor` being able to resolve hostnames is convenient (e.g. hostnames are human-readable, IP addresses not as much) or even necessary (e.g. for the Meek pluggable transport): diff --git a/wiki/src/contribute/design/Tor_network_configuration.mdwn b/wiki/src/contribute/design/Tor_network_configuration.mdwn index ef8ac8a258ab8f3249c287af0be05fe503ba1e3f..0d77ae1484dabc1527b7aeea1d89a743435df469 100644 --- a/wiki/src/contribute/design/Tor_network_configuration.mdwn +++ b/wiki/src/contribute/design/Tor_network_configuration.mdwn @@ -29,12 +29,12 @@ these options before Tor tries to connect to the public Tor network. # Implementation -In Tails Greeter the "Network Configuration" section contains a +In the Welcome Screen the "Network Configuration" section contains a non-default option called "My Internet Connection is censored...". When activated, the following deviations from normal Tails behaviour occur, in order: -0. Tails Greeter adds `DisableNetwork 1` to torrc so Tor will not +0. The Welcome Screen adds `DisableNetwork 1` to torrc so Tor will not connect to the network without user intervention. 0. The `tor` process is configured to not use the system resolver diff --git a/wiki/src/contribute/design/UEFI.mdwn b/wiki/src/contribute/design/UEFI.mdwn index 395727a2f783fe82f6b3f3b4226967e2a104a0ec..0fe373390c5f3c34935d4552ddce9e1cab7ffe54 100644 --- a/wiki/src/contribute/design/UEFI.mdwn +++ b/wiki/src/contribute/design/UEFI.mdwn @@ -31,187 +31,22 @@ Non-goals in Legacy BIOS boot mode from hybrid ISO cat'd on a USB device. If the firmware supports it, this can be done on the same computer; else, from another computer. -* [[blueprint/UEFI Secure boot]] is not part of this plan. - Picking technical solutions that leave room for it would be a great - bonus, though. * [[blueprint/UEFI boot on Mac without rEFInd]] would be too ambitious a goal for this iteration. Besides, we think that installing rEFInd is not that crazy a requirement, considering the additional features a device installed with Tails Installed provides (namely: persistence and incremental upgrades). -<a id="discussion-and-conclusions"></a> - -Discussion and conclusions -========================== - -We have conducted an initial research and testing effort, aiming at -choosing tools and procedures to add UEFI boot support to Tails. -Our goals and non-goals are [[stated -above|blueprint/UEFI#goals-and-non-goals]]. - -The outcome of this project exceeded our expectations: we now have not -only all important design decisions made, but also a prototype -implementation that can already be -[downloaded](http://nightly.tails.boum.org/build_Tails_ISO_feature-uefi/) -and tested. It is built from our [[!tails_gitweb_branch feature/uefi]] -Git branch. - -In this document, we first summarize our findings regarding the choice -of a boot loader, and state the conclusions we have reached. Then, we -discuss the implementation details that matter most. Finally, we sum -up the next steps toward deploying Tails with UEFI support to the -masses, and provide an overview of improvements that we may need to -make in the future. - -Choosing a boot loader ----------------------- - -A large number of UEFI boot loader implementations are available. -We have limited our selection to the options that meet the following -conditions: - -1. available in Debian (excludes Gummiboot and rEFInd); -1. actively maintained upstream (excludes BURG, ELILO and rEFIt); -1. easy to integrate into the Debian Live ISO build process; -1. no requirement to add boot entries to NVRAM; -1. no requirement to recompile or modify the Linux kernels we install - from Debian (excludes the Linux kernel EFISTUB). - -So, we have considered two boot loaders, namely GRUB (not to be -confused with GRUB Legacy) and syslinux (version 6). There is a lot to -say about these two pieces of software, and we will focus on the -criteria that seem relevant for a Debian Live system, and for Tails -in particular. - -### GRUB - -Pros: - -* GRUB has *many* features and is highly flexible (e.g. - scripting language, many existing modules). -* GRUB's support for UEFI has been tested in the field for a few years - now, by many GNU/Linux distributions that added UEFI support back - when syslinux did not support it ⇒ it supports probably more edge - cases (aka. buggy firmware), especially for graphics support. -* GRUB supports [[blueprint/UEFI Secure boot]], and is used (in - various ways) by most GNU/Linux distributions that provide - this feature. - -Cons: - -* GRUB is complex software. Its many features and configuration - options can be slightly overwhelming, and may hinder our potential - to attract and welcome new contributors. -* We would have to create a GRUB version of our menu and graphical - theme configuration, and either migrate to GRUB for Legacy BIOS too - (which adds quite some risks of regressions that must be evaluated - and mitigated), or to maintain this configuration *in addition to* - the existing syslinux one that would still be be used in Legacy - BIOS mode. -* GRUB is not so popular in the Live systems world ⇒ might have issues - in this area that major non-Live GNU/Linux distributions did - not catch. -* We lack an evaluation of how hard it would be to backport recent - enough versions of GRUB for Squeeze and Wheezy. - -### syslinux - -Pros: - -* Tails has been using syslinux forever, and we are pretty happy - with it. -* syslinux is very popular in Live GNU/Linux distributions ⇒ picking - it gives good potential for inter-distro cooperation. Notably, - Debian Live systems use syslinux by default. -* Debian Live's UEFI support will be based on syslinux 6. -* We were able to trivially backport syslinux 6 for Squeeze. - -Cons: - -* syslinux' support for UEFI is quite young; this is slightly - mitigated by the fact that at least one high-profile Live system - (Knoppix) already uses it, and presumably adding another one into - the mix (Tails) might foster upstream development a bit, and result - in rapid fixing of the most important remaining glitches. -* syslinux has limited support for UEFI boot from DVD; this is - a non-goal for us in this iteration, but still. -* Using syslinux with Secure boot is [maybe broken, but maybe - not](http://bugzilla.syslinux.org/show_bug.cgi?id=8). That is, it - could use some love and testing, to say the least. -* syslinux is available in Debian experimental only, and it is hard to - know when this might change. - -### Multiple boot loaders - -Technically, it is entirely possible to install multiple UEFI boot -loaders onto the Tails system partition (which is, conveniently, the -EFI System Partition). This would allow users whose hardware is not -supported by the default one, to boot using the other. - -However: - -* some hardware is only able to boot the fallback UEFI boot loader, so - we have to pick a default one anyway; then, users whose hardware - only boots the fallback UEFI boot loader *and* is not well supported - by this one would not be able to boot Tails anyway, without fiddling - (in unsupported ways) with boot loader configuration; -* the resulting user interface in the firmware boot menu would display - more entries; hence, the needed documentation would be more complex - to write, maintain, and, more importantly, to read and follow. - -### Conclusions - -First, we believe the user experience that would result from -installing multiple boot loaders would be much less smooth overall, so -we are rejecting this option for now. Still, if broader testing and -user feedback showed that none of the other available options is good -enough by itself, we might have to reconsider. - -Second, in our [[early testing|blueprint/UEFI#testing-results]], GRUB -and syslinux appeared to be perfectly on par with each other, as far -as hardware support is concerned. To be fair, it must be noted that -GRUB was tested in the simpler, and likely more robust text-only mode, -while we have taken benefit of our existing configuration and -graphical theme to test syslinux a bit more extensively. So, with the -data we have at hand, quality of hardware support cannot be used as -a criterion in this decision. - -We must say that GRUB's flexibility and mature UEFI support is -seriously appealing to us. Also, even if Secure boot is not part of -this first iteration, it is very tempting to bet on a boot loader that -is already in wide use in this area. Still, we feel that continuing to -use syslinux both for Legacy BIOS and UEFI boot will make Tails blend -better with the surrounding Live operating system environment, -particularly Debian Live, which has many advantages both for Tails -users and developers. Added to that, the lesser risk of regressions -for existing Tails users, and the lesser impact on our project's -resources, were decisive. - -Our final take on this is to use syslinux 6 as our boot loader of -choice, for the initial UEFI boot support in Tails. +Implementation +============== -To end with, it has to be said that switching boot loaders in the -future appears to be pretty easy from a technical standpoint. -Of course, the quality assurance effort that would go with it in order -to assert the risk for regressions, shall not be overlooked: it is -generally bad for user experience to break support for hardware that -was previously known-working, even if the very change that causes this -breakage allows to support many more systems in total. Regardless, we -do not consider the current decision as set in stone. We think it -would be perfectly workable to switch to GRUB or another boot loader -later on, if it proves to be needed for future developments of Tails, -or to adjust our position to match changes in the -ecosystem thereabout. +### Boot loaders -Implementation --------------- +Tails uses: -Even if it is slightly out-of-scope, as far as the project that called -for this document is concerned, we discuss here a few important -implementation details we have had the opportunity to think of, -experiment with, and reach conclusions about, while we were conducting -this research and testing project. +* GRUB (2.x) both for 64-bit and 32-bit UEFI boot +* syslinux for legacy BIOS boot from a USB stick +* isolinux for legacy BIOS boot from DVD ### Boot device partitioning @@ -223,7 +58,7 @@ detecting an encrypted Debian Live persistent volume). This is why we have decided, back when we were implementing persistence support and a graphical USB installer in 2012, to initialize Tails boot devices with a GPT. Since then, we have made great use of this feature in -Tails Persistent Volume Assistant, Incremental Upgrader and Greeter. +Tails Persistent Volume Assistant, Incremental Upgrader and the Welcome Screen. Despite a few painful consequences we discovered along the way, all caused by buggy firmware implementations, we think that picking GPT at @@ -261,91 +96,20 @@ Therefore, we will *not* add boot entries for Tails in the NVRAM, and our only practically available choice is to install our boot loader of choice as the fallback UEFI boot loader on Tails devices. -### Available Linux kernels - -We are aiming to support UEFI boot in Tails for 64-bit hardware only. -Then, the included UEFI boot loader has to be a 64-bit one. -Running a 32-bit kernel from a 64-bit UEFI boot loader does not work. -Therefore, we have to ship a 64-bit kernel, in addition to (at least) -one 32-bit kernel, the latter being needed to provide continued -support for 32-bit hardware. - -The set of Linux kernels shipped in Tails has to [[!tails_ticket 5456 -desc="be modified"]] to add a 64-bit kernel, in replacement of the -686-pae flavour. This causes only a few minor problems that, in our -opinion, are worth neither blocking the addition of UEFI support, nor -keeping the 686-pae kernel and bloating the ISO with a third kernel. - -### Boot loader configuration - -The syslinux configuration that is already used for Legacy BIOS boot -is copied as-is into the UEFI boot loader configuration directory. - ### Build-time implementation -Two build-time hooks take care of the UEFI boot loader setup: +The UEFI boot loader setup is taken care of by: * `config/chroot_local-hooks/60-copy-syslinux-modules` -* `config/binary_local-hooks/99-syslinux_uefi` +* `config/binary_local-hooks/50-grub-efi` +* `config/binary_local-includes/EFI/BOOT/grub/grub.cfg` +* `config/binary_local-includes/EFI/debian/grub.cfg` +* `config/binary_local-includes/EFI/debian/grub/splash.png` ### Tails Installer Tails Installer creates the Tails system partition as an EFI System -Partition (ESP), with the corresponding GUID. Additionally, it was -adapted to support paths used by the syslinux 6 Debian packages, and -in the `EFI/BOOT` directory. - -### syslinux backport - -A backport of syslinux 6.x is installed from our APT repository. - -32-bit UEFI -=========== - -Chosen path ------------ - -A 32-bit UEFI GRUB2 bootloader is installed in the fallback location. -It is configured to load our existing syslinux configuration, and -to convert it on the fly to GRUB's format: - -* [[!tails_gitweb config/binary_local-hooks/50-grub-efi-ia32]] -* [[!tails_gitweb config/binary_local-includes/EFI/BOOT/grub/grub.cfg]]] - -Support for `{vesa,}menu.c32` was added in GRUB upstream, but didn't -make it into Debian yet as of 2.02~beta2-22, so we have backported -these patches and are shipping a custom GRUB2 package. - -Discarded implementation ideas ------------------------------- - -### syslinux - -It's currently -[impossible](http://www.syslinux.org/archives/2015-May/023469.html) -with upstream syslinux to have both 32-bit and 64-bit UEFI boot -loaders installed in the fallback path, without forcing the user to -manually choose between them, which would degrade UX substantially for -users who have 64-bit UEFI working fine already. - -Once the proposed patches have been merged upstream, we may want to -replace our current implementation with a syslinux-based one, for -greater UX consistency. - -### 32-bit GRUB2 EFI chainloading 32-bit syslinux EFI - -* syslinux 32-bit EFI installed in `EFI/TAILS32` -* GRUB 32-bit EFI installed in `EFI/BOOT/BOOTIA32.EFI` - -=> did not manage to chainload 32-bit syslinux EFI from GRUB. -On Tails/Jessie (GRUB 2.02~beta2-22), I get `error: unknown error.` -after typing `boot`. This likely comes from -`grub-core/loader/efi/chainloader.c`. - -### 32-bit GRUB2 EFI with native configuration - -This requires to write/generate and maintain a GRUB2 configuration, -either semi-automatically (e.g. with `grub-syslinux2cfg`) or by hand. +Partition (ESP), with the corresponding GUID. Future work =========== diff --git a/wiki/src/contribute/design/UEFI/archive.mdwn b/wiki/src/contribute/design/UEFI/archive.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..05b0c9213df910d61299828437bd2919a26a50af --- /dev/null +++ b/wiki/src/contribute/design/UEFI/archive.mdwn @@ -0,0 +1,199 @@ +This page describes the what lead us to initially implementing UEFI support in +Tails with syslinux. This implementation has been superseded by +a GRUB-based one. + +Discussion and conclusions +========================== + +We have conducted an initial research and testing effort, aiming at +choosing tools and procedures to add UEFI boot support to Tails. +Our goals and non-goals are [[stated +above|blueprint/UEFI#goals-and-non-goals]]. + +The outcome of this project exceeded our expectations: we now have not +only all important design decisions made, but also a prototype +implementation that can already be +[downloaded](http://nightly.tails.boum.org/build_Tails_ISO_feature-uefi/) +and tested. It is built from our [[!tails_gitweb_branch feature/uefi]] +Git branch. + +In this document, we first summarize our findings regarding the choice +of a boot loader, and state the conclusions we have reached. Then, we +discuss the implementation details that matter most. Finally, we sum +up the next steps toward deploying Tails with UEFI support to the +masses, and provide an overview of improvements that we may need to +make in the future. + +Choosing a boot loader +---------------------- + +A large number of UEFI boot loader implementations are available. +We have limited our selection to the options that meet the following +conditions: + +1. available in Debian (excludes Gummiboot and rEFInd); +1. actively maintained upstream (excludes BURG, ELILO and rEFIt); +1. easy to integrate into the Debian Live ISO build process; +1. no requirement to add boot entries to NVRAM; +1. no requirement to recompile or modify the Linux kernels we install + from Debian (excludes the Linux kernel EFISTUB). + +So, we have considered two boot loaders, namely GRUB (not to be +confused with GRUB Legacy) and syslinux (version 6). There is a lot to +say about these two pieces of software, and we will focus on the +criteria that seem relevant for a Debian Live system, and for Tails +in particular. + +### GRUB + +Pros: + +* GRUB has *many* features and is highly flexible (e.g. + scripting language, many existing modules). +* GRUB's support for UEFI has been tested in the field for a few years + now, by many GNU/Linux distributions that added UEFI support back + when syslinux did not support it ⇒ it supports probably more edge + cases (aka. buggy firmware), especially for graphics support. +* GRUB supports [[blueprint/UEFI Secure boot]], and is used (in + various ways) by most GNU/Linux distributions that provide + this feature. + +Cons: + +* GRUB is complex software. Its many features and configuration + options can be slightly overwhelming, and may hinder our potential + to attract and welcome new contributors. +* We would have to create a GRUB version of our menu and graphical + theme configuration, and either migrate to GRUB for Legacy BIOS too + (which adds quite some risks of regressions that must be evaluated + and mitigated), or to maintain this configuration *in addition to* + the existing syslinux one that would still be be used in Legacy + BIOS mode. +* GRUB is not so popular in the Live systems world ⇒ might have issues + in this area that major non-Live GNU/Linux distributions did + not catch. +* We lack an evaluation of how hard it would be to backport recent + enough versions of GRUB for Squeeze and Wheezy. + +### syslinux + +Pros: + +* Tails has been using syslinux forever, and we are pretty happy + with it. +* syslinux is very popular in Live GNU/Linux distributions ⇒ picking + it gives good potential for inter-distro cooperation. Notably, + Debian Live systems use syslinux by default. +* Debian Live's UEFI support will be based on syslinux 6. +* We were able to trivially backport syslinux 6 for Squeeze. + +Cons: + +* syslinux' support for UEFI is quite young; this is slightly + mitigated by the fact that at least one high-profile Live system + (Knoppix) already uses it, and presumably adding another one into + the mix (Tails) might foster upstream development a bit, and result + in rapid fixing of the most important remaining glitches. +* syslinux has limited support for UEFI boot from DVD; this is + a non-goal for us in this iteration, but still. +* Using syslinux with Secure boot is [maybe broken, but maybe + not](http://bugzilla.syslinux.org/show_bug.cgi?id=8). That is, it + could use some love and testing, to say the least. +* syslinux is available in Debian experimental only, and it is hard to + know when this might change. + +### Multiple boot loaders + +Technically, it is entirely possible to install multiple UEFI boot +loaders onto the Tails system partition (which is, conveniently, the +EFI System Partition). This would allow users whose hardware is not +supported by the default one, to boot using the other. + +However: + +* some hardware is only able to boot the fallback UEFI boot loader, so + we have to pick a default one anyway; then, users whose hardware + only boots the fallback UEFI boot loader *and* is not well supported + by this one would not be able to boot Tails anyway, without fiddling + (in unsupported ways) with boot loader configuration; +* the resulting user interface in the firmware boot menu would display + more entries; hence, the needed documentation would be more complex + to write, maintain, and, more importantly, to read and follow. + +### Conclusions + +First, we believe the user experience that would result from +installing multiple boot loaders would be much less smooth overall, so +we are rejecting this option for now. Still, if broader testing and +user feedback showed that none of the other available options is good +enough by itself, we might have to reconsider. + +Second, in our [[early testing|blueprint/UEFI#testing-results]], GRUB +and syslinux appeared to be perfectly on par with each other, as far +as hardware support is concerned. To be fair, it must be noted that +GRUB was tested in the simpler, and likely more robust text-only mode, +while we have taken benefit of our existing configuration and +graphical theme to test syslinux a bit more extensively. So, with the +data we have at hand, quality of hardware support cannot be used as +a criterion in this decision. + +We must say that GRUB's flexibility and mature UEFI support is +seriously appealing to us. Also, even if Secure boot is not part of +this first iteration, it is very tempting to bet on a boot loader that +is already in wide use in this area. Still, we feel that continuing to +use syslinux both for Legacy BIOS and UEFI boot will make Tails blend +better with the surrounding Live operating system environment, +particularly Debian Live, which has many advantages both for Tails +users and developers. Added to that, the lesser risk of regressions +for existing Tails users, and the lesser impact on our project's +resources, were decisive. + +Our final take on this is to use syslinux 6 as our boot loader of +choice, for the initial UEFI boot support in Tails. + +To end with, it has to be said that switching boot loaders in the +future appears to be pretty easy from a technical standpoint. +Of course, the quality assurance effort that would go with it in order +to assert the risk for regressions, shall not be overlooked: it is +generally bad for user experience to break support for hardware that +was previously known-working, even if the very change that causes this +breakage allows to support many more systems in total. Regardless, we +do not consider the current decision as set in stone. We think it +would be perfectly workable to switch to GRUB or another boot loader +later on, if it proves to be needed for future developments of Tails, +or to adjust our position to match changes in the +ecosystem thereabout. + +32-bit UEFI +=========== + +Discarded implementation ideas +------------------------------ + +### syslinux + +It's currently +[impossible](http://www.syslinux.org/archives/2015-May/023469.html) +with upstream syslinux to have both 32-bit and 64-bit UEFI boot +loaders installed in the fallback path, without forcing the user to +manually choose between them, which would degrade UX substantially for +users who have 64-bit UEFI working fine already. + +Once the proposed patches have been merged upstream, we may want to +replace our current implementation with a syslinux-based one, for +greater UX consistency. + +### 32-bit GRUB2 EFI chainloading 32-bit syslinux EFI + +* syslinux 32-bit EFI installed in `EFI/TAILS32` +* GRUB 32-bit EFI installed in `EFI/BOOT/BOOTIA32.EFI` + +=> did not manage to chainload 32-bit syslinux EFI from GRUB. +On Tails/Jessie (GRUB 2.02~beta2-22), I get `error: unknown error.` +after typing `boot`. This likely comes from +`grub-core/loader/efi/chainloader.c`. + +### 32-bit GRUB2 EFI with native configuration + +This requires to write/generate and maintain a GRUB2 configuration, +either semi-automatically (e.g. with `grub-syslinux2cfg`) or by hand. diff --git a/wiki/src/contribute/design/Unsafe_Browser.mdwn b/wiki/src/contribute/design/Unsafe_Browser.mdwn index fc103050021f147530cf7decbe7bd7c098e95722..5b52a5f239e678a22d6afbb64a95bb48467eef45 100644 --- a/wiki/src/contribute/design/Unsafe_Browser.mdwn +++ b/wiki/src/contribute/design/Unsafe_Browser.mdwn @@ -60,10 +60,10 @@ non-standard ports. Port restrictions are a pretty weak defense any way since just *one* open port is enough to do anything. The Unsafe Browser is run inside a chroot consisting of a throw away -aufs union between a read-only version of the pre-boot Tails +overlayfs union between a read-only version of the pre-boot Tails filesystem, and a tmpfs as the rw branch. Hence, the post-boot filesystem (which contains all user data) isn't available to the -Unsafe Browser within the chroot. The chroot and aufs union is created +Unsafe Browser within the chroot. The chroot and overlayfs union is created upon Unsafe Browser start, and is torn down after it exits, forcefully killing any remaining processes run from inside it. diff --git a/wiki/src/contribute/design/application_isolation.mdwn b/wiki/src/contribute/design/application_isolation.mdwn index b554f210d8e7208f58671d96ee0557f5e55157b3..5bbe36eab5caaed1a76b4f1d7e8269f3098aa141 100644 --- a/wiki/src/contribute/design/application_isolation.mdwn +++ b/wiki/src/contribute/design/application_isolation.mdwn @@ -65,7 +65,7 @@ First, we are using a couple of [aliases](http://wiki.apparmor.net/index.php/AppArmor_Core_Policy_Reference#Alias_and_rewrite_rules) so that rules applying to "normal" paths (e.g. `/home/amnesia/.gnupg/`) also apply to Debian Live -specific paths, -such as `/lib/live/mount/overlay/home/amnesia/.gnupg/`. And, to avoid +such as `/lib/live/mount/overlay/rw/home/amnesia/.gnupg/`. And, to avoid subsequent problems with overlapping rules, and to mitigate the increased policy compilation time (see details below), we also patch some some very broad rules to make them _not_ apply to `/lib/live/*`. @@ -338,17 +338,9 @@ back some paths that were rewritten. overlayfs --------- -[overlayfs](https://git.kernel.org/cgit/linux/kernel/git/mszeredi/vfs.git/tree/Documentation/filesystems/overlayfs.txt?h=overlayfs.current) -is another kind of union filesystem. It has been merged in -Linux mainline, and is supported by live-boot 5. -overlayfs works differently from aufs, in ways that give hope that it -might be easier for AppArmor to support it natively. - Some ongoing work on AppArmor (labeling, extended conditionals) will -help support overlayfs. Time will tell whether the result meets -our needs. - -See [[!tails_ticket 9045]] for more up-to-date information. +help support overlayfs with less kludges. Time will tell whether the +result meets our needs. <a id="linux-containers"></a> diff --git a/wiki/src/contribute/design/memory_erasure.mdwn b/wiki/src/contribute/design/memory_erasure.mdwn index 6843906544d52fc93ceec034bc83666699d5b4ea..6c2ce5f5fe0ccaa82660e79442a4b239bc386b22 100644 --- a/wiki/src/contribute/design/memory_erasure.mdwn +++ b/wiki/src/contribute/design/memory_erasure.mdwn @@ -10,7 +10,7 @@ is erased upon process termination. Tails now relies on the Linux kernel's freed memory poisoning feature. But memory poisoning only works when memory is actually freed, -and a regular shutdown would not free the memory used by the aufs +and a regular shutdown would not free the memory used by the overlayfs read-write branch. So we use the `systemd-shutdown` ability to return to the initramfs, to ensure the root filesystem is unmounted. @@ -36,8 +36,24 @@ desc="mounted"]] on `/run/initramfs`: `/run` is mounted with the worked for clean shutdown, they failed for emergency shutdown, i.e. when the boot medium is physically removed. -For details about the underlying systemd mechanisms, see `bootup(7)` -and `systemd-shutdown(8)`. +For details about the underlying systemd mechanisms, see: + + - `bootup(7)` + - `systemd-shutdown(8)` + - <https://www.freedesktop.org/wiki/Software/systemd/InitrdInterface/> + +In our experience, jumping back to the initramfs to unmount the remaining +filesystems, as described above, was necessary but not sufficient to free the +memory used by the overlayfs read-write branch. That's why additionally, we +manually delete the content of that branch via [[!tails_gitweb +config/chroot_local-includes/lib/systemd/system/tails-remove-overlayfs-dirs.service +desc="a systemd service"]] late in the shutdown process, before we jump back to +the initramfs. It's unclear to us why this works when the boot medium +is physically removed: in that case, `systemctl --force poweroff` +is _not_ supposed to stop `tails-remove-overlayfs-dirs.service`, and thus +this additional clean up step should be skipped; it could be that in this +emergency shutdown situation, `systemd-shutdown` somehow manages to clean +things up by itself and there's no need for `tails-remove-overlayfs-dirs.service`. #### Triggers @@ -112,7 +128,7 @@ available for Tails. The initial implementation of the Tails memory erasure feature suffered from flaws that were demonstrated by [[external audit|security/audits/Blackhat_De-Anonymizing_Live_CDs]]. In short, it -only erased free memory and let data in the aufs read-write branch in +only erased free memory and let data in the union filesystem read-write branch in recoverable state. Then, in order to erase the biggest possible part of the system memory, diff --git a/wiki/src/contribute/design/persistence.mdwn b/wiki/src/contribute/design/persistence.mdwn index e25f01b277f9c863dfc7f44bd081de10e184490e..ec9f7abc137873fd385ea85fa489c2ec0dacbf49 100644 --- a/wiki/src/contribute/design/persistence.mdwn +++ b/wiki/src/contribute/design/persistence.mdwn @@ -116,10 +116,7 @@ That's why we have decided to: directory (e.g. `$HOME`) to regular files stored in a persistent location (e.g. `.gitconfig`, `.vimrc`, etc.) -The code we ship lives in the `tmp-persistent-custom` branch in -our [[live-boot Git repository|contribute/git]]. We build packages -from the `master` branch in there, and drop them into the Tails main -Git repository. +The code we ship lives in our [[live-boot Git repository|contribute/git]]. ### Example @@ -255,7 +252,7 @@ Persistence settings changes are taken into account at next boot. Choosing between various persistence modes is one of the reasons why we've written a graphical [[!tails_ticket 5528 desc="boot menu"]]: -[[!tails_ticket 5496 desc="TailsGreeter"]]. +the [[!tails_ticket 5496 desc="Welcome Screen"]] (aka. *tails-greeter*). #### Design diff --git a/wiki/src/contribute/git/post-rewrite.mdwn b/wiki/src/contribute/git/post-rewrite.mdwn index db4e600a7e5a6f6863b107e19f2cf0773ccf7941..7a2c078c4b0cc34bae1e8cea3a8303c51a09e9c6 100644 --- a/wiki/src/contribute/git/post-rewrite.mdwn +++ b/wiki/src/contribute/git/post-rewrite.mdwn @@ -5,7 +5,7 @@ <div class="note"> This is about the main Tails Git repository. Other repositories, such -as the ones for the Greeter and other custom software, are not affected. +as the ones for the Welcome Screen (aka *tails-greeter*) and other custom software, are not affected. </div> diff --git a/wiki/src/contribute/glossary.mdwn b/wiki/src/contribute/glossary.mdwn index 2687440f44550f86a6be46b442c7002eaf59c4a2..c9ca84482c246da29304a6c363fe52984cf3154d 100644 --- a/wiki/src/contribute/glossary.mdwn +++ b/wiki/src/contribute/glossary.mdwn @@ -34,7 +34,7 @@ The words - the beginning of the said phase. * **Help desk** (formerly: **Front desk**): see the [[definition of this shifting role|contribute/working_together/roles/help_desk/]] -* **Greeter**: the startup menu +* **Welcome Screen**: the startup menu, aka *tails-greeter* * **IUK**: Incremental Upgrade Kit, see [[contribute/design/incremental_upgrades]] * **known issues**: issues that we are aware of and don't need being diff --git a/wiki/src/contribute/how/documentation/guidelines.mdwn b/wiki/src/contribute/how/documentation/guidelines.mdwn index 95d616ad53696ca7d986da8459ee3e0634523f1a..0c5a06a519af2051c7b93dda8d9ee1383d6ec135 100644 --- a/wiki/src/contribute/how/documentation/guidelines.mdwn +++ b/wiki/src/contribute/how/documentation/guidelines.mdwn @@ -60,8 +60,8 @@ Use the equivalent of DocBook tags to style your documentation using CSS. - <span class="code">span.application</span> for application names, for example: - - Code: `<span class="application">Tails Greeter</span>` - - Result: <span class="application">Tails Greeter</span> + - Code: `<span class="application">Welcome Screen</span>` + - Result: <span class="application">Welcome Screen</span> - <span class="code">span.button</span> for button names, for example: - Code: `the <span class="button">Login</span> button` - Result: the <span class="button">Login</span> button diff --git a/wiki/src/contribute/how/documentation/release_notes/template.mdwn b/wiki/src/contribute/how/documentation/release_notes/template.mdwn index d952e6044f546b19a339b87b22c3e3ee6144b2a8..8218ae72b2681d383830823b0504438724ca8abf 100644 --- a/wiki/src/contribute/how/documentation/release_notes/template.mdwn +++ b/wiki/src/contribute/how/documentation/release_notes/template.mdwn @@ -69,10 +69,7 @@ See the list of [[long-standing issues|support/known_issues]]. ## To upgrade your Tails USB stick and keep your persistent storage -- Automatic upgrades are available from $VERSION-2, $VERSION-1, and $VERSION-1~rc1 to $VERSION. - - XXX: In theory, there should be automatic upgrades available from - 4.2 onwards. +- Automatic upgrades are available from Tails 4.2 or later to $VERSION. - If you cannot do an automatic upgrade or if Tails fails to start after an automatic upgrade, please try to do a [[manual upgrade|doc/upgrade/#manual]]. diff --git a/wiki/src/contribute/how/documentation/style_guide.mdwn b/wiki/src/contribute/how/documentation/style_guide.mdwn index 5fbed78210070e5bdfdb7a8797589d15efe581a1..df24626171cc9a936582327712ac0652e451db80 100644 --- a/wiki/src/contribute/how/documentation/style_guide.mdwn +++ b/wiki/src/contribute/how/documentation/style_guide.mdwn @@ -10,11 +10,11 @@ - *For example:* - [[Set up an administration password - |doc/first_steps/startup_options/administration_password]] when + |doc/first_steps/welcome_screen/administration_password]] when you start Tails. - Start Tails and [[set up an administration - password|doc/first_steps/startup_options/administration_password]]. + password|doc/first_steps/welcome_screen/administration_password]]. <a id="anchors"></a> @@ -43,24 +43,28 @@ computer or when writing for a technical audience, like in our design documentation. + - Use *Boot Loader* when referring to either *GRUB* or *SYSLINUX*. + + - *For example:* + + - The Boot Loader is the first screen that appears when starting Tails. + + - Use *Boot Menu* and *Boot Menu key* when referring to the BIOS + screen that allows choosing from which device to start from. + + [[!img install/inc/screenshots/bios_boot_menu.png link="no" alt=""]] + - Use *boot* when referring to *boot options*, which are only documented for workarounds or a technical audience. - *For example*: - - Most computers do not start on Tails by default. - - - The following instructions explain how to display the boot menu - and start on the USB stick. - - When starting Tails, add the <span class="command">toram</span> - boot option in the <span class="application">Boot Loader - Menu</span>. For detailed instructions, see the documentation on - [[using the <span class="application">Boot Loader - Menu</span>|doc/first_steps/startup_options#boot_loader_menu]]. + boot option. See our instructions on [[adding a boot option using + the Boot Loader|doc/advanced_topics/boot_options]]. - - To make the display work properly, [[add the following boot option - when starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]: + - To make the display work properly, [[add the following boot option using the + Boot Loader|doc/advanced_topics/boot_options]] when starting Tails: nouveau.noaccel=1 @@ -290,11 +294,11 @@ the progressive or perfect tense. coordinating conjunction (usually *and* or *or*) in a series of three or more terms. -<a id="tails-greeter"></a> +<a id="welcome-screen"></a> -- **<span class="application">Tails Greeter</span>** +- **Welcome Screen** - Without an article. Not *the Greeter*. Note the formatting as an application. + With an article. Not *Tails Greeter* or *the Greeter*. <a id="update"></a> diff --git a/wiki/src/contribute/how/documentation/style_guide/persistence.mdwn b/wiki/src/contribute/how/documentation/style_guide/persistence.mdwn index 80a7a46b68f4cefdc4b73cb44ce8f60a644bc3d4..1d05aab74b4a24f40978a7bc0a0dd64abe1a2a65 100644 --- a/wiki/src/contribute/how/documentation/style_guide/persistence.mdwn +++ b/wiki/src/contribute/how/documentation/style_guide/persistence.mdwn @@ -48,7 +48,7 @@ Examples: - An attacker in possession of your USB stick can know that there is Persistence on it. (from [[doc/first_steps/persistence/warnings]]) -- If Persistence is detected on the USB stick, an additional section appears in Tails Greeter. (from [[doc/first_steps/startup_options]]) +- If Persistence is detected on the USB stick, an additional section appears in Tails Greeter. (from [[doc/first_steps/welcome_screen]]) - Warnings about Persistence (from [[doc/first_steps/persistence]]) diff --git a/wiki/src/contribute/how/documentation/style_guide/persistent_storage.mdwn b/wiki/src/contribute/how/documentation/style_guide/persistent_storage.mdwn index cdb5050db941ec67267f58b3a4353557c666926b..3f2dd7cb149c4157a8e1202117652f87e7e8faab 100644 --- a/wiki/src/contribute/how/documentation/style_guide/persistent_storage.mdwn +++ b/wiki/src/contribute/how/documentation/style_guide/persistent_storage.mdwn @@ -32,7 +32,7 @@ - An attacker in possession of your USB stick can know that there is a Persistent Storage on it. (from [[doc/first_steps/persistence/warnings]]) -- If a Persistent Storage is detected on the USB stick, an additional section appears in Tails Greeter. (from [[doc/first_steps/startup_options]]) +- If a Persistent Storage is detected on the USB stick, an additional section appears in Tails Greeter. (from [[doc/first_steps/welcome_screen]]) - Warnings about the Persistent Storage (from [[doc/first_steps/persistence]]) diff --git a/wiki/src/contribute/how/user_experience/interviews/adam.mdwn b/wiki/src/contribute/how/user_experience/interviews/adam.mdwn index 07d0f68613ca6df2ed559856ec8fd89f26c9db43..f63682911ac87541fe873f0202e4289ed517fc6c 100644 --- a/wiki/src/contribute/how/user_experience/interviews/adam.mdwn +++ b/wiki/src/contribute/how/user_experience/interviews/adam.mdwn @@ -45,7 +45,7 @@ Things he dislikes: - His hardened X60 has a 32-bit processor and he won't be able to run Tails 3.0 on it anymore. - He finds it painful not to have the keyboard for his language listed - in the short list of keyboards in Tails Greeter. + in the short list of keyboards in the Welcome Screen. - He had troubles trying to install additional packages in Tails and instead reinstalled them every time. He wanted to use `scantailor`, a post-processing tool for scanned pages, and `tesseract-ocr`, an diff --git a/wiki/src/contribute/how/user_experience/interviews/roberto.mdwn b/wiki/src/contribute/how/user_experience/interviews/roberto.mdwn index 8a4f779107afae304942f4e062952cdaf237005c..2f9ffcee994473b2976a3d1ee56352f3bbeeaa37 100644 --- a/wiki/src/contribute/how/user_experience/interviews/roberto.mdwn +++ b/wiki/src/contribute/how/user_experience/interviews/roberto.mdwn @@ -100,7 +100,7 @@ My life is called "patience". **T: Let's do some tests!** The USB is Kingston. It takes 3:30 minutes to -get to *Tails Greeter*, 5 seconds to unlock the Persistence, 50 to open +get to the Welcome Screen, 5 seconds to unlock the Persistence, 50 to open the desktop, 7 to connect to the Wi-Fi, 30 to connect to Tor, more than 1 minute to open *Tor Browser*. It seems like it's a problem with the computer indeed. diff --git a/wiki/src/contribute/how/user_experience/testing.mdwn b/wiki/src/contribute/how/user_experience/testing.mdwn index 391dc3cfa53b18e5eef4837202eb0d7b7e44b9c7..031d30552eac442d38bb486663bc9b0b04d51430 100644 --- a/wiki/src/contribute/how/user_experience/testing.mdwn +++ b/wiki/src/contribute/how/user_experience/testing.mdwn @@ -60,7 +60,7 @@ See also: - Lines are issues. - Columns are testers. - See these examples rainbow tables from testing - [*Tails Greeter*](https://tails.boum.org/blueprint/greeter_revamp_UI/rainbow_-_greeter_-_20151105.ods) + the [Welcome Screen](https://tails.boum.org/blueprint/greeter_revamp_UI/rainbow_-_greeter_-_20151105.ods), aka "Tails Greeter" and the [*Installation Assistant*](https://redmine.tails.boum.org/code/attachments/download/1245/ux-testing-20151120.ods) - Compact information. - Don't modify your design yet! diff --git a/wiki/src/contribute/l10n_tricks/core_po_files.txt b/wiki/src/contribute/l10n_tricks/core_po_files.txt index addd790955bdcac04e1885936d33b7c47ec68294..8fef8be24b69815cda5e1c5b59abd0c58785a417 100644 --- a/wiki/src/contribute/l10n_tricks/core_po_files.txt +++ b/wiki/src/contribute/l10n_tricks/core_po_files.txt @@ -22,10 +22,10 @@ ./doc/first_steps/persistence/use ./doc/first_steps/persistence/warnings ./doc/first_steps/shutdown -./doc/first_steps/startup_options -./doc/first_steps/startup_options/administration_password -./doc/first_steps/startup_options/bridge_mode -./doc/first_steps/startup_options/mac_spoofing +./doc/first_steps/welcome_screen +./doc/first_steps/welcome_screen/administration_password +./doc/first_steps/welcome_screen/bridge_mode +./doc/first_steps/welcome_screen/mac_spoofing ./doc/reset ./doc/reset.intro ./doc/reset/linux diff --git a/wiki/src/contribute/release_process.mdwn b/wiki/src/contribute/release_process.mdwn index 1a55838a8125d0dad44895883ff96865140a3787..e811e3af445b7648c1d36820942dbe5749ccbf8b 100644 --- a/wiki/src/contribute/release_process.mdwn +++ b/wiki/src/contribute/release_process.mdwn @@ -15,7 +15,6 @@ Requirements To release Tails you'll need some packages installed: * `tidy mktorrent transmission-cli` -* aufs DKMS module for your running kernel. * [[!debpts squashfs-tools]] 1:4.4-1+0.tails1 from our custom `iukbuilder-stretch` APT suite. * `iuk` [[dependencies|contribute/release_process/tails-iuk#build-deps]] @@ -240,7 +239,6 @@ Then see the relevant release processes, and upload the packages to the release branch's custom APT suite: * [[tails-installer]] -* [[persistence-setup]] * whisperback: * follow [upstream release process](https://git-tails.immerda.ch/whisperback/plain/HACKING) * build a Debian package in an amd64 chroot of the Debian release @@ -364,8 +362,7 @@ Changelog entries can be dispatched into those usual sections: Then, gather other useful information from: -* every custom bundled package's own Changelog (Persistent - Volume Assistant, etc.); +* every custom bundled package's own Changelog (Tails Installer, etc.) * the diff between the previous version's `.packages` file and the one from the to-be-released images; look for: - security fixes @@ -502,7 +499,6 @@ Build the almost-final images - Set `defaultcomp`, so we can more accurately optimize our SquashFS file ordering. - Do _not_ set `keeprunning` nor `rescue`. - - Set `cachewebsite=no` as a workaround for [[!tails_ticket 17513]] 2. Carefully read the build logs to make sure nothing bad happened. 3. Keep the resulting build artifacts until the end of this release process. 4. Record where the manifest of needed packages is stored: @@ -576,7 +572,7 @@ SquashFS file order 1. Shut down this Tails. 1. Boot this USB stick **on bare metal** again. 1. Add `profile` to the kernel command-line. -1. Login with the default settings in the Greeter (e.g. do not configure +1. Login with the default settings in the Welcome Screen (e.g. do not configure an _Administration Password_). 1. Wait for the "Tor is ready" notification. 1. Start *Tor Browser*. @@ -590,15 +586,15 @@ SquashFS file order perl -ni -E 'chomp; say unless m{(?: [.]pyc\s+\d+\z | \Alib/live/mount/medium/live/(?:filesystem[.]squashfs|initrd[.]img)\s - | \Alib/live/mount/overlay/etc/fstab\s - | \Alib/live/mount/overlay/etc/console-setup/cached_\S+[.](?:gz|sh)\s - | \Alib/live/mount/overlay/etc/machine-id\s - | \Alib/live/mount/overlay/etc/network/interfaces\s - | \Alib/live/mount/overlay/var/log/wtmp\s - | \A(?:lib/live/mount/overlay/)?etc/apparmor[.]d/cache/[.]features\s - | \A(?:lib/live/mount/overlay/)?etc/(?:group|gshadow|passwd|shadow)-\s - | \A(?:lib/live/mount/overlay/)?etc/resolv-over-clearnet[.]conf\s - | \A(?:lib/live/mount/overlay/)?etc/skel/[.]config/autostart/end-profile[.]desktop\s + | \Alib/live/mount/overlay/rw/etc/fstab\s + | \Alib/live/mount/overlay/rw/etc/console-setup/cached_\S+[.](?:gz|sh)\s + | \Alib/live/mount/overlay/rw/etc/machine-id\s + | \Alib/live/mount/overlay/rw/etc/network/interfaces\s + | \Alib/live/mount/overlay/rw/var/log/wtmp\s + | \A(?:lib/live/mount/overlay/rw/)?etc/apparmor[.]d/cache/[.]features\s + | \A(?:lib/live/mount/overlay/rw/)?etc/(?:group|gshadow|passwd|shadow)-\s + | \A(?:lib/live/mount/overlay/rw/)?etc/resolv-over-clearnet[.]conf\s + | \A(?:lib/live/mount/overlay/rw/)?etc/skel/[.]config/autostart/end-profile[.]desktop\s | \Arun/ | \Avar/lib/AccountsService/users/Debian-gdm\s | \Avar/lib/gdm3/[#]\d+\s @@ -649,7 +645,6 @@ suite should be ready, so it is time to: Do _not_ set `keeprunning` nor `rescue` in `$TAILS_BUILD_OPTIONS`. Our build system will apply the correct compression settings automatically so don't bother setting it yourself. - Set `cachewebsite=no` as a workaround for [[!tails_ticket 17513]] 1. Compare the new build manifest with the one from the previous, almost final build: @@ -1637,8 +1632,8 @@ Amnesia news Prepare for the next development cycle ====================================== -XXX: adapt / fork for release candidates. In the meantime, read all -this, and skip what does not make sense for a RC. +If you just released a final release +------------------------------------ 1. If you just released a new stable release, remove the previous stable release from: @@ -1711,10 +1706,6 @@ this, and skip what does not make sense for a RC. 1. [[Thaw the packages that were granted freeze exceptions|APT_repository/time-based_snapshots#freeze-exceptions-post-release]]. 1. Pull `master` back and merge it into `stable`, and in turn into `devel` -1. [[Thaw|APT_repository/time-based_snapshots#thaw]], on the devel - branch, the time-based APT repository snapshots that were used - during the freeze. This should generally be a no-op but if there - was some hiccup earlier it could be needed. 1. Follow the [[post-release|APT_repository/custom#workflow-post-release]] custom APT repository documentation. This includes some git operations, @@ -1789,6 +1780,37 @@ this, and skip what does not make sense for a RC. [[release manager role page|contribute/working_together/roles/release_manager]]. Otherwise, kindly remind the next release manager about this :) +If you just released an RC +-------------------------- + +1. On the devel branch, + [[thaw|APT_repository/time-based_snapshots#freeze-exceptions-post-release]] + all packages (if any) that were granted freeze exceptions. +1. On the devel branch, + [[thaw|APT_repository/time-based_snapshots#thaw]] the time-based + APT repository snapshots. This should generally be a no-op but if + there was some hiccup earlier it could be needed. +1. Follow the + [[post-release|APT_repository/custom#workflow-post-release]] custom + APT repository documentation. This includes some git operations, + like creating an appropriate _"dummy changelog entry"_ in the + `debian/changelog` file. +1. Merge testing into devel, and push them: + + cd "${RELEASE_CHECKOUT:?}" && \ + git checkout devel && \ + git merge testing && \ + git push origin testing devel + +1. Make sure you pushed all changes in every of our Git repo (including our + Debian packages ones). +1. Follow the "Verify that the snapshots used in the release branch + are ok" step for final releases, above. +1. Make sure Jenkins manages to build all updated major branches: + <https://jenkins.tails.boum.org/>. +1. In [[contribute/calendar]], remove the entries about the version that you've + just released. + Related pages ============= diff --git a/wiki/src/contribute/release_process/persistence-setup.mdwn b/wiki/src/contribute/release_process/persistence-setup.mdwn index bd5c7a0a8c9a5e3a558aa877e7b8b746da49da8f..9569930354cb3cef793efbdbd1a4505f95029a66 100644 --- a/wiki/src/contribute/release_process/persistence-setup.mdwn +++ b/wiki/src/contribute/release_process/persistence-setup.mdwn @@ -1,120 +1,39 @@ -[[!meta title="Releasing persistence-setup"]] +[[!meta title="Testing persistence-setup"]] [[!toc levels=1]] +Everything on this page happens in the +`config/chroot_local-includes/usr/src/persistence-setup` directory. + Pre-requisites ============= * a Debian Stretch (or newer) system -* Tails' `devel` APT suite enabled * Environment: - Export location of a checkout of the `stable` branch of the main Tails Git repository: export TAILS_GIT_CHECKOUT="/path/to/your/tails/git/repo" -Install build and test dependencies -=================================== +Install test dependencies +========================= - git checkout master && \ + cat $(git rev-parse --show-toplevel)/config/chroot_local-packageslists/tails-persistence-setup.list \ + | grep -E -v '^#' \ + | xargs sudo apt --yes install && \ sudo apt install \ - devscripts \ - dh-make-perl \ - libdist-zilla-app-command-authordebs-perl \ - libfunction-parameters-perl \ - libuuid-tiny-perl && \ - dzil authordebs --install && \ - git checkout debian && \ - mk-build-deps -i -r --root-cmd sudo - -Make an upstream release -======================== - - git checkout master + libdist-zilla-app-command-authordebs-perl && \ + dzil authordebs --install -Enable new translations in `po/PACKAGE` and commit. +Run the test suite +================== -Export new upstream version number: - - export VERSION=XXX - -Update version number in `bin/tails-persistence-setup` and -commit all files that need to be: - - perl -pi -E 's,^Version [0-9.]+,Version $ENV{VERSION},' bin/tails-persistence-setup && \ - perl -pi -E "s,^our \\\$VERSION = '[0-9.]+';\$,our \\\$VERSION = '$VERSION';," bin/tails-persistence-setup && \ - git commit bin/tails-persistence-setup -m "tails-persistence-setup $VERSION" + PERL5LIB="${TAILS_GIT_CHECKOUT}/config/chroot_local-includes/usr/src/perl5lib/lib" \ + RELEASE_TESTING=1 \ + LC_ALL=C \ + fakeroot dzil test -Optionally, run the upstream test suite (it is run as part of the -Debian package build later, but running it early may avoid publishing -a broken upstream release; however, beware if you are running Debian -sid: it has happened in the past that this code base required +It has happened in the past that this code base required adjustments to work with newer versions of the libraries it depends on, so if tests fail on testing/sid, retry on Debian stable before -going amok): - - PERL5LIB="${TAILS_GIT_CHECKOUT}/config/chroot_local-includes/usr/src/perl5lib/lib" \ - RELEASE_TESTING=1 \ - LC_ALL=C \ - fakeroot dzil test - -Build an upstream tarball, tag the release, move the tarball out of -the build repository and cleanup: - - dzil build && \ - git tag -s $VERSION -m "tails-persistence-setup $VERSION" && \ - mv Tails-Persistence-*.tar.gz .. && \ - rm -rf Tails-Persistence-* .build po/*.mo - -Update the Debian package -========================= - -Checkout the Debian packaging branch and import the new upstream tarball: - - git checkout debian && \ - gbp import-orig --upstream-vcs-tag=$VERSION \ - ../Tails-Persistence-$VERSION.tar.gz - -Update `debian/changelog`: - - gbp dch --auto --spawn-editor=always - -(Do not forget to set the appropriate release.) - -Commit `debian/changelog`: - - git commit debian/changelog \ - -m "$(echo -e "$(dpkg-parsechangelog -SSource) ($(dpkg-parsechangelog -SVersion))\n\nGit-Dch: Ignore\n")" - -XXX: the following can't work anymore, since tails-perl5lib -got moved to tails.git ([[!tails_ticket 17526]]). - -Build a Debian package (use a Buster/amd64 chroot that has -`sid` sources enabled and pinned low, -and on top of that: either tails-perl5lib -installed or the Tails APT repository configured): - - gbp buildpackage - -If everything is fine, add a signed tag to the repository and push the -changes: - - gbp buildpackage --git-tag-only --git-sign-tags && \ - git push --follow-tags \ - origin master:master \ - debian:debian \ - pristine-tar:pristine-tar \ - upstream:upstream - -(Make sure `master`, `upstream`, `debian` and `pristine-tar` were all pushed.) - -Add the Debian package to Tails -=============================== - -Sign the package: - - debsign $CHANGES_FILE - -Upload: - - dupload --to tails $CHANGES_FILE +going amok. diff --git a/wiki/src/contribute/release_process/tails-iuk.mdwn b/wiki/src/contribute/release_process/tails-iuk.mdwn index fef51811c091d7a164e1897a266e816407641b8d..b3c37087f7c923e3cf8144f0f2afed9f5c5a5179 100644 --- a/wiki/src/contribute/release_process/tails-iuk.mdwn +++ b/wiki/src/contribute/release_process/tails-iuk.mdwn @@ -39,7 +39,6 @@ Install dependencies needed to generate IUKs, UDFs, and to run the test suite libdata-dumper-concise-perl \ libdatetime-perl \ libfile-copy-recursive-perl \ - rsync \ squashfs-tools \ syslinux @@ -64,7 +63,7 @@ Run the upstream test suite with aufs: LC_ALL=C \ dzil test -Run the upstream test suite with overlayfs: +… and with overlayfs: export UNION_TYPE=overlayfs NODE_PATH="${TAILS_GIT_CHECKOUT}/submodules/mirror-pool-dispatcher/lib/js" \ diff --git a/wiki/src/contribute/release_process/test.mdwn b/wiki/src/contribute/release_process/test.mdwn index 0ece7f95d107b3166e8d2a3a4fd53d307357881f..470db657930208915b541928aec7572dbc2a08dd 100644 --- a/wiki/src/contribute/release_process/test.mdwn +++ b/wiki/src/contribute/release_process/test.mdwn @@ -232,7 +232,7 @@ at the application level: 2. Start from that USB stick. -3. Set an administration password in the _Greeter_. +3. Set an administration password in the Welcome Screen. 4. Upgrade to the version we're testing: @@ -287,13 +287,26 @@ at the application level: Note that for release candidates, we do not always optimize the ordering of files in the SquashFS, which might make them boot somewhat slower. -1. Boot this USB stick on bare-metal a first time to trigger re-partitioning. -2. Boot this USB stick a second time, measuring the boot time (from the - syslinux menu until the GNOME desktop is ready -- quickly press - ENTER in the Greeter). -3. Compare with the boot time of the previous Tails version. The new +On a 64-bit computer that has Secure Boot enabled and that is configured to +prefer UEFI: + +1. Freshly install the version of Tails being tested to a USB stick. +2. Boot this USB stick on bare-metal a first time to trigger re-partitioning. + You should the "GNU GRUB" title, as opposed to a syslinux menu. +3. Boot this USB stick a second time, measuring the boot time (from the + GRUB menu until the GNOME desktop is ready -- quickly press + ENTER in the Welcome Screen). +4. Compare with the boot time of the previous Tails version. The new one should not be significantly slower to start. +On a computer configured to prefer legacy BIOS boot: + +1. Freshly install the version of Tails being tested to a USB stick. +2. Boot this USB stick on bare-metal a first time to trigger re-partitioning. + You should see the "SYSLINUX" title in the bootloader, as opposed to GRUB. +3. Boot this USB stick a second time. +4. You should see the Welcome Screen appear. + # Documentation * The "Tails documentation" desktop launcher should open the diff --git a/wiki/src/contribute/release_process/test/automated_tests.mdwn b/wiki/src/contribute/release_process/test/automated_tests.mdwn index ca5df0481824bea623d35bd24cedf3ff72046cd1..6a323f040b1f59a6ea7a0f0ca7ee4ac7d87691df 100644 --- a/wiki/src/contribute/release_process/test/automated_tests.mdwn +++ b/wiki/src/contribute/release_process/test/automated_tests.mdwn @@ -6,7 +6,7 @@ The automated test suite is essentially a glue between: -* [Sikuli](http://www.sikuli.org/) and +* [OpenCV](http://opencv.org/) and [dogtail](https://fedorahosted.org/dogtail/), used for simulating user interaction, * [libvirt](http://libvirt.org/), used for running a specific build of @@ -17,11 +17,6 @@ The automated test suite is essentially a glue between: Its goal is to automate the development and release testing processes with a Continuous Integration server. -A [[!tails_gitweb features/support/helpers/sikuli_helper.rb -desc="custom thin Ruby wrapper"]], using the -[rjb](http://rjb.rubyforge.org/) Ruby-Java bridge, gives us access to -the Sikuli programmatic interface from our step definitions. - ## Setup and usage See [[contribute/release_process/test/setup]] and [[contribute/release_process/test/usage]]. @@ -75,13 +70,10 @@ sets the correct environment up: * It uses `Xvfb` so that the `DISPLAY` environment variable points to an unused X display (tip: use `Xvfb`) with screen size and color - depth matching what the Sikuli images are optimized for (that is, - 1024x768 / 24-bit). -* It sets the `SIKULI_HOME` environment variable to the directory - where sikuli script is installed for Java (`/usr/share/java` in - Debian). + depth matching what the images used for matching are optimized for + (that is, 1024x768 / 24-bit). * It runs `unclutter` on `$DISPLAY` to prevent the mouse - pointer from masking GUI elements looked for by Sikuli. + pointer from masking GUI elements looked for through image matching. * It passes `--format ExtraHooks::Pretty` to `cucumber` calls, to get access to our custom `{After,Before}Feature` hooks. @@ -106,7 +98,7 @@ Requirements on the guest (the remote shell server): firewall exceptions; actually we don't want any network traffic at all from it, but this kind of follows from the previous requirement any way) -* must start before Tails Greeter. Since that's the first point of +* must start before the Welcome Screen. Since that's the first point of user interaction in a Tails system (if we ignore the boot menu), it seems like a good place to be able to assume that the remote shell is running. @@ -125,11 +117,10 @@ pointers for the latter. ## Resources -In addition to the Sikuli, libvirt and Cucumber documentation linked +In addition to the libvirt and Cucumber documentation linked to in the introduction: * [ruby-libvirt API](http://libvirt.org/ruby/api/index.html) - * [sikuli API](http://doc.sikuli.org/toc.html) * The `sniff` application, which is installed in Tails, is quite useful to navigate the GUI element hierarchy. However, `accerciser` (not installed) is even better, due to its ability to highlight @@ -217,11 +208,11 @@ This step: * verifies that we see the boot menu * adds any boot options added via `I set Tails to boot with options ...` -* makes sure that Tails Greeter starts +* makes sure that the Welcome Screen starts * makes sure that the remote shell is up and running Note that the "I set sudo password ..." step has to be run before the -other Tails Greeter option steps as it relies on keyboard navigation. +other option steps of the Welcome Screen as it relies on keyboard navigation. And I set sudo password "asdf" @@ -240,11 +231,11 @@ be working. And all notifications have disappeared The notifications can block GUI elements that we're looking for later -with Sikuli, so it's important that they are gone in essentially all -tests of GUI applications. If we have a network connection, so the -time syncing starts and shows its notifications, then this step should be -run after the previous step. Otherwise it always depends on the `GNOME -has started` step. +with OpenCV's image matching, so it's important that they are gone in +essentially all tests of GUI applications. If we have a network +connection, so the time syncing starts and shows its notifications, +then this step should be run after the previous step. Otherwise it +always depends on the `GNOME has started` step. And available upgrades have been checked @@ -290,14 +281,15 @@ In essence, the tools we have for interacting with the Tails instance are: * the VM helper class, -* Sikuli and dogtail, and +* the Screen helper class, +* dogtail, and * the remote shell. It should be fairly obvious when to use the VM helper class (stuff relating to the virtual hardware), but there is some overlap between -Sikuli, dogtail and the remote shell. +image matching, dogtail and the remote shell. -Sikuli and dogtail: +The Screen class and dogtail: * They should be used in all instances where we want to simulate user interaction with the Tails system. For instance, when we start an @@ -306,9 +298,9 @@ Sikuli and dogtail: * They come in handy when we want to verify some state pertaining to the GUI. * In general we prefer dogtail, since it is more precise given its - direct access to GUI elements and their state, and Sikuli's images - carry a quite heavy maintenance burden. However, Dogtail is not - possible to use before GNOME has started, so we rely on Sikuli for + direct access to GUI elements and their state, and images carry a + quite heavy maintenance burden. However, Dogtail is not possible to + use before GNOME has started, so we rely on image matching for anything before or after that. Also, for some applications it's simply hard to "navigate" to the right element in the hierarchy of elements of some GUI, due to ambiguity and/or lack of labels. @@ -317,11 +309,12 @@ The remote shell: * Useful for testing non-GUI state. * Useful for reaching some state required before we test stuff - depending on user interaction (which should use Sikuli!). + depending on user interaction (which should use the Screen class + or dogtail!). * It is acceptable (but not encouraged) to use the remote shell for simulating user terminal interaction when we need to analyze the - commands output. This is because Sikuli's OCR capabilities are - poor, and cannot be depended on. + commands output. Ideally we would use OCR, but we lack support for + it at the moment, and it might be too unreliable in practice. # Limitations and issues diff --git a/wiki/src/contribute/release_process/test/setup.mdwn b/wiki/src/contribute/release_process/test/setup.mdwn index ecbf4943f29c08246238b4fe1c43b98e809bf356..ac5137e21ee1423bae88252f97ad58be6a025d79 100644 --- a/wiki/src/contribute/release_process/test/setup.mdwn +++ b/wiki/src/contribute/release_process/test/setup.mdwn @@ -11,8 +11,15 @@ Once you have a working environment, see [[test/usage]]. Operating system ================ +<div class="note"> +<p> +<b>For Wayland users:</b> at the moment the <tt>--view</tt> and +<tt>--vnc-server-only</tt> options only work on X11. +</p> +</div> + If you usually run another operating system than Debian Stretch, -then you need to: +Buster, Bullseye or Sid, then you need to: 1. Enable nested virtualization on your host system. @@ -23,10 +30,11 @@ then you need to: sudo tee /etc/modprobe.d/kvm.conf fi -2. Prepare a Stretch virtual machine. +2. Prepare a Debian virtual machine; we recommend the stable release, + Debian Buster. -3. And then, every step below applies to this Stretch virtual machine, - instead of to the host system. +3. And then, every step below applies to this virtual machine, instead + of to the host system. Install dependencies ==================== @@ -37,6 +45,19 @@ To install the dependencies on our test suite: 2. Install the following packages: + dist=$(lsb_release --short --codename) + if [ "${dist}" != stretch -o "${dist}" != buster ]; then + # For python-jabberbot and python-potr, that were removed after Buster + echo 'deb http://ftp.us.debian.org/debian/ buster main' \ + | sudo tee /etc/apt/sources.list.d/buster.list + fi + if [ "${dist}" = buster ]; then + # For our qemu 4.2 buster-backport + echo 'deb http://deb.tails.boum.org/ isotester-buster main' \ + | sudo tee /etc/apt/sources.list.d/isotester-buster.list + echo -e "Package: src:qemu\nPin: origin deb.tails.boum.org\nPin-Priority: 990" \ + | sudo tee /etc/apt/preferences.d/qemu + fi sudo apt update && \ sudo apt install \ cucumber \ @@ -45,9 +66,8 @@ To install the dependencies on our test suite: gawk \ git \ i18nspector \ - libav-tools \ + imagemagick \ libcap2-bin \ - libsikulixapi-java \ libvirt-clients \ libvirt-daemon-system \ libvirt-dev \ @@ -68,7 +88,6 @@ To install the dependencies on our test suite: ruby-libvirt \ ruby-packetfu \ ruby-rb-inotify \ - ruby-rjb \ ruby-rspec \ ruby-test-unit \ seabios \ @@ -80,7 +99,19 @@ To install the dependencies on our test suite: x11vnc \ tigervnc-viewer \ x264 \ + xdotool \ xvfb \ + $( + if [ "${dist}" = stretch ]; then + echo "libav-tools + python-opencv + python-pil" + else + echo "ffmpeg + python3-opencv + python3-pil" + fi + ) \ && \ sudo service libvirtd restart @@ -112,7 +143,7 @@ If you have AppArmor enabled: to `/etc/apparmor.d/libvirt/TEMPLATE.qemu`, in the `profile LIBVIRT_TEMPLATE` section; then delete `/etc/apparmor.d/libvirt/libvirt-*` and retry. - If you use a custom `TMPDIR` to run the test suite, + On Debian Stretch, if you use a custom `TMPDIR` to run the test suite, replace `/tmp/TailsToaster` with the value of that `$TMPDIR`. Patched QEMU @@ -127,8 +158,7 @@ source package in this APT suite has the fix: deb-src http://deb.tails.boum.org/ isotester-stretch main This problem does not affect host systems that run Debian Buster -or newer, but those cannot run our test suite at all due to -[[!tails_ticket 15460]]. +or newer. Special use cases ================= diff --git a/wiki/src/contribute/release_process/test/usage.mdwn b/wiki/src/contribute/release_process/test/usage.mdwn index 7d792e52928ef0c329d72ca4e39b68494612647a..cd0f9b3aca70023390fd0c9606ad94cadcc4b821 100644 --- a/wiki/src/contribute/release_process/test/usage.mdwn +++ b/wiki/src/contribute/release_process/test/usage.mdwn @@ -112,10 +112,16 @@ by the local configuration file: investigating the state of Cucumber's world and the VM guest to see exactly why a test failed. Defaults to `false`. -* `SIKULI_RETRY_FINDFAILED`: Boolean value. If set to `true`, print a - warning whenever Sikuli fails to find an image and allow *one* retry - after pressing ENTER. This is useful for updating outdated images, - or when extracting new images. Defaults to `false`. +* `IMAGE_BUMPING_MODE`: Boolean value. If set to `true`, the image + matching done through the Screen class will be modified as follows: + failures to find a match are intercepted so that you get a second + chance to update the image, find it again, and continue running + without having to abort. This is extremely useful when lots of + images require updating at the same time (e.g. if the font we use + changes) since all of them can be updated in a single, interactive + run. There's also an automatic mode that tries to update image for + you (and display the match in a pop-up, so you can confirm) but + YMMV. Defaults to `false`. * `TMPDIR`: String value. Directory where various temporary files are written during a test, e.g. VM snapshots and memory dumps, diff --git a/wiki/src/contribute/roadmap.mdwn b/wiki/src/contribute/roadmap.mdwn index aa6f0e50fa3ea38a6928790831f9ac2cf331b4de..976a56339d93a8c80d8fa7c8d42a3f435e47777b 100644 --- a/wiki/src/contribute/roadmap.mdwn +++ b/wiki/src/contribute/roadmap.mdwn @@ -16,7 +16,7 @@ Priorities for the next years ### Easier installation - <strike>**Make it easier to install Tails on Windows and macOS** ([[!tails_ticket 15292]])</strike> [DONE] -- **Support Secure boot** ([[!tails_ticket 6560]]) +- <strike>**Support Secure boot** ([[!tails_ticket 6560]])</strike> [DONE] - **Improve our troubleshooting documentation** <strike>([[!tails_ticket 11665]]</strike>, [[!tails_ticket 14788]], [[!tails_ticket 14548]]) - <strike>Improve troubleshooting instructions when Wi-Fi is not working ([[!tails_ticket 11683]])</strike> [DONE] @@ -57,7 +57,7 @@ Priorities for the next years - <strike>**Release Tails 4.0 based on Debian Buster** ([[Version 4.0|news/version_4.0]])</strike> [DONE] - **Solve important usability issues** in our core applications ([[!tails_ticket 14544]]) - **Port complex shell scripts to Python** ([[!tails_ticket 11198]], [[Blueprint|blueprint/Port_shell_scripts_to_Python]]) -- **Migrate from `aufs` to `overlayfs`** ([[!tails_ticket 8415]]) +- <strike>**Migrate from `aufs` to `overlayfs`** ([[!tails_ticket 8415]])</strike> [DONE] - **Have more robust time synchronization** when starting Tails ([[!tails_ticket 5774]], [[Blueprint|blueprint/robust_time_syncing]]) - <strike>**Migrate to *Tor Launcher* integrated into *Tor Browser*** ([[!tails_ticket 15709]])</strike> [DONE] - **Upstream our security improvements to the *Thunderbird* autoconfiguration** ([[!tails_ticket 6156]]) diff --git a/wiki/src/doc/about/fingerprint.ar.po b/wiki/src/doc/about/fingerprint.ar.po index 6c57a8cbae10f57084334a62b124c9e810217ecb..fe8a487516c76af6dde28a54c3704144ef79a98b 100644 --- a/wiki/src/doc/about/fingerprint.ar.po +++ b/wiki/src/doc/about/fingerprint.ar.po @@ -110,7 +110,7 @@ msgstr "" msgid "" "Tor bridges are most of the time a good way of hiding the fact that you are " "connecting to Tor to a local observer. If this is important for you, read " -"our documentation about [[doc/first_steps/startup_options/bridge_mode]]." +"our documentation about [[doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/about/fingerprint.ca.po b/wiki/src/doc/about/fingerprint.ca.po index faf6b51a7d16d655a5cb5287746a1aa194204b1c..055393a619516008a9a58f0cf9edf4aaec3cdc55 100644 --- a/wiki/src/doc/about/fingerprint.ca.po +++ b/wiki/src/doc/about/fingerprint.ca.po @@ -112,7 +112,7 @@ msgstr "" msgid "" "Tor bridges are most of the time a good way of hiding the fact that you are " "connecting to Tor to a local observer. If this is important for you, read " -"our documentation about [[doc/first_steps/startup_options/bridge_mode]]." +"our documentation about [[doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/about/fingerprint.de.po b/wiki/src/doc/about/fingerprint.de.po index d5a1571c051d49035cd71f48322a7128cb542da1..348af38c9d8e83a1838b588bd59f4914f6cf0f6c 100644 --- a/wiki/src/doc/about/fingerprint.de.po +++ b/wiki/src/doc/about/fingerprint.de.po @@ -143,12 +143,12 @@ msgstr "Für Ihren Internetanbieter oder Ihre lokale Netzwerkadministratorin\n" msgid "" "Tor bridges are most of the time a good way of hiding the fact that you are " "connecting to Tor to a local observer. If this is important for you, read " -"our documentation about [[doc/first_steps/startup_options/bridge_mode]]." +"our documentation about [[doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" "Meist sind Tor Bridges (dt: Tor Brücken) ein guter Weg, die Verwendung von " "Tor gegenüber einem lokalen Beobachter zu verbergen. Falls das für Sie " "wichtig ist, lesen Sie unsere Dokumentation über den [[Tor Bridge Modus|doc/" -"first_steps/startup_options/bridge_mode]]." +"first_steps/welcome_screen/bridge_mode]]." #. type: Bullet: ' - ' msgid "" diff --git a/wiki/src/doc/about/fingerprint.es.po b/wiki/src/doc/about/fingerprint.es.po index 3eec146f59127726510c109bd698acf01b0ec2af..2a2978c4708bd135443ac444017885d44d302904 100644 --- a/wiki/src/doc/about/fingerprint.es.po +++ b/wiki/src/doc/about/fingerprint.es.po @@ -141,12 +141,12 @@ msgstr "Para tu ISP o quien administre de tu red local\n" msgid "" "Tor bridges are most of the time a good way of hiding the fact that you are " "connecting to Tor to a local observer. If this is important for you, read " -"our documentation about [[doc/first_steps/startup_options/bridge_mode]]." +"our documentation about [[doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" "Los puentes de Tor (Tor bridges) son casi siempre una buena forma de " "esconder de un observador local el hecho de que estás conectado a Tor. Si " "esto es importante para ti, lee nuestra documentación al respecto: [[doc/" -"first_steps/startup_options/bridge_mode]]." +"first_steps/welcome_screen/bridge_mode]]." #. type: Bullet: ' - ' msgid "" diff --git a/wiki/src/doc/about/fingerprint.fa.po b/wiki/src/doc/about/fingerprint.fa.po index 05c2fb5e3cb74bf7605e774d64131472ae9ac684..8fa75c5cb152c970328c23cdd3ae2fd65984005c 100644 --- a/wiki/src/doc/about/fingerprint.fa.po +++ b/wiki/src/doc/about/fingerprint.fa.po @@ -147,11 +147,11 @@ msgstr "برای ارائهدهندهٔ خدمات اینترنتی یا مس msgid "" "Tor bridges are most of the time a good way of hiding the fact that you are " "connecting to Tor to a local observer. If this is important for you, read " -"our documentation about [[doc/first_steps/startup_options/bridge_mode]]." +"our documentation about [[doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" "اغلب اوقات پلهای تور راه خوبی برای پنهان کردن استفادهٔ شما از تور برای یک " "ناظر محلی است. اگر این موضوع برایتان مهم است، این قسمت را بخوانید: [[doc/" -"first_steps/startup_options/bridge_mode]]." +"first_steps/welcome_screen/bridge_mode]]." #. type: Bullet: ' - ' msgid "" diff --git a/wiki/src/doc/about/fingerprint.fr.po b/wiki/src/doc/about/fingerprint.fr.po index 8b31b0f6f23544148678d506fbe2f1952957915b..bfbaf927d63706859712a5362e76ae1498316706 100644 --- a/wiki/src/doc/about/fingerprint.fr.po +++ b/wiki/src/doc/about/fingerprint.fr.po @@ -143,12 +143,12 @@ msgstr "Pour votre FAI ou l'administrateur de votre réseau local\n" msgid "" "Tor bridges are most of the time a good way of hiding the fact that you are " "connecting to Tor to a local observer. If this is important for you, read " -"our documentation about [[doc/first_steps/startup_options/bridge_mode]]." +"our documentation about [[doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" "Les bridges Tor sont la plupart du temps une bonne manière de cacher le fait " "que vous vous connectez à Tor à un observateur local. Si cela est important " "pour vous, lisez notre documentation à propos du [[mode bridge|doc/" -"first_steps/startup_options/bridge_mode]]." +"first_steps/welcome_screen/bridge_mode]]." #. type: Bullet: ' - ' msgid "" diff --git a/wiki/src/doc/about/fingerprint.id.po b/wiki/src/doc/about/fingerprint.id.po index f7ed5f202fa9ede7734bcbe476651f2e964ea562..4af41d23106579c2a83aa546afa6ef54bf492cd0 100644 --- a/wiki/src/doc/about/fingerprint.id.po +++ b/wiki/src/doc/about/fingerprint.id.po @@ -112,7 +112,7 @@ msgstr "" msgid "" "Tor bridges are most of the time a good way of hiding the fact that you are " "connecting to Tor to a local observer. If this is important for you, read " -"our documentation about [[doc/first_steps/startup_options/bridge_mode]]." +"our documentation about [[doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/about/fingerprint.it.po b/wiki/src/doc/about/fingerprint.it.po index 59d9935ccda0b218949c9b82ec2d45621b56d37e..5911efc0e1bb982068e2a47d07973b93e8c9e42e 100644 --- a/wiki/src/doc/about/fingerprint.it.po +++ b/wiki/src/doc/about/fingerprint.it.po @@ -147,11 +147,11 @@ msgstr "Per il tuo ISP o amministratore di rete locale\n" msgid "" "Tor bridges are most of the time a good way of hiding the fact that you are " "connecting to Tor to a local observer. If this is important for you, read " -"our documentation about [[doc/first_steps/startup_options/bridge_mode]]." +"our documentation about [[doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" "I Tor bridges sono principalmente un buon modo per nascondere, ad un " "osservatore locale, il fatto che sei connesso a Tor. Se questo è importante " -"per te, leggi la documentazione [[doc/first_steps/startup_options/" +"per te, leggi la documentazione [[doc/first_steps/welcome_screen/" "bridge_mode]]." #. type: Bullet: ' - ' diff --git a/wiki/src/doc/about/fingerprint.mdwn b/wiki/src/doc/about/fingerprint.mdwn index a6a42e4c62e6525620c821db3f84c800948a6272..4ca5eb7e96a234bdadc43a701a2c0b23f59f5e4a 100644 --- a/wiki/src/doc/about/fingerprint.mdwn +++ b/wiki/src/doc/about/fingerprint.mdwn @@ -49,7 +49,7 @@ For your ISP or local network administrator - Tor bridges are most of the time a good way of hiding the fact that you are connecting to Tor to a local observer. If this is important for you, read - our documentation about [[doc/first_steps/startup_options/bridge_mode]]. + our documentation about [[doc/first_steps/welcome_screen/bridge_mode]]. - A Tails system is **almost exclusively generating Tor activity** on the network. Usually users of <span class="application">Tor Browser</span> on other operating systems also have network activity outside of diff --git a/wiki/src/doc/about/fingerprint.pl.po b/wiki/src/doc/about/fingerprint.pl.po index 3bd07a1bb8d24fde2b928d326a27a0cb7926454f..1d4c7c5e917663260bb02e9449e2ec479ef58b55 100644 --- a/wiki/src/doc/about/fingerprint.pl.po +++ b/wiki/src/doc/about/fingerprint.pl.po @@ -113,7 +113,7 @@ msgstr "" msgid "" "Tor bridges are most of the time a good way of hiding the fact that you are " "connecting to Tor to a local observer. If this is important for you, read " -"our documentation about [[doc/first_steps/startup_options/bridge_mode]]." +"our documentation about [[doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/about/fingerprint.pt.po b/wiki/src/doc/about/fingerprint.pt.po index d212a4794632f9ce08d923c67fb95009c4cddaee..8c0a74194a54f91f380bfb04bf0e85766bcbad94 100644 --- a/wiki/src/doc/about/fingerprint.pt.po +++ b/wiki/src/doc/about/fingerprint.pt.po @@ -141,12 +141,12 @@ msgstr "Para seu provedor de serviços de Internet ou administrador da rede loca msgid "" "Tor bridges are most of the time a good way of hiding the fact that you are " "connecting to Tor to a local observer. If this is important for you, read " -"our documentation about [[doc/first_steps/startup_options/bridge_mode]]." +"our documentation about [[doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" "Bridges de Tor são, na maior parte do tempo, uma boa forma de esconder de um " "observador local o fato de que você está se conectando ao Tor. Se isto for " "importante para você, leia nossa documentação sobre [[modo bridge|doc/" -"first_steps/startup_options/bridge_mode]]." +"first_steps/welcome_screen/bridge_mode]]." #. type: Bullet: ' - ' msgid "" diff --git a/wiki/src/doc/about/fingerprint.ru.po b/wiki/src/doc/about/fingerprint.ru.po index 56c087dfd9838210cb382c339e4c8aea3e20d725..03bece525f02ff69debc49ccccc912fa86f9f3ee 100644 --- a/wiki/src/doc/about/fingerprint.ru.po +++ b/wiki/src/doc/about/fingerprint.ru.po @@ -113,7 +113,7 @@ msgstr "" msgid "" "Tor bridges are most of the time a good way of hiding the fact that you are " "connecting to Tor to a local observer. If this is important for you, read " -"our documentation about [[doc/first_steps/startup_options/bridge_mode]]." +"our documentation about [[doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/about/fingerprint.sr_Latn.po b/wiki/src/doc/about/fingerprint.sr_Latn.po index 5435c61e4c278681d11a4b3f9557e8bf40548ff1..fb3ea1b7369664232699d36416b76d99246ad023 100644 --- a/wiki/src/doc/about/fingerprint.sr_Latn.po +++ b/wiki/src/doc/about/fingerprint.sr_Latn.po @@ -116,7 +116,7 @@ msgstr "" msgid "" "Tor bridges are most of the time a good way of hiding the fact that you are " "connecting to Tor to a local observer. If this is important for you, read " -"our documentation about [[doc/first_steps/startup_options/bridge_mode]]." +"our documentation about [[doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/about/fingerprint.tr.po b/wiki/src/doc/about/fingerprint.tr.po index 6c57a8cbae10f57084334a62b124c9e810217ecb..fe8a487516c76af6dde28a54c3704144ef79a98b 100644 --- a/wiki/src/doc/about/fingerprint.tr.po +++ b/wiki/src/doc/about/fingerprint.tr.po @@ -110,7 +110,7 @@ msgstr "" msgid "" "Tor bridges are most of the time a good way of hiding the fact that you are " "connecting to Tor to a local observer. If this is important for you, read " -"our documentation about [[doc/first_steps/startup_options/bridge_mode]]." +"our documentation about [[doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/about/fingerprint.zh.po b/wiki/src/doc/about/fingerprint.zh.po index 18b316a3a7204436a7365c4fa72b386e8252e0dd..c4f52ea95adaa2fa8b7082e87adaaba4ba03fbd7 100644 --- a/wiki/src/doc/about/fingerprint.zh.po +++ b/wiki/src/doc/about/fingerprint.zh.po @@ -112,7 +112,7 @@ msgstr "" msgid "" "Tor bridges are most of the time a good way of hiding the fact that you are " "connecting to Tor to a local observer. If this is important for you, read " -"our documentation about [[doc/first_steps/startup_options/bridge_mode]]." +"our documentation about [[doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/about/fingerprint.zh_TW.po b/wiki/src/doc/about/fingerprint.zh_TW.po index ad5274c6527b7f01e9cb49bcc203234ecee2df5e..e7cb4c0b777b325bf4e3759b1c8421a399472c74 100644 --- a/wiki/src/doc/about/fingerprint.zh_TW.po +++ b/wiki/src/doc/about/fingerprint.zh_TW.po @@ -136,10 +136,10 @@ msgstr "對你的 ISP 或本地的網管者\n" msgid "" "Tor bridges are most of the time a good way of hiding the fact that you are " "connecting to Tor to a local observer. If this is important for you, read " -"our documentation about [[doc/first_steps/startup_options/bridge_mode]]." +"our documentation about [[doc/first_steps/welcome_screen/bridge_mode]]." msgstr "" "Tor 橋結器是多大數情況下最好的方式來對本地觀測者隱瞞你正連到 Tor 的事實。如果對你來說這很重要,請參考我們所提供的文件 [[doc/" -"first_steps/startup_options/bridge_mode]]." +"first_steps/welcome_screen/bridge_mode]]." #. type: Bullet: ' - ' msgid "" diff --git a/wiki/src/doc/about/license.de.po b/wiki/src/doc/about/license.de.po index 8ec1439e292dcd8fea48dfd52bd7840da9e7ee8a..88e7aa7a14c6e324ecd8d62c7124d847d9a6d92a 100644 --- a/wiki/src/doc/about/license.de.po +++ b/wiki/src/doc/about/license.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails Translation\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-10 11:28+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-11-22 16:35+0000\n" "Last-Translator: anonymous <amnesia@boum.org>\n" "Language-Team: Tails Translation <tails-l10n@boum.org>\n" @@ -137,7 +137,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"The [[boot menu animation|install/win/usb#animation]] is licensed under the " +"The [[Boot Menu animation|install/win/usb#animation]] is licensed under the " "<a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons " "Attribution-ShareAlike 4.0 International License</a>, copyright [Odile " "Carabantes](https://studiomoare.com/) and [Enso Studio](https://www." diff --git a/wiki/src/doc/about/license.es.po b/wiki/src/doc/about/license.es.po index 5891058e154c42b12cccfd424b6a3d0babf54ac4..08ff652d710eb4525adaca26a2b08e1d62676883 100644 --- a/wiki/src/doc/about/license.es.po +++ b/wiki/src/doc/about/license.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-10 11:28+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-02-15 21:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -93,14 +93,12 @@ msgid "" " - author: [Firefox user 14030863](https://addons.mozilla.org/en-US/firefox/user/14030863/)\n" msgstr "" "- El [[!tails_gitweb\n" -" config/chroot_local-includes/usr/share/tails/chroot-browsers/" -"unsafe-browser/extensions/red-2.0-an+fx.xpi\n" +" config/chroot_local-includes/usr/share/tails/chroot-browsers/unsafe-browser/extensions/red-2.0-an+fx.xpi\n" " desc=\"tema rojo\"]] usado por el _Unsafe Browser_ de Tails se descargó\n" "del sitio de extensiones de Mozilla\n" " (<https://addons.mozilla.org/en-US/firefox/addon/simplyred/>):\n" " - licencia: Creative Commons Attribution 3.0\n" -" - autor/a: [Firefox user 14030863](https://addons.mozilla.org/en-US/" -"firefox/user/14030863/)\n" +" - autor/a: [Firefox user 14030863](https://addons.mozilla.org/en-US/firefox/user/14030863/)\n" #. type: Title = #, no-wrap @@ -120,8 +118,8 @@ msgid "" "The Tails logo is based on [[USB|http://thenounproject.com/term/usb/23873/]] " "by Ilsur Aptukov from the Noun Project." msgstr "" -"El logo de Tails está basado en [[USB|http://thenounproject.com/term/usb/" -"23873/]] de Ilsur Aptukov del Noun Project." +"El logo de Tails está basado en [[USB|http://thenounproject.com/term/" +"usb/23873/]] de Ilsur Aptukov del Noun Project." #. type: Plain text msgid "- Debian logo: Copyright (c) 1999 Software in the Public Interest." @@ -147,8 +145,15 @@ msgstr "" "copyright Thomas Verguet." #. type: Bullet: '- ' -msgid "" -"The [[boot menu animation|install/win/usb#animation]] is licensed under the " +#, fuzzy +#| msgid "" +#| "The [[boot menu animation|install/win/usb#animation]] is licensed under " +#| "the <a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative " +#| "Commons Attribution-ShareAlike 4.0 International License</a>, copyright " +#| "[Odile Carabantes](https://studiomoare.com/) and [Enso Studio](https://" +#| "www.ensostudio.tv/)." +msgid "" +"The [[Boot Menu animation|install/win/usb#animation]] is licensed under the " "<a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons " "Attribution-ShareAlike 4.0 International License</a>, copyright [Odile " "Carabantes](https://studiomoare.com/) and [Enso Studio](https://www." @@ -157,8 +162,8 @@ msgstr "" "La [[animación del menú de arranque|install/win/usb#animation]] está " "licenciada bajo la <a href=\"https://creativecommons.org/licenses/by-sa/4.0/" "\">Creative Commons Attribution-ShareAlike 4.0 International License</a>, " -"copyright [Odile Carabantes](https://studiomoare.com/) y [Enso " -"Studio](https://www.ensostudio.tv/)." +"copyright [Odile Carabantes](https://studiomoare.com/) y [Enso Studio]" +"(https://www.ensostudio.tv/)." #. type: Plain text msgid "- Icons from [[The Noun Project|http://thenounproject.com/]]:" diff --git a/wiki/src/doc/about/license.fa.po b/wiki/src/doc/about/license.fa.po index 6c653e80005bb6ad8c1317b541337f3ae6e296bf..0fe7e841db44463f2df8969444ce7c4bf9982db5 100644 --- a/wiki/src/doc/about/license.fa.po +++ b/wiki/src/doc/about/license.fa.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-10-10 11:28+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2015-10-21 10:59+0000\n" "Last-Translator: sprint5 <translation5@451f.org>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/license/" @@ -130,7 +130,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"The [[boot menu animation|install/win/usb#animation]] is licensed under the " +"The [[Boot Menu animation|install/win/usb#animation]] is licensed under the " "<a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons " "Attribution-ShareAlike 4.0 International License</a>, copyright [Odile " "Carabantes](https://studiomoare.com/) and [Enso Studio](https://www." diff --git a/wiki/src/doc/about/license.fr.po b/wiki/src/doc/about/license.fr.po index 828a32be48344ec7df8e8e7ff5e805cb882305f8..2cd311bf5ed66fcf8e3276ed12adf36dd375d52e 100644 --- a/wiki/src/doc/about/license.fr.po +++ b/wiki/src/doc/about/license.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-10 11:28+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-09-16 17:09+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -144,8 +144,15 @@ msgstr "" "a>, copyright Thomas Verguet." #. type: Bullet: '- ' -msgid "" -"The [[boot menu animation|install/win/usb#animation]] is licensed under the " +#, fuzzy +#| msgid "" +#| "The [[boot menu animation|install/win/usb#animation]] is licensed under " +#| "the <a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative " +#| "Commons Attribution-ShareAlike 4.0 International License</a>, copyright " +#| "[Odile Carabantes](https://studiomoare.com/) and [Enso Studio](https://" +#| "www.ensostudio.tv/)." +msgid "" +"The [[Boot Menu animation|install/win/usb#animation]] is licensed under the " "<a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons " "Attribution-ShareAlike 4.0 International License</a>, copyright [Odile " "Carabantes](https://studiomoare.com/) and [Enso Studio](https://www." diff --git a/wiki/src/doc/about/license.it.po b/wiki/src/doc/about/license.it.po index 2ed26bcc44d0d1a1713594b61bdfaa59b6bbfbac..5c61efaf8051cf2caa75743bd8e0ffa6e4df0bdf 100644 --- a/wiki/src/doc/about/license.it.po +++ b/wiki/src/doc/about/license.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION it\n" -"POT-Creation-Date: 2019-10-10 11:28+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2017-07-09 14:39+0000\n" "Last-Translator: Zeyev <zeyev@autistici.org>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -131,7 +131,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"The [[boot menu animation|install/win/usb#animation]] is licensed under the " +"The [[Boot Menu animation|install/win/usb#animation]] is licensed under the " "<a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons " "Attribution-ShareAlike 4.0 International License</a>, copyright [Odile " "Carabantes](https://studiomoare.com/) and [Enso Studio](https://www." diff --git a/wiki/src/doc/about/license.mdwn b/wiki/src/doc/about/license.mdwn index 57ab8f8fb1931150f6e226a4ff30bd911a817f9f..a27249138b1af43858916672ea45e59523e74af2 100644 --- a/wiki/src/doc/about/license.mdwn +++ b/wiki/src/doc/about/license.mdwn @@ -52,7 +52,7 @@ and distribution terms: Attribution-ShareAlike 4.0 International License</a>, copyright Thomas Verguet. -- The [[boot menu animation|install/win/usb#animation]] is licensed +- The [[Boot Menu animation|install/win/usb#animation]] is licensed under the <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>, copyright [Odile Carabantes](https://studiomoare.com/) and [Enso diff --git a/wiki/src/doc/about/license.pt.po b/wiki/src/doc/about/license.pt.po index 3bda995133201902fe7ee51a15c368160014a9ff..3ca0be26d849e45801d70197ea0508c256e19996 100644 --- a/wiki/src/doc/about/license.pt.po +++ b/wiki/src/doc/about/license.pt.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-10-10 11:28+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2014-05-23 12:05-0300\n" "Last-Translator: Tails Developers <amnesia@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -122,7 +122,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"The [[boot menu animation|install/win/usb#animation]] is licensed under the " +"The [[Boot Menu animation|install/win/usb#animation]] is licensed under the " "<a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons " "Attribution-ShareAlike 4.0 International License</a>, copyright [Odile " "Carabantes](https://studiomoare.com/) and [Enso Studio](https://www." diff --git a/wiki/src/doc/about/warning.ar.po b/wiki/src/doc/about/warning.ar.po index fca08ba4d9ba64341046539fed8b3b9b7a565482..579272a686b92fe8e066dc2e3799ca95de406d9f 100644 --- a/wiki/src/doc/about/warning.ar.po +++ b/wiki/src/doc/about/warning.ar.po @@ -190,7 +190,7 @@ msgid "" "**Your Internet Service Provider (ISP) or your local network administrator**\n" "can see that you're connecting to a Tor relay, and not a normal web server for\n" "example. Using [[Tor bridges in certain\n" -"conditions|first_steps/startup_options/bridge_mode]] can help you hide the fact\n" +"conditions|first_steps/welcome_screen/bridge_mode]] can help you hide the fact\n" "that you are using Tor.\n" msgstr "" diff --git a/wiki/src/doc/about/warning.ca.po b/wiki/src/doc/about/warning.ca.po index 0d57181df0eb52f96ab001a79e81dabb4597c5e3..e71a31f817b39b3f989c498d9e087fcad2cb07e2 100644 --- a/wiki/src/doc/about/warning.ca.po +++ b/wiki/src/doc/about/warning.ca.po @@ -189,7 +189,7 @@ msgid "" "**Your Internet Service Provider (ISP) or your local network administrator**\n" "can see that you're connecting to a Tor relay, and not a normal web server for\n" "example. Using [[Tor bridges in certain\n" -"conditions|first_steps/startup_options/bridge_mode]] can help you hide the fact\n" +"conditions|first_steps/welcome_screen/bridge_mode]] can help you hide the fact\n" "that you are using Tor.\n" msgstr "" diff --git a/wiki/src/doc/about/warning.de.po b/wiki/src/doc/about/warning.de.po index e595059ac79c0f9dea5cee8c039c4c4a71c84f12..eb50520af1b3bfcff9a7c4dfdf75ab733c8311d8 100644 --- a/wiki/src/doc/about/warning.de.po +++ b/wiki/src/doc/about/warning.de.po @@ -233,12 +233,12 @@ msgid "" "**Your Internet Service Provider (ISP) or your local network administrator**\n" "can see that you're connecting to a Tor relay, and not a normal web server for\n" "example. Using [[Tor bridges in certain\n" -"conditions|first_steps/startup_options/bridge_mode]] can help you hide the fact\n" +"conditions|first_steps/welcome_screen/bridge_mode]] can help you hide the fact\n" "that you are using Tor.\n" msgstr "" "**Ihr Internet Service Provider (ISP) oder die Person, die das lokale Netzwerk administriert**\n" "kann sehen, dass Sie sich zu einem Tor-Relais und nicht beispielsweise zu einem normalen Web-Server verbinden.\n" -"Die Verwendung von [[Tor-Bridges in bestimmten Situationen|first_steps/startup_options/bridge_mode]] kann Ihnen helfen,\n" +"Die Verwendung von [[Tor-Bridges in bestimmten Situationen|first_steps/welcome_screen/bridge_mode]] kann Ihnen helfen,\n" "die Tatsache, dass Sie Tor verwenden, zu verschleiern.\n" #. type: Plain text diff --git a/wiki/src/doc/about/warning.es.po b/wiki/src/doc/about/warning.es.po index f88e8f07d61cc973cd2e8ae63d2f09b9960cd3a1..4ae87f639eb39b9edd747d8aca7aa1a2dd1c4592 100644 --- a/wiki/src/doc/about/warning.es.po +++ b/wiki/src/doc/about/warning.es.po @@ -230,13 +230,13 @@ msgid "" "**Your Internet Service Provider (ISP) or your local network administrator**\n" "can see that you're connecting to a Tor relay, and not a normal web server for\n" "example. Using [[Tor bridges in certain\n" -"conditions|first_steps/startup_options/bridge_mode]] can help you hide the fact\n" +"conditions|first_steps/welcome_screen/bridge_mode]] can help you hide the fact\n" "that you are using Tor.\n" msgstr "" "**Tu proveedor de Internet o el administrador de tu red local**\n" "pueden ver que te estás conectando a un relay de Tor, y no a un servidor web normal,\n" "por ejemplo. Usar [[Puentes de Tor en ciertas\n" -"condiciones|first_steps/startup_options/bridge_mode]] te puede ayudar a esconder\n" +"condiciones|first_steps/welcome_screen/bridge_mode]] te puede ayudar a esconder\n" "el hecho de que estás usando Tor.\n" " \n" diff --git a/wiki/src/doc/about/warning.fa.po b/wiki/src/doc/about/warning.fa.po index c4d28c06c5d1e3bf92ea7beb5fe38c28330c3227..04bb71cda11a4e1054fc869b2da5762f01ea9170 100644 --- a/wiki/src/doc/about/warning.fa.po +++ b/wiki/src/doc/about/warning.fa.po @@ -232,12 +232,12 @@ msgid "" "**Your Internet Service Provider (ISP) or your local network administrator**\n" "can see that you're connecting to a Tor relay, and not a normal web server for\n" "example. Using [[Tor bridges in certain\n" -"conditions|first_steps/startup_options/bridge_mode]] can help you hide the fact\n" +"conditions|first_steps/welcome_screen/bridge_mode]] can help you hide the fact\n" "that you are using Tor.\n" msgstr "" "**ارائهدهندهٔ خدمات اینترنتی یا مدیر شبکهٔ محلی شما** میتواند متوجه شود\n" "که شما به یک رلهٔ تور متصل شدهاید و نه به یک سرور معمولی وب.\n" -" [[استفاده از پلهای تور در شرایطی خاص|first_steps/startup_options/bridge_mode]]\n" +" [[استفاده از پلهای تور در شرایطی خاص|first_steps/welcome_screen/bridge_mode]]\n" "میتواند به شما در پنهان کردن استفادهتان از تور \n" "کمک کند.\n" diff --git a/wiki/src/doc/about/warning.fr.po b/wiki/src/doc/about/warning.fr.po index 814e2b0bfd405875523f6dc6a3760e45c98ce81d..8c651a80f21f858d30fa47bec35f19fb0fc2c645 100644 --- a/wiki/src/doc/about/warning.fr.po +++ b/wiki/src/doc/about/warning.fr.po @@ -233,13 +233,13 @@ msgid "" "**Your Internet Service Provider (ISP) or your local network administrator**\n" "can see that you're connecting to a Tor relay, and not a normal web server for\n" "example. Using [[Tor bridges in certain\n" -"conditions|first_steps/startup_options/bridge_mode]] can help you hide the fact\n" +"conditions|first_steps/welcome_screen/bridge_mode]] can help you hide the fact\n" "that you are using Tor.\n" msgstr "" "**Votre fournisseur d'accès à Internet (FAI) ou la personne administrant votre réseau local**\n" "peut voir que vous vous connectez à un relai Tor, et pas à un serveur web normal\n" "par exemple. Utiliser des [[bridges Tor dans certains cas\n" -"|first_steps/startup_options/bridge_mode]] peut vous aider à cacher le fait que\n" +"|first_steps/welcome_screen/bridge_mode]] peut vous aider à cacher le fait que\n" "vous utilisez Tails.\n" #. type: Plain text diff --git a/wiki/src/doc/about/warning.id.po b/wiki/src/doc/about/warning.id.po index 86f0be37b12f4621f6c8b1c121b69134c38f8d08..ca5986d4d6a52e0e34b2e68f130a5fc5e1ba68b0 100644 --- a/wiki/src/doc/about/warning.id.po +++ b/wiki/src/doc/about/warning.id.po @@ -189,7 +189,7 @@ msgid "" "**Your Internet Service Provider (ISP) or your local network administrator**\n" "can see that you're connecting to a Tor relay, and not a normal web server for\n" "example. Using [[Tor bridges in certain\n" -"conditions|first_steps/startup_options/bridge_mode]] can help you hide the fact\n" +"conditions|first_steps/welcome_screen/bridge_mode]] can help you hide the fact\n" "that you are using Tor.\n" msgstr "" diff --git a/wiki/src/doc/about/warning.it.po b/wiki/src/doc/about/warning.it.po index 0bd5fb87c18f19026f0e7c09efecf558a7fd9a5b..dd66c8ce0376de353d0f0f78790f976ac66699ec 100644 --- a/wiki/src/doc/about/warning.it.po +++ b/wiki/src/doc/about/warning.it.po @@ -244,12 +244,12 @@ msgid "" "**Your Internet Service Provider (ISP) or your local network administrator**\n" "can see that you're connecting to a Tor relay, and not a normal web server for\n" "example. Using [[Tor bridges in certain\n" -"conditions|first_steps/startup_options/bridge_mode]] can help you hide the fact\n" +"conditions|first_steps/welcome_screen/bridge_mode]] can help you hide the fact\n" "that you are using Tor.\n" msgstr "" "**Il tuo gestore del servizio Internet (ISP) o il tuo amministratore della rete locale**\n" "può vedere se sei connesso a un nodo Tor e non a un normale server web per\n" -"esempio. Usando [[Tor-Bridges in alcune condizioni|first_steps/startup_options/bridge_mode]] può aiutarti a nascondere il fatto\n" +"esempio. Usando [[Tor-Bridges in alcune condizioni|first_steps/welcome_screen/bridge_mode]] può aiutarti a nascondere il fatto\n" "che stai usando Tor.\n" #. type: Plain text diff --git a/wiki/src/doc/about/warning.mdwn b/wiki/src/doc/about/warning.mdwn index 9d2dc1d8a8b37340457b29f01d3b3c043466483d..47e4bf8f34c104e07fdeb9a231d9567263e13825 100644 --- a/wiki/src/doc/about/warning.mdwn +++ b/wiki/src/doc/about/warning.mdwn @@ -89,7 +89,7 @@ Tails makes it clear that you are using Tor and probably Tails **Your Internet Service Provider (ISP) or your local network administrator** can see that you're connecting to a Tor relay, and not a normal web server for example. Using [[Tor bridges in certain -conditions|first_steps/startup_options/bridge_mode]] can help you hide the fact +conditions|first_steps/welcome_screen/bridge_mode]] can help you hide the fact that you are using Tor. **The destination server that you are contacting through Tor** can know whether your diff --git a/wiki/src/doc/about/warning.pl.po b/wiki/src/doc/about/warning.pl.po index b4cc74109d9c4eeccb8a587beabfef4d5f79f9b3..acb7f887fe4b94e12e2c2d01b8e6874519938f21 100644 --- a/wiki/src/doc/about/warning.pl.po +++ b/wiki/src/doc/about/warning.pl.po @@ -190,7 +190,7 @@ msgid "" "**Your Internet Service Provider (ISP) or your local network administrator**\n" "can see that you're connecting to a Tor relay, and not a normal web server for\n" "example. Using [[Tor bridges in certain\n" -"conditions|first_steps/startup_options/bridge_mode]] can help you hide the fact\n" +"conditions|first_steps/welcome_screen/bridge_mode]] can help you hide the fact\n" "that you are using Tor.\n" msgstr "" diff --git a/wiki/src/doc/about/warning.pt.po b/wiki/src/doc/about/warning.pt.po index 6f29e312e385858d3463ee9e0ee4a57c520459c9..e15a627f7ab5f725935d6909386f75e1b27fa738 100644 --- a/wiki/src/doc/about/warning.pt.po +++ b/wiki/src/doc/about/warning.pt.po @@ -232,13 +232,13 @@ msgid "" "**Your Internet Service Provider (ISP) or your local network administrator**\n" "can see that you're connecting to a Tor relay, and not a normal web server for\n" "example. Using [[Tor bridges in certain\n" -"conditions|first_steps/startup_options/bridge_mode]] can help you hide the fact\n" +"conditions|first_steps/welcome_screen/bridge_mode]] can help you hide the fact\n" "that you are using Tor.\n" msgstr "" "**Seu provedor de acesso à Internet e/ou as pessoas que administram sua rede local**\n" "podem ver que você está conectando a um relay Tor, e não a um servidor web\n" "normal, por exemplo. Usar [[pontes Tor (bridges) em certas\n" -"condições|first_steps/startup_options/bridge_mode]] pode te ajudar a ocultar\n" +"condições|first_steps/welcome_screen/bridge_mode]] pode te ajudar a ocultar\n" "o fato de que você está usando Tor.\n" #. type: Plain text diff --git a/wiki/src/doc/about/warning.ru.po b/wiki/src/doc/about/warning.ru.po index 4e838542816ac4ac16bbd76127c5bb0c9883dacc..2b29d407084f7d971cb83c568f0557d4dde11709 100644 --- a/wiki/src/doc/about/warning.ru.po +++ b/wiki/src/doc/about/warning.ru.po @@ -190,7 +190,7 @@ msgid "" "**Your Internet Service Provider (ISP) or your local network administrator**\n" "can see that you're connecting to a Tor relay, and not a normal web server for\n" "example. Using [[Tor bridges in certain\n" -"conditions|first_steps/startup_options/bridge_mode]] can help you hide the fact\n" +"conditions|first_steps/welcome_screen/bridge_mode]] can help you hide the fact\n" "that you are using Tor.\n" msgstr "" diff --git a/wiki/src/doc/about/warning.sr_Latn.po b/wiki/src/doc/about/warning.sr_Latn.po index 9541470209d2c8dcc8dfd9d89ac5e722379d162e..6d71b52a82d7f8c99b3d5d553be621068b6de27d 100644 --- a/wiki/src/doc/about/warning.sr_Latn.po +++ b/wiki/src/doc/about/warning.sr_Latn.po @@ -188,7 +188,7 @@ msgid "" "**Your Internet Service Provider (ISP) or your local network administrator**\n" "can see that you're connecting to a Tor relay, and not a normal web server for\n" "example. Using [[Tor bridges in certain\n" -"conditions|first_steps/startup_options/bridge_mode]] can help you hide the fact\n" +"conditions|first_steps/welcome_screen/bridge_mode]] can help you hide the fact\n" "that you are using Tor.\n" msgstr "" diff --git a/wiki/src/doc/about/warning.tr.po b/wiki/src/doc/about/warning.tr.po index 5c3e8f94a27248db953a5aecb4f56d3dc7582fbd..07f90202ae4d757cbf0b90614be6fac04fd24078 100644 --- a/wiki/src/doc/about/warning.tr.po +++ b/wiki/src/doc/about/warning.tr.po @@ -189,7 +189,7 @@ msgid "" "**Your Internet Service Provider (ISP) or your local network administrator**\n" "can see that you're connecting to a Tor relay, and not a normal web server for\n" "example. Using [[Tor bridges in certain\n" -"conditions|first_steps/startup_options/bridge_mode]] can help you hide the fact\n" +"conditions|first_steps/welcome_screen/bridge_mode]] can help you hide the fact\n" "that you are using Tor.\n" msgstr "" diff --git a/wiki/src/doc/about/warning.zh.po b/wiki/src/doc/about/warning.zh.po index 12d82e725c4b842da16c3ea083d3428224258f9f..90a9d3437b0e49f2bb0177407f9695586c56cc1e 100644 --- a/wiki/src/doc/about/warning.zh.po +++ b/wiki/src/doc/about/warning.zh.po @@ -191,7 +191,7 @@ msgid "" "**Your Internet Service Provider (ISP) or your local network administrator**\n" "can see that you're connecting to a Tor relay, and not a normal web server for\n" "example. Using [[Tor bridges in certain\n" -"conditions|first_steps/startup_options/bridge_mode]] can help you hide the fact\n" +"conditions|first_steps/welcome_screen/bridge_mode]] can help you hide the fact\n" "that you are using Tor.\n" msgstr "" diff --git a/wiki/src/doc/about/warning.zh_TW.po b/wiki/src/doc/about/warning.zh_TW.po index 1d03a7986e2e9ad090af9bf460be8e58fe792d33..10218f8d3e8c1096aa57b2230143749365b950a3 100644 --- a/wiki/src/doc/about/warning.zh_TW.po +++ b/wiki/src/doc/about/warning.zh_TW.po @@ -189,7 +189,7 @@ msgid "" "**Your Internet Service Provider (ISP) or your local network administrator**\n" "can see that you're connecting to a Tor relay, and not a normal web server for\n" "example. Using [[Tor bridges in certain\n" -"conditions|first_steps/startup_options/bridge_mode]] can help you hide the fact\n" +"conditions|first_steps/welcome_screen/bridge_mode]] can help you hide the fact\n" "that you are using Tor.\n" msgstr "" diff --git a/wiki/src/doc/advanced_topics.index.de.po b/wiki/src/doc/advanced_topics.index.de.po index ecbbfb29044db3cbb42ed46ce83d2a61b43dad65..fdb2ae4c6c0344551be8214bc2ca245c03ed7ffb 100644 --- a/wiki/src/doc/advanced_topics.index.de.po +++ b/wiki/src/doc/advanced_topics.index.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-09-24 16:20+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2016-05-29 18:34-0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -16,6 +16,17 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.6.10\n" +#. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[!traillink Protection_against_cold_boot_attacks|advanced_topics/" +#| "cold_boot_attacks]]" +msgid "" +"[[!traillink Adding_boot_options_using_the_Boot_Loader|advanced_topics/" +"boot_options]]" +msgstr "" +"[[!traillink Schutz_vor_Kaltstartattacken|advanced_topics/cold_boot_attacks]]" + #. type: Bullet: ' - ' msgid "" "[[!traillink Protection_against_cold_boot_attacks|advanced_topics/" diff --git a/wiki/src/doc/advanced_topics.index.es.po b/wiki/src/doc/advanced_topics.index.es.po index f9d5a6ee2032460b410664161506cd0b80315c64..fbf1ba15c084174d1a10f5720baae296994f8ec2 100644 --- a/wiki/src/doc/advanced_topics.index.es.po +++ b/wiki/src/doc/advanced_topics.index.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-09-24 16:20+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-11-30 14:56+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -18,6 +18,18 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.20\n" +#. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[!traillink Protection_against_cold_boot_attacks|advanced_topics/" +#| "cold_boot_attacks]]" +msgid "" +"[[!traillink Adding_boot_options_using_the_Boot_Loader|advanced_topics/" +"boot_options]]" +msgstr "" +"[[!traillink Protección_contra_ataques_cold_boot|advanced_topics/" +"cold_boot_attacks]]" + #. type: Bullet: ' - ' msgid "" "[[!traillink Protection_against_cold_boot_attacks|advanced_topics/" @@ -39,22 +51,15 @@ msgid "" " - [[!traillink Accessing_resources_on_the_local_network|advanced_topics/lan]]\n" " - [[!traillink Enable_a_wireless_device|advanced_topics/wireless_devices]]\n" msgstr "" -" - [[!traillink Arrancar_Tails_en_una_máquina_virtual|advanced_topics/" -"virtualization]]\n" -" - [[!traillink <span_class=\"application\">VirtualBox</span>|" -"advanced_topics/virtualization/virtualbox]]\n" -" - [[!traillink <span_class=\"application\">GNOME_Boxes</span>|" -"advanced_topics/virtualization/boxes]]\n" -" - [[!traillink <span_class=\"application\">virt-manager</span>|" -"advanced_topics/virtualization/virt-manager]]\n" +" - [[!traillink Arrancar_Tails_en_una_máquina_virtual|advanced_topics/virtualization]]\n" +" - [[!traillink <span_class=\"application\">VirtualBox</span>|advanced_topics/virtualization/virtualbox]]\n" +" - [[!traillink <span_class=\"application\">GNOME_Boxes</span>|advanced_topics/virtualization/boxes]]\n" +" - [[!traillink <span_class=\"application\">virt-manager</span>|advanced_topics/virtualization/virt-manager]]\n" "- Persistencia encriptada\n" -" - [[!traillink Cambiar_la_frase_contraseña_del_volumen_persistente|" -"advanced_topics/persistence/change_passphrase]]\n" -" - [[!traillink Chequear_el_sistema_del_volumen_persistente|" -"advanced_topics/persistence/check_file_system]]\n" +" - [[!traillink Cambiar_la_frase_contraseña_del_volumen_persistente|advanced_topics/persistence/change_passphrase]]\n" +" - [[!traillink Chequear_el_sistema_del_volumen_persistente|advanced_topics/persistence/check_file_system]]\n" " - [[!traillink Acceder_a_recursos_de_la_red_local|advanced_topics/lan]]\n" -" - [[!traillink Habilitar_un_dispositivo_inalámbrico|advanced_topics/" -"wireless_devices]]\n" +" - [[!traillink Habilitar_un_dispositivo_inalámbrico|advanced_topics/wireless_devices]]\n" #~ msgid "" #~ "[[!traillink Installing_additional_software|advanced_topics/" diff --git a/wiki/src/doc/advanced_topics.index.fa.po b/wiki/src/doc/advanced_topics.index.fa.po index 422718d06c2fe9bf2ea0528ac61b1f20c5e36853..56415b36d59ff259c89cfc1e978b66cbf59f8a22 100644 --- a/wiki/src/doc/advanced_topics.index.fa.po +++ b/wiki/src/doc/advanced_topics.index.fa.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-09-24 16:20+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2015-10-25 17:41+0000\n" "Last-Translator: sprint5 <translation5@451f.org>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" @@ -19,6 +19,18 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 2.4-dev\n" +#. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[!traillink Protection_against_cold_boot_attacks|advanced_topics/" +#| "cold_boot_attacks]]" +msgid "" +"[[!traillink Adding_boot_options_using_the_Boot_Loader|advanced_topics/" +"boot_options]]" +msgstr "" +"[[!traillink محافظت_در_برابر_حملات_راهاندازی_سرد|advanced_topics/" +"cold_boot_attacks]]" + #. type: Bullet: ' - ' msgid "" "[[!traillink Protection_against_cold_boot_attacks|advanced_topics/" diff --git a/wiki/src/doc/advanced_topics.index.fr.po b/wiki/src/doc/advanced_topics.index.fr.po index 29901be4aaad5483354a571a06ea97b897f0c956..aa2fe68e9b7c838f409a0b7363fbf1d13613dec6 100644 --- a/wiki/src/doc/advanced_topics.index.fr.po +++ b/wiki/src/doc/advanced_topics.index.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-08-29 08:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-09-21 10:15+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -18,6 +18,18 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 2.20\n" +#. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[!traillink Protection_against_cold_boot_attacks|advanced_topics/" +#| "cold_boot_attacks]]" +msgid "" +"[[!traillink Adding_boot_options_using_the_Boot_Loader|advanced_topics/" +"boot_options]]" +msgstr "" +"[[!traillink Protection_contre_les_attaques_par_démarrage_à_froid|" +"advanced_topics/cold_boot_attacks]]" + #. type: Bullet: ' - ' msgid "" "[[!traillink Protection_against_cold_boot_attacks|advanced_topics/" @@ -39,23 +51,15 @@ msgid "" " - [[!traillink Accessing_resources_on_the_local_network|advanced_topics/lan]]\n" " - [[!traillink Enable_a_wireless_device|advanced_topics/wireless_devices]]\n" msgstr "" -" - [[!traillink Utiliser_Tails_dans_une_machine_virtuelle|advanced_topics/" -"virtualization]]\n" -" - [[!traillink <span_class=\"application\">VirtualBox</span>|" -"advanced_topics/virtualization/virtualbox]]\n" -" - [[!traillink <span_class=\"application\">GNOME_Boxes</span>|" -"advanced_topics/virtualization/boxes]]\n" -" - [[!traillink <span_class=\"application\">virt-manager</span>|" -"advanced_topics/virtualization/virt-manager]]\n" +" - [[!traillink Utiliser_Tails_dans_une_machine_virtuelle|advanced_topics/virtualization]]\n" +" - [[!traillink <span_class=\"application\">VirtualBox</span>|advanced_topics/virtualization/virtualbox]]\n" +" - [[!traillink <span_class=\"application\">GNOME_Boxes</span>|advanced_topics/virtualization/boxes]]\n" +" - [[!traillink <span_class=\"application\">virt-manager</span>|advanced_topics/virtualization/virt-manager]]\n" "- Persistance chiffrée\n" -" - [[!traillink Changer_la_phrase_de_passe_du_volume_persistant|" -"advanced_topics/persistence/change_passphrase]]\n" -" - [[!traillink Vérifier_le_système_de_fichiers_du_volume_persistant|" -"advanced_topics/persistence/check_file_system]]\n" -" - [[!traillink Accéder_à_des_ressources_sur_le_réseau_local|advanced_topics/" -"lan]]\n" -" - [[!traillink Activer_un_périphérique_sans-fil|advanced_topics/" -"wireless_devices]]\n" +" - [[!traillink Changer_la_phrase_de_passe_du_volume_persistant|advanced_topics/persistence/change_passphrase]]\n" +" - [[!traillink Vérifier_le_système_de_fichiers_du_volume_persistant|advanced_topics/persistence/check_file_system]]\n" +" - [[!traillink Accéder_à_des_ressources_sur_le_réseau_local|advanced_topics/lan]]\n" +" - [[!traillink Activer_un_périphérique_sans-fil|advanced_topics/wireless_devices]]\n" #~ msgid "" #~ "[[!traillink Installing_additional_software|advanced_topics/" diff --git a/wiki/src/doc/advanced_topics.index.it.po b/wiki/src/doc/advanced_topics.index.it.po index 1fbb6b214c1109020af8893aab1c5a2f3b3882a3..daadce2fdd61b01d4bc94d6ad82ad154d7d9a941 100644 --- a/wiki/src/doc/advanced_topics.index.it.po +++ b/wiki/src/doc/advanced_topics.index.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-09-24 16:20+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2017-07-09 00:17+0000\n" "Last-Translator: \n" "Language-Team: ita <transitails@inventati.org>\n" @@ -17,6 +17,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.11\n" +#. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[!traillink Protection_against_cold_boot_attacks|advanced_topics/" +#| "cold_boot_attacks]]" +msgid "" +"[[!traillink Adding_boot_options_using_the_Boot_Loader|advanced_topics/" +"boot_options]]" +msgstr "" +"[[!traillink Protezione_contro_i_\"cold_boot_attacks\"|advanced_topics/" +"cold_boot_attacks]]" + #. type: Bullet: ' - ' msgid "" "[[!traillink Protection_against_cold_boot_attacks|advanced_topics/" diff --git a/wiki/src/doc/advanced_topics.index.mdwn b/wiki/src/doc/advanced_topics.index.mdwn index 34dca358b6b6520047e2135991088cce78098150..e1b8772dfd6b154b85175e96f7199eed3332005a 100644 --- a/wiki/src/doc/advanced_topics.index.mdwn +++ b/wiki/src/doc/advanced_topics.index.mdwn @@ -1,3 +1,4 @@ + - [[!traillink Adding_boot_options_using_the_Boot_Loader|advanced_topics/boot_options]] - [[!traillink Protection_against_cold_boot_attacks|advanced_topics/cold_boot_attacks]] - [[!traillink Running_Tails_in_a_virtual_machine|advanced_topics/virtualization]] - [[!traillink <span_class="application">VirtualBox</span>|advanced_topics/virtualization/virtualbox]] diff --git a/wiki/src/doc/advanced_topics.index.pt.po b/wiki/src/doc/advanced_topics.index.pt.po index b6b15a21352ed843056d762e0c21652adb9c9502..876fe0137adaa94d457735ae2e6c7b9fd84a5652 100644 --- a/wiki/src/doc/advanced_topics.index.pt.po +++ b/wiki/src/doc/advanced_topics.index.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-09-24 16:20+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+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" @@ -15,6 +15,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[!traillink Protection_against_cold_boot_attacks|advanced_topics/" +#| "cold_boot_attacks]]" +msgid "" +"[[!traillink Adding_boot_options_using_the_Boot_Loader|advanced_topics/" +"boot_options]]" +msgstr "" +"[[!traillink Proteção_contra_ataques_*cold_boot*|advanced_topics/" +"cold_boot_attacks]]" + #. type: Bullet: ' - ' msgid "" "[[!traillink Protection_against_cold_boot_attacks|advanced_topics/" diff --git a/wiki/src/doc/advanced_topics/boot_options.de.po b/wiki/src/doc/advanced_topics/boot_options.de.po new file mode 100644 index 0000000000000000000000000000000000000000..08f02717c5e6a8061fae24f23160d2212af95cae --- /dev/null +++ b/wiki/src/doc/advanced_topics/boot_options.de.po @@ -0,0 +1,205 @@ +# 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: 2020-04-07 17:04+0200\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 title=\"Adding boot options using the Boot Loader\"]]\n" +msgstr "" + +#. type: Plain text +msgid "The Boot Loader is the first screen that appears when starting Tails." +msgstr "" + +#. type: Plain text +msgid "" +"You can use the Boot Loader to add *boot options*. Boot options are special " +"parameters that can be useful to troubleshoot or work around hardware " +"support problems. For example, our [[list of known issues with graphics " +"cards|support/known_issues/graphics]] document boot options for different " +"graphics cards." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"tip\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>The <span class=\"guilabel\">Troubleshooting Mode</span> of the Boot Loader disables some features of the\n" +"Linux kernel and might work better on some computers. You can try this option if you\n" +"think you are experiencing errors related to hardware compatibility while\n" +"starting Tails.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Depending on the computer, the Boot Loader might be either *GRUB* or " +"*SYSLINUX*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"syslinux\"></a>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Using *SYSLINUX*\n" +msgstr "" + +#. type: Plain text +msgid "This is what *SYSLINUX* looks like:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img install/inc/screenshots/syslinux.png link=\"no\" alt=\"Black screen ('SYSLINUX') with Tails\n" +"logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"note\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If your Boot Loader looks different, refer to our instructions below on\n" +"adding a boot option [[using GRUB|boot_options#grub]].</p>\n" +msgstr "" + +#. type: Plain text +msgid "To add a boot option in *SYSLINUX*:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<!-- Keep in sync with install/inc/steps/restart_first_time.inline.mdwn. -->\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **Tab** when *SYSLINUX* appears." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" A list of boot options\n" +" appears at the bottom of the screen.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" [[!img syslinux-with-options.png link=\"no\" alt=\"SYSLINUX with\n" +" a list of options starting with '/live/vmlinuz' at the bottom\"]]\n" +msgstr "" + +#. type: Bullet: '2. ' +msgid "" +"Press <span class=\"keycap\">Space</span> and type the boot option that you " +"want to add." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"If you want to add more than one boot option, type them one after the other " +"and separate them with a <span class=\"keycap\">Space</span>." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Press <span class=\"keycap\">Enter</span> to start Tails." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"grub\"></a>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Using *GRUB*\n" +msgstr "" + +#. type: Plain text +msgid "This is what *GRUB* looks like:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU GRUB') with Tails\n" +"logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If your Boot Loader looks different, refer to our instructions on\n" +"adding a boot option [[using SYSLINUX|boot_options#syslinux]] above.</p>\n" +msgstr "" + +#. type: Plain text +msgid "To add a boot option in *GRUB*:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **e** when GRUB appears." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " A new screen appears with more options.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" [[!img grub-with-options.png link=\"no\" alt=\"GRUB with a list of\n" +" options starting with 'setparams Tails'\"]]\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Navigate with the arrows of the keyboard to the end of the line that starts " +"with <span class=\"code\">linux</span>. The line is most likely wrapped and " +"displayed on several lines on the screen but it is a single configuration " +"line." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Type the boot option that you want to add." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **Ctrl+X** to start Tails." +msgstr "" diff --git a/wiki/src/doc/advanced_topics/boot_options.es.po b/wiki/src/doc/advanced_topics/boot_options.es.po new file mode 100644 index 0000000000000000000000000000000000000000..08f02717c5e6a8061fae24f23160d2212af95cae --- /dev/null +++ b/wiki/src/doc/advanced_topics/boot_options.es.po @@ -0,0 +1,205 @@ +# 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: 2020-04-07 17:04+0200\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 title=\"Adding boot options using the Boot Loader\"]]\n" +msgstr "" + +#. type: Plain text +msgid "The Boot Loader is the first screen that appears when starting Tails." +msgstr "" + +#. type: Plain text +msgid "" +"You can use the Boot Loader to add *boot options*. Boot options are special " +"parameters that can be useful to troubleshoot or work around hardware " +"support problems. For example, our [[list of known issues with graphics " +"cards|support/known_issues/graphics]] document boot options for different " +"graphics cards." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"tip\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>The <span class=\"guilabel\">Troubleshooting Mode</span> of the Boot Loader disables some features of the\n" +"Linux kernel and might work better on some computers. You can try this option if you\n" +"think you are experiencing errors related to hardware compatibility while\n" +"starting Tails.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Depending on the computer, the Boot Loader might be either *GRUB* or " +"*SYSLINUX*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"syslinux\"></a>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Using *SYSLINUX*\n" +msgstr "" + +#. type: Plain text +msgid "This is what *SYSLINUX* looks like:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img install/inc/screenshots/syslinux.png link=\"no\" alt=\"Black screen ('SYSLINUX') with Tails\n" +"logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"note\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If your Boot Loader looks different, refer to our instructions below on\n" +"adding a boot option [[using GRUB|boot_options#grub]].</p>\n" +msgstr "" + +#. type: Plain text +msgid "To add a boot option in *SYSLINUX*:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<!-- Keep in sync with install/inc/steps/restart_first_time.inline.mdwn. -->\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **Tab** when *SYSLINUX* appears." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" A list of boot options\n" +" appears at the bottom of the screen.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" [[!img syslinux-with-options.png link=\"no\" alt=\"SYSLINUX with\n" +" a list of options starting with '/live/vmlinuz' at the bottom\"]]\n" +msgstr "" + +#. type: Bullet: '2. ' +msgid "" +"Press <span class=\"keycap\">Space</span> and type the boot option that you " +"want to add." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"If you want to add more than one boot option, type them one after the other " +"and separate them with a <span class=\"keycap\">Space</span>." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Press <span class=\"keycap\">Enter</span> to start Tails." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"grub\"></a>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Using *GRUB*\n" +msgstr "" + +#. type: Plain text +msgid "This is what *GRUB* looks like:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU GRUB') with Tails\n" +"logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If your Boot Loader looks different, refer to our instructions on\n" +"adding a boot option [[using SYSLINUX|boot_options#syslinux]] above.</p>\n" +msgstr "" + +#. type: Plain text +msgid "To add a boot option in *GRUB*:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **e** when GRUB appears." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " A new screen appears with more options.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" [[!img grub-with-options.png link=\"no\" alt=\"GRUB with a list of\n" +" options starting with 'setparams Tails'\"]]\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Navigate with the arrows of the keyboard to the end of the line that starts " +"with <span class=\"code\">linux</span>. The line is most likely wrapped and " +"displayed on several lines on the screen but it is a single configuration " +"line." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Type the boot option that you want to add." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **Ctrl+X** to start Tails." +msgstr "" diff --git a/wiki/src/doc/advanced_topics/boot_options.fa.po b/wiki/src/doc/advanced_topics/boot_options.fa.po new file mode 100644 index 0000000000000000000000000000000000000000..08f02717c5e6a8061fae24f23160d2212af95cae --- /dev/null +++ b/wiki/src/doc/advanced_topics/boot_options.fa.po @@ -0,0 +1,205 @@ +# 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: 2020-04-07 17:04+0200\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 title=\"Adding boot options using the Boot Loader\"]]\n" +msgstr "" + +#. type: Plain text +msgid "The Boot Loader is the first screen that appears when starting Tails." +msgstr "" + +#. type: Plain text +msgid "" +"You can use the Boot Loader to add *boot options*. Boot options are special " +"parameters that can be useful to troubleshoot or work around hardware " +"support problems. For example, our [[list of known issues with graphics " +"cards|support/known_issues/graphics]] document boot options for different " +"graphics cards." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"tip\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>The <span class=\"guilabel\">Troubleshooting Mode</span> of the Boot Loader disables some features of the\n" +"Linux kernel and might work better on some computers. You can try this option if you\n" +"think you are experiencing errors related to hardware compatibility while\n" +"starting Tails.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Depending on the computer, the Boot Loader might be either *GRUB* or " +"*SYSLINUX*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"syslinux\"></a>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Using *SYSLINUX*\n" +msgstr "" + +#. type: Plain text +msgid "This is what *SYSLINUX* looks like:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img install/inc/screenshots/syslinux.png link=\"no\" alt=\"Black screen ('SYSLINUX') with Tails\n" +"logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"note\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If your Boot Loader looks different, refer to our instructions below on\n" +"adding a boot option [[using GRUB|boot_options#grub]].</p>\n" +msgstr "" + +#. type: Plain text +msgid "To add a boot option in *SYSLINUX*:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<!-- Keep in sync with install/inc/steps/restart_first_time.inline.mdwn. -->\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **Tab** when *SYSLINUX* appears." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" A list of boot options\n" +" appears at the bottom of the screen.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" [[!img syslinux-with-options.png link=\"no\" alt=\"SYSLINUX with\n" +" a list of options starting with '/live/vmlinuz' at the bottom\"]]\n" +msgstr "" + +#. type: Bullet: '2. ' +msgid "" +"Press <span class=\"keycap\">Space</span> and type the boot option that you " +"want to add." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"If you want to add more than one boot option, type them one after the other " +"and separate them with a <span class=\"keycap\">Space</span>." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Press <span class=\"keycap\">Enter</span> to start Tails." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"grub\"></a>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Using *GRUB*\n" +msgstr "" + +#. type: Plain text +msgid "This is what *GRUB* looks like:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU GRUB') with Tails\n" +"logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If your Boot Loader looks different, refer to our instructions on\n" +"adding a boot option [[using SYSLINUX|boot_options#syslinux]] above.</p>\n" +msgstr "" + +#. type: Plain text +msgid "To add a boot option in *GRUB*:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **e** when GRUB appears." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " A new screen appears with more options.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" [[!img grub-with-options.png link=\"no\" alt=\"GRUB with a list of\n" +" options starting with 'setparams Tails'\"]]\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Navigate with the arrows of the keyboard to the end of the line that starts " +"with <span class=\"code\">linux</span>. The line is most likely wrapped and " +"displayed on several lines on the screen but it is a single configuration " +"line." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Type the boot option that you want to add." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **Ctrl+X** to start Tails." +msgstr "" diff --git a/wiki/src/doc/advanced_topics/boot_options.fr.po b/wiki/src/doc/advanced_topics/boot_options.fr.po new file mode 100644 index 0000000000000000000000000000000000000000..08f02717c5e6a8061fae24f23160d2212af95cae --- /dev/null +++ b/wiki/src/doc/advanced_topics/boot_options.fr.po @@ -0,0 +1,205 @@ +# 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: 2020-04-07 17:04+0200\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 title=\"Adding boot options using the Boot Loader\"]]\n" +msgstr "" + +#. type: Plain text +msgid "The Boot Loader is the first screen that appears when starting Tails." +msgstr "" + +#. type: Plain text +msgid "" +"You can use the Boot Loader to add *boot options*. Boot options are special " +"parameters that can be useful to troubleshoot or work around hardware " +"support problems. For example, our [[list of known issues with graphics " +"cards|support/known_issues/graphics]] document boot options for different " +"graphics cards." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"tip\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>The <span class=\"guilabel\">Troubleshooting Mode</span> of the Boot Loader disables some features of the\n" +"Linux kernel and might work better on some computers. You can try this option if you\n" +"think you are experiencing errors related to hardware compatibility while\n" +"starting Tails.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Depending on the computer, the Boot Loader might be either *GRUB* or " +"*SYSLINUX*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"syslinux\"></a>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Using *SYSLINUX*\n" +msgstr "" + +#. type: Plain text +msgid "This is what *SYSLINUX* looks like:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img install/inc/screenshots/syslinux.png link=\"no\" alt=\"Black screen ('SYSLINUX') with Tails\n" +"logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"note\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If your Boot Loader looks different, refer to our instructions below on\n" +"adding a boot option [[using GRUB|boot_options#grub]].</p>\n" +msgstr "" + +#. type: Plain text +msgid "To add a boot option in *SYSLINUX*:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<!-- Keep in sync with install/inc/steps/restart_first_time.inline.mdwn. -->\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **Tab** when *SYSLINUX* appears." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" A list of boot options\n" +" appears at the bottom of the screen.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" [[!img syslinux-with-options.png link=\"no\" alt=\"SYSLINUX with\n" +" a list of options starting with '/live/vmlinuz' at the bottom\"]]\n" +msgstr "" + +#. type: Bullet: '2. ' +msgid "" +"Press <span class=\"keycap\">Space</span> and type the boot option that you " +"want to add." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"If you want to add more than one boot option, type them one after the other " +"and separate them with a <span class=\"keycap\">Space</span>." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Press <span class=\"keycap\">Enter</span> to start Tails." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"grub\"></a>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Using *GRUB*\n" +msgstr "" + +#. type: Plain text +msgid "This is what *GRUB* looks like:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU GRUB') with Tails\n" +"logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If your Boot Loader looks different, refer to our instructions on\n" +"adding a boot option [[using SYSLINUX|boot_options#syslinux]] above.</p>\n" +msgstr "" + +#. type: Plain text +msgid "To add a boot option in *GRUB*:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **e** when GRUB appears." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " A new screen appears with more options.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" [[!img grub-with-options.png link=\"no\" alt=\"GRUB with a list of\n" +" options starting with 'setparams Tails'\"]]\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Navigate with the arrows of the keyboard to the end of the line that starts " +"with <span class=\"code\">linux</span>. The line is most likely wrapped and " +"displayed on several lines on the screen but it is a single configuration " +"line." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Type the boot option that you want to add." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **Ctrl+X** to start Tails." +msgstr "" diff --git a/wiki/src/doc/advanced_topics/boot_options.it.po b/wiki/src/doc/advanced_topics/boot_options.it.po new file mode 100644 index 0000000000000000000000000000000000000000..08f02717c5e6a8061fae24f23160d2212af95cae --- /dev/null +++ b/wiki/src/doc/advanced_topics/boot_options.it.po @@ -0,0 +1,205 @@ +# 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: 2020-04-07 17:04+0200\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 title=\"Adding boot options using the Boot Loader\"]]\n" +msgstr "" + +#. type: Plain text +msgid "The Boot Loader is the first screen that appears when starting Tails." +msgstr "" + +#. type: Plain text +msgid "" +"You can use the Boot Loader to add *boot options*. Boot options are special " +"parameters that can be useful to troubleshoot or work around hardware " +"support problems. For example, our [[list of known issues with graphics " +"cards|support/known_issues/graphics]] document boot options for different " +"graphics cards." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"tip\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>The <span class=\"guilabel\">Troubleshooting Mode</span> of the Boot Loader disables some features of the\n" +"Linux kernel and might work better on some computers. You can try this option if you\n" +"think you are experiencing errors related to hardware compatibility while\n" +"starting Tails.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Depending on the computer, the Boot Loader might be either *GRUB* or " +"*SYSLINUX*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"syslinux\"></a>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Using *SYSLINUX*\n" +msgstr "" + +#. type: Plain text +msgid "This is what *SYSLINUX* looks like:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img install/inc/screenshots/syslinux.png link=\"no\" alt=\"Black screen ('SYSLINUX') with Tails\n" +"logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"note\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If your Boot Loader looks different, refer to our instructions below on\n" +"adding a boot option [[using GRUB|boot_options#grub]].</p>\n" +msgstr "" + +#. type: Plain text +msgid "To add a boot option in *SYSLINUX*:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<!-- Keep in sync with install/inc/steps/restart_first_time.inline.mdwn. -->\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **Tab** when *SYSLINUX* appears." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" A list of boot options\n" +" appears at the bottom of the screen.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" [[!img syslinux-with-options.png link=\"no\" alt=\"SYSLINUX with\n" +" a list of options starting with '/live/vmlinuz' at the bottom\"]]\n" +msgstr "" + +#. type: Bullet: '2. ' +msgid "" +"Press <span class=\"keycap\">Space</span> and type the boot option that you " +"want to add." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"If you want to add more than one boot option, type them one after the other " +"and separate them with a <span class=\"keycap\">Space</span>." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Press <span class=\"keycap\">Enter</span> to start Tails." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"grub\"></a>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Using *GRUB*\n" +msgstr "" + +#. type: Plain text +msgid "This is what *GRUB* looks like:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU GRUB') with Tails\n" +"logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If your Boot Loader looks different, refer to our instructions on\n" +"adding a boot option [[using SYSLINUX|boot_options#syslinux]] above.</p>\n" +msgstr "" + +#. type: Plain text +msgid "To add a boot option in *GRUB*:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **e** when GRUB appears." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " A new screen appears with more options.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" [[!img grub-with-options.png link=\"no\" alt=\"GRUB with a list of\n" +" options starting with 'setparams Tails'\"]]\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Navigate with the arrows of the keyboard to the end of the line that starts " +"with <span class=\"code\">linux</span>. The line is most likely wrapped and " +"displayed on several lines on the screen but it is a single configuration " +"line." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Type the boot option that you want to add." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **Ctrl+X** to start Tails." +msgstr "" diff --git a/wiki/src/doc/advanced_topics/boot_options.mdwn b/wiki/src/doc/advanced_topics/boot_options.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..4c7863b0caa979051e84f31dd021930dec084ba0 --- /dev/null +++ b/wiki/src/doc/advanced_topics/boot_options.mdwn @@ -0,0 +1,101 @@ +[[!meta title="Adding boot options using the Boot Loader"]] + +The Boot Loader is the first screen that appears +when starting Tails. + +You can use the Boot Loader to add *boot options*. Boot options are +special parameters that can be useful to troubleshoot or work around +hardware support problems. For example, our [[list of known issues with +graphics cards|support/known_issues/graphics]] document boot options for +different graphics cards. + +<div class="tip"> + +<p>The <span class="guilabel">Troubleshooting Mode</span> of the Boot Loader disables some features of the +Linux kernel and might work better on some computers. You can try this option if you +think you are experiencing errors related to hardware compatibility while +starting Tails.</p> + +</div> + +[[!toc levels=1]] + +Depending on the computer, the Boot Loader might be either *GRUB* or +*SYSLINUX*. + +<a id="syslinux"></a> + +Using *SYSLINUX* +================ + +This is what *SYSLINUX* looks like: + +[[!img install/inc/screenshots/syslinux.png link="no" alt="Black screen ('SYSLINUX') with Tails +logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'."]] + +<div class="note"> + +<p>If your Boot Loader looks different, refer to our instructions below on +adding a boot option [[using GRUB|boot_options#grub]].</p> + +</div> + +To add a boot option in *SYSLINUX*: + +<!-- Keep in sync with install/inc/steps/restart_first_time.inline.mdwn. --> + +1. Press **Tab** when *SYSLINUX* appears. + + A list of boot options + appears at the bottom of the screen. + + [[!img syslinux-with-options.png link="no" alt="SYSLINUX with + a list of options starting with '/live/vmlinuz' at the bottom"]] + +2. Press <span class="keycap">Space</span> and type the boot option that you + want to add. + +3. If you want to add more than one boot option, type them one after the + other and separate them with a <span class="keycap">Space</span>. + +4. Press <span class="keycap">Enter</span> to start Tails. + +<a id="grub"></a> + +Using *GRUB* +============ + +This is what *GRUB* looks like: + +[[!img install/inc/screenshots/grub.png link="no" alt="Black screen ('GNU GRUB') with Tails +logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'."]] + +<div class="note"> + +<p>If your Boot Loader looks different, refer to our instructions on +adding a boot option [[using SYSLINUX|boot_options#syslinux]] above.</p> + +</div> + +To add a boot option in *GRUB*: + +<!-- Keep in sync with install/inc/steps/restart_first_time.inline.mdwn. --> + +1. Press **e** when GRUB appears. + + A new screen appears with more options. + + [[!img grub-with-options.png link="no" alt="GRUB with a list of + options starting with 'setparams Tails'"]] + +1. Navigate with the arrows of the keyboard to the end of the line that + starts with <span class="code">linux</span>. The line is most likely + wrapped and displayed on several lines on the screen but it is a + single configuration line. + +1. Type the boot option that you want to add. + +1. If you want to add more than one boot option, type them one after the + other and separate them with a <span class="keycap">Space</span>. + +1. Press **Ctrl+X** to start Tails. diff --git a/wiki/src/doc/advanced_topics/boot_options.pt.po b/wiki/src/doc/advanced_topics/boot_options.pt.po new file mode 100644 index 0000000000000000000000000000000000000000..08f02717c5e6a8061fae24f23160d2212af95cae --- /dev/null +++ b/wiki/src/doc/advanced_topics/boot_options.pt.po @@ -0,0 +1,205 @@ +# 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: 2020-04-07 17:04+0200\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 title=\"Adding boot options using the Boot Loader\"]]\n" +msgstr "" + +#. type: Plain text +msgid "The Boot Loader is the first screen that appears when starting Tails." +msgstr "" + +#. type: Plain text +msgid "" +"You can use the Boot Loader to add *boot options*. Boot options are special " +"parameters that can be useful to troubleshoot or work around hardware " +"support problems. For example, our [[list of known issues with graphics " +"cards|support/known_issues/graphics]] document boot options for different " +"graphics cards." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"tip\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>The <span class=\"guilabel\">Troubleshooting Mode</span> of the Boot Loader disables some features of the\n" +"Linux kernel and might work better on some computers. You can try this option if you\n" +"think you are experiencing errors related to hardware compatibility while\n" +"starting Tails.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Depending on the computer, the Boot Loader might be either *GRUB* or " +"*SYSLINUX*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"syslinux\"></a>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Using *SYSLINUX*\n" +msgstr "" + +#. type: Plain text +msgid "This is what *SYSLINUX* looks like:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img install/inc/screenshots/syslinux.png link=\"no\" alt=\"Black screen ('SYSLINUX') with Tails\n" +"logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"note\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If your Boot Loader looks different, refer to our instructions below on\n" +"adding a boot option [[using GRUB|boot_options#grub]].</p>\n" +msgstr "" + +#. type: Plain text +msgid "To add a boot option in *SYSLINUX*:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<!-- Keep in sync with install/inc/steps/restart_first_time.inline.mdwn. -->\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **Tab** when *SYSLINUX* appears." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" A list of boot options\n" +" appears at the bottom of the screen.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" [[!img syslinux-with-options.png link=\"no\" alt=\"SYSLINUX with\n" +" a list of options starting with '/live/vmlinuz' at the bottom\"]]\n" +msgstr "" + +#. type: Bullet: '2. ' +msgid "" +"Press <span class=\"keycap\">Space</span> and type the boot option that you " +"want to add." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"If you want to add more than one boot option, type them one after the other " +"and separate them with a <span class=\"keycap\">Space</span>." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Press <span class=\"keycap\">Enter</span> to start Tails." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"grub\"></a>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "Using *GRUB*\n" +msgstr "" + +#. type: Plain text +msgid "This is what *GRUB* looks like:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU GRUB') with Tails\n" +"logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If your Boot Loader looks different, refer to our instructions on\n" +"adding a boot option [[using SYSLINUX|boot_options#syslinux]] above.</p>\n" +msgstr "" + +#. type: Plain text +msgid "To add a boot option in *GRUB*:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **e** when GRUB appears." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " A new screen appears with more options.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" [[!img grub-with-options.png link=\"no\" alt=\"GRUB with a list of\n" +" options starting with 'setparams Tails'\"]]\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Navigate with the arrows of the keyboard to the end of the line that starts " +"with <span class=\"code\">linux</span>. The line is most likely wrapped and " +"displayed on several lines on the screen but it is a single configuration " +"line." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Type the boot option that you want to add." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Press **Ctrl+X** to start Tails." +msgstr "" diff --git a/wiki/src/doc/advanced_topics/boot_options/grub-with-options.png b/wiki/src/doc/advanced_topics/boot_options/grub-with-options.png new file mode 100644 index 0000000000000000000000000000000000000000..9ffc3f34065fce0d211d994d52f6df5c26c2f3e4 Binary files /dev/null and b/wiki/src/doc/advanced_topics/boot_options/grub-with-options.png differ diff --git a/wiki/src/doc/advanced_topics/boot_options/syslinux-with-options.png b/wiki/src/doc/advanced_topics/boot_options/syslinux-with-options.png new file mode 100644 index 0000000000000000000000000000000000000000..344b1a89624367ee1c4a6ec750b659f128e1b9d5 Binary files /dev/null and b/wiki/src/doc/advanced_topics/boot_options/syslinux-with-options.png differ diff --git a/wiki/src/doc/advanced_topics/persistence/change_passphrase.ar.po b/wiki/src/doc/advanced_topics/persistence/change_passphrase.ar.po index b25c49e51cc98746a1cb7f6610f4348aa7194a4b..436f61318fef05ffa2b43d64c6885f69c921f8f2 100644 --- a/wiki/src/doc/advanced_topics/persistence/change_passphrase.ar.po +++ b/wiki/src/doc/advanced_topics/persistence/change_passphrase.ar.po @@ -24,7 +24,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" "Start Tails and [[set up an administration password |doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/change_passphrase.ca.po b/wiki/src/doc/advanced_topics/persistence/change_passphrase.ca.po index b25c49e51cc98746a1cb7f6610f4348aa7194a4b..436f61318fef05ffa2b43d64c6885f69c921f8f2 100644 --- a/wiki/src/doc/advanced_topics/persistence/change_passphrase.ca.po +++ b/wiki/src/doc/advanced_topics/persistence/change_passphrase.ca.po @@ -24,7 +24,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" "Start Tails and [[set up an administration password |doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/change_passphrase.de.po b/wiki/src/doc/advanced_topics/persistence/change_passphrase.de.po index 4aa094c82dbaf9e951874186701f0d3572af7e70..582b244ba6b54fc2baecaa46af3c7caf27b6e8af 100644 --- a/wiki/src/doc/advanced_topics/persistence/change_passphrase.de.po +++ b/wiki/src/doc/advanced_topics/persistence/change_passphrase.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-06-10 16:12+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-03-08 15:39+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" @@ -26,17 +26,16 @@ msgstr "[[!meta title=\"Die Passphrase des beständigen Speicherbereichs ändern #. type: Bullet: ' 1. ' msgid "" "Start Tails and [[set up an administration password |doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" "Starten Sie Tails und [[stellen Sie ein Administrationspasswort ein|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." #. type: Plain text -#, no-wrap -msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" -msgstr "" -" Aktivieren Sie den beständigen Speicherbereich im <span class=\"" -"application\">Tails Greeter</span> nicht.\n" +#, fuzzy, no-wrap +#| msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" +msgid " Do not enable the persistent volume in the Welcome Screen.\n" +msgstr " Aktivieren Sie den beständigen Speicherbereich im <span class=\"application\">Tails Greeter</span> nicht.\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/advanced_topics/persistence/change_passphrase.es.po b/wiki/src/doc/advanced_topics/persistence/change_passphrase.es.po index da474e46a0ec90df3e6b9d313fbfdd1c797920e1..5af1f78b63a705ec989108c7d5b8072da5d7e4cb 100644 --- a/wiki/src/doc/advanced_topics/persistence/change_passphrase.es.po +++ b/wiki/src/doc/advanced_topics/persistence/change_passphrase.es.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2018-01-17 16:52+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2018-02-08 19:22+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" -"Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/first_" -"steps_persiatence_passphrase/es/>\n" +"Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" +"first_steps_persiatence_passphrase/es/>\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,16 @@ msgstr "[[!meta title=\"Cambia la contraseña del volumen persistente\"]]\n" #. type: Bullet: ' 1. ' msgid "" "Start Tails and [[set up an administration password |doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" -"Arranca Tails [[configurando una contraseña de " -"administrador|doc/first_steps/startup_options/administration_password]]." +"Arranca Tails [[configurando una contraseña de administrador|doc/first_steps/" +"welcome_screen/administration_password]]." #. type: Plain text -#, no-wrap -msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" -msgstr "" -" No configures el volumen persistente en el <span class=\"application\">" -"Tails Greeter</span>.\n" +#, fuzzy, no-wrap +#| msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" +msgid " Do not enable the persistent volume in the Welcome Screen.\n" +msgstr " No configures el volumen persistente en el <span class=\"application\">Tails Greeter</span>.\n" #. type: Plain text #, no-wrap @@ -60,12 +59,9 @@ msgid "" " detailed information about it is displayed in the right pane: its partitions,\n" " its brand, its size, etc.\n" msgstr "" -" <span class=\"application\">Discos</span> lista todos los dispositivos " -"de almacenamiento\n" -" en el panel izquierdo de la ventana. Al seleccionar uno de estos " -"dispositivos\n" -" se despliega información más detallada en el panel de la derecha: sus " -"particiones,\n" +" <span class=\"application\">Discos</span> lista todos los dispositivos de almacenamiento\n" +" en el panel izquierdo de la ventana. Al seleccionar uno de estos dispositivos\n" +" se despliega información más detallada en el panel de la derecha: sus particiones,\n" " su marca, su capacidad, etc.\n" #. type: Bullet: ' 1. ' diff --git a/wiki/src/doc/advanced_topics/persistence/change_passphrase.fa.po b/wiki/src/doc/advanced_topics/persistence/change_passphrase.fa.po index d2280bb801a7585ca8925f5034ddad20f43b0083..2881a151f1ec8722bde7931f6d4441953aaafa34 100644 --- a/wiki/src/doc/advanced_topics/persistence/change_passphrase.fa.po +++ b/wiki/src/doc/advanced_topics/persistence/change_passphrase.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-05-16 14:03+0300\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2015-10-10 13:04+0000\n" "Last-Translator: sprint5 <translation5@451f.org>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" @@ -26,12 +26,12 @@ msgstr "[[!meta title=\"تغییر گذرواژهٔ درایو مانا\"]]\n" #. type: Bullet: ' 1. ' msgid "" "Start Tails and [[set up an administration password |doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Plain text #, fuzzy, no-wrap -msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" +msgid " Do not enable the persistent volume in the Welcome Screen.\n" msgstr "در سمت چپ روی پارتیشن درایو مانا با عنوان <span class=\"guilabel\">Encrypted</span> کلیک و آن را انتخاب کنید." #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/change_passphrase.fr.po b/wiki/src/doc/advanced_topics/persistence/change_passphrase.fr.po index cccca29eb1f58f7fc784d437ed8acf463c6a1443..9e673118c2a118ab5a482f49e5482d467cc61d09 100644 --- a/wiki/src/doc/advanced_topics/persistence/change_passphrase.fr.po +++ b/wiki/src/doc/advanced_topics/persistence/change_passphrase.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2017-05-16 14:03+0300\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-07-27 17:35+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -26,14 +26,15 @@ msgstr "[[!meta title=\"Changer la phrase de passe du volume persistant\"]]\n" #. type: Bullet: ' 1. ' msgid "" "Start Tails and [[set up an administration password |doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" "Démarrez Tails et [[définissez un mot de passe d'administration|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." #. type: Plain text -#, no-wrap -msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" +#, fuzzy, no-wrap +#| msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" +msgid " Do not enable the persistent volume in the Welcome Screen.\n" msgstr " N'activez pas le volume persistant dans le <span class=\"application\">Tails Greeter</span>.\n" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/change_passphrase.id.po b/wiki/src/doc/advanced_topics/persistence/change_passphrase.id.po index 29113c4504d8e718c90b3d715dc293b193871583..5e20be135343f580bd54355afb3eb9edc88c6e22 100644 --- a/wiki/src/doc/advanced_topics/persistence/change_passphrase.id.po +++ b/wiki/src/doc/advanced_topics/persistence/change_passphrase.id.po @@ -24,7 +24,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" "Start Tails and [[set up an administration password |doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/change_passphrase.it.po b/wiki/src/doc/advanced_topics/persistence/change_passphrase.it.po index 90bde247c0be2f2c306f0cdb7ad93c8e5275fc0b..2153cd4955d2b2a98cc4fb06f5901d27b153c4b7 100644 --- a/wiki/src/doc/advanced_topics/persistence/change_passphrase.it.po +++ b/wiki/src/doc/advanced_topics/persistence/change_passphrase.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-05-16 14:03+0300\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -24,12 +24,12 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" "Start Tails and [[set up an administration password |doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Plain text #, no-wrap -msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" +msgid " Do not enable the persistent volume in the Welcome Screen.\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/change_passphrase.mdwn b/wiki/src/doc/advanced_topics/persistence/change_passphrase.mdwn index 96f41e7611d09050b6301143905dbcb562af6ad7..2ed22bc27be89d4f3da5b687913e49ee3d2ba82e 100644 --- a/wiki/src/doc/advanced_topics/persistence/change_passphrase.mdwn +++ b/wiki/src/doc/advanced_topics/persistence/change_passphrase.mdwn @@ -1,9 +1,9 @@ [[!meta title="Change the passphrase of the persistent volume"]] 1. Start Tails and [[set up an administration password - |doc/first_steps/startup_options/administration_password]]. + |doc/first_steps/welcome_screen/administration_password]]. - Do not enable the persistent volume in <span class="application">Tails Greeter</span>. + Do not enable the persistent volume in the Welcome Screen. 1. Open <span class="application">Disks</span> from the menu <span class="menuchoice"> diff --git a/wiki/src/doc/advanced_topics/persistence/change_passphrase.pl.po b/wiki/src/doc/advanced_topics/persistence/change_passphrase.pl.po index b25c49e51cc98746a1cb7f6610f4348aa7194a4b..436f61318fef05ffa2b43d64c6885f69c921f8f2 100644 --- a/wiki/src/doc/advanced_topics/persistence/change_passphrase.pl.po +++ b/wiki/src/doc/advanced_topics/persistence/change_passphrase.pl.po @@ -24,7 +24,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" "Start Tails and [[set up an administration password |doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/change_passphrase.pt.po b/wiki/src/doc/advanced_topics/persistence/change_passphrase.pt.po index 2acc8b0355cc33f06c28fd194e81f78a6bab1cd4..58441eec2fd471cb8ee557d542d7609cde86edec 100644 --- a/wiki/src/doc/advanced_topics/persistence/change_passphrase.pt.po +++ b/wiki/src/doc/advanced_topics/persistence/change_passphrase.pt.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: 2017-05-16 14:03+0300\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-04-05 23:29+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -26,15 +26,14 @@ msgstr "[[!meta title=\"Altere a senha do volume persistente\"]]\n" #. type: Bullet: ' 1. ' msgid "" "Start Tails and [[set up an administration password |doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Plain text -#, no-wrap -msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" -msgstr "" -" Não ative o volume persistente no <span class=\"application\">Tails " -"Greeter</span>.\n" +#, fuzzy, no-wrap +#| msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" +msgid " Do not enable the persistent volume in the Welcome Screen.\n" +msgstr " Não ative o volume persistente no <span class=\"application\">Tails Greeter</span>.\n" #. type: Plain text #, fuzzy, no-wrap diff --git a/wiki/src/doc/advanced_topics/persistence/change_passphrase.ru.po b/wiki/src/doc/advanced_topics/persistence/change_passphrase.ru.po index b25c49e51cc98746a1cb7f6610f4348aa7194a4b..436f61318fef05ffa2b43d64c6885f69c921f8f2 100644 --- a/wiki/src/doc/advanced_topics/persistence/change_passphrase.ru.po +++ b/wiki/src/doc/advanced_topics/persistence/change_passphrase.ru.po @@ -24,7 +24,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" "Start Tails and [[set up an administration password |doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/change_passphrase.sr_Latn.po b/wiki/src/doc/advanced_topics/persistence/change_passphrase.sr_Latn.po index f1ea602675a2c9768aaa645f2e83e009474576fd..df1eb32ff5e32e3519217ab350ef9462bf26fc89 100644 --- a/wiki/src/doc/advanced_topics/persistence/change_passphrase.sr_Latn.po +++ b/wiki/src/doc/advanced_topics/persistence/change_passphrase.sr_Latn.po @@ -24,7 +24,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" "Start Tails and [[set up an administration password " -"|doc/first_steps/startup_options/administration_password]]." +"|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/change_passphrase.tr.po b/wiki/src/doc/advanced_topics/persistence/change_passphrase.tr.po index b25c49e51cc98746a1cb7f6610f4348aa7194a4b..436f61318fef05ffa2b43d64c6885f69c921f8f2 100644 --- a/wiki/src/doc/advanced_topics/persistence/change_passphrase.tr.po +++ b/wiki/src/doc/advanced_topics/persistence/change_passphrase.tr.po @@ -24,7 +24,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" "Start Tails and [[set up an administration password |doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/change_passphrase.zh.po b/wiki/src/doc/advanced_topics/persistence/change_passphrase.zh.po index b25c49e51cc98746a1cb7f6610f4348aa7194a4b..436f61318fef05ffa2b43d64c6885f69c921f8f2 100644 --- a/wiki/src/doc/advanced_topics/persistence/change_passphrase.zh.po +++ b/wiki/src/doc/advanced_topics/persistence/change_passphrase.zh.po @@ -24,7 +24,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" "Start Tails and [[set up an administration password |doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/change_passphrase.zh_TW.po b/wiki/src/doc/advanced_topics/persistence/change_passphrase.zh_TW.po index 8effa62ed6bfa7da5fbac0c0e0ce335326b11273..82b63c6e03efcf9a46d8fda03a1dc0d0bdf15f44 100644 --- a/wiki/src/doc/advanced_topics/persistence/change_passphrase.zh_TW.po +++ b/wiki/src/doc/advanced_topics/persistence/change_passphrase.zh_TW.po @@ -23,7 +23,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" "Start Tails and [[set up an administration password " -"|doc/first_steps/startup_options/administration_password]]." +"|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/check_file_system.ar.po b/wiki/src/doc/advanced_topics/persistence/check_file_system.ar.po index 151d078544fa4e9a833839fb30be5f4895f864b4..67dd121e0c7eca9d1fdafa3577e6586a78eda197 100644 --- a/wiki/src/doc/advanced_topics/persistence/check_file_system.ar.po +++ b/wiki/src/doc/advanced_topics/persistence/check_file_system.ar.po @@ -35,7 +35,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails, with persistence disabled, and [[set up an administration " -"password|startup_options/administration_password]]." +"password|welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/check_file_system.ca.po b/wiki/src/doc/advanced_topics/persistence/check_file_system.ca.po index b3b0c95ff0a95f94ce767599786c703eaf32bddc..f103eaaaaafedf8a2e79cd4cf60cb8ce3c849acb 100644 --- a/wiki/src/doc/advanced_topics/persistence/check_file_system.ca.po +++ b/wiki/src/doc/advanced_topics/persistence/check_file_system.ca.po @@ -35,7 +35,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails, with persistence disabled, and [[set up an administration " -"password|startup_options/administration_password]]." +"password|welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/check_file_system.de.po b/wiki/src/doc/advanced_topics/persistence/check_file_system.de.po index 594305f073cbb19239021e95a438fc494095972d..96d26f0a66f9b5b4fcea598fda917eab0f4c899c 100644 --- a/wiki/src/doc/advanced_topics/persistence/check_file_system.de.po +++ b/wiki/src/doc/advanced_topics/persistence/check_file_system.de.po @@ -37,10 +37,10 @@ msgstr "Entsperren Sie den beständigen Speicherbereich\n" #. type: Bullet: '1. ' msgid "" "Start Tails, with persistence disabled, and [[set up an administration " -"password|startup_options/administration_password]]." +"password|welcome_screen/administration_password]]." msgstr "" "Starten Sie Tails mit deaktiviertem beständigen Speicherbereich und " -"[[stellen Sie ein Administrationspasswort ein|startup_options/" +"[[stellen Sie ein Administrationspasswort ein|welcome_screen/" "administration_password]]." #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/check_file_system.es.po b/wiki/src/doc/advanced_topics/persistence/check_file_system.es.po index 07c5aad2a8bf01850ac9053aa7219d10a96222e8..c90c34655db9a498235f5cb4397eba050092be6b 100644 --- a/wiki/src/doc/advanced_topics/persistence/check_file_system.es.po +++ b/wiki/src/doc/advanced_topics/persistence/check_file_system.es.po @@ -40,10 +40,10 @@ msgstr "Desbloquea el volumen persistente\n" #. type: Bullet: '1. ' msgid "" "Start Tails, with persistence disabled, and [[set up an administration " -"password|startup_options/administration_password]]." +"password|welcome_screen/administration_password]]." msgstr "" "Arranca Tails sin abrir la persistencia, y [[añade una contraseña de " -"administración|startup_options/administration_password]]." +"administración|welcome_screen/administration_password]]." #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/advanced_topics/persistence/check_file_system.fa.po b/wiki/src/doc/advanced_topics/persistence/check_file_system.fa.po index 44c116b6200d24804d195844d9970d15e7a12669..9c60f61e96658c937564c1fb024aefaa51914625 100644 --- a/wiki/src/doc/advanced_topics/persistence/check_file_system.fa.po +++ b/wiki/src/doc/advanced_topics/persistence/check_file_system.fa.po @@ -39,10 +39,10 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails, with persistence disabled, and [[set up an administration " -"password|startup_options/administration_password]]." +"password|welcome_screen/administration_password]]." msgstr "" "تیلز را در حالت مانای غیرفعال راهاندازی کرده و [[یک گذرواژهٔ مدیریتی ایجاد " -"کنید|startup_options/administration_password]]." +"کنید|welcome_screen/administration_password]]." #. type: Plain text #, fuzzy, no-wrap diff --git a/wiki/src/doc/advanced_topics/persistence/check_file_system.fr.po b/wiki/src/doc/advanced_topics/persistence/check_file_system.fr.po index 25d275a13f509c0a37d64785dd11ea42c3a40f59..1aa3983c12eb69077805cdd357fd4ca812a190fb 100644 --- a/wiki/src/doc/advanced_topics/persistence/check_file_system.fr.po +++ b/wiki/src/doc/advanced_topics/persistence/check_file_system.fr.po @@ -37,10 +37,10 @@ msgstr "Déverrouiller le volume persistant\n" #. type: Bullet: '1. ' msgid "" "Start Tails, with persistence disabled, and [[set up an administration " -"password|startup_options/administration_password]]." +"password|welcome_screen/administration_password]]." msgstr "" "Démarrez Tails sans activer la persistance et [[définissez un mot de passe " -"d'administration|startup_options/administration_password]]." +"d'administration|welcome_screen/administration_password]]." #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/advanced_topics/persistence/check_file_system.id.po b/wiki/src/doc/advanced_topics/persistence/check_file_system.id.po index a529a354ce8a69480981538f5c824a246cc5e5c9..6d9738e920efb8f5f25dd4d13eb134942fdad50c 100644 --- a/wiki/src/doc/advanced_topics/persistence/check_file_system.id.po +++ b/wiki/src/doc/advanced_topics/persistence/check_file_system.id.po @@ -35,7 +35,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails, with persistence disabled, and [[set up an administration " -"password|startup_options/administration_password]]." +"password|welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/check_file_system.it.po b/wiki/src/doc/advanced_topics/persistence/check_file_system.it.po index f088f3fdf31735ee7af8eb7b9e485f1b65a5ef53..73fb42769c2a7b61e1a40dbc02fce308dc528270 100644 --- a/wiki/src/doc/advanced_topics/persistence/check_file_system.it.po +++ b/wiki/src/doc/advanced_topics/persistence/check_file_system.it.po @@ -35,7 +35,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails, with persistence disabled, and [[set up an administration " -"password|startup_options/administration_password]]." +"password|welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/check_file_system.mdwn b/wiki/src/doc/advanced_topics/persistence/check_file_system.mdwn index 8a18e7a209921b49637feae0d14d6c15e71899dc..ca1ffed00dbbcf98202e316b2ca0b44095bbdc94 100644 --- a/wiki/src/doc/advanced_topics/persistence/check_file_system.mdwn +++ b/wiki/src/doc/advanced_topics/persistence/check_file_system.mdwn @@ -7,7 +7,7 @@ Unlock the persistent volume ============================ 1. Start Tails, with persistence disabled, and [[set up an administration - password|startup_options/administration_password]]. + password|welcome_screen/administration_password]]. 1. Choose <span class="menuchoice"> diff --git a/wiki/src/doc/advanced_topics/persistence/check_file_system.pl.po b/wiki/src/doc/advanced_topics/persistence/check_file_system.pl.po index b3b0c95ff0a95f94ce767599786c703eaf32bddc..f103eaaaaafedf8a2e79cd4cf60cb8ce3c849acb 100644 --- a/wiki/src/doc/advanced_topics/persistence/check_file_system.pl.po +++ b/wiki/src/doc/advanced_topics/persistence/check_file_system.pl.po @@ -35,7 +35,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails, with persistence disabled, and [[set up an administration " -"password|startup_options/administration_password]]." +"password|welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/check_file_system.pt.po b/wiki/src/doc/advanced_topics/persistence/check_file_system.pt.po index 4a8a642b7e3dc632635757744db7b6073509fda1..f7873471ee366221cc930d1aa47211a3ab47c687 100644 --- a/wiki/src/doc/advanced_topics/persistence/check_file_system.pt.po +++ b/wiki/src/doc/advanced_topics/persistence/check_file_system.pt.po @@ -34,7 +34,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails, with persistence disabled, and [[set up an administration " -"password|startup_options/administration_password]]." +"password|welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/check_file_system.ru.po b/wiki/src/doc/advanced_topics/persistence/check_file_system.ru.po index 151d078544fa4e9a833839fb30be5f4895f864b4..67dd121e0c7eca9d1fdafa3577e6586a78eda197 100644 --- a/wiki/src/doc/advanced_topics/persistence/check_file_system.ru.po +++ b/wiki/src/doc/advanced_topics/persistence/check_file_system.ru.po @@ -35,7 +35,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails, with persistence disabled, and [[set up an administration " -"password|startup_options/administration_password]]." +"password|welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/check_file_system.sr_Latn.po b/wiki/src/doc/advanced_topics/persistence/check_file_system.sr_Latn.po index 270fd2b7a1b9b06f38fe7a20fbe7e83d610f739c..70a629a612e2bf8e3b4325b1b3b23a5cf3681eac 100644 --- a/wiki/src/doc/advanced_topics/persistence/check_file_system.sr_Latn.po +++ b/wiki/src/doc/advanced_topics/persistence/check_file_system.sr_Latn.po @@ -35,7 +35,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails, with persistence disabled, and [[set up an administration " -"password|startup_options/administration_password]]." +"password|welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/check_file_system.tr.po b/wiki/src/doc/advanced_topics/persistence/check_file_system.tr.po index b3b0c95ff0a95f94ce767599786c703eaf32bddc..f103eaaaaafedf8a2e79cd4cf60cb8ce3c849acb 100644 --- a/wiki/src/doc/advanced_topics/persistence/check_file_system.tr.po +++ b/wiki/src/doc/advanced_topics/persistence/check_file_system.tr.po @@ -35,7 +35,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails, with persistence disabled, and [[set up an administration " -"password|startup_options/administration_password]]." +"password|welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/check_file_system.zh.po b/wiki/src/doc/advanced_topics/persistence/check_file_system.zh.po index 151d078544fa4e9a833839fb30be5f4895f864b4..67dd121e0c7eca9d1fdafa3577e6586a78eda197 100644 --- a/wiki/src/doc/advanced_topics/persistence/check_file_system.zh.po +++ b/wiki/src/doc/advanced_topics/persistence/check_file_system.zh.po @@ -35,7 +35,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails, with persistence disabled, and [[set up an administration " -"password|startup_options/administration_password]]." +"password|welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/persistence/check_file_system.zh_TW.po b/wiki/src/doc/advanced_topics/persistence/check_file_system.zh_TW.po index 9cca10c650482db3dea81df02757813573d8cc42..e36a70c0b4c7687fcb59e430c51c775e2d8b2887 100644 --- a/wiki/src/doc/advanced_topics/persistence/check_file_system.zh_TW.po +++ b/wiki/src/doc/advanced_topics/persistence/check_file_system.zh_TW.po @@ -34,7 +34,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails, with persistence disabled, and [[set up an administration " -"password|startup_options/administration_password]]." +"password|welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/virtualization.ar.po b/wiki/src/doc/advanced_topics/virtualization.ar.po index a7eb80946168d31e601ffd3f321d45c8669f5368..f591bbd9d4efa85b726715f41d940975ec3ccec4 100644 --- a/wiki/src/doc/advanced_topics/virtualization.ar.po +++ b/wiki/src/doc/advanced_topics/virtualization.ar.po @@ -167,7 +167,7 @@ msgid "" "The Tails virtual machine does not modify the behaviour of the host " "operating system and the network traffic of the host is not anonymized. The " "MAC address of the computer is not modified by the [[MAC address spoofing|" -"first_steps/startup_options/mac_spoofing]] feature of Tails when run in a " +"first_steps/welcome_screen/mac_spoofing]] feature of Tails when run in a " "virtual machine." msgstr "" diff --git a/wiki/src/doc/advanced_topics/virtualization.ca.po b/wiki/src/doc/advanced_topics/virtualization.ca.po index 9fdf9e45bbd07ba896c0d4bf0a45da90caa4f899..3b23fe6531bc5c0aecdb8116d4c12c61a6fd2465 100644 --- a/wiki/src/doc/advanced_topics/virtualization.ca.po +++ b/wiki/src/doc/advanced_topics/virtualization.ca.po @@ -165,7 +165,7 @@ msgid "" "The Tails virtual machine does not modify the behaviour of the host " "operating system and the network traffic of the host is not anonymized. The " "MAC address of the computer is not modified by the [[MAC address spoofing|" -"first_steps/startup_options/mac_spoofing]] feature of Tails when run in a " +"first_steps/welcome_screen/mac_spoofing]] feature of Tails when run in a " "virtual machine." msgstr "" diff --git a/wiki/src/doc/advanced_topics/virtualization.de.po b/wiki/src/doc/advanced_topics/virtualization.de.po index b0561f8922f5b2354415597592898b8f72f9c8a2..0b24d4300718c94ff99ceffb66bbf354b82d6527 100644 --- a/wiki/src/doc/advanced_topics/virtualization.de.po +++ b/wiki/src/doc/advanced_topics/virtualization.de.po @@ -214,13 +214,13 @@ msgid "" "The Tails virtual machine does not modify the behaviour of the host " "operating system and the network traffic of the host is not anonymized. The " "MAC address of the computer is not modified by the [[MAC address spoofing|" -"first_steps/startup_options/mac_spoofing]] feature of Tails when run in a " +"first_steps/welcome_screen/mac_spoofing]] feature of Tails when run in a " "virtual machine." msgstr "" "Die virtuelle Maschine von Tails verändert das Verhalten des " "Hostbetriebssystems nicht und der Netzwerkverkehr des Hosts wird nicht " "anonymisiert. Die MAC-Adresse des Computers wird nicht durch die Funktion " -"zum [[Verschleiern der MAC-Adresse|first_steps/startup_options/" +"zum [[Verschleiern der MAC-Adresse|first_steps/welcome_screen/" "mac_spoofing]] geändert, wenn Tails in einer virtuellen Maschine ausgeführt " "wird." diff --git a/wiki/src/doc/advanced_topics/virtualization.es.po b/wiki/src/doc/advanced_topics/virtualization.es.po index 43ed4a10746d3051cbf97849960532a648177cb1..3bcabbc92107cd91e7ccba37275965776fe77b63 100644 --- a/wiki/src/doc/advanced_topics/virtualization.es.po +++ b/wiki/src/doc/advanced_topics/virtualization.es.po @@ -211,13 +211,13 @@ msgid "" "The Tails virtual machine does not modify the behaviour of the host " "operating system and the network traffic of the host is not anonymized. The " "MAC address of the computer is not modified by the [[MAC address spoofing|" -"first_steps/startup_options/mac_spoofing]] feature of Tails when run in a " +"first_steps/welcome_screen/mac_spoofing]] feature of Tails when run in a " "virtual machine." msgstr "" "La máquina virtual de Tails no modifica el comportamiento del sistema " "operativo anfitrión y el tráfico de red no es anonimizado. La dirección MAC " "del ordenador no se modifica con la funcionalidad de [[MAC address spoofing|" -"first_steps/startup_options/mac_spoofing]] de Tails cuando lo usas desde una " +"first_steps/welcome_screen/mac_spoofing]] de Tails cuando lo usas desde una " "máquina virtual." #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/virtualization.fa.po b/wiki/src/doc/advanced_topics/virtualization.fa.po index 43a75ee6142a1b53c00b483b7c52453aa6bd11f3..ce1d8b8f061adecdebd4215a7ad792a9fef4d9b4 100644 --- a/wiki/src/doc/advanced_topics/virtualization.fa.po +++ b/wiki/src/doc/advanced_topics/virtualization.fa.po @@ -215,11 +215,11 @@ msgid "" "The Tails virtual machine does not modify the behaviour of the host " "operating system and the network traffic of the host is not anonymized. The " "MAC address of the computer is not modified by the [[MAC address spoofing|" -"first_steps/startup_options/mac_spoofing]] feature of Tails when run in a " +"first_steps/welcome_screen/mac_spoofing]] feature of Tails when run in a " "virtual machine." msgstr "" "ماشین مجازی تیلز رفتار سیستمعامل میزبان را تغییر نمیدهد و ترافیک شبکهٔ میزبان " -"ناشناس نمیشود. ویژگی [[جا زدن آدرس مک|first_steps/startup_options/" +"ناشناس نمیشود. ویژگی [[جا زدن آدرس مک|first_steps/welcome_screen/" "mac_spoofing]] نیز\n" "هنگام راهاندازی تیلز از یک ماشین مجازی باعث عوض شدن آدرس مک رایانه نمیشود." diff --git a/wiki/src/doc/advanced_topics/virtualization.fr.po b/wiki/src/doc/advanced_topics/virtualization.fr.po index 2bffd955250ac929dc46653263fc89d83c96c9d4..58ce949c8590a1f37c9a2a06d95cd2e1391ff146 100644 --- a/wiki/src/doc/advanced_topics/virtualization.fr.po +++ b/wiki/src/doc/advanced_topics/virtualization.fr.po @@ -212,13 +212,13 @@ msgid "" "The Tails virtual machine does not modify the behaviour of the host " "operating system and the network traffic of the host is not anonymized. The " "MAC address of the computer is not modified by the [[MAC address spoofing|" -"first_steps/startup_options/mac_spoofing]] feature of Tails when run in a " +"first_steps/welcome_screen/mac_spoofing]] feature of Tails when run in a " "virtual machine." msgstr "" "La machine virtuelle Tails ne modifie pas le comportement du système " "d'exploitation hôte et le trafic réseau de l'hôte n'est pas anonymisé. " "L'adresse MAC de l'ordinateur n'est pas modifiée par la fonctionnalité " -"d'[[usurpation d'adresse MAC|first_steps/startup_options/mac_spoofing]] de " +"d'[[usurpation d'adresse MAC|first_steps/welcome_screen/mac_spoofing]] de " "Tails si celui-ci est lancé dans une machine virtuelle." #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/virtualization.id.po b/wiki/src/doc/advanced_topics/virtualization.id.po index 56cff3dba0d87ef1c0f13f41881f84fd28aa113b..281ec50af6d3325010e5c5cd4c6cf36dc514ff28 100644 --- a/wiki/src/doc/advanced_topics/virtualization.id.po +++ b/wiki/src/doc/advanced_topics/virtualization.id.po @@ -165,7 +165,7 @@ msgid "" "The Tails virtual machine does not modify the behaviour of the host " "operating system and the network traffic of the host is not anonymized. The " "MAC address of the computer is not modified by the [[MAC address spoofing|" -"first_steps/startup_options/mac_spoofing]] feature of Tails when run in a " +"first_steps/welcome_screen/mac_spoofing]] feature of Tails when run in a " "virtual machine." msgstr "" diff --git a/wiki/src/doc/advanced_topics/virtualization.it.po b/wiki/src/doc/advanced_topics/virtualization.it.po index 60dccba42b4d5c1f43590bf218bec2f713edb2b7..f453e46246c7b38ad4cc61bcc51716e5b709998f 100644 --- a/wiki/src/doc/advanced_topics/virtualization.it.po +++ b/wiki/src/doc/advanced_topics/virtualization.it.po @@ -162,7 +162,7 @@ msgid "" "The Tails virtual machine does not modify the behaviour of the host " "operating system and the network traffic of the host is not anonymized. The " "MAC address of the computer is not modified by the [[MAC address spoofing|" -"first_steps/startup_options/mac_spoofing]] feature of Tails when run in a " +"first_steps/welcome_screen/mac_spoofing]] feature of Tails when run in a " "virtual machine." msgstr "" diff --git a/wiki/src/doc/advanced_topics/virtualization.mdwn b/wiki/src/doc/advanced_topics/virtualization.mdwn index 7d7ecf3650f1b60f75033bd9620560a9adaf96d6..46dfa866daa82a7288abc3cd9c405e4cc342ec4b 100644 --- a/wiki/src/doc/advanced_topics/virtualization.mdwn +++ b/wiki/src/doc/advanced_topics/virtualization.mdwn @@ -76,7 +76,7 @@ This is why Tails warns you when it is running inside a virtual machine. The Tails virtual machine does not modify the behaviour of the host operating system and the network traffic of the host is not anonymized. The MAC address of the computer is not modified by the [[MAC address -spoofing|first_steps/startup_options/mac_spoofing]] feature of Tails +spoofing|first_steps/welcome_screen/mac_spoofing]] feature of Tails when run in a virtual machine. </div> diff --git a/wiki/src/doc/advanced_topics/virtualization.pl.po b/wiki/src/doc/advanced_topics/virtualization.pl.po index 57bcf4daee24874535118b802367d7602de95ade..69caff7dae64dc9809ad0ddee4a69d2b88bd207d 100644 --- a/wiki/src/doc/advanced_topics/virtualization.pl.po +++ b/wiki/src/doc/advanced_topics/virtualization.pl.po @@ -166,7 +166,7 @@ msgid "" "The Tails virtual machine does not modify the behaviour of the host " "operating system and the network traffic of the host is not anonymized. The " "MAC address of the computer is not modified by the [[MAC address spoofing|" -"first_steps/startup_options/mac_spoofing]] feature of Tails when run in a " +"first_steps/welcome_screen/mac_spoofing]] feature of Tails when run in a " "virtual machine." msgstr "" diff --git a/wiki/src/doc/advanced_topics/virtualization.pt.po b/wiki/src/doc/advanced_topics/virtualization.pt.po index 93cebc522e80c11336b436b9e2ea2eeefeffd6d5..f4a86f6dd1bcdde000f291e152298c73fa62ed45 100644 --- a/wiki/src/doc/advanced_topics/virtualization.pt.po +++ b/wiki/src/doc/advanced_topics/virtualization.pt.po @@ -165,7 +165,7 @@ msgid "" "The Tails virtual machine does not modify the behaviour of the host " "operating system and the network traffic of the host is not anonymized. The " "MAC address of the computer is not modified by the [[MAC address spoofing|" -"first_steps/startup_options/mac_spoofing]] feature of Tails when run in a " +"first_steps/welcome_screen/mac_spoofing]] feature of Tails when run in a " "virtual machine." msgstr "" diff --git a/wiki/src/doc/advanced_topics/virtualization.ru.po b/wiki/src/doc/advanced_topics/virtualization.ru.po index 1b62b4605fa029f2250a3d044b10abe497b7f059..a6fd875beed498aad217fd3a8d8feeb170120f36 100644 --- a/wiki/src/doc/advanced_topics/virtualization.ru.po +++ b/wiki/src/doc/advanced_topics/virtualization.ru.po @@ -166,7 +166,7 @@ msgid "" "The Tails virtual machine does not modify the behaviour of the host " "operating system and the network traffic of the host is not anonymized. The " "MAC address of the computer is not modified by the [[MAC address spoofing|" -"first_steps/startup_options/mac_spoofing]] feature of Tails when run in a " +"first_steps/welcome_screen/mac_spoofing]] feature of Tails when run in a " "virtual machine." msgstr "" diff --git a/wiki/src/doc/advanced_topics/virtualization.sr_Latn.po b/wiki/src/doc/advanced_topics/virtualization.sr_Latn.po index d7b2fa4c4cba9725a2696c22fc54dd140945f65f..bf75e9a179d8db9887a633642b5fcf58f9827473 100644 --- a/wiki/src/doc/advanced_topics/virtualization.sr_Latn.po +++ b/wiki/src/doc/advanced_topics/virtualization.sr_Latn.po @@ -166,7 +166,7 @@ msgid "" "The Tails virtual machine does not modify the behaviour of the host " "operating system and the network traffic of the host is not anonymized. The " "MAC address of the computer is not modified by the [[MAC address spoofing|" -"first_steps/startup_options/mac_spoofing]] feature of Tails when run in a " +"first_steps/welcome_screen/mac_spoofing]] feature of Tails when run in a " "virtual machine." msgstr "" diff --git a/wiki/src/doc/advanced_topics/virtualization.tr.po b/wiki/src/doc/advanced_topics/virtualization.tr.po index b07994570c32a13824205d841ddc76585d9e8f5d..bc9de64a00f001ab4534ae5047dc4c680ae3fbbb 100644 --- a/wiki/src/doc/advanced_topics/virtualization.tr.po +++ b/wiki/src/doc/advanced_topics/virtualization.tr.po @@ -165,7 +165,7 @@ msgid "" "The Tails virtual machine does not modify the behaviour of the host " "operating system and the network traffic of the host is not anonymized. The " "MAC address of the computer is not modified by the [[MAC address spoofing|" -"first_steps/startup_options/mac_spoofing]] feature of Tails when run in a " +"first_steps/welcome_screen/mac_spoofing]] feature of Tails when run in a " "virtual machine." msgstr "" diff --git a/wiki/src/doc/advanced_topics/virtualization.zh.po b/wiki/src/doc/advanced_topics/virtualization.zh.po index 6cb951070e7bd82fd3d3eb9e3cb211ecd79d2cae..b55b395caaa5bfd245b03b0077a60f0de55ef30b 100644 --- a/wiki/src/doc/advanced_topics/virtualization.zh.po +++ b/wiki/src/doc/advanced_topics/virtualization.zh.po @@ -167,7 +167,7 @@ msgid "" "The Tails virtual machine does not modify the behaviour of the host " "operating system and the network traffic of the host is not anonymized. The " "MAC address of the computer is not modified by the [[MAC address spoofing|" -"first_steps/startup_options/mac_spoofing]] feature of Tails when run in a " +"first_steps/welcome_screen/mac_spoofing]] feature of Tails when run in a " "virtual machine." msgstr "" diff --git a/wiki/src/doc/advanced_topics/wireless_devices.ar.po b/wiki/src/doc/advanced_topics/wireless_devices.ar.po index cfc6716c6e8cd3278dc7ed6482ce2b39511df376..162bfeb4e271c27be65b1b8dd5e0037bf409000d 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.ar.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.ar.po @@ -44,13 +44,13 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '2. ' msgid "" "To find out the index of the wireless device that you want to enable, open a " -"[[root terminal|doc/first_steps/startup_options/" +"[[root terminal|doc/first_steps/welcome_screen/" "administration_password#open_root_terminal]], and execute the following " "command:" msgstr "" @@ -164,7 +164,7 @@ msgstr "" #. type: Plain text msgid "" "To use Bluetooth in Tails nonetheless, you have to [[set up an " -"administration password at boot time|doc/first_steps/startup_options/" +"administration password at boot time|doc/first_steps/welcome_screen/" "administration_password]] and install the `gnome-bluetooth` package." msgstr "" diff --git a/wiki/src/doc/advanced_topics/wireless_devices.ca.po b/wiki/src/doc/advanced_topics/wireless_devices.ca.po index 7758acae025ba2336e73822e7bbe9736cb1fc0ec..9d9b58471bcef314db341df2c2f6503914aec6cb 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.ca.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.ca.po @@ -46,13 +46,13 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '2. ' msgid "" "To find out the index of the wireless device that you want to enable, open a " -"[[root terminal|doc/first_steps/startup_options/" +"[[root terminal|doc/first_steps/welcome_screen/" "administration_password#open_root_terminal]], and execute the following " "command:" msgstr "" @@ -166,7 +166,7 @@ msgstr "" #. type: Plain text msgid "" "To use Bluetooth in Tails nonetheless, you have to [[set up an " -"administration password at boot time|doc/first_steps/startup_options/" +"administration password at boot time|doc/first_steps/welcome_screen/" "administration_password]] and install the `gnome-bluetooth` package." msgstr "" diff --git a/wiki/src/doc/advanced_topics/wireless_devices.de.po b/wiki/src/doc/advanced_topics/wireless_devices.de.po index 0a515ce5ed6a91ade813fbead9df511dad4d0ffd..fc6b5c1a196314f397c0082385dd78dcb1d85be6 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.de.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.de.po @@ -52,20 +52,20 @@ msgstr "Bei diese Vorgehensweise wird die Kommandozeile verwendet." #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" "[[Setzen Sie beim Start von Tails ein Administrationspasswort|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." #. type: Bullet: '2. ' msgid "" "To find out the index of the wireless device that you want to enable, open a " -"[[root terminal|doc/first_steps/startup_options/" +"[[root terminal|doc/first_steps/welcome_screen/" "administration_password#open_root_terminal]], and execute the following " "command:" msgstr "" "Um den Index des drahtlosen Geräts herauszufinden, das Sie aktivieren " -"möchten, öffnen Sie ein [[Root-Terminal|doc/first_steps/startup_options/" +"möchten, öffnen Sie ein [[Root-Terminal|doc/first_steps/welcome_screen/" "administration_password#open_root_terminal]] und führen Sie den folgenden " "Befehl aus:" @@ -231,11 +231,11 @@ msgstr "" #. type: Plain text msgid "" "To use Bluetooth in Tails nonetheless, you have to [[set up an " -"administration password at boot time|doc/first_steps/startup_options/" +"administration password at boot time|doc/first_steps/welcome_screen/" "administration_password]] and install the `gnome-bluetooth` package." msgstr "" "Um nichtsdestotrotz Blutetooth in Tails zu verwenden, müssen Sie [[beim " -"Start ein Administrationspasswort setzen|doc/first_steps/startup_options/" +"Start ein Administrationspasswort setzen|doc/first_steps/welcome_screen/" "administration_password]] und das Paket `gnome-bluetooth` installieren." #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/wireless_devices.es.po b/wiki/src/doc/advanced_topics/wireless_devices.es.po index 11ca60ebda84f76cc216caa77e5dc9fff5539ab5..f449a0ff295eba3707c34982ee614c213c4a1966 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.es.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.es.po @@ -50,20 +50,20 @@ msgstr "Esta técnica utiliza la línea de comandos." #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" "Al iniciar Tails, [[configura una contraseña de " -"administración|doc/first_steps/startup_options/administration_password]]." +"administración|doc/first_steps/welcome_screen/administration_password]]." #. type: Bullet: '2. ' msgid "" "To find out the index of the wireless device that you want to enable, open a " -"[[root terminal|doc/first_steps/startup_options/" +"[[root terminal|doc/first_steps/welcome_screen/" "administration_password#open_root_terminal]], and execute the following " "command:" msgstr "" "Para averiguar el índice del dispositivo inalámbrico que deseas habilitar, " -"abre una [[terminal de root|doc/first_steps/startup_options/administration_pa" +"abre una [[terminal de root|doc/first_steps/welcome_screen/administration_pa" "ssword#open_root_terminal]] y ejecuta el siguiente comando:" #. type: Plain text @@ -213,12 +213,12 @@ msgstr "" #. type: Plain text msgid "" "To use Bluetooth in Tails nonetheless, you have to [[set up an " -"administration password at boot time|doc/first_steps/startup_options/" +"administration password at boot time|doc/first_steps/welcome_screen/" "administration_password]] and install the `gnome-bluetooth` package." msgstr "" "No obstante, para usar Bluetooth en Tails, tienes que [[configurar una " "contraseña de administración en el momento del " -"arranque|doc/first_steps/startup_options/administration_password]] e " +"arranque|doc/first_steps/welcome_screen/administration_password]] e " "instalar el paquete `gnome-bluetooth`." #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/wireless_devices.fa.po b/wiki/src/doc/advanced_topics/wireless_devices.fa.po index eb85e562d25164dd7a91a14368d28dcaba9cbf73..3538396827aa0fec8fedf46d019c6c60917743a6 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.fa.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.fa.po @@ -62,20 +62,20 @@ msgstr "این روش از خط فرمان استفاده میکند." #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" "هنگام راهاندازی تیلز [[یک گذرواژهٔ مدیریتی بسازید|doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." #. type: Bullet: '2. ' msgid "" "To find out the index of the wireless device that you want to enable, open a " -"[[root terminal|doc/first_steps/startup_options/" +"[[root terminal|doc/first_steps/welcome_screen/" "administration_password#open_root_terminal]], and execute the following " "command:" msgstr "" "برای یافتن شاخص دستگاههای بیسیم که میتوانید فعالشان کنید، یک [[پایانهٔ اصلی|" -"doc/first_steps/startup_options/administration_password#open_root_terminal]] " +"doc/first_steps/welcome_screen/administration_password#open_root_terminal]] " "باز کرده و این فرمان را اجرا کنید:" #. type: Plain text @@ -240,11 +240,11 @@ msgstr "" #. type: Plain text msgid "" "To use Bluetooth in Tails nonetheless, you have to [[set up an " -"administration password at boot time|doc/first_steps/startup_options/" +"administration password at boot time|doc/first_steps/welcome_screen/" "administration_password]] and install the `gnome-bluetooth` package." msgstr "" "با این حال برای استفاده از بلوتوث باید [[هنگام راهاندازی یک گذرواژهٔ مدیریتی " -"بسازید|doc/first_steps/startup_options/administration_password]] و بستهٔ " +"بسازید|doc/first_steps/welcome_screen/administration_password]] و بستهٔ " "`gnome-bluetooth` را نصب کنید." #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/wireless_devices.fr.po b/wiki/src/doc/advanced_topics/wireless_devices.fr.po index a25c42d67172f9933ad39b6141936f5e33db173f..cb2627c7d67b5cf50b8ec2b3eb09bb5a2f347193 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.fr.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.fr.po @@ -48,20 +48,20 @@ msgstr "Cette méthode utilise la ligne de commande." #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" "Lors du démarrage de Tails, [[définissez un mot de passe d'administration|" -"doc/first_steps/startup_options/administration_password]]." +"doc/first_steps/welcome_screen/administration_password]]." #. type: Bullet: '2. ' msgid "" "To find out the index of the wireless device that you want to enable, open a " -"[[root terminal|doc/first_steps/startup_options/" +"[[root terminal|doc/first_steps/welcome_screen/" "administration_password#open_root_terminal]], and execute the following " "command:" msgstr "" "Pour déterminer l'index du périphérique sans-fil que vous voulez activer, " -"ouvrez un [[terminal administrateur|doc/first_steps/startup_options/" +"ouvrez un [[terminal administrateur|doc/first_steps/welcome_screen/" "administration_password#open_root_terminal]], et exécutez la commande " "suivante :" @@ -210,11 +210,11 @@ msgstr "" #. type: Plain text msgid "" "To use Bluetooth in Tails nonetheless, you have to [[set up an " -"administration password at boot time|doc/first_steps/startup_options/" +"administration password at boot time|doc/first_steps/welcome_screen/" "administration_password]] and install the `gnome-bluetooth` package." msgstr "" "Pour utiliser le Bluetooth, vous devez [[définir un mot de passe " -"d'administration|doc/first_steps/startup_options/administration_password]] " +"d'administration|doc/first_steps/welcome_screen/administration_password]] " "et installer le paquet `gnome-bluetooth`." #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/wireless_devices.id.po b/wiki/src/doc/advanced_topics/wireless_devices.id.po index 50088458c4a706ee3950b25b792d29983083a5fc..d6429a016d48c8d77bda9d61609339758a689240 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.id.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.id.po @@ -46,13 +46,13 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '2. ' msgid "" "To find out the index of the wireless device that you want to enable, open a " -"[[root terminal|doc/first_steps/startup_options/" +"[[root terminal|doc/first_steps/welcome_screen/" "administration_password#open_root_terminal]], and execute the following " "command:" msgstr "" @@ -175,7 +175,7 @@ msgstr "" #. type: Plain text msgid "" "To use Bluetooth in Tails nonetheless, you have to [[set up an " -"administration password at boot time|doc/first_steps/startup_options/" +"administration password at boot time|doc/first_steps/welcome_screen/" "administration_password]] and install the `gnome-bluetooth` package." msgstr "" diff --git a/wiki/src/doc/advanced_topics/wireless_devices.it.po b/wiki/src/doc/advanced_topics/wireless_devices.it.po index a0546accb34a698e4ed7ba309eaadf51d4a7f852..4143a708601116761d3a5b43490b7422165c5c72 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.it.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.it.po @@ -46,13 +46,13 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '2. ' msgid "" "To find out the index of the wireless device that you want to enable, open a " -"[[root terminal|doc/first_steps/startup_options/" +"[[root terminal|doc/first_steps/welcome_screen/" "administration_password#open_root_terminal]], and execute the following " "command:" msgstr "" @@ -184,7 +184,7 @@ msgstr "" #. type: Plain text msgid "" "To use Bluetooth in Tails nonetheless, you have to [[set up an " -"administration password at boot time|doc/first_steps/startup_options/" +"administration password at boot time|doc/first_steps/welcome_screen/" "administration_password]] and install the `gnome-bluetooth` package." msgstr "" diff --git a/wiki/src/doc/advanced_topics/wireless_devices.mdwn b/wiki/src/doc/advanced_topics/wireless_devices.mdwn index 0480b0aa163c64b60e27051dada6fcfe9a9fc152..e743396aba2cf6a444abe0b77907784eeb44b3d3 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.mdwn +++ b/wiki/src/doc/advanced_topics/wireless_devices.mdwn @@ -13,11 +13,11 @@ Enable a wireless device This technique uses the command line. 1. When starting Tails, [[set up an administration - password|doc/first_steps/startup_options/administration_password]]. + password|doc/first_steps/welcome_screen/administration_password]]. 2. To find out the index of the wireless device that you want to enable, open a [[root - terminal|doc/first_steps/startup_options/administration_password#open_root_terminal]], + terminal|doc/first_steps/welcome_screen/administration_password#open_root_terminal]], and execute the following command: rfkill list @@ -84,7 +84,7 @@ XXX: one also needs to remove `sudo rm rfkill unblock bluetooth`. To use Bluetooth in Tails nonetheless, you have to -[[set up an administration password at boot time|doc/first_steps/startup_options/administration_password]] +[[set up an administration password at boot time|doc/first_steps/welcome_screen/administration_password]] and install the `gnome-bluetooth` package. --> diff --git a/wiki/src/doc/advanced_topics/wireless_devices.pl.po b/wiki/src/doc/advanced_topics/wireless_devices.pl.po index 92844279771da135da8c772bf34004a0280e815e..b1247fb13434ea4d50f390cee9ed81159eace3d5 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.pl.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.pl.po @@ -47,13 +47,13 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '2. ' msgid "" "To find out the index of the wireless device that you want to enable, open a " -"[[root terminal|doc/first_steps/startup_options/" +"[[root terminal|doc/first_steps/welcome_screen/" "administration_password#open_root_terminal]], and execute the following " "command:" msgstr "" @@ -167,7 +167,7 @@ msgstr "" #. type: Plain text msgid "" "To use Bluetooth in Tails nonetheless, you have to [[set up an " -"administration password at boot time|doc/first_steps/startup_options/" +"administration password at boot time|doc/first_steps/welcome_screen/" "administration_password]] and install the `gnome-bluetooth` package." msgstr "" diff --git a/wiki/src/doc/advanced_topics/wireless_devices.pt.po b/wiki/src/doc/advanced_topics/wireless_devices.pt.po index 7c6c7ae13426c889cc587f7fbe818b0a6a29aa5b..eb30e773da77d24e32b950c65de1276678a628c2 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.pt.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.pt.po @@ -46,13 +46,13 @@ msgstr "Esta técnica utiliza a linha de comando." #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '2. ' msgid "" "To find out the index of the wireless device that you want to enable, open a " -"[[root terminal|doc/first_steps/startup_options/" +"[[root terminal|doc/first_steps/welcome_screen/" "administration_password#open_root_terminal]], and execute the following " "command:" msgstr "" @@ -166,7 +166,7 @@ msgstr "" #. type: Plain text msgid "" "To use Bluetooth in Tails nonetheless, you have to [[set up an " -"administration password at boot time|doc/first_steps/startup_options/" +"administration password at boot time|doc/first_steps/welcome_screen/" "administration_password]] and install the `gnome-bluetooth` package." msgstr "" diff --git a/wiki/src/doc/advanced_topics/wireless_devices.ru.po b/wiki/src/doc/advanced_topics/wireless_devices.ru.po index 3e14a563ba2658ea5e238e1e497614d8d3cb7f89..d06adab0a8deb5ec24804c4fb142ad731aec969e 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.ru.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.ru.po @@ -47,13 +47,13 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '2. ' msgid "" "To find out the index of the wireless device that you want to enable, open a " -"[[root terminal|doc/first_steps/startup_options/" +"[[root terminal|doc/first_steps/welcome_screen/" "administration_password#open_root_terminal]], and execute the following " "command:" msgstr "" @@ -167,7 +167,7 @@ msgstr "" #. type: Plain text msgid "" "To use Bluetooth in Tails nonetheless, you have to [[set up an " -"administration password at boot time|doc/first_steps/startup_options/" +"administration password at boot time|doc/first_steps/welcome_screen/" "administration_password]] and install the `gnome-bluetooth` package." msgstr "" diff --git a/wiki/src/doc/advanced_topics/wireless_devices.sr_Latn.po b/wiki/src/doc/advanced_topics/wireless_devices.sr_Latn.po index eac5a369add534b708dc71a53c5269127546d75e..48feb393f067e319e9692d367dd52a9c99122ad9 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.sr_Latn.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.sr_Latn.po @@ -44,14 +44,14 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '2. ' msgid "" "To find out the index of the wireless device that you want to enable, open a " "[[root " -"terminal|doc/first_steps/startup_options/administration_password#open_root_terminal]], " +"terminal|doc/first_steps/welcome_screen/administration_password#open_root_terminal]], " "and execute the following command:" msgstr "" @@ -166,7 +166,7 @@ msgstr "" msgid "" "To use Bluetooth in Tails nonetheless, you have to [[set up an " "administration password at boot " -"time|doc/first_steps/startup_options/administration_password]] and install " +"time|doc/first_steps/welcome_screen/administration_password]] and install " "the `gnome-bluetooth` package." msgstr "" diff --git a/wiki/src/doc/advanced_topics/wireless_devices.tr.po b/wiki/src/doc/advanced_topics/wireless_devices.tr.po index cfc6716c6e8cd3278dc7ed6482ce2b39511df376..162bfeb4e271c27be65b1b8dd5e0037bf409000d 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.tr.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.tr.po @@ -44,13 +44,13 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '2. ' msgid "" "To find out the index of the wireless device that you want to enable, open a " -"[[root terminal|doc/first_steps/startup_options/" +"[[root terminal|doc/first_steps/welcome_screen/" "administration_password#open_root_terminal]], and execute the following " "command:" msgstr "" @@ -164,7 +164,7 @@ msgstr "" #. type: Plain text msgid "" "To use Bluetooth in Tails nonetheless, you have to [[set up an " -"administration password at boot time|doc/first_steps/startup_options/" +"administration password at boot time|doc/first_steps/welcome_screen/" "administration_password]] and install the `gnome-bluetooth` package." msgstr "" diff --git a/wiki/src/doc/advanced_topics/wireless_devices.zh.po b/wiki/src/doc/advanced_topics/wireless_devices.zh.po index 43711cf01bb58931810f45196ceefdab69e8e129..bdac0383c5fc87cc79deb7008e07a318aae182af 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.zh.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.zh.po @@ -46,13 +46,13 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '2. ' msgid "" "To find out the index of the wireless device that you want to enable, open a " -"[[root terminal|doc/first_steps/startup_options/" +"[[root terminal|doc/first_steps/welcome_screen/" "administration_password#open_root_terminal]], and execute the following " "command:" msgstr "" @@ -166,7 +166,7 @@ msgstr "" #. type: Plain text msgid "" "To use Bluetooth in Tails nonetheless, you have to [[set up an " -"administration password at boot time|doc/first_steps/startup_options/" +"administration password at boot time|doc/first_steps/welcome_screen/" "administration_password]] and install the `gnome-bluetooth` package." msgstr "" diff --git a/wiki/src/doc/advanced_topics/wireless_devices.zh_TW.po b/wiki/src/doc/advanced_topics/wireless_devices.zh_TW.po index abb263203bf996e9ac9d761c6c1bb1efbd6a9790..19dbc37163d90b2fc50581a981c92db5288d90cf 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.zh_TW.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.zh_TW.po @@ -45,19 +45,19 @@ msgstr "這個技巧是使用命令列指令。" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" -"Tails 啟動時, [[設定一個管理員密碼|doc/first_steps/startup_options/" +"Tails 啟動時, [[設定一個管理員密碼|doc/first_steps/welcome_screen/" "administration_password]]." #. type: Bullet: '2. ' msgid "" "To find out the index of the wireless device that you want to enable, open a " "[[root " -"terminal|doc/first_steps/startup_options/administration_password#open_root_terminal]], " +"terminal|doc/first_steps/welcome_screen/administration_password#open_root_terminal]], " "and execute the following command:" msgstr "" -"欲找出要啟動的無線設備目錄索引,請利用[[root terminal|doc/first_steps/startup_options/" +"欲找出要啟動的無線設備目錄索引,請利用[[root terminal|doc/first_steps/welcome_screen/" "administration_password#open_root_terminal]],並執行以下指令:" #. type: Plain text @@ -180,10 +180,10 @@ msgstr "" msgid "" "To use Bluetooth in Tails nonetheless, you have to [[set up an " "administration password at boot " -"time|doc/first_steps/startup_options/administration_password]] and install " +"time|doc/first_steps/welcome_screen/administration_password]] and install " "the `gnome-bluetooth` package." msgstr "" -"在 Tails 使用藍牙,必須 [[在開機時設定管理員密碼|doc/first_steps/startup_options/" +"在 Tails 使用藍牙,必須 [[在開機時設定管理員密碼|doc/first_steps/welcome_screen/" "administration_password]]並安裝 `gnome-bluetooth` 套件包。" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/networkmanager.ar.po b/wiki/src/doc/anonymous_internet/networkmanager.ar.po index e50cb14ff6bb481bf83faf33e539037f9f2db26d..86b34e7459c68e50f5c60b86ad7ee67bb0bcce46 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.ar.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.ar.po @@ -150,7 +150,7 @@ msgstr "" msgid "" "To connect to Tor using bridges or configure a proxy to access the Internet, " "you need to [[activate additional Tor configuration when starting Tails|" -"first_steps/startup_options#additional]]." +"first_steps/welcome_screen#additional]]." msgstr "" #. type: Title = diff --git a/wiki/src/doc/anonymous_internet/networkmanager.ca.po b/wiki/src/doc/anonymous_internet/networkmanager.ca.po index b7bc6b445f2abaec7ad647eaab93af8a1dd01211..c88db626e7fb8e83b58912bdb8933bbea446c43c 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.ca.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.ca.po @@ -148,7 +148,7 @@ msgstr "" msgid "" "To connect to Tor using bridges or configure a proxy to access the Internet, " "you need to [[activate additional Tor configuration when starting Tails|" -"first_steps/startup_options#additional]]." +"first_steps/welcome_screen#additional]]." msgstr "" #. type: Title = diff --git a/wiki/src/doc/anonymous_internet/networkmanager.de.po b/wiki/src/doc/anonymous_internet/networkmanager.de.po index f6665525e47b6db6e638303558dbff44a5ebe2b8..19eba36d1fb2f88b23463891456ff5888e3b3809 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.de.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.de.po @@ -202,12 +202,12 @@ msgstr "" msgid "" "To connect to Tor using bridges or configure a proxy to access the Internet, " "you need to [[activate additional Tor configuration when starting Tails|" -"first_steps/startup_options#additional]]." +"first_steps/welcome_screen#additional]]." msgstr "" "Um sich mit Hilfe von Bridges mit Tor zu verbinden oder einen Proxy für den " "Internetzugriff zu konfigurieren, ist es nötig [[beim Start von Tails " "zusätzliche Konfigurationen für Tor zu aktivieren|first_steps/" -"startup_options#additional]]." +"welcome_screen#additional]]." #. type: Title = #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/networkmanager.es.po b/wiki/src/doc/anonymous_internet/networkmanager.es.po index 9662d36e3a7dc98761a7da87a30cb6f3220f5650..04cf00117e811d6dd6da3d77fe298a11e890ceb7 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.es.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.es.po @@ -176,11 +176,11 @@ msgstr "Usar puentes de Tor o un proxy local\n" msgid "" "To connect to Tor using bridges or configure a proxy to access the Internet, " "you need to [[activate additional Tor configuration when starting Tails|" -"first_steps/startup_options#additional]]." +"first_steps/welcome_screen#additional]]." msgstr "" "Para conectarte a Tor a través de puentes o configurar un proxy de acceso a " "Internet, necesitas [[activar la configuración adicional de Tor cuando " -"arrancas Tails|first_steps/startup_options#additional]]." +"arrancas Tails|first_steps/welcome_screen#additional]]." #. type: Title = #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/networkmanager.fa.po b/wiki/src/doc/anonymous_internet/networkmanager.fa.po index e08e86e78052de948f7beaa395fd4dac25df7f36..8e2a6b3011f4cf9e2a11ab6ada41267966a36ced 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.fa.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.fa.po @@ -210,7 +210,7 @@ msgstr "" msgid "" "To connect to Tor using bridges or configure a proxy to access the Internet, " "you need to [[activate additional Tor configuration when starting Tails|" -"first_steps/startup_options#additional]]." +"first_steps/welcome_screen#additional]]." msgstr "" #. type: Title = diff --git a/wiki/src/doc/anonymous_internet/networkmanager.fr.po b/wiki/src/doc/anonymous_internet/networkmanager.fr.po index 58a359f301d2ce09023f44731ab1b68561c416a7..eff410fe06c3e897fc7f15f6586c1e110159599d 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.fr.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.fr.po @@ -175,12 +175,12 @@ msgstr "Utiliser les bridges Tor ou un serveur proxy local\n" msgid "" "To connect to Tor using bridges or configure a proxy to access the Internet, " "you need to [[activate additional Tor configuration when starting Tails|" -"first_steps/startup_options#additional]]." +"first_steps/welcome_screen#additional]]." msgstr "" "Pour vous connecter à Tor en utilisant les bridges ou configurer un proxy " "pour accéder à internet, vous devez [[activer une configuration réseau " "supplémentaire au démarrage de Tails|first_steps/" -"startup_options#additional]]." +"welcome_screen#additional]]." #. type: Title = #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/networkmanager.id.po b/wiki/src/doc/anonymous_internet/networkmanager.id.po index 3a8a96881cabb067f457726f279e761f86af9945..0a573a4e2afc989cab658527c61c02e620895258 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.id.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.id.po @@ -148,7 +148,7 @@ msgstr "" msgid "" "To connect to Tor using bridges or configure a proxy to access the Internet, " "you need to [[activate additional Tor configuration when starting Tails|" -"first_steps/startup_options#additional]]." +"first_steps/welcome_screen#additional]]." msgstr "" #. type: Title = diff --git a/wiki/src/doc/anonymous_internet/networkmanager.it.po b/wiki/src/doc/anonymous_internet/networkmanager.it.po index ea9f2649b1250acbcb1acbdc6e03f18216505ae4..d6ccd25a9418fd75aa9bf206f7e26bdf6857263a 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.it.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.it.po @@ -150,7 +150,7 @@ msgstr "" msgid "" "To connect to Tor using bridges or configure a proxy to access the Internet, " "you need to [[activate additional Tor configuration when starting Tails|" -"first_steps/startup_options#additional]]." +"first_steps/welcome_screen#additional]]." msgstr "" #. type: Title = diff --git a/wiki/src/doc/anonymous_internet/networkmanager.mdwn b/wiki/src/doc/anonymous_internet/networkmanager.mdwn index 248cc0d965ea36648aef3b8e61d36867cbc651b8..36502034002db4d5add311e2d7aa6df60c8f3a7b 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.mdwn +++ b/wiki/src/doc/anonymous_internet/networkmanager.mdwn @@ -60,7 +60,7 @@ Using Tor bridges or a local proxy ================================== To connect to Tor using bridges or configure a proxy to access the Internet, -you need to [[activate additional Tor configuration when starting Tails|first_steps/startup_options#additional]]. +you need to [[activate additional Tor configuration when starting Tails|first_steps/welcome_screen#additional]]. Modifying and saving your network settings ========================================== diff --git a/wiki/src/doc/anonymous_internet/networkmanager.pl.po b/wiki/src/doc/anonymous_internet/networkmanager.pl.po index 581a7b734ff574537dbfa253d98827ac24be8f76..32a6837ac2075eaa8b6f0d0fb494400557ee16b1 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.pl.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.pl.po @@ -149,7 +149,7 @@ msgstr "" msgid "" "To connect to Tor using bridges or configure a proxy to access the Internet, " "you need to [[activate additional Tor configuration when starting Tails|" -"first_steps/startup_options#additional]]." +"first_steps/welcome_screen#additional]]." msgstr "" #. type: Title = diff --git a/wiki/src/doc/anonymous_internet/networkmanager.pt.po b/wiki/src/doc/anonymous_internet/networkmanager.pt.po index 5dc68268408f67c6caf7cccd8fa125650898c092..7a66e17f07ff6ec89cb3beaa94649d59dca27a38 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.pt.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.pt.po @@ -210,7 +210,7 @@ msgstr "" msgid "" "To connect to Tor using bridges or configure a proxy to access the Internet, " "you need to [[activate additional Tor configuration when starting Tails|" -"first_steps/startup_options#additional]]." +"first_steps/welcome_screen#additional]]." msgstr "" #. type: Title = diff --git a/wiki/src/doc/anonymous_internet/networkmanager.ru.po b/wiki/src/doc/anonymous_internet/networkmanager.ru.po index 552057823f26885ea4ad7e7a93fe41f46ef8af57..b26705e734214b8f8cf38f6ec8e5b40a8359705d 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.ru.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.ru.po @@ -149,7 +149,7 @@ msgstr "" msgid "" "To connect to Tor using bridges or configure a proxy to access the Internet, " "you need to [[activate additional Tor configuration when starting Tails|" -"first_steps/startup_options#additional]]." +"first_steps/welcome_screen#additional]]." msgstr "" #. type: Title = diff --git a/wiki/src/doc/anonymous_internet/networkmanager.sr_Latn.po b/wiki/src/doc/anonymous_internet/networkmanager.sr_Latn.po index 3bea978ec29d699e1cd18fc1024e8ad94d3e6d0a..fc0c2ca61c9f8567e35e7949b0a5de680fb1abe6 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.sr_Latn.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.sr_Latn.po @@ -149,7 +149,7 @@ msgstr "" msgid "" "To connect to Tor using bridges or configure a proxy to access the Internet, " "you need to [[activate additional Tor configuration when starting Tails|" -"first_steps/startup_options#additional]]." +"first_steps/welcome_screen#additional]]." msgstr "" #. type: Title = diff --git a/wiki/src/doc/anonymous_internet/networkmanager.tr.po b/wiki/src/doc/anonymous_internet/networkmanager.tr.po index e90fbcb1f17985525a742e9f1a2894721b4b4f7c..e5a5d28f5a13dd2a1d9ae00ec3a6d21aea2eb181 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.tr.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.tr.po @@ -148,7 +148,7 @@ msgstr "" msgid "" "To connect to Tor using bridges or configure a proxy to access the Internet, " "you need to [[activate additional Tor configuration when starting Tails|" -"first_steps/startup_options#additional]]." +"first_steps/welcome_screen#additional]]." msgstr "" #. type: Title = diff --git a/wiki/src/doc/anonymous_internet/networkmanager.zh.po b/wiki/src/doc/anonymous_internet/networkmanager.zh.po index f82a654f244ac9e32b27fa02fa19ad76fefc8bfd..e82600d0db676230ef033492af715505bf56267d 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.zh.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.zh.po @@ -148,7 +148,7 @@ msgstr "" msgid "" "To connect to Tor using bridges or configure a proxy to access the Internet, " "you need to [[activate additional Tor configuration when starting Tails|" -"first_steps/startup_options#additional]]." +"first_steps/welcome_screen#additional]]." msgstr "" #. type: Title = diff --git a/wiki/src/doc/anonymous_internet/networkmanager.zh_TW.po b/wiki/src/doc/anonymous_internet/networkmanager.zh_TW.po index e5577c783d06cd1e6866b4196032ce9ea6c3c74b..2b566bfa753d1aa71dccb591bf86c275dad6c0da 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.zh_TW.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.zh_TW.po @@ -148,7 +148,7 @@ msgstr "" msgid "" "To connect to Tor using bridges or configure a proxy to access the Internet, " "you need to [[activate additional Tor configuration when starting Tails|" -"first_steps/startup_options#additional]]." +"first_steps/welcome_screen#additional]]." msgstr "" #. type: Title = diff --git a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.ar.po b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.ar.po index 54f22cb440bdd68225eb035c1e2df8c19d2c3d74..2ce90614dbae8153c09b14a521276a6618e65b9d 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.ar.po +++ b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.ar.po @@ -46,7 +46,7 @@ msgid "" " In this case, you can disable MAC spoofing to get your Wi-Fi interface\n" " to work in Tails. Disabling MAC spoofing has security implications, so read\n" " carefully our [[documentation about MAC\n" -" spoofing|first_steps/startup_options/mac_spoofing]] before doing so.\n" +" spoofing|first_steps/welcome_screen/mac_spoofing]] before doing so.\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.ca.po b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.ca.po index 3845d946148602a6631945bf01ed85ceb45992d3..1b464d85d36b63adce2e6e1e98491603770c5afb 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.ca.po +++ b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.ca.po @@ -46,7 +46,7 @@ msgid "" " In this case, you can disable MAC spoofing to get your Wi-Fi interface\n" " to work in Tails. Disabling MAC spoofing has security implications, so read\n" " carefully our [[documentation about MAC\n" -" spoofing|first_steps/startup_options/mac_spoofing]] before doing so.\n" +" spoofing|first_steps/welcome_screen/mac_spoofing]] before doing so.\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.de.po b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.de.po index de8043a2b7285e51517a350e1644cf54bc839ad1..be1d1e2a236c574e9143029e9ae8a39b7a07042a 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.de.po +++ b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.de.po @@ -46,7 +46,7 @@ msgid "" " In this case, you can disable MAC spoofing to get your Wi-Fi interface\n" " to work in Tails. Disabling MAC spoofing has security implications, so read\n" " carefully our [[documentation about MAC\n" -" spoofing|first_steps/startup_options/mac_spoofing]] before doing so.\n" +" spoofing|first_steps/welcome_screen/mac_spoofing]] before doing so.\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.es.po b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.es.po index de8043a2b7285e51517a350e1644cf54bc839ad1..be1d1e2a236c574e9143029e9ae8a39b7a07042a 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.es.po +++ b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.es.po @@ -46,7 +46,7 @@ msgid "" " In this case, you can disable MAC spoofing to get your Wi-Fi interface\n" " to work in Tails. Disabling MAC spoofing has security implications, so read\n" " carefully our [[documentation about MAC\n" -" spoofing|first_steps/startup_options/mac_spoofing]] before doing so.\n" +" spoofing|first_steps/welcome_screen/mac_spoofing]] before doing so.\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.fa.po b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.fa.po index de8043a2b7285e51517a350e1644cf54bc839ad1..be1d1e2a236c574e9143029e9ae8a39b7a07042a 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.fa.po +++ b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.fa.po @@ -46,7 +46,7 @@ msgid "" " In this case, you can disable MAC spoofing to get your Wi-Fi interface\n" " to work in Tails. Disabling MAC spoofing has security implications, so read\n" " carefully our [[documentation about MAC\n" -" spoofing|first_steps/startup_options/mac_spoofing]] before doing so.\n" +" spoofing|first_steps/welcome_screen/mac_spoofing]] before doing so.\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.fr.po b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.fr.po index 930f3714f9e365bb95a851a51c5cbcd62e87ebc4..fc5cfe7f6812accfa54f31a6d8835f24b161d79d 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.fr.po +++ b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.fr.po @@ -49,12 +49,12 @@ msgid "" " In this case, you can disable MAC spoofing to get your Wi-Fi interface\n" " to work in Tails. Disabling MAC spoofing has security implications, so read\n" " carefully our [[documentation about MAC\n" -" spoofing|first_steps/startup_options/mac_spoofing]] before doing so.\n" +" spoofing|first_steps/welcome_screen/mac_spoofing]] before doing so.\n" msgstr "" " Dans ce cas, vous pouvez désactiver l'usurpation d'adresse MAC pour permettre à l'interface Wi-Fi\n" " de fonctionner dans Tails. Désactiver l'usurpation d'adresse MAC a des conséquences sur la sécurité, donc lisez\n" " attentivement notre [[documentation sur l’usurpation d'adresse\n" -" MAC|first_steps/startup_options/mac_spoofing]] avant de le faire.\n" +" MAC|first_steps/welcome_screen/mac_spoofing]] avant de le faire.\n" #. type: Plain text msgid "To connect to the Internet, you can try to either:" diff --git a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.id.po b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.id.po index 5be4256f57176f766569b48552462a4091edacda..47e458bba46968537a5ff16dc1d618d7ff35929b 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.id.po +++ b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.id.po @@ -46,7 +46,7 @@ msgid "" " In this case, you can disable MAC spoofing to get your Wi-Fi interface\n" " to work in Tails. Disabling MAC spoofing has security implications, so read\n" " carefully our [[documentation about MAC\n" -" spoofing|first_steps/startup_options/mac_spoofing]] before doing so.\n" +" spoofing|first_steps/welcome_screen/mac_spoofing]] before doing so.\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.it.po b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.it.po index 91b6d04042b77d62a2b6f03c0ff15a34e0d5214b..b979bbea8f89d056d48da5db62c16c64d10d168f 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.it.po +++ b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.it.po @@ -47,7 +47,7 @@ msgid "" " In this case, you can disable MAC spoofing to get your Wi-Fi interface\n" " to work in Tails. Disabling MAC spoofing has security implications, so read\n" " carefully our [[documentation about MAC\n" -" spoofing|first_steps/startup_options/mac_spoofing]] before doing so.\n" +" spoofing|first_steps/welcome_screen/mac_spoofing]] before doing so.\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.mdwn b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.mdwn index 3bd85a384b6482d3a30f53f65352620614e73899..f5d388265ef60dfd64e9246405003852994b9619 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.mdwn +++ b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.mdwn @@ -12,7 +12,7 @@ If your Wi-Fi interface is not working, either: In this case, you can disable MAC spoofing to get your Wi-Fi interface to work in Tails. Disabling MAC spoofing has security implications, so read carefully our [[documentation about MAC - spoofing|first_steps/startup_options/mac_spoofing]] before doing so. + spoofing|first_steps/welcome_screen/mac_spoofing]] before doing so. To connect to the Internet, you can try to either: diff --git a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.pl.po b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.pl.po index 13185b13713545e8275d47738e7c0959fa26d2a1..3db5c4befff7cf7a0f55344105ae1a1503cc6b44 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.pl.po +++ b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.pl.po @@ -46,7 +46,7 @@ msgid "" " In this case, you can disable MAC spoofing to get your Wi-Fi interface\n" " to work in Tails. Disabling MAC spoofing has security implications, so read\n" " carefully our [[documentation about MAC\n" -" spoofing|first_steps/startup_options/mac_spoofing]] before doing so.\n" +" spoofing|first_steps/welcome_screen/mac_spoofing]] before doing so.\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.pt.po b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.pt.po index de8043a2b7285e51517a350e1644cf54bc839ad1..be1d1e2a236c574e9143029e9ae8a39b7a07042a 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.pt.po +++ b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.pt.po @@ -46,7 +46,7 @@ msgid "" " In this case, you can disable MAC spoofing to get your Wi-Fi interface\n" " to work in Tails. Disabling MAC spoofing has security implications, so read\n" " carefully our [[documentation about MAC\n" -" spoofing|first_steps/startup_options/mac_spoofing]] before doing so.\n" +" spoofing|first_steps/welcome_screen/mac_spoofing]] before doing so.\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.ru.po b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.ru.po index 1cb51ee7408282bd97f9a5bfb3eadadff3d402be..8cc1fc87737b2d536dd9182d1f3634a2017cf559 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.ru.po +++ b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.ru.po @@ -46,7 +46,7 @@ msgid "" " In this case, you can disable MAC spoofing to get your Wi-Fi interface\n" " to work in Tails. Disabling MAC spoofing has security implications, so read\n" " carefully our [[documentation about MAC\n" -" spoofing|first_steps/startup_options/mac_spoofing]] before doing so.\n" +" spoofing|first_steps/welcome_screen/mac_spoofing]] before doing so.\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.sr_Latn.po b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.sr_Latn.po index 8d11c9866fc19a79c1fc2531af536e68e0e3d7ca..8754af8e8d4e72c9c10bf3a3bd20eda6b4f45a50 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.sr_Latn.po +++ b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.sr_Latn.po @@ -46,7 +46,7 @@ msgid "" " In this case, you can disable MAC spoofing to get your Wi-Fi interface\n" " to work in Tails. Disabling MAC spoofing has security implications, so read\n" " carefully our [[documentation about MAC\n" -" spoofing|first_steps/startup_options/mac_spoofing]] before doing so.\n" +" spoofing|first_steps/welcome_screen/mac_spoofing]] before doing so.\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.tr.po b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.tr.po index cba5178abfdea7fc5df5135ec2c9d585c7b3cbc4..b6f0ad472faa2c1e062a9c52cd3f89681ef359e5 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.tr.po +++ b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.tr.po @@ -46,7 +46,7 @@ msgid "" " In this case, you can disable MAC spoofing to get your Wi-Fi interface\n" " to work in Tails. Disabling MAC spoofing has security implications, so read\n" " carefully our [[documentation about MAC\n" -" spoofing|first_steps/startup_options/mac_spoofing]] before doing so.\n" +" spoofing|first_steps/welcome_screen/mac_spoofing]] before doing so.\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.zh.po b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.zh.po index 98e8d0f9a04ac2e1c26d003eb54a52505f06c046..1fb4f6a9c5697115694c92efac0273c88ba003a7 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.zh.po +++ b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.zh.po @@ -46,7 +46,7 @@ msgid "" " In this case, you can disable MAC spoofing to get your Wi-Fi interface\n" " to work in Tails. Disabling MAC spoofing has security implications, so read\n" " carefully our [[documentation about MAC\n" -" spoofing|first_steps/startup_options/mac_spoofing]] before doing so.\n" +" spoofing|first_steps/welcome_screen/mac_spoofing]] before doing so.\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.zh_TW.po b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.zh_TW.po index efc8de3d987f35bcc781a34e7a789c3f3fd79ed7..bbf26340ebad356df223efbbad61e2f576eb49e6 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.zh_TW.po +++ b/wiki/src/doc/anonymous_internet/networkmanager/no-wifi.inline.zh_TW.po @@ -46,7 +46,7 @@ msgid "" " In this case, you can disable MAC spoofing to get your Wi-Fi interface\n" " to work in Tails. Disabling MAC spoofing has security implications, so read\n" " carefully our [[documentation about MAC\n" -" spoofing|first_steps/startup_options/mac_spoofing]] before doing so.\n" +" spoofing|first_steps/welcome_screen/mac_spoofing]] before doing so.\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/tor_status.ar.po b/wiki/src/doc/anonymous_internet/tor_status.ar.po index 5e5141098f9683989a3dfbbfc5a7a222668b3604..d0132c7dbcde198d4b0d184274a23ef8ef573c61 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.ar.po +++ b/wiki/src/doc/anonymous_internet/tor_status.ar.po @@ -128,7 +128,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The first relay or *entry guard*. If you configured a [[Tor bridge|" -"first_steps/startup_options/bridge_mode]], your bridge is the first relay." +"first_steps/welcome_screen/bridge_mode]], your bridge is the first relay." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/anonymous_internet/tor_status.ca.po b/wiki/src/doc/anonymous_internet/tor_status.ca.po index 838d33e90543f49ff53b783d1d21113cd32ad5bb..8fb369d585be8db9e2def3e0d4fefa27417ffc2c 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.ca.po +++ b/wiki/src/doc/anonymous_internet/tor_status.ca.po @@ -126,7 +126,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The first relay or *entry guard*. If you configured a [[Tor bridge|" -"first_steps/startup_options/bridge_mode]], your bridge is the first relay." +"first_steps/welcome_screen/bridge_mode]], your bridge is the first relay." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/anonymous_internet/tor_status.de.po b/wiki/src/doc/anonymous_internet/tor_status.de.po index aa272cf1273b5f6a74a3be9be5ef6ed917e5fcf9..6aeb58871a72c98c2750f5bd43e1ccdea4de4bdf 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.de.po +++ b/wiki/src/doc/anonymous_internet/tor_status.de.po @@ -144,10 +144,10 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The first relay or *entry guard*. If you configured a [[Tor bridge|" -"first_steps/startup_options/bridge_mode]], your bridge is the first relay." +"first_steps/welcome_screen/bridge_mode]], your bridge is the first relay." msgstr "" "Dem ersten Relais oder dem *Entry Guard*. Wenn Sie eine [[Tor Bridge|" -"first_steps/startup_options/bridge_mode]] konfiguriert haben, ist Ihre " +"first_steps/welcome_screen/bridge_mode]] konfiguriert haben, ist Ihre " "Bridge das erste Relais." #. type: Bullet: ' - ' @@ -234,16 +234,16 @@ msgstr "[[!img doc/about/warning/htw2-tails.png link=no alt=\"Schema einer Verbi #~| msgid "" #~| "To configure bridges, firewall, or proxy settings [[select the " #~| "corresponding option in <span class=\"application\">Tails Greeter</span> " -#~| "|first_steps/startup_options/bridge_mode]]." +#~| "|first_steps/welcome_screen/bridge_mode]]." #~ msgid "" #~ "To configure bridges, firewall, or proxy settings [[select the " #~ "corresponding\n" #~ "option in <span class=\"application\">Tails Greeter</span>|first_steps/" -#~ "startup_options/bridge_mode]].\n" +#~ "welcome_screen/bridge_mode]].\n" #~ msgstr "" #~ "Um Bridges, Firewall- oder Proxyeinstellungen zu konfigurieren, [[wählen " #~ "Sie die entsprechende Option im <span class=\"application\">Tails " -#~ "Greeter</span>|first_steps/startup_options/bridge_mode]]." +#~ "Greeter</span>|first_steps/welcome_screen/bridge_mode]]." #~ msgid "[[!meta title=\"Controlling Tor using Vidalia\"]]\n" #~ msgstr "[[!meta title=\"Tor mit Vidalia steuern\"]]\n" @@ -430,7 +430,7 @@ msgstr "[[!img doc/about/warning/htw2-tails.png link=no alt=\"Schema einer Verbi #~ msgid "" #~ "<span class=\"application\">Vidalia</span> allows you to control some of " #~ "the\n" -#~ "functionalities of Tor. Unless [[first_steps/startup_options/" +#~ "functionalities of Tor. Unless [[first_steps/welcome_screen/" #~ "Windows_Camouflage]] is enabled, Vidalia will\n" #~ "be started automatically when an [[Internet connection|networkmanager]] " #~ "is established.\n" @@ -438,7 +438,7 @@ msgstr "[[!img doc/about/warning/htw2-tails.png link=no alt=\"Schema einer Verbi #~ "<span class=\"application\">Vidalia</span> erlaubt Ihnen, einige der " #~ "Funktionen von\n" #~ "Tor zu steuern. Sofern die [[Windows Camouflage|first_steps/" -#~ "startup_options/Windows_Camouflage]] nicht aktiviert ist, wird Vidalia,\n" +#~ "welcome_screen/Windows_Camouflage]] nicht aktiviert ist, wird Vidalia,\n" #~ "nach dem [[Verbinden mit dem Internet|networkmanager]], automatisch " #~ "gestartet.\n" diff --git a/wiki/src/doc/anonymous_internet/tor_status.es.po b/wiki/src/doc/anonymous_internet/tor_status.es.po index 6e298a0e53965c37915dc98da8f819213806df79..0da84edb1d7d9d5deb6dc05eccaaf5557365a3e6 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.es.po +++ b/wiki/src/doc/anonymous_internet/tor_status.es.po @@ -144,10 +144,10 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The first relay or *entry guard*. If you configured a [[Tor bridge|" -"first_steps/startup_options/bridge_mode]], your bridge is the first relay." +"first_steps/welcome_screen/bridge_mode]], your bridge is the first relay." msgstr "" "El primer repetidor, o *entry guard*. Si has configurado un [[puente de Tor|" -"first_steps/startup_options/bridge_mode]], tu puente será el primer " +"first_steps/welcome_screen/bridge_mode]], tu puente será el primer " "repetidor." #. type: Bullet: ' - ' diff --git a/wiki/src/doc/anonymous_internet/tor_status.fa.po b/wiki/src/doc/anonymous_internet/tor_status.fa.po index cd43b3f02132311cfb5c4457837800248376e3f8..5b008e922e556c3f4498689a19ecf75dbac35377 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.fa.po +++ b/wiki/src/doc/anonymous_internet/tor_status.fa.po @@ -156,7 +156,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The first relay or *entry guard*. If you configured a [[Tor bridge|" -"first_steps/startup_options/bridge_mode]], your bridge is the first relay." +"first_steps/welcome_screen/bridge_mode]], your bridge is the first relay." msgstr "" #. type: Bullet: ' - ' @@ -251,16 +251,16 @@ msgstr "" #~| msgid "" #~| "To configure bridges, firewall, or proxy settings [[select the " #~| "corresponding option in <span class=\"application\">Tails Greeter</span> " -#~| "|first_steps/startup_options/bridge_mode]]." +#~| "|first_steps/welcome_screen/bridge_mode]]." #~ msgid "" #~ "To configure bridges, firewall, or proxy settings [[select the " #~ "corresponding\n" #~ "option in <span class=\"application\">Tails Greeter</span>|first_steps/" -#~ "startup_options/bridge_mode]].\n" +#~ "welcome_screen/bridge_mode]].\n" #~ msgstr "" #~ "برای پیکربندی پلها، دیوارهای آتش یا تنظیمات پروکسی [[گزینهٔ مرتبط در " #~ "<span class=\"application\">خوشامدگوی تیلز</span> انتخاب کنید|first_steps/" -#~ "startup_options/bridge_mode]]." +#~ "welcome_screen/bridge_mode]]." #~ msgid "[[!meta title=\"Controlling Tor using Vidalia\"]]\n" #~ msgstr "[[!meta title=\"کنترل تور با استفاده از ویدالیا\"]]\n" @@ -443,7 +443,7 @@ msgstr "" #~ msgid "" #~ "<span class=\"application\">Vidalia</span> allows you to control some of " #~ "the\n" -#~ "functionalities of Tor. Unless [[first_steps/startup_options/" +#~ "functionalities of Tor. Unless [[first_steps/welcome_screen/" #~ "Windows_Camouflage]] is enabled, Vidalia will\n" #~ "be started automatically when an [[Internet connection|networkmanager]] " #~ "is established.\n" @@ -452,7 +452,7 @@ msgstr "" #~ "ویژگیهای\n" #~ "تور را میدهد. ویدالیا پس از برقراری [[اتصال اینترنت|networkmanager]] فعال " #~ "میشود،\n" -#~ "مگر این که حالت [[first_steps/startup_options/Windows_Camouflage]] فعال " +#~ "مگر این که حالت [[first_steps/welcome_screen/Windows_Camouflage]] فعال " #~ "شده باشد.\n" #~ msgid "<div class=\"icon\">\n" diff --git a/wiki/src/doc/anonymous_internet/tor_status.fr.po b/wiki/src/doc/anonymous_internet/tor_status.fr.po index 935e0ca65e84f671a4fd207e0e02c2b2a8696786..ff195344a98971ac4bead7a469588892a38530bf 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.fr.po +++ b/wiki/src/doc/anonymous_internet/tor_status.fr.po @@ -144,10 +144,10 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The first relay or *entry guard*. If you configured a [[Tor bridge|" -"first_steps/startup_options/bridge_mode]], your bridge is the first relay." +"first_steps/welcome_screen/bridge_mode]], your bridge is the first relay." msgstr "" "Un premier relais ou *garde d'entrée*. Si vous avez configuré un [[bridge " -"Tor|first_steps/startup_options/bridge_mode]], il sera votre premier relais." +"Tor|first_steps/welcome_screen/bridge_mode]], il sera votre premier relais." #. type: Bullet: ' - ' msgid "The second relay or *middle node*." @@ -227,16 +227,16 @@ msgstr "[[!img doc/about/warning/htw2-tails.fr.png link=no alt=\"Schéma d'une c #~| msgid "" #~| "To configure bridges, firewall, or proxy settings [[select the " #~| "corresponding option in <span class=\"application\">Tails Greeter</span> " -#~| "|first_steps/startup_options/bridge_mode]]." +#~| "|first_steps/welcome_screen/bridge_mode]]." #~ msgid "" #~ "To configure bridges, firewall, or proxy settings [[select the " #~ "corresponding\n" #~ "option in <span class=\"application\">Tails Greeter</span>|first_steps/" -#~ "startup_options/bridge_mode]].\n" +#~ "welcome_screen/bridge_mode]].\n" #~ msgstr "" #~ "Pour configurer des bridges, pare-feu, ou proxy [[sélectionner l'option " #~ "correspondante dans <span class=\"application\">Tails Greeter</span> |" -#~ "first_steps/startup_options/bridge_mode]]." +#~ "first_steps/welcome_screen/bridge_mode]]." #~ msgid "[[!meta title=\"Controlling Tor using Vidalia\"]]\n" #~ msgstr "[[!meta title=\"Contrôler Tor grâce à Vidalia\"]]\n" @@ -431,7 +431,7 @@ msgstr "[[!img doc/about/warning/htw2-tails.fr.png link=no alt=\"Schéma d'une c #~ msgid "" #~ "<span class=\"application\">Vidalia</span> allows you to control some of " #~ "the\n" -#~ "functionalities of Tor. Unless [[first_steps/startup_options/" +#~ "functionalities of Tor. Unless [[first_steps/welcome_screen/" #~ "Windows_Camouflage]] is enabled, Vidalia will\n" #~ "be started automatically when an [[Internet connection|networkmanager]] " #~ "is established.\n" @@ -439,7 +439,7 @@ msgstr "[[!img doc/about/warning/htw2-tails.fr.png link=no alt=\"Schéma d'une c #~ "<span class=\"application\">Vidalia</span> vous permet de contrôler " #~ "quelques\n" #~ "fonctionnalités de Tor. Sauf lorsque vous utilisez le [[camouflage " -#~ "Windows|first_steps/startup_options/Windows_Camouflage]],\n" +#~ "Windows|first_steps/welcome_screen/Windows_Camouflage]],\n" #~ "Vidalia est démarré automatiquement lorsqu'une [[connexion\n" #~ "Internet|networkmanager]] est établie.\n" @@ -516,10 +516,10 @@ msgstr "[[!img doc/about/warning/htw2-tails.fr.png link=no alt=\"Schéma d'une c #~ msgstr "Se connecter *via* une passerelle\n" #~ msgid "" -#~ "[[See the corresponding documentation.|first_steps/startup_options/" +#~ "[[See the corresponding documentation.|first_steps/welcome_screen/" #~ "bridge_mode]]" #~ msgstr "" -#~ "[[Voir la documentation correspondante.|first_steps/startup_options/" +#~ "[[Voir la documentation correspondante.|first_steps/welcome_screen/" #~ "bridge_mode]]" #~ msgid "Configuring Hidden Services for Tor\n" diff --git a/wiki/src/doc/anonymous_internet/tor_status.id.po b/wiki/src/doc/anonymous_internet/tor_status.id.po index b5cd66cfd7ae759de1844b857e37294d982bee38..1c2bcc4b3040d60f3c242055285206c5fc190a77 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.id.po +++ b/wiki/src/doc/anonymous_internet/tor_status.id.po @@ -126,7 +126,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The first relay or *entry guard*. If you configured a [[Tor bridge|" -"first_steps/startup_options/bridge_mode]], your bridge is the first relay." +"first_steps/welcome_screen/bridge_mode]], your bridge is the first relay." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/anonymous_internet/tor_status.it.po b/wiki/src/doc/anonymous_internet/tor_status.it.po index 5c9d3be7f5d6ceb7bbf6d99bccda43ca85bdb2af..4552fb797840a8491c32d2dea1540bb4f15a6019 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.it.po +++ b/wiki/src/doc/anonymous_internet/tor_status.it.po @@ -123,7 +123,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The first relay or *entry guard*. If you configured a [[Tor bridge|" -"first_steps/startup_options/bridge_mode]], your bridge is the first relay." +"first_steps/welcome_screen/bridge_mode]], your bridge is the first relay." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/anonymous_internet/tor_status.mdwn b/wiki/src/doc/anonymous_internet/tor_status.mdwn index 90e8d1df37a8990ca8ec60dde7c3b8283ef3c40e..80174748b12b32f9c37c66cf329d683bef0dbc77 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.mdwn +++ b/wiki/src/doc/anonymous_internet/tor_status.mdwn @@ -46,7 +46,7 @@ untranslated.--> The circuits established by Tor are listed in the left pane. A Tor circuit is made of three relays: - - The first relay or *entry guard*. If you configured a [[Tor bridge|first_steps/startup_options/bridge_mode]], your bridge is the first relay. + - The first relay or *entry guard*. If you configured a [[Tor bridge|first_steps/welcome_screen/bridge_mode]], your bridge is the first relay. - The second relay or *middle node*. - The exit node. diff --git a/wiki/src/doc/anonymous_internet/tor_status.pl.po b/wiki/src/doc/anonymous_internet/tor_status.pl.po index bc3ff5434825b6fab5b9883b5e8ee8147fc43948..10e87d7bdcbf16d4cf4a4b0ab562ecc05fcde09e 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.pl.po +++ b/wiki/src/doc/anonymous_internet/tor_status.pl.po @@ -127,7 +127,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The first relay or *entry guard*. If you configured a [[Tor bridge|" -"first_steps/startup_options/bridge_mode]], your bridge is the first relay." +"first_steps/welcome_screen/bridge_mode]], your bridge is the first relay." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/anonymous_internet/tor_status.pt.po b/wiki/src/doc/anonymous_internet/tor_status.pt.po index 71d54f93f035ad41e7ede4ea5e55e05978432dfa..1389990de74535a6a5ae84629d10c0af16a54908 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.pt.po +++ b/wiki/src/doc/anonymous_internet/tor_status.pt.po @@ -151,7 +151,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The first relay or *entry guard*. If you configured a [[Tor bridge|" -"first_steps/startup_options/bridge_mode]], your bridge is the first relay." +"first_steps/welcome_screen/bridge_mode]], your bridge is the first relay." msgstr "" #. type: Bullet: ' - ' @@ -247,16 +247,16 @@ msgstr "" #~| msgid "" #~| "To configure bridges, firewall, or proxy settings [[select the " #~| "corresponding option in <span class=\"application\">Tails Greeter</span> " -#~| "|first_steps/startup_options/bridge_mode]]." +#~| "|first_steps/welcome_screen/bridge_mode]]." #~ msgid "" #~ "To configure bridges, firewall, or proxy settings [[select the " #~ "corresponding\n" #~ "option in <span class=\"application\">Tails Greeter</span>|first_steps/" -#~ "startup_options/bridge_mode]].\n" +#~ "welcome_screen/bridge_mode]].\n" #~ msgstr "" #~ "Para configurar pontes (bridges), firewall ou proxy, [[selecione a opção " #~ "correspondente no <span class=\"application\">Tails Greeter</span>|" -#~ "first_steps/startup_options/bridge_mode]]." +#~ "first_steps/welcome_screen/bridge_mode]]." #~ msgid "[[!meta title=\"Controlling Tor using Vidalia\"]]\n" #~ msgstr "[[!meta title=\"Controlando o Tor com Vidalia\"]]\n" @@ -433,7 +433,7 @@ msgstr "" #~ msgid "" #~ "<span class=\"application\">Vidalia</span> allows you to control some of " #~ "the\n" -#~ "functionalities of Tor. Unless [[first_steps/startup_options/" +#~ "functionalities of Tor. Unless [[first_steps/welcome_screen/" #~ "Windows_Camouflage]] is enabled, Vidalia will\n" #~ "be started automatically when an [[Internet connection|networkmanager]] " #~ "is established.\n" @@ -518,10 +518,10 @@ msgstr "" #~ msgstr "Conecte-se Através de uma Bridge\n" #~ msgid "" -#~ "[[See the corresponding documentation.|first_steps/startup_options/" +#~ "[[See the corresponding documentation.|first_steps/welcome_screen/" #~ "bridge_mode]]" #~ msgstr "" -#~ "[[Veja a documentação correspondente.|first_steps/startup_options/" +#~ "[[Veja a documentação correspondente.|first_steps/welcome_screen/" #~ "bridge_mode]]" #~ msgid "Configuring Hidden Services for Tor\n" diff --git a/wiki/src/doc/anonymous_internet/tor_status.ru.po b/wiki/src/doc/anonymous_internet/tor_status.ru.po index ddcc32d9124c2e785f29591fd9aa4495e9735904..eecdc2e852b2e545d2db2579a636344ed3195161 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.ru.po +++ b/wiki/src/doc/anonymous_internet/tor_status.ru.po @@ -127,7 +127,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The first relay or *entry guard*. If you configured a [[Tor bridge|" -"first_steps/startup_options/bridge_mode]], your bridge is the first relay." +"first_steps/welcome_screen/bridge_mode]], your bridge is the first relay." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/anonymous_internet/tor_status.sr_Latn.po b/wiki/src/doc/anonymous_internet/tor_status.sr_Latn.po index a908c95dfc3b274a763c27fe2c9df0b10112a34e..210899cba08478bff17f454d5f9ad87eced44ac7 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.sr_Latn.po +++ b/wiki/src/doc/anonymous_internet/tor_status.sr_Latn.po @@ -127,7 +127,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The first relay or *entry guard*. If you configured a [[Tor bridge|" -"first_steps/startup_options/bridge_mode]], your bridge is the first relay." +"first_steps/welcome_screen/bridge_mode]], your bridge is the first relay." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/anonymous_internet/tor_status.tr.po b/wiki/src/doc/anonymous_internet/tor_status.tr.po index 06fd94e47e1cf13e95ff1643cd66c77f529bdced..46db85c8f64e0a8d3f059138d2b8027397f0ed76 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.tr.po +++ b/wiki/src/doc/anonymous_internet/tor_status.tr.po @@ -126,7 +126,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The first relay or *entry guard*. If you configured a [[Tor bridge|" -"first_steps/startup_options/bridge_mode]], your bridge is the first relay." +"first_steps/welcome_screen/bridge_mode]], your bridge is the first relay." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/anonymous_internet/tor_status.zh.po b/wiki/src/doc/anonymous_internet/tor_status.zh.po index d62d85bb2aff7f880b741906e5980d2184423276..f5ff561e09ae00298dae441b05ca57fc60bc2c5e 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.zh.po +++ b/wiki/src/doc/anonymous_internet/tor_status.zh.po @@ -126,7 +126,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The first relay or *entry guard*. If you configured a [[Tor bridge|" -"first_steps/startup_options/bridge_mode]], your bridge is the first relay." +"first_steps/welcome_screen/bridge_mode]], your bridge is the first relay." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/anonymous_internet/tor_status.zh_TW.po b/wiki/src/doc/anonymous_internet/tor_status.zh_TW.po index bc18783d16d8b949138f7eaab035d8c8dbee45ab..00a4d27bd10591b0699e0c1a9198ef74afc843b1 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.zh_TW.po +++ b/wiki/src/doc/anonymous_internet/tor_status.zh_TW.po @@ -125,7 +125,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The first relay or *entry guard*. If you configured a [[Tor bridge|" -"first_steps/startup_options/bridge_mode]], your bridge is the first relay." +"first_steps/welcome_screen/bridge_mode]], your bridge is the first relay." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/anonymous_internet/unsafe_browser.de.po b/wiki/src/doc/anonymous_internet/unsafe_browser.de.po index 42148979c733f14d40583252e7c0bc0f916ad845..f894f94d45f2e4dd5c9f584e2e63ba6c0fa7a412 100644 --- a/wiki/src/doc/anonymous_internet/unsafe_browser.de.po +++ b/wiki/src/doc/anonymous_internet/unsafe_browser.de.po @@ -141,14 +141,14 @@ msgstr "" #~ "ein Browser mit uneingeschränktem Internetzugriff nötig." #~ msgid "" -#~ "When using [[doc/first_steps/startup_options/windows_camouflage]] the red " +#~ "When using [[doc/first_steps/welcome_screen/windows_camouflage]] the red " #~ "theme is disabled in order to raise less suspicion. It is still possible " #~ "to quietly identify the <span class=\"application\">Unsafe Browser</span> " #~ "since it has English Wikipedia as its default (and only) search engine in " #~ "the navigation toolbar. The lack of the onion icon is another such visual " #~ "reminder." #~ msgstr "" -#~ "Wenn [[Windows Camouflage|doc/first_steps/startup_options/" +#~ "Wenn [[Windows Camouflage|doc/first_steps/welcome_screen/" #~ "windows_camouflage]] benutzt wird, ist das rote Farbschema deaktiviert, " #~ "um weniger Aufmerksamkeit zu erregen. Es ist dennoch möglich, den <span " #~ "class=\"application\">Unsicheren Browser</span> in Ruhe zu erkennen, da " diff --git a/wiki/src/doc/anonymous_internet/unsafe_browser.fa.po b/wiki/src/doc/anonymous_internet/unsafe_browser.fa.po index ae5cdbeebc9f92295c75e793f5da9093ef015c59..2a74bc22f758522ed77690f8b3ebcea51994de69 100644 --- a/wiki/src/doc/anonymous_internet/unsafe_browser.fa.po +++ b/wiki/src/doc/anonymous_internet/unsafe_browser.fa.po @@ -140,14 +140,14 @@ msgstr "" #~ "نامحدود به اینترنت ضروری است." #~ msgid "" -#~ "When using [[doc/first_steps/startup_options/windows_camouflage]] the red " +#~ "When using [[doc/first_steps/welcome_screen/windows_camouflage]] the red " #~ "theme is disabled in order to raise less suspicion. It is still possible " #~ "to quietly identify the <span class=\"application\">Unsafe Browser</span> " #~ "since it has English Wikipedia as its default (and only) search engine in " #~ "the navigation toolbar. The lack of the onion icon is another such visual " #~ "reminder." #~ msgstr "" -#~ "هنگام استفاده از [[doc/first_steps/startup_options/windows_camouflage]] " +#~ "هنگام استفاده از [[doc/first_steps/welcome_screen/windows_camouflage]] " #~ "تم قرمز برای جلوگیری از مشکوک شدن دیگران غیرفعال میشود. همچنان امکان " #~ "شناسایی <span class=\"application\">مرورگر غیرامن</span> وجود دارد، چون " #~ "موتور جستجوی پیشفرض (و تنها موتور جستجوی آن) در نوار ابزار مرور ویکیپدیای " diff --git a/wiki/src/doc/anonymous_internet/unsafe_browser.fr.po b/wiki/src/doc/anonymous_internet/unsafe_browser.fr.po index 456db1edd32005069b634a9e6ac83d36082272a8..e1ef8a4e620663d5f82ed377d58206f597f90ec9 100644 --- a/wiki/src/doc/anonymous_internet/unsafe_browser.fr.po +++ b/wiki/src/doc/anonymous_internet/unsafe_browser.fr.po @@ -139,7 +139,7 @@ msgstr "" #~ "navigateur web ayant un accès sans restriction à Internet est nécessaire." #~ msgid "" -#~ "When using [[doc/first_steps/startup_options/windows_camouflage]] the red " +#~ "When using [[doc/first_steps/welcome_screen/windows_camouflage]] the red " #~ "theme is disabled in order to raise less suspicion. It is still possible " #~ "to quietly identify the <span class=\"application\">Unsafe Browser</span> " #~ "since it has English Wikipedia as its default (and only) search engine in " @@ -147,7 +147,7 @@ msgstr "" #~ "reminder." #~ msgstr "" #~ "Lorsque vous utilisez l'option [[Windows camouflage|doc/first_steps/" -#~ "startup_options/windows_camouflage]], le thème rouge est désactivé pour " +#~ "welcome_screen/windows_camouflage]], le thème rouge est désactivé pour " #~ "éviter d'éveiller les soupçons. Il est toujours possible de différencier " #~ "le <span class=\"application\">Navigateur Non-sécurisé</span> par le fait " #~ "que Wikipedia en anglais est le moteur de recherche par défaut, et le " diff --git a/wiki/src/doc/anonymous_internet/unsafe_browser.pt.po b/wiki/src/doc/anonymous_internet/unsafe_browser.pt.po index a9fb1edcaee74dc6c07ee9410800fd6cc5e3279c..811a09da7b2a65909404788931a3b39973902c5d 100644 --- a/wiki/src/doc/anonymous_internet/unsafe_browser.pt.po +++ b/wiki/src/doc/anonymous_internet/unsafe_browser.pt.po @@ -151,7 +151,7 @@ msgstr "" #~ "irrestrito à rede." #~ msgid "" -#~ "When using [[doc/first_steps/startup_options/windows_camouflage]] the red " +#~ "When using [[doc/first_steps/welcome_screen/windows_camouflage]] the red " #~ "theme is disabled in order to raise less suspicion. It is still possible " #~ "to quietly identify the <span class=\"application\">Unsafe Browser</span> " #~ "since it has English Wikipedia as its default (and only) search engine in " @@ -159,7 +159,7 @@ msgstr "" #~ "reminder." #~ msgstr "" #~ "Quando estiver usando a [[camuflagem windows|doc/first_steps/" -#~ "startup_options/windows_camouflage]], o tema vermelho estará desabilitado " +#~ "welcome_screen/windows_camouflage]], o tema vermelho estará desabilitado " #~ "para levantar menos suspeitas. Ainda será possível identificar " #~ "silenciosamente o <span class=\"application\">Navegador Inseguro</span> " #~ "pois ele tem a Wikipedia em inglês como sua ferramenta de busca padrão (e " diff --git a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.fr.po b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.fr.po index 431b473eec1e20bfc21ce11e4d58a06218d4bed6..773abbe01e6ad77aa99f432a08bd8ac3bc59558f 100644 --- a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.fr.po +++ b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.fr.po @@ -718,14 +718,14 @@ msgstr " </span> et choisissez <span class=\"guimenu\">Modifier la phrase de p #~ msgid "" #~ "<p>[[Administration\n" -#~ "privileges|first_steps/startup_options/administration_password]] are " +#~ "privileges|first_steps/welcome_screen/administration_password]] are " #~ "required to\n" #~ "modify the list of partitions on the USB stick or SD card from which " #~ "Tails is\n" #~ "running.</p>\n" #~ msgstr "" #~ "<p>Les [[droits\n" -#~ "d'administration|first_steps/startup_options/administration_password]] " +#~ "d'administration|first_steps/welcome_screen/administration_password]] " #~ "sont nécessaires\n" #~ "pour modifier la liste des partitions sur la clé USB ou la carte SD " #~ "depuis laquelle Tails est\n" diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.ar.po b/wiki/src/doc/encryption_and_privacy/veracrypt.ar.po index eb3597f0006edc4b80ef722e0a0dcd821709d0b8..9c9c9de1497df5c58cf9e5df9e3c4ba73c2e5ce7 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.ar.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.ar.po @@ -456,7 +456,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "If your partition or drive is on an internal hard disk, [[set up an " -"administration password|doc/first_steps/startup_options/" +"administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails." msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.ca.po b/wiki/src/doc/encryption_and_privacy/veracrypt.ca.po index 24210e758bc384d4f1351ac62f2320c9ea8f95a7..86878a1773ecec4dfa748412706ba99516d9a38c 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.ca.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.ca.po @@ -455,7 +455,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "If your partition or drive is on an internal hard disk, [[set up an " -"administration password|doc/first_steps/startup_options/" +"administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails." msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.de.po b/wiki/src/doc/encryption_and_privacy/veracrypt.de.po index bf83025dd24db563a715952e36f3fd5ef01d64af..770e996e0278fc46fc878abad2c268c871d8a815 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.de.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.de.po @@ -458,7 +458,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "If your partition or drive is on an internal hard disk, [[set up an " -"administration password|doc/first_steps/startup_options/" +"administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails." msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.es.po b/wiki/src/doc/encryption_and_privacy/veracrypt.es.po index 7d45a251d38289df3871732ea6a94bfceaf975bf..7bbadeed0fc7fd00f46529d1555a12ecedf0194e 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.es.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.es.po @@ -461,7 +461,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "If your partition or drive is on an internal hard disk, [[set up an " -"administration password|doc/first_steps/startup_options/" +"administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails." msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.fa.po b/wiki/src/doc/encryption_and_privacy/veracrypt.fa.po index 70c60cadedc7ca907681f14571dc6f89ba762c8a..5ac5e8029f50ab3055aa8e72e994fe2c855c51ed 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.fa.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.fa.po @@ -453,7 +453,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "If your partition or drive is on an internal hard disk, [[set up an " -"administration password|doc/first_steps/startup_options/" +"administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails." msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.fr.po b/wiki/src/doc/encryption_and_privacy/veracrypt.fr.po index ef79bd09a44c8459194980ec087c603947065eb9..5ae059aa8c8f97503d01b41190c08f88ffe5ad66 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.fr.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.fr.po @@ -563,11 +563,11 @@ msgstr "Déverrouiller une partition ou un périphérique sans fichiers clés\n" #. type: Bullet: '1. ' msgid "" "If your partition or drive is on an internal hard disk, [[set up an " -"administration password|doc/first_steps/startup_options/" +"administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails." msgstr "" "Si votre partition ou périphérique est un disque dur interne, [[configurez " -"un mot de passe d'administration|doc/first_steps/startup_options/" +"un mot de passe d'administration|doc/first_steps/welcome_screen/" "administration_password]] lors du démarrage de Tails." #. type: Plain text diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.id.po b/wiki/src/doc/encryption_and_privacy/veracrypt.id.po index fae63b03fab8276b8732ba8385e0e4548b1dfec0..915437ee093b3fbe215d9e636fab93c13e1a5374 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.id.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.id.po @@ -456,7 +456,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "If your partition or drive is on an internal hard disk, [[set up an " -"administration password|doc/first_steps/startup_options/" +"administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails." msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.it.po b/wiki/src/doc/encryption_and_privacy/veracrypt.it.po index df56a1e0982c91d466ae28b27f84e589e86ff034..c95761807ebb84c8256f70dbf931851a244490e3 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.it.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.it.po @@ -559,11 +559,11 @@ msgstr "Sbloccare una partizione o drive senza keyfiles\n" #. type: Bullet: '1. ' msgid "" "If your partition or drive is on an internal hard disk, [[set up an " -"administration password|doc/first_steps/startup_options/" +"administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails." msgstr "" "Se la vostra partizione o il vostro drive è su un hard disk interno, " -"[[settate la password di amministrazione |doc/first_steps/startup_options/" +"[[settate la password di amministrazione |doc/first_steps/welcome_screen/" "administration_password]] quando avviate Tails." #. type: Plain text diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.mdwn b/wiki/src/doc/encryption_and_privacy/veracrypt.mdwn index 1b9cd84204ad971894f39b694f78f17e45e20cab..13a24b4192d647959919a526fb9b5eb4eedd70b5 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.mdwn +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.mdwn @@ -217,7 +217,7 @@ Unlocking a partition or drive without keyfiles ----------------------------------------------- 1. If your partition or drive is on an internal hard disk, [[set up an administration - password|doc/first_steps/startup_options/administration_password]] when + password|doc/first_steps/welcome_screen/administration_password]] when starting Tails. Otherwise, plug in the USB stick or the hard disk that you want to @@ -248,7 +248,7 @@ Unlocking a partition or drive with keyfiles -------------------------------------------- 1. If your partition or drive is on an internal hard disk, [[set up an administration - password|doc/first_steps/startup_options/administration_password]] when + password|doc/first_steps/welcome_screen/administration_password]] when starting Tails. Otherwise, plug in the USB stick or the hard disk that you want to diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.pl.po b/wiki/src/doc/encryption_and_privacy/veracrypt.pl.po index 33344075949d1777c12e22f2cc8994b4eecbf8d7..1f1ed69ba8735aef9994203b14c804f1ccdbf99b 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.pl.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.pl.po @@ -456,7 +456,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "If your partition or drive is on an internal hard disk, [[set up an " -"administration password|doc/first_steps/startup_options/" +"administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails." msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.pt.po b/wiki/src/doc/encryption_and_privacy/veracrypt.pt.po index 5716f681ad2c03ea1ea15444f9019c2238283da0..bd1a1f6caac0eb2eb4e7222e890509aa2b0ee7c1 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.pt.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.pt.po @@ -456,7 +456,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "If your partition or drive is on an internal hard disk, [[set up an " -"administration password|doc/first_steps/startup_options/" +"administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails." msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.ru.po b/wiki/src/doc/encryption_and_privacy/veracrypt.ru.po index 8360338e864899aef99cab9c7b193336e9873c8e..7f678c9dc86f10c0b815c873a86641ad2e10a23f 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.ru.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.ru.po @@ -456,7 +456,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "If your partition or drive is on an internal hard disk, [[set up an " -"administration password|doc/first_steps/startup_options/" +"administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails." msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.sr_Latn.po b/wiki/src/doc/encryption_and_privacy/veracrypt.sr_Latn.po index 6273b46466d636244877436d9c01ea52fed2062b..ebb767baed20972b99edf14dee485fcb41a94688 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.sr_Latn.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.sr_Latn.po @@ -456,7 +456,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "If your partition or drive is on an internal hard disk, [[set up an " -"administration password|doc/first_steps/startup_options/" +"administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails." msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.tr.po b/wiki/src/doc/encryption_and_privacy/veracrypt.tr.po index 2b4ababe208062576d4737ffcd0ac380f33d624e..58f4590e3677aa987abca33e8f4295b7ed30d477 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.tr.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.tr.po @@ -455,7 +455,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "If your partition or drive is on an internal hard disk, [[set up an " -"administration password|doc/first_steps/startup_options/" +"administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails." msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.zh.po b/wiki/src/doc/encryption_and_privacy/veracrypt.zh.po index 4092c7b65d3c71b9cd539eb2a7feef58a76e804d..a661697af8638d83664d4e50451c6d295c4985be 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.zh.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.zh.po @@ -455,7 +455,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "If your partition or drive is on an internal hard disk, [[set up an " -"administration password|doc/first_steps/startup_options/" +"administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails." msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.zh_TW.po b/wiki/src/doc/encryption_and_privacy/veracrypt.zh_TW.po index ed7ca7fddf1f4e7742a24637417cca3c4e4c6d22..7029afb1783d4e405efeeb196cedd67ac03ddb62 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.zh_TW.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.zh_TW.po @@ -455,7 +455,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "If your partition or drive is on an internal hard disk, [[set up an " -"administration password|doc/first_steps/startup_options/" +"administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails." msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.ar.po b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.ar.po index 13692d6389db2598bbd437ca28e00c4583b5b6cc..784c8b20907be559198ff402055d442d77ee88c5 100644 --- a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.ar.po +++ b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.ar.po @@ -96,7 +96,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password/]]." +"welcome_screen/administration_password/]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.ca.po b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.ca.po index 4ab4880103063370221e831cb2a6eb67d7b2a710..1014428a6d22405dec919fb1e2f83e74b3305af5 100644 --- a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.ca.po +++ b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.ca.po @@ -94,7 +94,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password/]]." +"welcome_screen/administration_password/]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.de.po b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.de.po index d008e12ea2e0220b3689268dca9f41fbe9e1a6dc..c2117772362d9f0b51244224497c090caab3cc31 100644 --- a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.de.po +++ b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.de.po @@ -125,10 +125,10 @@ msgstr "Um auf eingebaute Speichermedien zuzugreifen:" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password/]]." +"welcome_screen/administration_password/]]." msgstr "" "Stellen Sie beim Start von Tails [[ein Administrationspasswort ein|doc/" -"first_steps/startup_options/administration_password/]]." +"first_steps/welcome_screen/administration_password/]]." #. type: Bullet: '2. ' #, fuzzy diff --git a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.es.po b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.es.po index 1e63af033b49bd6d06070130e21ffa357290cb90..cb9a5f1562cb1e55669ab9733f4e6de361b76483 100644 --- a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.es.po +++ b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.es.po @@ -94,7 +94,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password/]]." +"welcome_screen/administration_password/]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.fa.po b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.fa.po index 3ea983fabb0161d55d0b3f93b15a113706494aa5..7d3a4f31a68058d3aa1717df0bdd9b9ece67abc7 100644 --- a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.fa.po +++ b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.fa.po @@ -125,10 +125,10 @@ msgstr "برای دسترسی به سختدیسکهای داخلی:" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password/]]." +"welcome_screen/administration_password/]]." msgstr "" "هنگام آغاز تیلز Tails, [[یک گذرواژهٔ مدیریتی ایجاد کنید|doc/first_steps/" -"startup_options/administration_password/]]." +"welcome_screen/administration_password/]]." #. type: Bullet: '2. ' #, fuzzy diff --git a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.fr.po b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.fr.po index 1151c28685ef03249d390c8b0f4794fd85241730..57ef0b93d65cd1da066c0a83239b5f888021d818 100644 --- a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.fr.po +++ b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.fr.po @@ -114,10 +114,10 @@ msgstr "Pour accéder aux disques durs internes :" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password/]]." +"welcome_screen/administration_password/]]." msgstr "" "Lors du démarrage de Tails, [[définir un mot de passe d'administration|doc/" -"first_steps/startup_options/administration_password/]]." +"first_steps/welcome_screen/administration_password/]]." #. type: Bullet: '2. ' msgid "" diff --git a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.id.po b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.id.po index e32923c70da3e01c33c7db5f89eca10a02b15390..d3f9556547fafd75df092828712a2ed3a765fcd2 100644 --- a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.id.po +++ b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.id.po @@ -94,7 +94,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password/]]." +"welcome_screen/administration_password/]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.it.po b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.it.po index 9ee71f3e315e7846bfd4b2892bc8b2ac8463ecdd..af209d941f7e89b1a69eeded055956c9845edff5 100644 --- a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.it.po +++ b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.it.po @@ -91,7 +91,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password/]]." +"welcome_screen/administration_password/]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.mdwn b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.mdwn index 5026531a6ed4da9e26f8d8d4cc7ace28b97d9b41..f941e5e4a906bc59ea46c9bad9941b05b9370bc1 100644 --- a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.mdwn +++ b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.mdwn @@ -36,7 +36,7 @@ Accessing internal hard disks To access internal hard disks: -1. When starting Tails, [[set up an administration password|doc/first_steps/startup_options/administration_password/]]. +1. When starting Tails, [[set up an administration password|doc/first_steps/welcome_screen/administration_password/]]. 2. Open the [[*Files* browser|doc/first_steps/introduction_to_gnome_and_the_tails_desktop#files]]. diff --git a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.pl.po b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.pl.po index a9cc8dd0f0dc554baceb96da0b82d80924cbaa8b..367dd6c5a4f797ed2bdc6094ffbf04808a4392d1 100644 --- a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.pl.po +++ b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.pl.po @@ -95,7 +95,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password/]]." +"welcome_screen/administration_password/]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.pt.po b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.pt.po index a7b9e1bdfb34665b06dd67d69a4fedc33f901712..a5cecd35ea833a903565af1181c991cd27eb254b 100644 --- a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.pt.po +++ b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.pt.po @@ -95,7 +95,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password/]]." +"welcome_screen/administration_password/]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.ru.po b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.ru.po index d7f01fa547bb45ff059819207b586c8bcfaa3beb..a1ab994177084a92f43409143a96abc94f9a5460 100644 --- a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.ru.po +++ b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.ru.po @@ -95,7 +95,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password/]]." +"welcome_screen/administration_password/]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.sr_Latn.po b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.sr_Latn.po index ec082a0a2e75b33b7ad326da13a9b3637efcfd36..5aadb95470f58436e5e7e743abc8beb4118c3f72 100644 --- a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.sr_Latn.po +++ b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.sr_Latn.po @@ -95,7 +95,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password/]]." +"welcome_screen/administration_password/]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.tr.po b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.tr.po index 4871419ad8d7f67b4281ae169d475217d7d7197f..ea08a509b9e23c10583437ac25f3bfa1518817e0 100644 --- a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.tr.po +++ b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.tr.po @@ -94,7 +94,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password/]]." +"welcome_screen/administration_password/]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.zh.po b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.zh.po index d9a2bc76714712e0ee1946268643553dc4eb62a5..8b5d352e4c56d8c965fd20ab5a04b04e10e25902 100644 --- a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.zh.po +++ b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.zh.po @@ -94,7 +94,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password/]]." +"welcome_screen/administration_password/]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.zh_TW.po b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.zh_TW.po index a02f1090817ec21c9824a29935f25e80dbfb1d60..97dcd58ef0a5fa152368a61108e8e2be5090a3b2 100644 --- a/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.zh_TW.po +++ b/wiki/src/doc/encryption_and_privacy/your_data_wont_be_saved_unless_explicitly_asked.zh_TW.po @@ -94,7 +94,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "When starting Tails, [[set up an administration password|doc/first_steps/" -"startup_options/administration_password/]]." +"welcome_screen/administration_password/]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/first_steps.index.ar.po b/wiki/src/doc/first_steps.index.ar.po index 6c89a5c821adb0c410afecdaf96413923d4e3d6a..dd1b4c464074b196f0e7663e6b4ca6c09c72a7a1 100644 --- a/wiki/src/doc/first_steps.index.ar.po +++ b/wiki/src/doc/first_steps.index.ar.po @@ -27,10 +27,10 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" - [[!traillink Startup_options|first_steps/startup_options]]\n" -" - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" -" - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Startup_options|first_steps/welcome_screen]]\n" +" - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" diff --git a/wiki/src/doc/first_steps.index.ca.po b/wiki/src/doc/first_steps.index.ca.po index 166abbb6123a4fd0c31be0133404e395d0ec2a06..5e80b5dadaf03982d20d88ab934ad8cc7bbcfa58 100644 --- a/wiki/src/doc/first_steps.index.ca.po +++ b/wiki/src/doc/first_steps.index.ca.po @@ -27,10 +27,10 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" - [[!traillink Startup_options|first_steps/startup_options]]\n" -" - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" -" - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Startup_options|first_steps/welcome_screen]]\n" +" - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" diff --git a/wiki/src/doc/first_steps.index.de.po b/wiki/src/doc/first_steps.index.de.po index 5efa348c8ce9d6b4ed21d2479e2a0af87cd4b7a0..448245f78d3d18c0d856f9879fd4d1cd344ae094 100644 --- a/wiki/src/doc/first_steps.index.de.po +++ b/wiki/src/doc/first_steps.index.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-11-21 09:32+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2018-05-25 14:31+0200\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -27,10 +27,10 @@ msgstr "[[!traillink Barrierefreiheit|first_steps/accessibility]]" #. type: Plain text #, fuzzy, no-wrap #| msgid "" -#| " - [[!traillink Startup_options|first_steps/startup_options]]\n" -#| " - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" -#| " - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]]\n" -#| " - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]\n" +#| " - [[!traillink Startup_options|first_steps/welcome_screen]]\n" +#| " - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +#| " - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +#| " - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" #| " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" #| " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" #| " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" @@ -48,10 +48,10 @@ msgstr "[[!traillink Barrierefreiheit|first_steps/accessibility]]" #| " [[!traillink Windows|first_steps/reset/windows]],\n" #| " or [[!traillink Mac|first_steps/reset/mac]]\n" msgid "" -" - [[!traillink Startup_options|first_steps/startup_options]]\n" -" - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" -" - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Welcome_Screen|first_steps/welcome_screen]]\n" +" - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" @@ -63,10 +63,10 @@ msgid "" " - [[!traillink Report_an_error|first_steps/bug_reporting]]\n" " - [[!traillink Shutting_down_Tails|first_steps/shutdown]]\n" msgstr "" -" - [[!traillink Startoptionen|first_steps/startup_options]]\n" -" - [[!traillink Administrationspasswort|first_steps/startup_options/administration_password]]\n" -" - [[!traillink Verschleiern_der_MAC-Adresse|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Tor_Bridge_Modus|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Startoptionen|first_steps/welcome_screen]]\n" +" - [[!traillink Administrationspasswort|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink Verschleiern_der_MAC-Adresse|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_Bridge_Modus|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Einführung_in_GNOME_und_die_Arbeitsumgebung_von_Tails|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Verschlüsselter_beständiger_Speicherbereich|first_steps/persistence]]\n" " - [[!traillink Warnungen_zu_Beständigkeit|first_steps/persistence/warnings]]\n" diff --git a/wiki/src/doc/first_steps.index.es.po b/wiki/src/doc/first_steps.index.es.po index b905218971338d1139101ad6c367436639811801..fabf357a1a56fdbac54ff6ed107ff9fefa8e9996 100644 --- a/wiki/src/doc/first_steps.index.es.po +++ b/wiki/src/doc/first_steps.index.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-11-21 09:32+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-01-14 18:25+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -27,12 +27,27 @@ msgid "[[!traillink Accessibility|first_steps/accessibility]]" msgstr "[[!traillink Accesibilidad|first_steps/accessibility]]" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| " - [[!traillink Startup_options|first_steps/welcome_screen]]\n" +#| " - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +#| " - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +#| " - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" +#| " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" +#| " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" +#| " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" +#| " - [[!traillink Create_&_configure_the_persistent_volume|first_steps/persistence/configure]]\n" +#| " - [[!traillink Enable_&_use_the_persistent_volume|first_steps/persistence/use]]\n" +#| " - [[!traillink Make_a_backup_of_your_persistent_volume|first_steps/persistence/copy]]\n" +#| " - [[!traillink Delete_the_persistent_volume|first_steps/persistence/delete]]\n" +#| " - [[!traillink Installing_additional_software|first_steps/additional_software]]\n" +#| " - [[!traillink Report_an_error|first_steps/bug_reporting]]\n" +#| " - [[!traillink Shutting_down_Tails|first_steps/shutdown]]\n" msgid "" -" - [[!traillink Startup_options|first_steps/startup_options]]\n" -" - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" -" - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Welcome_Screen|first_steps/welcome_screen]]\n" +" - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" @@ -44,28 +59,18 @@ msgid "" " - [[!traillink Report_an_error|first_steps/bug_reporting]]\n" " - [[!traillink Shutting_down_Tails|first_steps/shutdown]]\n" msgstr "" -" - [[!traillink Opciones_de_arranque|first_steps/startup_options]]\n" -" - [[!traillink Contraseña_de_administración|first_steps/startup_options/" -"administration_password]]\n" -" - [[!traillink MAC_address_spoofing|first_steps/startup_options/" -"mac_spoofing]]\n" -" - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]" -"\n" -" - [[!traillink Introducción_a_Tails_y_al_escritorio_de_GNOME|first_steps/" -"introduction_to_gnome_and_the_tails_desktop]]\n" +" - [[!traillink Opciones_de_arranque|first_steps/welcome_screen]]\n" +" - [[!traillink Contraseña_de_administración|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" +" - [[!traillink Introducción_a_Tails_y_al_escritorio_de_GNOME|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Persistencia_encriptada|first_steps/persistence]]\n" -" - [[!traillink Advertencias_sobre_la_persistencia|first_steps/" -"persistence/warnings]]\n" -" - [[!traillink Crea_y_configura_el_volumen_persistente|first_steps/" -"persistence/configure]]\n" -" - [[!traillink Habilita_y_usa_el_volumen_persistente|first_steps/" -"persistence/use]]\n" -" - [[!traillink Haz_una_copia_de_seguridad_del_volumen_persistente|" -"first_steps/persistence/copy]]\n" -" - [[!traillink Borra_el_volumen_persistente|first_steps/persistence/" -"delete]]\n" -" - [[!traillink Instalando_software_adicional|first_steps/" -"additional_software]]\n" +" - [[!traillink Advertencias_sobre_la_persistencia|first_steps/persistence/warnings]]\n" +" - [[!traillink Crea_y_configura_el_volumen_persistente|first_steps/persistence/configure]]\n" +" - [[!traillink Habilita_y_usa_el_volumen_persistente|first_steps/persistence/use]]\n" +" - [[!traillink Haz_una_copia_de_seguridad_del_volumen_persistente|first_steps/persistence/copy]]\n" +" - [[!traillink Borra_el_volumen_persistente|first_steps/persistence/delete]]\n" +" - [[!traillink Instalando_software_adicional|first_steps/additional_software]]\n" " - [[!traillink Reporta_un_error|first_steps/bug_reporting]]\n" " - [[!traillink Apagar_Tails|first_steps/shutdown]]\n" diff --git a/wiki/src/doc/first_steps.index.fa.po b/wiki/src/doc/first_steps.index.fa.po index 3ae2b6b15d26e154094d165ddacf196a8d6829e0..9fb576edf05a1a4561512f28db6f32d564768f98 100644 --- a/wiki/src/doc/first_steps.index.fa.po +++ b/wiki/src/doc/first_steps.index.fa.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-11-21 09:32+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2015-10-25 18:08+0000\n" "Last-Translator: sprint5 <translation5@451f.org>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" @@ -30,10 +30,10 @@ msgstr "[[!traillink دسترسیپذیری|first_steps/accessibility]]" #. type: Plain text #, fuzzy, no-wrap msgid "" -" - [[!traillink Startup_options|first_steps/startup_options]]\n" -" - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" -" - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Welcome_Screen|first_steps/welcome_screen]]\n" +" - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" @@ -55,10 +55,10 @@ msgstr "" " [[!traillink ویندوز|first_steps/reset/windows]]،\n" " یا [[!traillink مک|first_steps/reset/mac]]\n" " - [[!traillink ارتقای_یک_درایو_یواسبی_یا_کارت_حافظهٔ_تیلز|first_steps/upgrade]]\n" -" - [[!traillink گزینههای_راهاندازی|first_steps/startup_options]]\n" -" - [[!traillink گذرواژهٔ_مدیریتی|first_steps/startup_options/administration_password]]\n" -" - [[!traillink جا_زدن_آدرس_مک|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink حالت_پل_تور|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink گزینههای_راهاندازی|first_steps/welcome_screen]]\n" +" - [[!traillink گذرواژهٔ_مدیریتی|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink جا_زدن_آدرس_مک|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink حالت_پل_تور|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink آشنایی_با_گنوم_و_دسکتاپ_تیلز|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink مانای_رمزگذاریشده|first_steps/persistence]]\n" " - [[!traillink هشدارهایی_در_مورد_مانا|first_steps/persistence/warnings]]\n" diff --git a/wiki/src/doc/first_steps.index.fr.po b/wiki/src/doc/first_steps.index.fr.po index f7fe6fdcc38f99d61a50610722bd7ffc3221b6f6..7085bd101a87c86cf5b1f7f47ce263a633a62cbf 100644 --- a/wiki/src/doc/first_steps.index.fr.po +++ b/wiki/src/doc/first_steps.index.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-11-21 09:32+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-01-11 17:36+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -27,12 +27,27 @@ msgid "[[!traillink Accessibility|first_steps/accessibility]]" msgstr "[[!traillink Accessibilité|first_steps/accessibility]]" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| " - [[!traillink Startup_options|first_steps/welcome_screen]]\n" +#| " - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +#| " - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +#| " - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" +#| " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" +#| " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" +#| " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" +#| " - [[!traillink Create_&_configure_the_persistent_volume|first_steps/persistence/configure]]\n" +#| " - [[!traillink Enable_&_use_the_persistent_volume|first_steps/persistence/use]]\n" +#| " - [[!traillink Make_a_backup_of_your_persistent_volume|first_steps/persistence/copy]]\n" +#| " - [[!traillink Delete_the_persistent_volume|first_steps/persistence/delete]]\n" +#| " - [[!traillink Installing_additional_software|first_steps/additional_software]]\n" +#| " - [[!traillink Report_an_error|first_steps/bug_reporting]]\n" +#| " - [[!traillink Shutting_down_Tails|first_steps/shutdown]]\n" msgid "" -" - [[!traillink Startup_options|first_steps/startup_options]]\n" -" - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" -" - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Welcome_Screen|first_steps/welcome_screen]]\n" +" - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" @@ -44,28 +59,18 @@ msgid "" " - [[!traillink Report_an_error|first_steps/bug_reporting]]\n" " - [[!traillink Shutting_down_Tails|first_steps/shutdown]]\n" msgstr "" -" - [[!traillink Options_de_démarrage|first_steps/startup_options]]\n" -" - [[!traillink Mot_de_passe_d'administration|first_steps/startup_options/" -"administration_password]]\n" -" - [[!traillink Usurpation_d'adresse_MAC|first_steps/startup_options/" -"mac_spoofing]]\n" -" - [[!traillink Tor_en_mode_bridge|first_steps/startup_options/" -"bridge_mode]]\n" -" - [[!traillink Introduction_à_GNOME_et_au_bureau_de_Tails|first_steps/" -"introduction_to_gnome_and_the_tails_desktop]]\n" +" - [[!traillink Options_de_démarrage|first_steps/welcome_screen]]\n" +" - [[!traillink Mot_de_passe_d'administration|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink Usurpation_d'adresse_MAC|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_en_mode_bridge|first_steps/welcome_screen/bridge_mode]]\n" +" - [[!traillink Introduction_à_GNOME_et_au_bureau_de_Tails|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Persistance_chiffrée|first_steps/persistence]]\n" -" - [[!traillink Avertissements_à_propos_de_la_persistance|first_steps/" -"persistence/warnings]]\n" -" - [[!traillink Créer_et_configurer_le_volume_persistant|first_steps/" -"persistence/configure]]\n" -" - [[!traillink Activer_et_utiliser_le_volume_persistant|first_steps/" -"persistence/use]]\n" -" - [[!traillink Créer_une_sauvegarder_de_votre_volume_persistant|" -"first_steps/persistence/copy]]\n" -" - [[!traillink Supprimer_le_volume_persistant|first_steps/persistence/" -"delete]]\n" -" - [[!traillink Installer_des_logiciels_supplémentaires|first_steps/" -"additional_software]]\n" +" - [[!traillink Avertissements_à_propos_de_la_persistance|first_steps/persistence/warnings]]\n" +" - [[!traillink Créer_et_configurer_le_volume_persistant|first_steps/persistence/configure]]\n" +" - [[!traillink Activer_et_utiliser_le_volume_persistant|first_steps/persistence/use]]\n" +" - [[!traillink Créer_une_sauvegarder_de_votre_volume_persistant|first_steps/persistence/copy]]\n" +" - [[!traillink Supprimer_le_volume_persistant|first_steps/persistence/delete]]\n" +" - [[!traillink Installer_des_logiciels_supplémentaires|first_steps/additional_software]]\n" " - [[!traillink Signaler_une_erreur|first_steps/bug_reporting]]\n" " - [[!traillink Éteindre_Tails|first_steps/shutdown]]\n" diff --git a/wiki/src/doc/first_steps.index.id.po b/wiki/src/doc/first_steps.index.id.po index a2d0cc3ce9390ed9ea74d370ac4f3be6e26312d9..e9d6ad15963cf405f96ed0c62ea9f3147282a51f 100644 --- a/wiki/src/doc/first_steps.index.id.po +++ b/wiki/src/doc/first_steps.index.id.po @@ -27,10 +27,10 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" - [[!traillink Startup_options|first_steps/startup_options]]\n" -" - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" -" - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Startup_options|first_steps/welcome_screen]]\n" +" - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" diff --git a/wiki/src/doc/first_steps.index.it.po b/wiki/src/doc/first_steps.index.it.po index 28dd691c360aeb02d4fc0c0f0b7ddd2b3911c872..fd6e7fb4f1b2978e8bdfd06ca686b19d402c9f5c 100644 --- a/wiki/src/doc/first_steps.index.it.po +++ b/wiki/src/doc/first_steps.index.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-11-21 09:32+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2016-04-05 23:39+0100\n" "Last-Translator: Tails translators\n" "Language-Team: Tails translators <tails-l10n@boum.org>\n" @@ -27,10 +27,10 @@ msgstr "[[!traillink Accessibilità|first_steps/accessibility]]" #. type: Plain text #, fuzzy, no-wrap msgid "" -" - [[!traillink Startup_options|first_steps/startup_options]]\n" -" - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" -" - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Welcome_Screen|first_steps/welcome_screen]]\n" +" - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" @@ -52,10 +52,10 @@ msgstr "" " [[!traillink Windows|first_steps.it/reset.it/windows.it]]\n" " oppure [[!traillink Mac|first_steps.it/reset.it/mac.it]]\n" " - [[!traillink Aggiornare_una_chiave_USB_o_una_scheda_SD_di_Tails|first_steps.it/upgrade.it]]\n" -" - [[!traillink Opzioni_iniziali|first_steps.it/startup_options.it]]\n" -" - [[!traillink Password_amministratore|first_steps.it/startup_options.it/administration_password.it]]\n" -" - [[!traillink Ingannare_indirizzo_MAC|first_steps.it/startup_options.it/mac_spoofing.it]]\n" -" - [[!traillink modalità_bridge_Tor|first_steps.it/startup_options.it/bridge_mode.it]]\n" +" - [[!traillink Opzioni_iniziali|first_steps.it/welcome_screen.it]]\n" +" - [[!traillink Password_amministratore|first_steps.it/welcome_screen.it/administration_password.it]]\n" +" - [[!traillink Ingannare_indirizzo_MAC|first_steps.it/welcome_screen.it/mac_spoofing.it]]\n" +" - [[!traillink modalità_bridge_Tor|first_steps.it/welcome_screen.it/bridge_mode.it]]\n" " - [[!traillink Introduzione_a_GNOME_e_al_Desktop_di_Tails|first_steps.it/introduction_to_gnome_and_the_tails_desktop.it]]\n" " - [[!traillink Persistenza_cifrata|first_steps.it/persistence.it]]\n" " - [[!traillink Avvisi_sulla_persistenza|first_steps.it/persistence.it/warnings.it]]\n" diff --git a/wiki/src/doc/first_steps.index.mdwn b/wiki/src/doc/first_steps.index.mdwn index 5e32f7f74aaa25f4166a4c5741ec09f50be3adc7..48fdba3b194336ec76886ed146de6d00793dd452 100644 --- a/wiki/src/doc/first_steps.index.mdwn +++ b/wiki/src/doc/first_steps.index.mdwn @@ -1,9 +1,9 @@ - [[!traillink Start_Tails|first_steps/start_tails]] - [[!traillink Accessibility|first_steps/accessibility]] - - [[!traillink Startup_options|first_steps/startup_options]] - - [[!traillink Administration_password|first_steps/startup_options/administration_password]] - - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]] - - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]] + - [[!traillink Welcome_Screen|first_steps/welcome_screen]] + - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]] + - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]] + - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]] - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]] - [[!traillink Encrypted_persistence|first_steps/persistence]] - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]] diff --git a/wiki/src/doc/first_steps.index.pl.po b/wiki/src/doc/first_steps.index.pl.po index a4e972f2d5d506d924335a9c9ac9673e8d09e53d..62a11238ff70468306d31ee68a6ef09bf35e8802 100644 --- a/wiki/src/doc/first_steps.index.pl.po +++ b/wiki/src/doc/first_steps.index.pl.po @@ -27,10 +27,10 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" - [[!traillink Startup_options|first_steps/startup_options]]\n" -" - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" -" - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Startup_options|first_steps/welcome_screen]]\n" +" - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" diff --git a/wiki/src/doc/first_steps.index.pt.po b/wiki/src/doc/first_steps.index.pt.po index de8e940f891bb067aeb587f7f0baa67749049a3e..8f8bee476c143d517ce87c7640c538f6948f2cb6 100644 --- a/wiki/src/doc/first_steps.index.pt.po +++ b/wiki/src/doc/first_steps.index.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-11-21 09:32+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2018-02-21 16:11+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -29,10 +29,10 @@ msgstr "[[!traillink Acessibilidade|first_steps/accessibility]]" #. type: Plain text #, fuzzy, no-wrap msgid "" -" - [[!traillink Startup_options|first_steps/startup_options]]\n" -" - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" -" - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Welcome_Screen|first_steps/welcome_screen]]\n" +" - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" @@ -44,10 +44,10 @@ msgid "" " - [[!traillink Report_an_error|first_steps/bug_reporting]]\n" " - [[!traillink Shutting_down_Tails|first_steps/shutdown]]\n" msgstr "" -" - [[!traillink Opções_de_Inicialização|first_steps/startup_options]]\n" -" - [[!traillink Senha_de_administração|first_steps/startup_options/administration_password]]\n" -" - [[!traillink Troca_de_endereço_MAC|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Modo_Tor_Bridge|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Opções_de_Inicialização|first_steps/welcome_screen]]\n" +" - [[!traillink Senha_de_administração|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink Troca_de_endereço_MAC|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Modo_Tor_Bridge|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Introdução_ao_GNOME_e_ao_Desktop_Tails|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Persistência_criptografada|first_steps/persistence]]\n" " - [[!traillink Advertências_sobre_persistência|first_steps/persistence/warnings]]\n" diff --git a/wiki/src/doc/first_steps.index.ru.po b/wiki/src/doc/first_steps.index.ru.po index 909922610b4ca68f0e5f18c76322a5dafe9b2a11..c608ee6b3dcc16fa35c52105cb95edb29f0c64d6 100644 --- a/wiki/src/doc/first_steps.index.ru.po +++ b/wiki/src/doc/first_steps.index.ru.po @@ -27,10 +27,10 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" - [[!traillink Startup_options|first_steps/startup_options]]\n" -" - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" -" - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Startup_options|first_steps/welcome_screen]]\n" +" - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" diff --git a/wiki/src/doc/first_steps.index.sr_Latn.po b/wiki/src/doc/first_steps.index.sr_Latn.po index 191d111e3c7702f52c94110ccb4c8398e63e53bf..418a345a6e3b967d6a1cdaeec3273d356e7affb2 100644 --- a/wiki/src/doc/first_steps.index.sr_Latn.po +++ b/wiki/src/doc/first_steps.index.sr_Latn.po @@ -27,10 +27,10 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" - [[!traillink Startup_options|first_steps/startup_options]]\n" -" - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" -" - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Startup_options|first_steps/welcome_screen]]\n" +" - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" diff --git a/wiki/src/doc/first_steps.index.tr.po b/wiki/src/doc/first_steps.index.tr.po index e1dc9946e178c2303451ec22dfc1f6ffd7644986..916eef40d28e6b279a00489251fa417c26709f35 100644 --- a/wiki/src/doc/first_steps.index.tr.po +++ b/wiki/src/doc/first_steps.index.tr.po @@ -27,10 +27,10 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" - [[!traillink Startup_options|first_steps/startup_options]]\n" -" - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" -" - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Startup_options|first_steps/welcome_screen]]\n" +" - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" diff --git a/wiki/src/doc/first_steps.index.zh.po b/wiki/src/doc/first_steps.index.zh.po index 1da5a5c9e358f99fb8504a9be58a2a143c36b13d..3de9ffcf381d609efbee29ab0f82ce5c52ed595e 100644 --- a/wiki/src/doc/first_steps.index.zh.po +++ b/wiki/src/doc/first_steps.index.zh.po @@ -27,10 +27,10 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" - [[!traillink Startup_options|first_steps/startup_options]]\n" -" - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" -" - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Startup_options|first_steps/welcome_screen]]\n" +" - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" diff --git a/wiki/src/doc/first_steps.index.zh_TW.po b/wiki/src/doc/first_steps.index.zh_TW.po index 7ba6f1ce57d220b3eaa20c7afdc1f4f82d282d9c..a97cba2bb0fe2adafaa72f1f151d3e86ad5e5e7c 100644 --- a/wiki/src/doc/first_steps.index.zh_TW.po +++ b/wiki/src/doc/first_steps.index.zh_TW.po @@ -26,10 +26,10 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" - [[!traillink Startup_options|first_steps/startup_options]]\n" -" - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" -" - [[!traillink MAC_address_spoofing|first_steps/startup_options/mac_spoofing]]\n" -" - [[!traillink Tor_bridge_mode|first_steps/startup_options/bridge_mode]]\n" +" - [[!traillink Startup_options|first_steps/welcome_screen]]\n" +" - [[!traillink Administration_password|first_steps/welcome_screen/administration_password]]\n" +" - [[!traillink MAC_address_spoofing|first_steps/welcome_screen/mac_spoofing]]\n" +" - [[!traillink Tor_bridge_mode|first_steps/welcome_screen/bridge_mode]]\n" " - [[!traillink Introduction_to_GNOME_and_the_Tails_desktop|first_steps/introduction_to_gnome_and_the_tails_desktop]]\n" " - [[!traillink Encrypted_persistence|first_steps/persistence]]\n" " - [[!traillink Warnings_about_persistence|first_steps/persistence/warnings]]\n" diff --git a/wiki/src/doc/first_steps/additional_software.ar.po b/wiki/src/doc/first_steps/additional_software.ar.po index 538973a6c36c07df1b8b9e31d0d294f84908ad9a..3cee3746527830b0e5eae484ac9ff1853087beb8 100644 --- a/wiki/src/doc/first_steps/additional_software.ar.po +++ b/wiki/src/doc/first_steps/additional_software.ar.po @@ -57,7 +57,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set up an administration password |first_steps/startup_options/" +"[[Set up an administration password |first_steps/welcome_screen/" "administration_password]] when you start Tails." msgstr "" diff --git a/wiki/src/doc/first_steps/additional_software.ca.po b/wiki/src/doc/first_steps/additional_software.ca.po index 40df2def9330d60ab72a9d2164a7753870f0cdb5..d9d445628a0ca642e7632199d4c9a725dbd0252b 100644 --- a/wiki/src/doc/first_steps/additional_software.ca.po +++ b/wiki/src/doc/first_steps/additional_software.ca.po @@ -56,7 +56,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set up an administration password |first_steps/startup_options/" +"[[Set up an administration password |first_steps/welcome_screen/" "administration_password]] when you start Tails." msgstr "" diff --git a/wiki/src/doc/first_steps/additional_software.de.po b/wiki/src/doc/first_steps/additional_software.de.po index dca4d2870e9dc5857826184a31eceec464334134..3f0ab959c8fe41bb4553e049ba08e42384b3810e 100644 --- a/wiki/src/doc/first_steps/additional_software.de.po +++ b/wiki/src/doc/first_steps/additional_software.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-10 11:28+0200\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-04-05 23:29+0000\n" "Last-Translator: Muri Nicanor <muri@immerda.ch>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -58,8 +58,12 @@ msgid "" msgstr "" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "[[Set up an administration password |first_steps/startup_options/" +#| "administration_password]] when you start Tails." msgid "" -"[[Set up an administration password |first_steps/startup_options/" +"[[Set up an administration password |first_steps/welcome_screen/" "administration_password]] when you start Tails." msgstr "" "[[Setzen Sie ein Administrationspasswort |first_steps/startup_options/" @@ -71,10 +75,9 @@ msgid "" "span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgstr "" -"Wählen Sie <span class=\"menuchoice\"> <span class=\"guimenu\"" -">Anwendung</span> ▸ <span class=\"guisubmenu\"" -">Systemprogramme</span> ▸ <span class=\"guimenuitem\">Synaptic Paket " -"Manager</span></span>." +"Wählen Sie <span class=\"menuchoice\"> <span class=\"guimenu\">Anwendung</" +"span> ▸ <span class=\"guisubmenu\">Systemprogramme</span> ▸ <span " +"class=\"guimenuitem\">Synaptic Paket Manager</span></span>." #. type: Bullet: ' 1. ' msgid "" diff --git a/wiki/src/doc/first_steps/additional_software.es.po b/wiki/src/doc/first_steps/additional_software.es.po index c837825d05680e1fa38dba50972f6e8fe9edd43b..0a8283e21d9fa9352a5c43ae7e0cf2d4714be188 100644 --- a/wiki/src/doc/first_steps/additional_software.es.po +++ b/wiki/src/doc/first_steps/additional_software.es.po @@ -63,10 +63,10 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set up an administration password |first_steps/startup_options/" +"[[Set up an administration password |first_steps/welcome_screen/" "administration_password]] when you start Tails." msgstr "" -"[[Configura una contraseña de administración|doc/first_steps/startup_options/" +"[[Configura una contraseña de administración|doc/first_steps/welcome_screen/" "administration_password]] cuando arrancas Tails." #. type: Bullet: ' 1. ' @@ -668,10 +668,10 @@ msgstr "Reinicia Tails para aplicar los cambios." #~ "doc/first_steps/persistence/configure#additional_software]].\n" #~ msgid "" -#~ "Open a [[root terminal|doc/first_steps/startup_options/" +#~ "Open a [[root terminal|doc/first_steps/welcome_screen/" #~ "administration_password#open_root_terminal]]." #~ msgstr "" -#~ "Abre una [[terminal de root|doc/first_steps/startup_options/" +#~ "Abre una [[terminal de root|doc/first_steps/welcome_screen/" #~ "administration_password#open_root_terminal]]." #~ msgid "" diff --git a/wiki/src/doc/first_steps/additional_software.fa.po b/wiki/src/doc/first_steps/additional_software.fa.po index d7bfca6ffa3236cf9bea384ee7bed3b08fb9e979..8cc951d1817dda71c4a0292babb0bd6bfeea188d 100644 --- a/wiki/src/doc/first_steps/additional_software.fa.po +++ b/wiki/src/doc/first_steps/additional_software.fa.po @@ -59,13 +59,13 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "" -#| "[[Set up an administration password|doc/first_steps/startup_options/" +#| "[[Set up an administration password|doc/first_steps/welcome_screen/" #| "administration_password]]." msgid "" -"[[Set up an administration password |first_steps/startup_options/" +"[[Set up an administration password |first_steps/welcome_screen/" "administration_password]] when you start Tails." msgstr "" -"[[یک گذرواژهٔ مدیریتی بسازید|doc/first_steps/startup_options/" +"[[یک گذرواژهٔ مدیریتی بسازید|doc/first_steps/welcome_screen/" "administration_password]]." #. type: Bullet: ' 1. ' @@ -647,10 +647,10 @@ msgstr "" #~ "first_steps/persistence/configure#additional_software]] استفاده کنید.\n" #~ msgid "" -#~ "Open a [[root terminal|doc/first_steps/startup_options/" +#~ "Open a [[root terminal|doc/first_steps/welcome_screen/" #~ "administration_password#open_root_terminal]]." #~ msgstr "" -#~ "یک [[پایانهٔ اصلی|doc/first_steps/startup_options/" +#~ "یک [[پایانهٔ اصلی|doc/first_steps/welcome_screen/" #~ "administration_password#open_root_terminal]] باز کنید." #~ msgid "" diff --git a/wiki/src/doc/first_steps/additional_software.fr.po b/wiki/src/doc/first_steps/additional_software.fr.po index 6985e5aa72bb0be5a3d795e39d053d5c658918e8..15be9d61b3eceb8f8ac2a570cb2a69ace4887c69 100644 --- a/wiki/src/doc/first_steps/additional_software.fr.po +++ b/wiki/src/doc/first_steps/additional_software.fr.po @@ -63,10 +63,10 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set up an administration password |first_steps/startup_options/" +"[[Set up an administration password |first_steps/welcome_screen/" "administration_password]] when you start Tails." msgstr "" -"[[Configurez un mot de passe d'administration|first_steps/startup_options/" +"[[Configurez un mot de passe d'administration|first_steps/welcome_screen/" "administration_password]] au démarrage de Tails." #. type: Bullet: ' 1. ' @@ -766,10 +766,10 @@ msgstr "Redémarrez Tails pour appliquer les changements." #~ "configure#additional_software]].\n" #~ msgid "" -#~ "Open a [[root terminal|doc/first_steps/startup_options/" +#~ "Open a [[root terminal|doc/first_steps/welcome_screen/" #~ "administration_password#open_root_terminal]]." #~ msgstr "" -#~ "Ouvrez un [[terminal administrateur|doc/first_steps/startup_options/" +#~ "Ouvrez un [[terminal administrateur|doc/first_steps/welcome_screen/" #~ "administration_password#open_root_terminal]]." #~ msgid "" diff --git a/wiki/src/doc/first_steps/additional_software.id.po b/wiki/src/doc/first_steps/additional_software.id.po index e0e13f48b2ccf1f21efa5e6aca7999570a049d29..d779bd557e3f4323e53938a586b3f2b982245a0f 100644 --- a/wiki/src/doc/first_steps/additional_software.id.po +++ b/wiki/src/doc/first_steps/additional_software.id.po @@ -57,7 +57,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set up an administration password |first_steps/startup_options/" +"[[Set up an administration password |first_steps/welcome_screen/" "administration_password]] when you start Tails." msgstr "" diff --git a/wiki/src/doc/first_steps/additional_software.it.po b/wiki/src/doc/first_steps/additional_software.it.po index 529b92a202d48cb86fb7bbfec9a37f99c36237f4..297210aebe95aebddba82444d0706a82ef1a5b91 100644 --- a/wiki/src/doc/first_steps/additional_software.it.po +++ b/wiki/src/doc/first_steps/additional_software.it.po @@ -54,7 +54,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set up an administration password |first_steps/startup_options/" +"[[Set up an administration password |first_steps/welcome_screen/" "administration_password]] when you start Tails." msgstr "" diff --git a/wiki/src/doc/first_steps/additional_software.mdwn b/wiki/src/doc/first_steps/additional_software.mdwn index f97499dff1055b8da156accf5bfd5556b0a951dc..1639b63325e5e45d1c7c09176d266957cf3f00ea 100644 --- a/wiki/src/doc/first_steps/additional_software.mdwn +++ b/wiki/src/doc/first_steps/additional_software.mdwn @@ -17,7 +17,7 @@ To know which packages are available in Debian: the <span class="application">Synaptic Package Manager</span>: 1. [[Set up an administration password - |first_steps/startup_options/administration_password]] when you start Tails. + |first_steps/welcome_screen/administration_password]] when you start Tails. 1. Choose <span class="menuchoice"> <span class="guimenu">Applications</span> ▸ @@ -103,7 +103,7 @@ Installing additional software To install a package using <span class="application">Synaptic</span>: 1. [[Set up an administration password - |first_steps/startup_options/administration_password]] when you start Tails. + |first_steps/welcome_screen/administration_password]] when you start Tails. 1. Choose <span class="menuchoice"> <span class="guimenu">Applications</span> ▸ @@ -206,7 +206,7 @@ When you installed the package, if you chose: - Using <span class="application">Synaptic</span>: 1. [[Set up an administration password - |first_steps/startup_options/administration_password]] when you start Tails. + |first_steps/welcome_screen/administration_password]] when you start Tails. 1. Choose <span class="menuchoice"> <span class="guimenu">Applications</span> ▸ @@ -233,7 +233,7 @@ Freeing space in your persistent storage After you installed many packages that you are not using anymore, you can free some space in your persistent storage: 1. [[Set up an administration password - |first_steps/startup_options/administration_password]] when you start Tails. + |first_steps/welcome_screen/administration_password]] when you start Tails. 1. Choose <span class="menuchoice"> <span class="guimenu">Applications</span> ▸ @@ -266,7 +266,7 @@ Sometimes, you might need to configure additional APT repositories. For example, to install packages from the `non-free` section of Debian. To do so: 1. [[Set up an administration password - |first_steps/startup_options/administration_password]] when you start Tails. + |first_steps/welcome_screen/administration_password]] when you start Tails. 1. Create an <span class="filename">apt-sources.list.d</span> folder in your persistent volume: diff --git a/wiki/src/doc/first_steps/additional_software.pl.po b/wiki/src/doc/first_steps/additional_software.pl.po index 3c23cac9cfecae9d6f228bb2b668cf327485b214..6feaf7932ad68452b1b8f8de7edf6fe10322d8cc 100644 --- a/wiki/src/doc/first_steps/additional_software.pl.po +++ b/wiki/src/doc/first_steps/additional_software.pl.po @@ -57,7 +57,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set up an administration password |first_steps/startup_options/" +"[[Set up an administration password |first_steps/welcome_screen/" "administration_password]] when you start Tails." msgstr "" diff --git a/wiki/src/doc/first_steps/additional_software.pt.po b/wiki/src/doc/first_steps/additional_software.pt.po index 63f89f7d1c857cc2a041ba62415b2cb6fe802a64..14f46472e7a20c89aea37639bf08ec53ce74b6ae 100644 --- a/wiki/src/doc/first_steps/additional_software.pt.po +++ b/wiki/src/doc/first_steps/additional_software.pt.po @@ -58,7 +58,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set up an administration password |first_steps/startup_options/" +"[[Set up an administration password |first_steps/welcome_screen/" "administration_password]] when you start Tails." msgstr "" diff --git a/wiki/src/doc/first_steps/additional_software.ru.po b/wiki/src/doc/first_steps/additional_software.ru.po index 967b1640fc1f3da988bd11ecbffb67c558c81705..43d151e3200ad1b17a33481c7daa26a04235a1cd 100644 --- a/wiki/src/doc/first_steps/additional_software.ru.po +++ b/wiki/src/doc/first_steps/additional_software.ru.po @@ -57,7 +57,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set up an administration password |first_steps/startup_options/" +"[[Set up an administration password |first_steps/welcome_screen/" "administration_password]] when you start Tails." msgstr "" diff --git a/wiki/src/doc/first_steps/additional_software.sr_Latn.po b/wiki/src/doc/first_steps/additional_software.sr_Latn.po index ecb15b2979369c03f737351f7f534cd2d3fc5a7e..c7696c446b25bdc70ce903462870fc80b6026693 100644 --- a/wiki/src/doc/first_steps/additional_software.sr_Latn.po +++ b/wiki/src/doc/first_steps/additional_software.sr_Latn.po @@ -57,7 +57,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set up an administration password |first_steps/startup_options/" +"[[Set up an administration password |first_steps/welcome_screen/" "administration_password]] when you start Tails." msgstr "" diff --git a/wiki/src/doc/first_steps/additional_software.tr.po b/wiki/src/doc/first_steps/additional_software.tr.po index f4dfc15ab82aed36acb929e8ba4442b719b7b156..5c78dcec98cff0969b2a737ef54e765cf7acd875 100644 --- a/wiki/src/doc/first_steps/additional_software.tr.po +++ b/wiki/src/doc/first_steps/additional_software.tr.po @@ -56,7 +56,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set up an administration password |first_steps/startup_options/" +"[[Set up an administration password |first_steps/welcome_screen/" "administration_password]] when you start Tails." msgstr "" diff --git a/wiki/src/doc/first_steps/additional_software.zh.po b/wiki/src/doc/first_steps/additional_software.zh.po index cdd53234ae3be805f13f6f74134212cc49a5880c..e4baef85dc960897f733d5f28b3abe7b9ebed596 100644 --- a/wiki/src/doc/first_steps/additional_software.zh.po +++ b/wiki/src/doc/first_steps/additional_software.zh.po @@ -56,7 +56,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set up an administration password |first_steps/startup_options/" +"[[Set up an administration password |first_steps/welcome_screen/" "administration_password]] when you start Tails." msgstr "" diff --git a/wiki/src/doc/first_steps/additional_software.zh_TW.po b/wiki/src/doc/first_steps/additional_software.zh_TW.po index fe85b25907d0dad66601bac00545798c6648683b..342bf1aac9e38745cbd5449a9652f759cb9ecd99 100644 --- a/wiki/src/doc/first_steps/additional_software.zh_TW.po +++ b/wiki/src/doc/first_steps/additional_software.zh_TW.po @@ -55,7 +55,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set up an administration password |first_steps/startup_options/" +"[[Set up an administration password |first_steps/welcome_screen/" "administration_password]] when you start Tails." msgstr "" diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.ar.po b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.ar.po index fbf81f708e2c915af1b2a5e442e0ecaa2f760bc1..2d17e143f7ca0728e9be10e3e95c23219c3a364a 100644 --- a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.ar.po +++ b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.ar.po @@ -459,7 +459,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"If you set up an [[administration password|first_steps/startup_options/" +"If you set up an [[administration password|first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.ca.po b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.ca.po index 7d7e1dae034814b2090709ae4d8fbc61e718a406..f60364c577d51e1f10b18ddadf696765092de1d7 100644 --- a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.ca.po +++ b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.ca.po @@ -457,7 +457,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"If you set up an [[administration password|first_steps/startup_options/" +"If you set up an [[administration password|first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.de.po b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.de.po index f9f4aa6997ba602fda82f7c932958cb36f05f0df..b65340fe2100016e3325f06ca190ca1e3062b294 100644 --- a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.de.po +++ b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.de.po @@ -583,12 +583,12 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"If you set up an [[administration password|first_steps/startup_options/" +"If you set up an [[administration password|first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" "Falls Sie beim Starten von Tails ein [[Administrationspasswort|first_steps/" -"startup_options/administration_password]] einstellen, können Sie den " +"welcome_screen/administration_password]] einstellen, können Sie den " "Bildschirm mit Ihrem Administrationspasswort entsperren." #. type: Plain text diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.es.po b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.es.po index b49a84a7317a908a505cce3ae313e61ee63f7442..133bdc20684e9a419f044a684f7a4bb416767696 100644 --- a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.es.po +++ b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.es.po @@ -546,11 +546,11 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"If you set up an [[administration password|first_steps/startup_options/" +"If you set up an [[administration password|first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" -"Si habilitas una [[contraseña de administración|first_steps/startup_options/" +"Si habilitas una [[contraseña de administración|first_steps/welcome_screen/" "administration_password]] cuando inicias Tails, puedes desbloquear tu " "pantalla con esa contraseña de administración." diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.fa.po b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.fa.po index dfd90acdf36edc52c03e95a843b23f8b32947f55..d2004b09049ecdb2e32f8bad21e4919e80b0621e 100644 --- a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.fa.po +++ b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.fa.po @@ -572,7 +572,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"If you set up an [[administration password|first_steps/startup_options/" +"If you set up an [[administration password|first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.fr.po b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.fr.po index ec09f7f33fce48e6d9a26cc3006e78ca01e3905d..22c23b5b2f6c591625f4ecaeaa7424e52110046b 100644 --- a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.fr.po +++ b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.fr.po @@ -548,12 +548,12 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"If you set up an [[administration password|first_steps/startup_options/" +"If you set up an [[administration password|first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" "Si vous avez défini un [[mot de passe d'administration|first_steps/" -"startup_options/administration_password]] lors du démarrage de Tails, vous " +"welcome_screen/administration_password]] lors du démarrage de Tails, vous " "pouvez déverrouiller votre écran avec votre mot de passe d'administration." #. type: Plain text diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.id.po b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.id.po index 0c9eb6cc1263074e226687d384ba0c76a234742d..f4fcd25104b234b7cd37eaf993c8a8786129e18d 100644 --- a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.id.po +++ b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.id.po @@ -443,7 +443,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"If you set up an [[administration password|first_steps/startup_options/" +"If you set up an [[administration password|first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.it.po b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.it.po index fb8ed22b4ebc2da6dc18bc6e1eb043f57741d511..d0bd1740d0f7dae04d9dca2d7a9ae409bd909b89 100644 --- a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.it.po +++ b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.it.po @@ -639,7 +639,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"If you set up an [[administration password|first_steps/startup_options/" +"If you set up an [[administration password|first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.mdwn b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.mdwn index 1f5505298eec828a182513813c67d779f903cadf..ba6214c61f04aa6a93c86eed8b261b7ab0f25078 100644 --- a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.mdwn +++ b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.mdwn @@ -211,7 +211,7 @@ These settings will not be saved when you restart Tails. Click on the [[!img lib/network-wireless-encrypted.png alt="Lock Screen" class="symbolic" link="no"]] button to lock your screen with a password. -- If you set up an [[administration password|first_steps/startup_options/administration_password]] +- If you set up an [[administration password|first_steps/welcome_screen/administration_password]] when starting Tails, you can unlock your screen with your administration password. diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.pl.po b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.pl.po index 85f54c5499089baf5f2468714d72fd1929d6f17e..2748c6523dcc9250c0dc05a79aa4f802b32127a3 100644 --- a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.pl.po +++ b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.pl.po @@ -444,7 +444,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"If you set up an [[administration password|first_steps/startup_options/" +"If you set up an [[administration password|first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.pt.po b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.pt.po index 75860d51f11c432a5552bd4c2568ff9e1cf74d63..b695d894ddddaf91706ed84533584c6a50eae7da 100644 --- a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.pt.po +++ b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.pt.po @@ -608,7 +608,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"If you set up an [[administration password|first_steps/startup_options/" +"If you set up an [[administration password|first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.ru.po b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.ru.po index 847c4728c82d653ca49896f1536a7203427d93e1..c80f71d16c1c23a217f3ef7ac2fe2ae269aa6e20 100644 --- a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.ru.po +++ b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.ru.po @@ -444,7 +444,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"If you set up an [[administration password|first_steps/startup_options/" +"If you set up an [[administration password|first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.sr_Latn.po b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.sr_Latn.po index dc7e85508b4ca7db1c358cd9659ffaecb17870c2..fe42df8b894fbe6b75d72dc77a850e22abdd45d4 100644 --- a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.sr_Latn.po +++ b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.sr_Latn.po @@ -444,7 +444,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"If you set up an [[administration password|first_steps/startup_options/" +"If you set up an [[administration password|first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.tr.po b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.tr.po index ec3674be3c1ee80379abad198fa96e8842bde74f..87732ad2a942de090b67658043346d13dccdc6c9 100644 --- a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.tr.po +++ b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.tr.po @@ -443,7 +443,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"If you set up an [[administration password|first_steps/startup_options/" +"If you set up an [[administration password|first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.zh.po b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.zh.po index 3daa6144e290a392a374c91191be08271e552a1c..1cafd24acd92d1d7278c51f29e44631813933c87 100644 --- a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.zh.po +++ b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.zh.po @@ -443,7 +443,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"If you set up an [[administration password|first_steps/startup_options/" +"If you set up an [[administration password|first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.zh_TW.po b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.zh_TW.po index 8325b60bc65d6769db3cf82ba82547660a780b4f..4cd03e8d6498db30dc1101162865791a8172022c 100644 --- a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.zh_TW.po +++ b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop.zh_TW.po @@ -443,7 +443,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"If you set up an [[administration password|first_steps/startup_options/" +"If you set up an [[administration password|first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/doc/first_steps/persistence.caution.zh.po b/wiki/src/doc/first_steps/persistence.caution.zh.po index 921d4737a0c087c4f5e1e1d6a351541e0026524e..d33af2e947e1e7afd81ff4e8b72e9f7ac38cb7b9 100644 --- a/wiki/src/doc/first_steps/persistence.caution.zh.po +++ b/wiki/src/doc/first_steps/persistence.caution.zh.po @@ -32,7 +32,7 @@ msgid "" "[[Read carefully the warning section.|persistence/warnings]]</p>\n" msgstr "" "<p><strong>在一个设计上是以匿名和无痕为导向的系统上使用一个持久化存储卷是一件复杂的议题。</strong><br/>\n" -"[[请仔细阅读警告那一部分。|persistence/warnings]]</p>" +"[[请仔细阅读警告那一部分。|persistence/warnings]]</p>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/first_steps/persistence/configure.ar.po b/wiki/src/doc/first_steps/persistence/configure.ar.po index 5724f07542e4c90786349539e9b3889f239836f1..f7a28f952a1cf67fec8f430af8cd732cef1dc721 100644 --- a/wiki/src/doc/first_steps/persistence/configure.ar.po +++ b/wiki/src/doc/first_steps/persistence/configure.ar.po @@ -120,7 +120,7 @@ msgid "" "<ol>\n" " <li>\n" " Start Tails and set an\n" -" [[administration password|doc/first_steps/startup_options/administration_password]].\n" +" [[administration password|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Choose\n" diff --git a/wiki/src/doc/first_steps/persistence/configure.ca.po b/wiki/src/doc/first_steps/persistence/configure.ca.po index 713b48f43e0d8ca73755c63c97bd9c9e5a9f2095..cf48bac6b3e510032962343feb3afeb735e12e82 100644 --- a/wiki/src/doc/first_steps/persistence/configure.ca.po +++ b/wiki/src/doc/first_steps/persistence/configure.ca.po @@ -118,7 +118,7 @@ msgid "" "<ol>\n" " <li>\n" " Start Tails and set an\n" -" [[administration password|doc/first_steps/startup_options/administration_password]].\n" +" [[administration password|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Choose\n" diff --git a/wiki/src/doc/first_steps/persistence/configure.de.po b/wiki/src/doc/first_steps/persistence/configure.de.po index f3360915ef70ff465d7c43d43743c9b6f4fee1a2..8bfb59184d410a5a597083469d1946f8cd16f5ba 100644 --- a/wiki/src/doc/first_steps/persistence/configure.de.po +++ b/wiki/src/doc/first_steps/persistence/configure.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-01-21 18:26+0000\n" "Last-Translator: Muri Nicanor <muri@immerda.ch>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -54,11 +54,16 @@ msgid "<div class=\"note\">\n" msgstr "<div class=\"note\">\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "The error message <span class=\"emphasis\">Error, Persistence partition is not\n" +#| "unlocked.</span> means that the persistent volume was not enabled from\n" +#| "<span class=\"application\">Tails Greeter</span>. So you can not configure it\n" +#| "but you can delete it and create a new one.\n" msgid "" "The error message <span class=\"emphasis\">Error, Persistence partition is not\n" "unlocked.</span> means that the persistent volume was not enabled from\n" -"<span class=\"application\">Tails Greeter</span>. So you can not configure it\n" +"the Welcome Screen. So you can not configure it\n" "but you can delete it and create a new one.\n" msgstr "" "Die Fehlermeldung <span class=\"emphasis\">Fehler, Beständiger Speicherbereich ist nicht\n" @@ -155,7 +160,7 @@ msgid "" "<ol>\n" " <li>\n" " Start Tails and set an\n" -" [[administration password|doc/first_steps/startup_options/administration_password]].\n" +" [[administration password|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Choose\n" @@ -182,7 +187,7 @@ msgstr "" "<ol>\n" " <li>\n" " Starten Sie Tails und stellen Sie ein\n" -" [[Administrationspasswort|doc/first_steps/startup_options/administration_password]] ein.\n" +" [[Administrationspasswort|doc/first_steps/welcome_screen/administration_password]] ein.\n" " </li>\n" " <li>\n" " Wählen Sie\n" diff --git a/wiki/src/doc/first_steps/persistence/configure.es.po b/wiki/src/doc/first_steps/persistence/configure.es.po index aecdffbb6c1a01374e6554422cb16490ecb031a9..5e97a01e934ee1834250b3d34686af8109cdc683 100644 --- a/wiki/src/doc/first_steps/persistence/configure.es.po +++ b/wiki/src/doc/first_steps/persistence/configure.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-01-12 13:31+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -46,8 +46,7 @@ msgstr "" "<span class=\"menuchoice\">\n" " <span class=\"guimenu\">Aplicaciones</span> ▸\n" " <span class=\"guisubmenu\">Tails</span> ▸\n" -" <span class=\"guimenuitem\">Configurar el volumen " -"persistente</span></span>.\n" +" <span class=\"guimenuitem\">Configurar el volumen persistente</span></span>.\n" #. type: Plain text #, no-wrap @@ -55,11 +54,16 @@ msgid "<div class=\"note\">\n" msgstr "<div class=\"note\">\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "The error message <span class=\"emphasis\">Error, Persistence partition is not\n" +#| "unlocked.</span> means that the persistent volume was not enabled from\n" +#| "<span class=\"application\">Tails Greeter</span>. So you can not configure it\n" +#| "but you can delete it and create a new one.\n" msgid "" "The error message <span class=\"emphasis\">Error, Persistence partition is not\n" "unlocked.</span> means that the persistent volume was not enabled from\n" -"<span class=\"application\">Tails Greeter</span>. So you can not configure it\n" +"the Welcome Screen. So you can not configure it\n" "but you can delete it and create a new one.\n" msgstr "" "El mensaje de error <span class=\"emphasis\">Error, la partición persistente no esta \n" @@ -81,8 +85,8 @@ msgid "" msgstr "" "Cuando lo ejecutas por primera vez, o después del [[borrado del volumen " "persistente|delete]], el asistente propone crear un nuevo volumen " -"persistente en el dispositivo donde Tails se esta ejecutando. Lee nuestras [[" -"instrucciones de instalación|install/clone#create-persistence]] para crear " +"persistente en el dispositivo donde Tails se esta ejecutando. Lee nuestras " +"[[instrucciones de instalación|install/clone#create-persistence]] para crear " "el volumen persistente." #. type: Title = @@ -96,8 +100,7 @@ msgid "" "<strong>Restart Tails to apply the changes</strong> after selecting or\n" "deselecting one or several features.\n" msgstr "" -"<strong>Reinicia Tails para aplicar los cambios</strong> después de " -"seleccionar o\n" +"<strong>Reinicia Tails para aplicar los cambios</strong> después de seleccionar o\n" "deseleccionar una o varias características.\n" #. type: Plain text @@ -112,12 +115,12 @@ msgid "" msgstr "" "Sólo las aplicaciones listadas aquí pueden hacerse persistentes por el " "momento. Algunas otras aplicaciones han sido consultadas y aceptadas, pero " -"estamos esperando que se implementen, como las extensiones del buscador, [[" -"!tails_ticket 7148 desc=\"el fondo de pantalla\"]], [[!tails_ticket 7246 " -"desc=\"la tarjeta de sonido predeterminada\"]], [[!tails_ticket 5979 desc=\"" -"la configuración del ratón y touchpad\"]], etc. Lee [[los tickets " -"correspondientes|https://labs.riseup.net/code/projects/tails/" -"issues?query_id=122]] para más detalles." +"estamos esperando que se implementen, como las extensiones del buscador, [[!" +"tails_ticket 7148 desc=\"el fondo de pantalla\"]], [[!tails_ticket 7246 desc=" +"\"la tarjeta de sonido predeterminada\"]], [[!tails_ticket 5979 desc=\"la " +"configuración del ratón y touchpad\"]], etc. Lee [[los tickets " +"correspondientes|https://labs.riseup.net/code/projects/tails/issues?" +"query_id=122]] para más detalles." #. type: Plain text #, no-wrap @@ -134,8 +137,7 @@ msgid "" msgstr "" "<p>Si deseleccionas una característica que ya estaba activada antes, \n" "esta se desactivará después de reiniciar Tails, pero los \n" -"[[archivos correspondientes|doc/first_steps/persistence/copy#feature_files]]" -"\n" +"[[archivos correspondientes|doc/first_steps/persistence/copy#feature_files]]\n" "permanecerán en el volumen persistente.</p>\n" #. type: Plain text @@ -149,7 +151,7 @@ msgid "" "<ol>\n" " <li>\n" " Start Tails and set an\n" -" [[administration password|doc/first_steps/startup_options/administration_password]].\n" +" [[administration password|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Choose\n" @@ -176,7 +178,7 @@ msgstr "" "<ol>\n" " <li>\n" " Arranca Tails configurando una\n" -" [[contraseña de administración|doc/first_steps/startup_options/administration_password]].\n" +" [[contraseña de administración|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Elige\n" @@ -230,8 +232,7 @@ msgid "" "When this feature is activated, you can save your personal files and working\n" "documents in the <span class=\"filename\">Persistent</span> folder.\n" msgstr "" -"Cuando esta característica este activada, puedes guardar tus archivos " -"personales y documentos\n" +"Cuando esta característica este activada, puedes guardar tus archivos personales y documentos\n" "de trabajo en la carpeta <span class=\"filename\">Persistente</span>.\n" #. type: Plain text @@ -359,12 +360,9 @@ msgid "" "Installing additional packages might break the security built in Tails,\n" "so [[be careful with what you install|additional_software#warning]].</p>\n" msgstr "" -"<p>Los paquetes incluidos en Tails se verifican cuidadosamente por seguridad." -"\n" -"Instalar paquetes adicionales podría romper la seguridad incorporada en " -"Tails,\n" -"por lo que [[debes tener cuidado con lo que " -"instalas|additional_software#warning]].</p>\n" +"<p>Los paquetes incluidos en Tails se verifican cuidadosamente por seguridad.\n" +"Instalar paquetes adicionales podría romper la seguridad incorporada en Tails,\n" +"por lo que [[debes tener cuidado con lo que instalas|additional_software#warning]].</p>\n" #. type: Plain text #, no-wrap @@ -757,9 +755,8 @@ msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Devices</" "span> ▸ <span class=\"guisubmenu\">Displays</span></span>." msgstr "" -"Elige <span class=\"menuchoice\"> <span class=\"guimenu\"" -">Dispositivos</span> ▸ <span class=\"guisubmenu\"" -">Pantallas</span></span>." +"Elige <span class=\"menuchoice\"> <span class=\"guimenu\">Dispositivos</" +"span> ▸ <span class=\"guisubmenu\">Pantallas</span></span>." #. type: Bullet: '1. ' msgid "Configure your displays." @@ -770,9 +767,8 @@ msgid "" "Open <span class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</" "span> in the <span class=\"application\">Files</span> browser." msgstr "" -"Abre <span class=\"filename\">/live/persistence/TailsData_unlocked/" -"dotfiles</span> en el explorador de <span class=\"application\"" -">Archivos</span>." +"Abre <span class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</" +"span> en el explorador de <span class=\"application\">Archivos</span>." #. type: Bullet: '1. ' msgid "" @@ -780,8 +776,8 @@ msgid "" "toggle\" class=\"symbolic\" link=\"no\"]]</span> button in the title bar and " "choose <span class=\"guilabel\">Show Hidden Files</span>." msgstr "" -"Haz click en el botón <span class=\"guimenu\">[[!img lib/pan-down.png alt=\"" -"abre menú\" class=symbolic link=\"no\"]]</span> en la barra de título, y " +"Haz click en el botón <span class=\"guimenu\">[[!img lib/pan-down.png alt=" +"\"abre menú\" class=symbolic link=\"no\"]]</span> en la barra de título, y " "elige <span class=\"guilabel\">Mostrar archivos ocultos</span>." #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/persistence/configure.fa.po b/wiki/src/doc/first_steps/persistence/configure.fa.po index 2f13888bdb274af5e9f33d44cbfb8b344868fe2e..3b4e2035b8c489cd7c47cf95009c55a12b257ad5 100644 --- a/wiki/src/doc/first_steps/persistence/configure.fa.po +++ b/wiki/src/doc/first_steps/persistence/configure.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2015-10-15 07:26+0000\n" "Last-Translator: sprint5 <translation5@451f.org>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" @@ -54,11 +54,16 @@ msgid "<div class=\"note\">\n" msgstr "<div class=\"note\">\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "The error message <span class=\"emphasis\">Error, Persistence partition is not\n" +#| "unlocked.</span> means that the persistent volume was not enabled from\n" +#| "<span class=\"application\">Tails Greeter</span>. So you can not configure it\n" +#| "but you can delete it and create a new one.\n" msgid "" "The error message <span class=\"emphasis\">Error, Persistence partition is not\n" "unlocked.</span> means that the persistent volume was not enabled from\n" -"<span class=\"application\">Tails Greeter</span>. So you can not configure it\n" +"the Welcome Screen. So you can not configure it\n" "but you can delete it and create a new one.\n" msgstr "" "پیغام خطای <span class=\"emphasis\">خطا؛ پارتیشن مانا قفل است</span>\n" @@ -157,7 +162,7 @@ msgid "" "<ol>\n" " <li>\n" " Start Tails and set an\n" -" [[administration password|doc/first_steps/startup_options/administration_password]].\n" +" [[administration password|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Choose\n" diff --git a/wiki/src/doc/first_steps/persistence/configure.fr.po b/wiki/src/doc/first_steps/persistence/configure.fr.po index ac1c00546f58af196d4819baf34fbfaa7500007a..de9265da418e0e241dd637eeb54f0b103af1095e 100644 --- a/wiki/src/doc/first_steps/persistence/configure.fr.po +++ b/wiki/src/doc/first_steps/persistence/configure.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-02-14 10:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -54,11 +54,16 @@ msgid "<div class=\"note\">\n" msgstr "<div class=\"note\">\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "The error message <span class=\"emphasis\">Error, Persistence partition is not\n" +#| "unlocked.</span> means that the persistent volume was not enabled from\n" +#| "<span class=\"application\">Tails Greeter</span>. So you can not configure it\n" +#| "but you can delete it and create a new one.\n" msgid "" "The error message <span class=\"emphasis\">Error, Persistence partition is not\n" "unlocked.</span> means that the persistent volume was not enabled from\n" -"<span class=\"application\">Tails Greeter</span>. So you can not configure it\n" +"the Welcome Screen. So you can not configure it\n" "but you can delete it and create a new one.\n" msgstr "" "Le message d'erreur <span class=\"emphasis\">Le volume persistant est\n" @@ -146,7 +151,7 @@ msgid "" "<ol>\n" " <li>\n" " Start Tails and set an\n" -" [[administration password|doc/first_steps/startup_options/administration_password]].\n" +" [[administration password|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Choose\n" @@ -173,7 +178,7 @@ msgstr "" "<ol>\n" " <li>\n" " Démarrer Tails et mettre un\n" -" [[mot de passe d'administration|doc/first_steps/startup_options/administration_password]].\n" +" [[mot de passe d'administration|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Choisir\n" @@ -272,11 +277,9 @@ msgid "" "[[<span class=\"application\">Unsafe Browser</span>|doc/anonymous_internet/unsafe_browser]].\n" msgstr "" "Quand cette option est activée, les modifications des marque-pages\n" -"du [[<span class=\"application\">Navigateur Tor</span>|doc/" -"anonymous_internet/Tor_Browser]]\n" +"du [[<span class=\"application\">Navigateur Tor</span>|doc/anonymous_internet/Tor_Browser]]\n" "seront sauvegardées dans le volume persistant. Ceci ne s'applique pas au\n" -"[[<span class=\"application\">Navigateur non sécurisé</span>|doc/" -"anonymous_internet/unsafe_browser]].\n" +"[[<span class=\"application\">Navigateur non sécurisé</span>|doc/anonymous_internet/unsafe_browser]].\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/first_steps/persistence/configure.id.po b/wiki/src/doc/first_steps/persistence/configure.id.po index c695fec103c8aba7ac6d5aaeb58094e835f76be7..3617202481960ab69cfb9d52629adeac1adfdfb5 100644 --- a/wiki/src/doc/first_steps/persistence/configure.id.po +++ b/wiki/src/doc/first_steps/persistence/configure.id.po @@ -118,7 +118,7 @@ msgid "" "<ol>\n" " <li>\n" " Start Tails and set an\n" -" [[administration password|doc/first_steps/startup_options/administration_password]].\n" +" [[administration password|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Choose\n" diff --git a/wiki/src/doc/first_steps/persistence/configure.it.po b/wiki/src/doc/first_steps/persistence/configure.it.po index 931e95527d4cae00fb7347a4f0f15358362656f8..97a733f082907d401721624faaa802a8214c4a94 100644 --- a/wiki/src/doc/first_steps/persistence/configure.it.po +++ b/wiki/src/doc/first_steps/persistence/configure.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: sPACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-01-22 14:26+0000\n" "Last-Translator: Davide <davidesantoro@mail.ru>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -54,11 +54,16 @@ msgid "<div class=\"note\">\n" msgstr "<div class=\"note\">\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "The error message <span class=\"emphasis\">Error, Persistence partition is not\n" +#| "unlocked.</span> means that the persistent volume was not enabled from\n" +#| "<span class=\"application\">Tails Greeter</span>. So you can not configure it\n" +#| "but you can delete it and create a new one.\n" msgid "" "The error message <span class=\"emphasis\">Error, Persistence partition is not\n" "unlocked.</span> means that the persistent volume was not enabled from\n" -"<span class=\"application\">Tails Greeter</span>. So you can not configure it\n" +"the Welcome Screen. So you can not configure it\n" "but you can delete it and create a new one.\n" msgstr "" "Il messaggio d'errore <span class=\"emphasis\">Il volume persistente non è\n" @@ -158,7 +163,7 @@ msgid "" "<ol>\n" " <li>\n" " Start Tails and set an\n" -" [[administration password|doc/first_steps/startup_options/administration_password]].\n" +" [[administration password|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Choose\n" diff --git a/wiki/src/doc/first_steps/persistence/configure.mdwn b/wiki/src/doc/first_steps/persistence/configure.mdwn index 36a57cf940a4e3e61f6e88f88c068367623151d1..650a9a0627dcfc198954b979ad4500fafb1dfa31 100644 --- a/wiki/src/doc/first_steps/persistence/configure.mdwn +++ b/wiki/src/doc/first_steps/persistence/configure.mdwn @@ -14,7 +14,7 @@ To start the persistent volume assistant, choose The error message <span class="emphasis">Error, Persistence partition is not unlocked.</span> means that the persistent volume was not enabled from -<span class="application">Tails Greeter</span>. So you can not configure it +the Welcome Screen. So you can not configure it but you can delete it and create a new one. </div> @@ -61,7 +61,7 @@ will remain on the persistent volume.</p> <ol> <li> Start Tails and set an - [[administration password|doc/first_steps/startup_options/administration_password]]. + [[administration password|doc/first_steps/welcome_screen/administration_password]]. </li> <li> Choose diff --git a/wiki/src/doc/first_steps/persistence/configure.pl.po b/wiki/src/doc/first_steps/persistence/configure.pl.po index cdc7e9ab59a25e973cb54cc9c30e740ff40098ec..66c996c4f561aff2b6d634dfa4ab7c1d12cc4944 100644 --- a/wiki/src/doc/first_steps/persistence/configure.pl.po +++ b/wiki/src/doc/first_steps/persistence/configure.pl.po @@ -119,7 +119,7 @@ msgid "" "<ol>\n" " <li>\n" " Start Tails and set an\n" -" [[administration password|doc/first_steps/startup_options/administration_password]].\n" +" [[administration password|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Choose\n" diff --git a/wiki/src/doc/first_steps/persistence/configure.pt.po b/wiki/src/doc/first_steps/persistence/configure.pt.po index bd3fabcebb3c5c9315f576fea03b6a294f373d72..a9dd822719b6e0f257c584112c48e609c8aacd7e 100644 --- a/wiki/src/doc/first_steps/persistence/configure.pt.po +++ b/wiki/src/doc/first_steps/persistence/configure.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2014-07-17 15:53-0300\n" "Last-Translator: Tails Developers <amnesia@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -53,11 +53,16 @@ msgid "<div class=\"note\">\n" msgstr "<div class=\"note\">\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "The error message <span class=\"emphasis\">Error, Persistence partition is not\n" +#| "unlocked.</span> means that the persistent volume was not enabled from\n" +#| "<span class=\"application\">Tails Greeter</span>. So you can not configure it\n" +#| "but you can delete it and create a new one.\n" msgid "" "The error message <span class=\"emphasis\">Error, Persistence partition is not\n" "unlocked.</span> means that the persistent volume was not enabled from\n" -"<span class=\"application\">Tails Greeter</span>. So you can not configure it\n" +"the Welcome Screen. So you can not configure it\n" "but you can delete it and create a new one.\n" msgstr "" "A mensagem de erro <span class=\"emphasis\">Erro, a partição de persistência não\n" @@ -138,7 +143,7 @@ msgid "" "<ol>\n" " <li>\n" " Start Tails and set an\n" -" [[administration password|doc/first_steps/startup_options/administration_password]].\n" +" [[administration password|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Choose\n" diff --git a/wiki/src/doc/first_steps/persistence/configure.ru.po b/wiki/src/doc/first_steps/persistence/configure.ru.po index b7ca49665cbc7fdc6bc02866990651332ed6e74e..fa3e0a9ffb37a889c3ca2e27d21c5fcb1639c28e 100644 --- a/wiki/src/doc/first_steps/persistence/configure.ru.po +++ b/wiki/src/doc/first_steps/persistence/configure.ru.po @@ -119,7 +119,7 @@ msgid "" "<ol>\n" " <li>\n" " Start Tails and set an\n" -" [[administration password|doc/first_steps/startup_options/administration_password]].\n" +" [[administration password|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Choose\n" diff --git a/wiki/src/doc/first_steps/persistence/configure.sr_Latn.po b/wiki/src/doc/first_steps/persistence/configure.sr_Latn.po index 269495a69324c30b947d2cfb732e6478559b4868..0444047a12c4d11ed62f991ca6360474bfe56307 100644 --- a/wiki/src/doc/first_steps/persistence/configure.sr_Latn.po +++ b/wiki/src/doc/first_steps/persistence/configure.sr_Latn.po @@ -119,7 +119,7 @@ msgid "" "<ol>\n" " <li>\n" " Start Tails and set an\n" -" [[administration password|doc/first_steps/startup_options/administration_password]].\n" +" [[administration password|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Choose\n" diff --git a/wiki/src/doc/first_steps/persistence/configure.tr.po b/wiki/src/doc/first_steps/persistence/configure.tr.po index fc8ecea2ac61c0c4c40c5a81282e09ea54649141..676075c8b41f5ff9da89b7626f0c0306be1926bb 100644 --- a/wiki/src/doc/first_steps/persistence/configure.tr.po +++ b/wiki/src/doc/first_steps/persistence/configure.tr.po @@ -118,7 +118,7 @@ msgid "" "<ol>\n" " <li>\n" " Start Tails and set an\n" -" [[administration password|doc/first_steps/startup_options/administration_password]].\n" +" [[administration password|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Choose\n" diff --git a/wiki/src/doc/first_steps/persistence/configure.zh.po b/wiki/src/doc/first_steps/persistence/configure.zh.po index e9a32c9446a7ff565245f24857f81f30690f9c84..140fb5c81ac2843383eff856facc5cace444c29a 100644 --- a/wiki/src/doc/first_steps/persistence/configure.zh.po +++ b/wiki/src/doc/first_steps/persistence/configure.zh.po @@ -118,7 +118,7 @@ msgid "" "<ol>\n" " <li>\n" " Start Tails and set an\n" -" [[administration password|doc/first_steps/startup_options/administration_password]].\n" +" [[administration password|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Choose\n" diff --git a/wiki/src/doc/first_steps/persistence/configure.zh_TW.po b/wiki/src/doc/first_steps/persistence/configure.zh_TW.po index 31611e28b56ddf8da5b1ddbdd6eb388cee6c06f6..b5f67f684cb1372d79ff74b4fb0efa5cae782e52 100644 --- a/wiki/src/doc/first_steps/persistence/configure.zh_TW.po +++ b/wiki/src/doc/first_steps/persistence/configure.zh_TW.po @@ -118,7 +118,7 @@ msgid "" "<ol>\n" " <li>\n" " Start Tails and set an\n" -" [[administration password|doc/first_steps/startup_options/administration_password]].\n" +" [[administration password|doc/first_steps/welcome_screen/administration_password]].\n" " </li>\n" " <li>\n" " Choose\n" diff --git a/wiki/src/doc/first_steps/persistence/copy.de.po b/wiki/src/doc/first_steps/persistence/copy.de.po index dd7b3728c740286229db8ad7dfa98de7f6fbdd84..c77c81a5552a830be1f33343ce6ba26998322738 100644 --- a/wiki/src/doc/first_steps/persistence/copy.de.po +++ b/wiki/src/doc/first_steps/persistence/copy.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2020-03-18 16:35+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-01-29 15:26+0000\n" "Last-Translator: Muri Nicanor <muri@immerda.ch>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -113,7 +113,7 @@ msgstr "" #| "administration password|startup_options/administration_password]]." msgid "" "Start on your current Tails, set up an [[administration password|doc/" -"first_steps/startup_options/administration_password]], and unlock the " +"first_steps/welcome_screen/administration_password]], and unlock the " "persistent volume." msgstr "" "Starten Sie Tails von dem neuen USB-Stick neu, aktivieren Sie den " diff --git a/wiki/src/doc/first_steps/persistence/copy.es.po b/wiki/src/doc/first_steps/persistence/copy.es.po index f87106b4d17085ff2de52c2f54257d1d47e5c270..92a7f2f14ea68cb86f6cee6b700ec93a50c2bc66 100644 --- a/wiki/src/doc/first_steps/persistence/copy.es.po +++ b/wiki/src/doc/first_steps/persistence/copy.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2020-03-18 16:35+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-03-27 15:36+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -127,9 +127,14 @@ msgid "Create or update your backup\n" msgstr "Crea o actualiza tu copia de respaldo\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "Start on your current Tails, set up an [[administration password|doc/" +#| "first_steps/startup_options/administration_password]], and unlock the " +#| "persistent volume." msgid "" "Start on your current Tails, set up an [[administration password|doc/" -"first_steps/startup_options/administration_password]], and unlock the " +"first_steps/welcome_screen/administration_password]], and unlock the " "persistent volume." msgstr "" "Arranca en tu Tails actual, configura una [[contraseña de administrador|doc/" diff --git a/wiki/src/doc/first_steps/persistence/copy.fa.po b/wiki/src/doc/first_steps/persistence/copy.fa.po index 964414c2ee2f7cccbd1124ac8f4b2b720e49b0cf..d98f1bd67d37795ffc480142c82730f6a07afc96 100644 --- a/wiki/src/doc/first_steps/persistence/copy.fa.po +++ b/wiki/src/doc/first_steps/persistence/copy.fa.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: 2020-03-18 16:35+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-01-22 15:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" @@ -114,7 +114,7 @@ msgstr "" #| "password|startup_options/administration_password]]." msgid "" "Start on your current Tails, set up an [[administration password|doc/" -"first_steps/startup_options/administration_password]], and unlock the " +"first_steps/welcome_screen/administration_password]], and unlock the " "persistent volume." msgstr "" "تیلز را دوباره راهاندازی و مانا را فعال کنید و [[یک گذرواژهٔ مدیریتی نیز " diff --git a/wiki/src/doc/first_steps/persistence/copy.fr.po b/wiki/src/doc/first_steps/persistence/copy.fr.po index 3d9649eb428ac23b8642d56db5c5ff829678e380..fcd3d571389c10a222b3d50e017b76f5a0a30c70 100644 --- a/wiki/src/doc/first_steps/persistence/copy.fr.po +++ b/wiki/src/doc/first_steps/persistence/copy.fr.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2020-03-18 16:35+0000\n" -"PO-Revision-Date: 2020-04-07 15:34+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" +"PO-Revision-Date: 2020-01-12 13:31+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: fr\n" @@ -135,7 +135,7 @@ msgstr "Créer ou mettre à jour votre sauvegarde\n" #. type: Bullet: '1. ' msgid "" "Start on your current Tails, set up an [[administration password|doc/" -"first_steps/startup_options/administration_password]], and unlock the " +"first_steps/welcome_screen/administration_password]], and unlock the " "persistent volume." msgstr "" "Démarrez sur votre Tails actuel, définissez un [[mot de passe " diff --git a/wiki/src/doc/first_steps/persistence/copy.it.po b/wiki/src/doc/first_steps/persistence/copy.it.po index d260ea6c8b2fa6a05eec05b0037222f9977d6087..992e84f97c9efc18c9f081089f0b8f0d1b42038f 100644 --- a/wiki/src/doc/first_steps/persistence/copy.it.po +++ b/wiki/src/doc/first_steps/persistence/copy.it.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: 2020-03-18 16:35+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-11-24 09:36+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -107,7 +107,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start on your current Tails, set up an [[administration password|doc/" -"first_steps/startup_options/administration_password]], and unlock the " +"first_steps/welcome_screen/administration_password]], and unlock the " "persistent volume." msgstr "" diff --git a/wiki/src/doc/first_steps/persistence/copy.mdwn b/wiki/src/doc/first_steps/persistence/copy.mdwn index 81e8714907f70bcaa461e2f827853ebea855daa3..c462a74685f47c55f42b14b7045ffbfe556dfe0e 100644 --- a/wiki/src/doc/first_steps/persistence/copy.mdwn +++ b/wiki/src/doc/first_steps/persistence/copy.mdwn @@ -47,7 +47,7 @@ Create or update your backup ============================ 1. Start on your current Tails, set up an [[administration - password|doc/first_steps/startup_options/administration_password]], and + password|doc/first_steps/welcome_screen/administration_password]], and unlock the persistent volume. 1. Choose diff --git a/wiki/src/doc/first_steps/persistence/copy.pt.po b/wiki/src/doc/first_steps/persistence/copy.pt.po index c8ec0e1052516221d508e6dcf025b3ca0f3df28f..30aefcc182684c35f94f97f4cc3d4179c44f70e2 100644 --- a/wiki/src/doc/first_steps/persistence/copy.pt.po +++ b/wiki/src/doc/first_steps/persistence/copy.pt.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: 2020-03-18 16:35+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-12-22 21:03+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" @@ -114,7 +114,7 @@ msgstr "" #| "password|startup_options/administration_password]]." msgid "" "Start on your current Tails, set up an [[administration password|doc/" -"first_steps/startup_options/administration_password]], and unlock the " +"first_steps/welcome_screen/administration_password]], and unlock the " "persistent volume." msgstr "" "Reinicie o Tails, habilite a persistência, e [[configure uma senha de " diff --git a/wiki/src/doc/first_steps/persistence/delete.de.po b/wiki/src/doc/first_steps/persistence/delete.de.po index 5c3c23cd077ab9772dc67643f819dfc67f83fdea..d0462d49290d1240329886a80ae87d260d527089 100644 --- a/wiki/src/doc/first_steps/persistence/delete.de.po +++ b/wiki/src/doc/first_steps/persistence/delete.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-03-08 15:39+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tals translators <tails@boum.org>\n" @@ -68,11 +68,10 @@ msgstr "" "Speicherbereich löschen möchten." #. type: Plain text -#, no-wrap -msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" -msgstr "" -" Aktivieren Sie den beständigen Speicherbereich im <span class=\"" -"application\">Tails Greeter</span> nicht.\n" +#, fuzzy, no-wrap +#| msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" +msgid " Do not enable the persistent volume in the Welcome Screen.\n" +msgstr " Aktivieren Sie den beständigen Speicherbereich im <span class=\"application\">Tails Greeter</span> nicht.\n" #. type: Bullet: ' 1. ' msgid "" @@ -104,10 +103,13 @@ msgstr "Klicken Sie auf <span class=\"guilabel\">Löschen</span>." #~ msgid "" #~ "<ol>\n" -#~ "<li>[[Format the USB stick and create a single encrypted partition|encryption_and_privacy/encrypted_volumes]]\n" -#~ "on the whole USB stick. This step deletes both Tails and the persistent volume.</li>\n" +#~ "<li>[[Format the USB stick and create a single encrypted partition|" +#~ "encryption_and_privacy/encrypted_volumes]]\n" +#~ "on the whole USB stick. This step deletes both Tails and the persistent " +#~ "volume.</li>\n" #~ "<li>[[Securely clean all the available disk\n" -#~ "space|encryption_and_privacy/secure_deletion#clean_disk_space]] on this new encrypted\n" +#~ "space|encryption_and_privacy/secure_deletion#clean_disk_space]] on this " +#~ "new encrypted\n" #~ "partition.</li>\n" #~ "<li>[[Reinstall Tails|install]] on the USB stick.</li>\n" #~ "<li>Start Tails from the USB stick and [[create a new persistent\n" @@ -115,11 +117,16 @@ msgstr "Klicken Sie auf <span class=\"guilabel\">Löschen</span>." #~ "</ol>\n" #~ msgstr "" #~ "<ol>\n" -#~ "<li>[[Formatieren Sie den USB-stick und erstellen Sie eine einzelne, verschlüsselte Partition|encryption_and_privacy/encrypted_volumes]]\n" -#~ "auf dem gesamten Medium. Dieser Schritt löscht sowohl Tails als auch den beständigen Speicherbereich.</li>\n" -#~ "<li>[[Löschen Sie den gesamten verfügbaren Speicherplatz sicher|encryption_and_privacy/secure_deletion#clean_disk_space]] auf dieser neuen, verschlüsselten\n" +#~ "<li>[[Formatieren Sie den USB-stick und erstellen Sie eine einzelne, " +#~ "verschlüsselte Partition|encryption_and_privacy/encrypted_volumes]]\n" +#~ "auf dem gesamten Medium. Dieser Schritt löscht sowohl Tails als auch den " +#~ "beständigen Speicherbereich.</li>\n" +#~ "<li>[[Löschen Sie den gesamten verfügbaren Speicherplatz sicher|" +#~ "encryption_and_privacy/secure_deletion#clean_disk_space]] auf dieser " +#~ "neuen, verschlüsselten\n" #~ "Partition.</li>\n" #~ "<li>[[Installieren Sie Tails erneut|install]] auf diesem USB-Stick.</li>\n" -#~ "<li>Starten Sie Tails von diesem USB-stick und [[erstellen Sie einen neuen beständigen\n" +#~ "<li>Starten Sie Tails von diesem USB-stick und [[erstellen Sie einen " +#~ "neuen beständigen\n" #~ "Speicherbereich|persistence/configure]].</li>\n" #~ "</ol>\n" diff --git a/wiki/src/doc/first_steps/persistence/delete.es.po b/wiki/src/doc/first_steps/persistence/delete.es.po index 3c65550bd3be5fdf7b0b63595234e6cb6e3b4225..65e6699b0968bbd96b77d5ee2c58fd72b6ae441c 100644 --- a/wiki/src/doc/first_steps/persistence/delete.es.po +++ b/wiki/src/doc/first_steps/persistence/delete.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-01-11 10:25+0000\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -36,8 +36,7 @@ msgid "" "recovery techniques|encryption_and_privacy/secure_deletion#why]].</p>\n" msgstr "" "<p>Esta técnica es rápida pero podría no prevenir a un atacante fuerte de\n" -"recuperar los archivos del antiguo volumen persistente usando [[técnicas " -"avanzadas\n" +"recuperar los archivos del antiguo volumen persistente usando [[técnicas avanzadas\n" "de recuperación de datos|encryption_and_privacy/secure_deletion#why]].</p>\n" "\n" @@ -49,8 +48,7 @@ msgid "" "which is a much slower operation.</p>\n" msgstr "" "<p>Para eliminar de forma segura el volumen persistente, debes [[eliminar\n" -"de forma seguro la memoria USB entera|encryption_and_privacy/secure_deletion" -"#erase-device]],\n" +"de forma seguro la memoria USB entera|encryption_and_privacy/secure_deletion#erase-device]],\n" "que es una operación mucho más lenta.</p>\n" #. type: Plain text @@ -67,8 +65,9 @@ msgstr "" "persistente." #. type: Plain text -#, no-wrap -msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" +#, fuzzy, no-wrap +#| msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" +msgid " Do not enable the persistent volume in the Welcome Screen.\n" msgstr " No configures el volumen persistente en el <span class=\"application\">Tails Greeter</span>.\n" #. type: Bullet: ' 1. ' @@ -77,9 +76,9 @@ msgid "" "span> ▸ <span class=\"guisubmenu\">Tails</span> ▸ <span class=" "\"guimenuitem\">Delete persistent volume</span></span>." msgstr "" -"Elige <span class=\"menuchoice\"> <span class=\"guimenu\"" -">Aplicaciones</span> ▸ <span class=\"guisubmenu\">Tails</span> ▸ <" -"span class=\"guimenuitem\">Eliminar volumen persistente</span></span>." +"Elige <span class=\"menuchoice\"> <span class=\"guimenu\">Aplicaciones</" +"span> ▸ <span class=\"guisubmenu\">Tails</span> ▸ <span class=" +"\"guimenuitem\">Eliminar volumen persistente</span></span>." #. type: Bullet: ' 1. ' msgid "Click <span class=\"guilabel\">Delete</span>." @@ -100,10 +99,13 @@ msgstr "Haz click en <span class=\"guilabel\">Borrar</span>." #~ msgid "" #~ "<ol>\n" -#~ "<li>[[Format the USB stick and create a single encrypted partition|encryption_and_privacy/encrypted_volumes]]\n" -#~ "on the whole USB stick. This step deletes both Tails and the persistent volume.</li>\n" +#~ "<li>[[Format the USB stick and create a single encrypted partition|" +#~ "encryption_and_privacy/encrypted_volumes]]\n" +#~ "on the whole USB stick. This step deletes both Tails and the persistent " +#~ "volume.</li>\n" #~ "<li>[[Securely clean all the available disk\n" -#~ "space|encryption_and_privacy/secure_deletion#clean_disk_space]] on this new encrypted\n" +#~ "space|encryption_and_privacy/secure_deletion#clean_disk_space]] on this " +#~ "new encrypted\n" #~ "partition.</li>\n" #~ "<li>[[Reinstall Tails|install]] on the USB stick.</li>\n" #~ "<li>Start Tails from the USB stick and [[create a new persistent\n" @@ -111,10 +113,13 @@ msgstr "Haz click en <span class=\"guilabel\">Borrar</span>." #~ "</ol>\n" #~ msgstr "" #~ "<ol>\n" -#~ "<li>[[Formatea el dispositivo y crea una sola partición cifrada|encryption_and_privacy/encrypted_volumes]]\n" -#~ "en todo el dispositivo. Este paso elimina tanto Tails como el volumen persistente.</li>\n" +#~ "<li>[[Formatea el dispositivo y crea una sola partición cifrada|" +#~ "encryption_and_privacy/encrypted_volumes]]\n" +#~ "en todo el dispositivo. Este paso elimina tanto Tails como el volumen " +#~ "persistente.</li>\n" #~ "<li>[[Limpia todo el espacio de disco disponible\n" -#~ "de forma segura|encryption_and_privacy/secure_deletion#clean_disk_space]] en esta nueva partición\n" +#~ "de forma segura|encryption_and_privacy/secure_deletion#clean_disk_space]] " +#~ "en esta nueva partición\n" #~ "cifrada.</li>\n" #~ "<li>[[Reinicia Tails|install]] en este dispositivo.</li>\n" #~ "<li>Inicia Tails desde el dispositivo y [[crea un nuevo volumen\n" diff --git a/wiki/src/doc/first_steps/persistence/delete.fa.po b/wiki/src/doc/first_steps/persistence/delete.fa.po index 5b82121561334851c4a8ea8c59bf14aaff135b32..9c76c48dd405018a1e6acd3ca8df025a193321b5 100644 --- a/wiki/src/doc/first_steps/persistence/delete.fa.po +++ b/wiki/src/doc/first_steps/persistence/delete.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2015-10-14 19:35+0000\n" "Last-Translator: sprint5 <translation5@451f.org>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" @@ -66,7 +66,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" +msgid " Do not enable the persistent volume in the Welcome Screen.\n" msgstr "" #. type: Bullet: ' 1. ' @@ -116,10 +116,13 @@ msgstr "" #, fuzzy #~| msgid "" #~| "<ol>\n" -#~| "<li>[[Format the device and create a single encrypted partition|encryption_and_privacy/encrypted_volumes]]\n" -#~| "on the whole device. This step deletes both Tails and the persistent volume.</li>\n" +#~| "<li>[[Format the device and create a single encrypted partition|" +#~| "encryption_and_privacy/encrypted_volumes]]\n" +#~| "on the whole device. This step deletes both Tails and the persistent " +#~| "volume.</li>\n" #~| "<li>[[Securely clean all the available disk\n" -#~| "space|encryption_and_privacy/secure_deletion#clean_disk_space]] on this new encrypted\n" +#~| "space|encryption_and_privacy/secure_deletion#clean_disk_space]] on this " +#~| "new encrypted\n" #~| "partition.</li>\n" #~| "<li>[[Reinstall Tails|install]] on the device.</li>\n" #~| "<li>Start Tails from the device and [[create a new persistent\n" @@ -127,10 +130,13 @@ msgstr "" #~| "</ol>\n" #~ msgid "" #~ "<ol>\n" -#~ "<li>[[Format the USB stick and create a single encrypted partition|encryption_and_privacy/encrypted_volumes]]\n" -#~ "on the whole USB stick. This step deletes both Tails and the persistent volume.</li>\n" +#~ "<li>[[Format the USB stick and create a single encrypted partition|" +#~ "encryption_and_privacy/encrypted_volumes]]\n" +#~ "on the whole USB stick. This step deletes both Tails and the persistent " +#~ "volume.</li>\n" #~ "<li>[[Securely clean all the available disk\n" -#~ "space|encryption_and_privacy/secure_deletion#clean_disk_space]] on this new encrypted\n" +#~ "space|encryption_and_privacy/secure_deletion#clean_disk_space]] on this " +#~ "new encrypted\n" #~ "partition.</li>\n" #~ "<li>[[Reinstall Tails|install]] on the USB stick.</li>\n" #~ "<li>Start Tails from the USB stick and [[create a new persistent\n" @@ -138,10 +144,13 @@ msgstr "" #~ "</ol>\n" #~ msgstr "" #~ "<ol>\n" -#~ "<li>[[دیسک را فرمت کنید و یک پارتیشن رمزگذاریشده|encryption_and_privacy/encrypted_volumes]]\n" -#~ "روی کل دیسک بسازید. با این کار هم درایو مانا و هم تیلز را پاک خواهید کرد.</li>\n" +#~ "<li>[[دیسک را فرمت کنید و یک پارتیشن رمزگذاریشده|encryption_and_privacy/" +#~ "encrypted_volumes]]\n" +#~ "روی کل دیسک بسازید. با این کار هم درایو مانا و هم تیلز را پاک خواهید کرد." +#~ "</li>\n" #~ "<li>[[همهٔ فضای دیسک را به صورت امن\n" -#~ "|encryption_and_privacy/secure_deletion#clean_disk_space]] روی پارتیشن رمزگذاریشدهٔ جدید\n" +#~ "|encryption_and_privacy/secure_deletion#clean_disk_space]] روی پارتیشن " +#~ "رمزگذاریشدهٔ جدید\n" #~ "پاک کنید.</li>\n" #~ "<li>روی این دستگاه [[تیلز را دوباره نصب کنید.|install]].</li>\n" #~ "<li>تیلز را از روی دستگاه اجرا کنید و یک [[درایو مانای جدید بسازید\n" diff --git a/wiki/src/doc/first_steps/persistence/delete.fr.po b/wiki/src/doc/first_steps/persistence/delete.fr.po index ef1702c49782fe2fedc5c3f5f0fac8416263d806..2ed9f363fbf210ecc249fbc0a842c8a2cb816609 100644 --- a/wiki/src/doc/first_steps/persistence/delete.fr.po +++ b/wiki/src/doc/first_steps/persistence/delete.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-10-04 19:48+0200\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: \n" @@ -62,8 +62,9 @@ msgstr "" "persistant." #. type: Plain text -#, no-wrap -msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" +#, fuzzy, no-wrap +#| msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" +msgid " Do not enable the persistent volume in the Welcome Screen.\n" msgstr " N'activez pas le volume persistant dans le <span class=\"application\">Tails Greeter</span>.\n" #. type: Bullet: ' 1. ' diff --git a/wiki/src/doc/first_steps/persistence/delete.it.po b/wiki/src/doc/first_steps/persistence/delete.it.po index eb3992287bd8c3d5c08394f2c627b875f5bcaaab..ef8cb2cb12ac5ec53512d43a0bfe9cedc67c61b8 100644 --- a/wiki/src/doc/first_steps/persistence/delete.it.po +++ b/wiki/src/doc/first_steps/persistence/delete.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: sPACKAGE VERSION\n" -"POT-Creation-Date: 2019-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2016-02-25 20:54+0100\n" "Last-Translator: Zeyev <zeyev@autistici.org>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -65,7 +65,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" +msgid " Do not enable the persistent volume in the Welcome Screen.\n" msgstr "" #. type: Bullet: ' 1. ' @@ -115,10 +115,13 @@ msgstr "" #, fuzzy #~| msgid "" #~| "<ol>\n" -#~| "<li>[[Format the device and create a single encrypted partition|encryption_and_privacy/encrypted_volumes]]\n" -#~| "on the whole device. This step deletes both Tails and the persistent volume.</li>\n" +#~| "<li>[[Format the device and create a single encrypted partition|" +#~| "encryption_and_privacy/encrypted_volumes]]\n" +#~| "on the whole device. This step deletes both Tails and the persistent " +#~| "volume.</li>\n" #~| "<li>[[Securely clean all the available disk\n" -#~| "space|encryption_and_privacy/secure_deletion#clean_disk_space]] on this new encrypted\n" +#~| "space|encryption_and_privacy/secure_deletion#clean_disk_space]] on this " +#~| "new encrypted\n" #~| "partition.</li>\n" #~| "<li>[[Reinstall Tails|install]] on the device.</li>\n" #~| "<li>Start Tails from the device and [[create a new persistent\n" @@ -126,10 +129,13 @@ msgstr "" #~| "</ol>\n" #~ msgid "" #~ "<ol>\n" -#~ "<li>[[Format the USB stick and create a single encrypted partition|encryption_and_privacy/encrypted_volumes]]\n" -#~ "on the whole USB stick. This step deletes both Tails and the persistent volume.</li>\n" +#~ "<li>[[Format the USB stick and create a single encrypted partition|" +#~ "encryption_and_privacy/encrypted_volumes]]\n" +#~ "on the whole USB stick. This step deletes both Tails and the persistent " +#~ "volume.</li>\n" #~ "<li>[[Securely clean all the available disk\n" -#~ "space|encryption_and_privacy/secure_deletion#clean_disk_space]] on this new encrypted\n" +#~ "space|encryption_and_privacy/secure_deletion#clean_disk_space]] on this " +#~ "new encrypted\n" #~ "partition.</li>\n" #~ "<li>[[Reinstall Tails|install]] on the USB stick.</li>\n" #~ "<li>Start Tails from the USB stick and [[create a new persistent\n" @@ -137,11 +143,14 @@ msgstr "" #~ "</ol>\n" #~ msgstr "" #~ "<ol>\n" -#~ "<li>[[Formatta il dispositivo e crea una partizione cifrata singola|encryption_and_privacy/encrypted_volumes]]\n" -#~ "sull'intero dispositivo. Questo passo cancellerà sia Tails che il volume persistente.\n" +#~ "<li>[[Formatta il dispositivo e crea una partizione cifrata singola|" +#~ "encryption_and_privacy/encrypted_volumes]]\n" +#~ "sull'intero dispositivo. Questo passo cancellerà sia Tails che il volume " +#~ "persistente.\n" #~ "</li>\n" #~ "<li>[[Cancella in maniera sicura tutti i dischi a disposizione\n" -#~ "|encryption_and_privacy/secure_deletion#clean_disk_space]] su questa nuova partizione cifrata.</li>\n" +#~ "|encryption_and_privacy/secure_deletion#clean_disk_space]] su questa " +#~ "nuova partizione cifrata.</li>\n" #~ "<li>[[Reinstalla Tails|install]] sul dispositivo </li>\n" #~ "<li>Esegui Tails dal dispositivo e [[crea un nuovo volume \n" #~ "persistente|persistence/configure]].</li>\n" diff --git a/wiki/src/doc/first_steps/persistence/delete.mdwn b/wiki/src/doc/first_steps/persistence/delete.mdwn index 8d2443e175f0cf82f87a3f3ab6c6efa04481a9a8..8f7c48626ed41c1d57ef9870881bb698dbe67cd0 100644 --- a/wiki/src/doc/first_steps/persistence/delete.mdwn +++ b/wiki/src/doc/first_steps/persistence/delete.mdwn @@ -15,7 +15,7 @@ which is a much slower operation.</p> 1. Start Tails from the USB stick on which you want to delete the persistent volume. - Do not enable the persistent volume in <span class="application">Tails Greeter</span>. + Do not enable the persistent volume in the Welcome Screen. 1. Choose <span class="menuchoice"> diff --git a/wiki/src/doc/first_steps/persistence/delete.pt.po b/wiki/src/doc/first_steps/persistence/delete.pt.po index 46a82932dc974983f42a1f0b9de79dad5e41a3b4..2958749e9325c7e5703605c9dcf0367189724f99 100644 --- a/wiki/src/doc/first_steps/persistence/delete.pt.po +++ b/wiki/src/doc/first_steps/persistence/delete.pt.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-04-05 23:29+0000\n" -"Last-Translator: Halley Pacheco de Oliveira <halley.oliveira@protonmail.com>" -"\n" +"Last-Translator: Halley Pacheco de Oliveira <halley.oliveira@protonmail." +"com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -38,8 +38,7 @@ msgid "" msgstr "" "<p>Esta técnica é rápida, mas pode não impedir que um atacante forte\n" "recupere arquivos do volume persistente antigo usando [[técinicas\n" -"de recuperação de dados|encryption_and_privacy/secure_deletion#why]] " -"avançadas.</p>\n" +"de recuperação de dados|encryption_and_privacy/secure_deletion#why]] avançadas.</p>\n" #. type: Plain text #, no-wrap @@ -48,10 +47,8 @@ msgid "" "delete the entire USB stick|encryption_and_privacy/secure_deletion#erase-device]],\n" "which is a much slower operation.</p>\n" msgstr "" -"<p>Para apagar o volume persistente com segurança, você precisa [[apagar de " -"forma\n" -"segura todo o dispositivo USB|encryption_and_privacy/secure_deletion#erase-" -"device]],\n" +"<p>Para apagar o volume persistente com segurança, você precisa [[apagar de forma\n" +"segura todo o dispositivo USB|encryption_and_privacy/secure_deletion#erase-device]],\n" "o que é uma operação muito mais lenta.</p>\n" #. type: Plain text @@ -68,11 +65,10 @@ msgstr "" "persistente." #. type: Plain text -#, no-wrap -msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" -msgstr "" -" Não ative o volume persistente no <span class=\"application\">Tails " -"Greeter</span>.\n" +#, fuzzy, no-wrap +#| msgid " Do not enable the persistent volume in <span class=\"application\">Tails Greeter</span>.\n" +msgid " Do not enable the persistent volume in the Welcome Screen.\n" +msgstr " Não ative o volume persistente no <span class=\"application\">Tails Greeter</span>.\n" #. type: Bullet: ' 1. ' msgid "" @@ -80,9 +76,9 @@ msgid "" "span> ▸ <span class=\"guisubmenu\">Tails</span> ▸ <span class=" "\"guimenuitem\">Delete persistent volume</span></span>." msgstr "" -"Escolha <span class=\"menuchoice\"> <span class=\"guimenu\"" -">Aplicativos</span> ▸ <span class=\"guisubmenu\">Tails</span> ▸ <" -"span class=\"guimenuitem\">Apagar o volume persistente</span></span>." +"Escolha <span class=\"menuchoice\"> <span class=\"guimenu\">Aplicativos</" +"span> ▸ <span class=\"guisubmenu\">Tails</span> ▸ <span class=" +"\"guimenuitem\">Apagar o volume persistente</span></span>." #. type: Bullet: ' 1. ' msgid "Click <span class=\"guilabel\">Delete</span>." @@ -108,10 +104,13 @@ msgstr "" #, fuzzy #~| msgid "" #~| "<ol>\n" -#~| "<li>[[Format the device and create a single encrypted partition|encryption_and_privacy/encrypted_volumes]]\n" -#~| "on the whole device. This step deletes both Tails and the persistent volume.</li>\n" +#~| "<li>[[Format the device and create a single encrypted partition|" +#~| "encryption_and_privacy/encrypted_volumes]]\n" +#~| "on the whole device. This step deletes both Tails and the persistent " +#~| "volume.</li>\n" #~| "<li>[[Securely clean all the available disk\n" -#~| "space|encryption_and_privacy/secure_deletion#clean_disk_space]] on this new encrypted\n" +#~| "space|encryption_and_privacy/secure_deletion#clean_disk_space]] on this " +#~| "new encrypted\n" #~| "partition.</li>\n" #~| "<li>[[Reinstall Tails|install]] on the device.</li>\n" #~| "<li>Start Tails from the device and [[create a new persistent\n" @@ -119,10 +118,13 @@ msgstr "" #~| "</ol>\n" #~ msgid "" #~ "<ol>\n" -#~ "<li>[[Format the USB stick and create a single encrypted partition|encryption_and_privacy/encrypted_volumes]]\n" -#~ "on the whole USB stick. This step deletes both Tails and the persistent volume.</li>\n" +#~ "<li>[[Format the USB stick and create a single encrypted partition|" +#~ "encryption_and_privacy/encrypted_volumes]]\n" +#~ "on the whole USB stick. This step deletes both Tails and the persistent " +#~ "volume.</li>\n" #~ "<li>[[Securely clean all the available disk\n" -#~ "space|encryption_and_privacy/secure_deletion#clean_disk_space]] on this new encrypted\n" +#~ "space|encryption_and_privacy/secure_deletion#clean_disk_space]] on this " +#~ "new encrypted\n" #~ "partition.</li>\n" #~ "<li>[[Reinstall Tails|install]] on the USB stick.</li>\n" #~ "<li>Start Tails from the USB stick and [[create a new persistent\n" @@ -130,9 +132,14 @@ msgstr "" #~ "</ol>\n" #~ msgstr "" #~ "<ol>\n" -#~ "<li>[[Formate o dispositivo e crie uma única partição criptografada|encryption_and_privacy/encrypted_volumes]]\n" -#~ "em todo o dispositivo. Este passo apaga tanto o Tails quanto o volume persistente.</li>\n" -#~ "<li>[[Limpe de forma segura todo o espaço disponível|encryption_and_privacy/secure_deletion#clean_disk_space]] nesta nova partição criptografada.</li>\n" +#~ "<li>[[Formate o dispositivo e crie uma única partição criptografada|" +#~ "encryption_and_privacy/encrypted_volumes]]\n" +#~ "em todo o dispositivo. Este passo apaga tanto o Tails quanto o volume " +#~ "persistente.</li>\n" +#~ "<li>[[Limpe de forma segura todo o espaço disponível|" +#~ "encryption_and_privacy/secure_deletion#clean_disk_space]] nesta nova " +#~ "partição criptografada.</li>\n" #~ "<li>[[Reinstale o Tails|install]] no dispositivo.</li>\n" -#~ "<li>Inicie o Tails a partir do dispositivo e [[crie um novo volume persistente|persistence/configure]].</li>\n" +#~ "<li>Inicie o Tails a partir do dispositivo e [[crie um novo volume " +#~ "persistente|persistence/configure]].</li>\n" #~ "</ol>\n" diff --git a/wiki/src/doc/first_steps/persistence/use.ar.po b/wiki/src/doc/first_steps/persistence/use.ar.po index ba8ad093dd96e8c52c529c8201c2278b923b1c04..d41287c241e4a213596b03222c65981ca3fb9f7a 100644 --- a/wiki/src/doc/first_steps/persistence/use.ar.po +++ b/wiki/src/doc/first_steps/persistence/use.ar.po @@ -49,14 +49,14 @@ msgid "" "When starting Tails, in the\n" "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" "[[<span class=\"application\">Tails " -"Greeter</span>|startup_options#tails_greeter]], enter your passphrase and " +"Greeter</span>|welcome_screen]], enter your passphrase and " "click\n" "<span class=\"button\">Unlock</span>.\n" msgstr "" #. type: Plain text #, no-wrap -msgid "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Title = diff --git a/wiki/src/doc/first_steps/persistence/use.ca.po b/wiki/src/doc/first_steps/persistence/use.ca.po index fadb02d66916916a694b463639b8c7b88151fcff..a916bcb8128187ac43e306db237490745da8ac93 100644 --- a/wiki/src/doc/first_steps/persistence/use.ca.po +++ b/wiki/src/doc/first_steps/persistence/use.ca.po @@ -45,14 +45,14 @@ msgstr "" msgid "" "When starting Tails, in the\n" "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" -"[[<span class=\"application\">Tails Greeter</span>|startup_options#tails_greeter]], enter your passphrase and click\n" +"[[<span class=\"application\">Tails Greeter</span>|welcome_screen]], enter your passphrase and click\n" "<span class=\"button\">Unlock</span>.\n" msgstr "" #. type: Plain text #, no-wrap -msgid "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" -msgstr "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" +msgstr "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/first_steps/persistence/use.de.po b/wiki/src/doc/first_steps/persistence/use.de.po index 21fe70a25af80f02a76c4034cdc4fdb5c6443042..db5cf380ec78ece9df508ff73c79365cb5360c92 100644 --- a/wiki/src/doc/first_steps/persistence/use.de.po +++ b/wiki/src/doc/first_steps/persistence/use.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2017-05-19 17:18+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2015-12-30 22:38+0100\n" "Last-Translator: Tails translators <tails@boum.org>\n" "Language-Team: Tails translator <tails@boum.org>\n" @@ -41,22 +41,22 @@ msgstr "Aktivieren Sie den beständigen Speicherbereich\n" #| msgid "" #| "1. When starting Tails, in the\n" #| "<span class=\"guilabel\">Use persistence?</span> dialog of [[Tails\n" -#| "Greeter|startup_options#tails_greeter]], choose <span class=\"guilabel\">Yes</span> to\n" +#| "Greeter|welcome_screen]], choose <span class=\"guilabel\">Yes</span> to\n" #| "enable the persistent volume for the current working session.\n" msgid "" "When starting Tails, in the\n" "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" -"[[<span class=\"application\">Tails Greeter</span>|startup_options#tails_greeter]], enter your passphrase and click\n" +"the [[Welcome Screen|welcome_screen]], enter your passphrase and click\n" "<span class=\"button\">Unlock</span>.\n" msgstr "" "1. Wählen Sie beim Start von Tails beim\n" "<span class=\"guilabel\">Beständige Speicherpartition benutzen?</span> Dialog des [[Tails\n" -"Greeter|startup_options#tails_greeter]] <span class=\"guilabel\">Ja</span> aus, um\n" +"Greeter|welcome_screen]] <span class=\"guilabel\">Ja</span> aus, um\n" "den beständigen Speicherbereich für die aktuelle Arbeitssitzung zu aktivieren.\n" #. type: Plain text #, no-wrap -msgid "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Title = @@ -108,10 +108,14 @@ msgstr "" #~ "<span class=\"guilabel\">Passphrase</span>-Textfeld ein.\n" #~ msgid "" -#~ "3. If you select the <span class=\"guilabel\">Read-Only</span> check box, the\n" -#~ "content of persistent volume will be available and you will be able to modify\n" +#~ "3. If you select the <span class=\"guilabel\">Read-Only</span> check box, " +#~ "the\n" +#~ "content of persistent volume will be available and you will be able to " +#~ "modify\n" #~ "it but the changes will not be saved.\n" #~ msgstr "" -#~ "3. Wenn Sie die <span class=\"guilabel\">Schreibgeschützt</span>-Auswahlbox markieren,\n" -#~ "wird der Inhalt des beständigen Speicherbereichs verfügbar sein und Sie werden in der Lage sein\n" +#~ "3. Wenn Sie die <span class=\"guilabel\">Schreibgeschützt</span>-" +#~ "Auswahlbox markieren,\n" +#~ "wird der Inhalt des beständigen Speicherbereichs verfügbar sein und Sie " +#~ "werden in der Lage sein\n" #~ "ihn zu modifizieren, die Änderungen werden jedoch nicht gespeichert.\n" diff --git a/wiki/src/doc/first_steps/persistence/use.es.po b/wiki/src/doc/first_steps/persistence/use.es.po index bc72724394b1d1c89eebd7b2feb91f849e3641f0..d5b0018253cc1ad22dbae3b6bcfdaa27d20f4d6a 100644 --- a/wiki/src/doc/first_steps/persistence/use.es.po +++ b/wiki/src/doc/first_steps/persistence/use.es.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2018-01-17 16:52+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2018-01-30 08:23+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" -"Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/first_" -"steps_persistence_use/es/>\n" +"Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" +"first_steps_persistence_use/es/>\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,24 +38,27 @@ msgid "Enable the persistent volume\n" msgstr "Habilita el volumen persistente\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "When starting Tails, in the\n" +#| "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" +#| "[[<span class=\"application\">Tails Greeter</span>|welcome_screen]], enter your passphrase and click\n" +#| "<span class=\"button\">Unlock</span>.\n" msgid "" "When starting Tails, in the\n" "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" -"[[<span class=\"application\">Tails Greeter</span>|startup_options#tails_greeter]], enter your passphrase and click\n" +"the [[Welcome Screen|welcome_screen]], enter your passphrase and click\n" "<span class=\"button\">Unlock</span>.\n" msgstr "" "Al iniciar Tails, en la sección\n" -"<span class=\"guilabel\">Almacenamiento persistente cifrado</span> del [[<" -"span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]], ingresa tu frase contraseña " -"y haz click en\n" +"<span class=\"guilabel\">Almacenamiento persistente cifrado</span> del [[<span class=\"application\">Tails\n" +"Greeter</span>|welcome_screen]], ingresa tu frase contraseña y haz click en\n" "<span class=\"button\">Abrir</span>.\n" #. type: Plain text #, no-wrap -msgid "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" -msgstr "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" +msgstr "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" #. type: Title = #, no-wrap @@ -102,14 +105,19 @@ msgstr "" #~ "2. Enter the passphrase of the persistent volume in the\n" #~ "<span class=\"guilabel\">Passphrase</span> text box.\n" #~ msgstr "" -#~ "2. Escribe la frase contraseña del volumen persistente en el campo de texto\n" +#~ "2. Escribe la frase contraseña del volumen persistente en el campo de " +#~ "texto\n" #~ "<span class=\"guilabel\">Passphrase</span>.\n" #~ msgid "" -#~ "3. If you select the <span class=\"guilabel\">Read-Only</span> check box, the\n" -#~ "content of persistent volume will be available and you will be able to modify\n" +#~ "3. If you select the <span class=\"guilabel\">Read-Only</span> check box, " +#~ "the\n" +#~ "content of persistent volume will be available and you will be able to " +#~ "modify\n" #~ "it but the changes will not be saved.\n" #~ msgstr "" -#~ "3. Si seleccionas la opción <span class=\"guilabel\">Sólo-lectura</span>,\n" -#~ "el contenido del volumen persistente se hará disponible y podrás modificarlo\n" +#~ "3. Si seleccionas la opción <span class=\"guilabel\">Sólo-lectura</" +#~ "span>,\n" +#~ "el contenido del volumen persistente se hará disponible y podrás " +#~ "modificarlo\n" #~ "pero los cambios no se guardarán.\n" diff --git a/wiki/src/doc/first_steps/persistence/use.fa.po b/wiki/src/doc/first_steps/persistence/use.fa.po index e41dca062dcd1e783e0866011052d829becbbf1a..3852c871a9769c781de12c81c82346f11e093f4f 100644 --- a/wiki/src/doc/first_steps/persistence/use.fa.po +++ b/wiki/src/doc/first_steps/persistence/use.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-05-19 17:18+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2015-10-09 17:14+0000\n" "Last-Translator: sprint5 <translation5@451f.org>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" @@ -26,9 +26,7 @@ msgstr "[[!meta title=\"فعال کردن و استفاده از درایو ما #. type: Plain text #, no-wrap msgid "[[!inline pages=\"doc/first_steps/persistence.caution\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"doc/first_steps/persistence.caution.fa\" raw=\"yes\" sort=" -"\"age\"]]\n" +msgstr "[[!inline pages=\"doc/first_steps/persistence.caution.fa\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -45,22 +43,22 @@ msgstr "فعال کردن درایو مانا\n" #| msgid "" #| "1. When starting Tails, in the\n" #| "<span class=\"guilabel\">Use persistence?</span> dialog of [[Tails\n" -#| "Greeter|startup_options#tails_greeter]], choose <span class=\"guilabel\">Yes</span> to\n" +#| "Greeter|welcome_screen]], choose <span class=\"guilabel\">Yes</span> to\n" #| "enable the persistent volume for the current working session.\n" msgid "" "When starting Tails, in the\n" "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" -"[[<span class=\"application\">Tails Greeter</span>|startup_options#tails_greeter]], enter your passphrase and click\n" +"the [[Welcome Screen|welcome_screen]], enter your passphrase and click\n" "<span class=\"button\">Unlock</span>.\n" msgstr "" "۱. وقتی تیلز را راهاندازی میکنید، در \n" -"پنجرهٔ <span class=\"guilabel\">استفاده از مانا؟</span> در [[خوشامدگوی تیلز|startup_options#tails_greeter]] <span class=\"guilabel\">بله</span> را انتخاب کنید تا\n" +"پنجرهٔ <span class=\"guilabel\">استفاده از مانا؟</span> در [[خوشامدگوی تیلز|welcome_screen]] <span class=\"guilabel\">بله</span> را انتخاب کنید تا\n" "درایو مانا را برای نشست کاری فعلی فعال شود.\n" #. type: Plain text #, no-wrap -msgid "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" -msgstr "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" +msgstr "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" #. type: Title = #, no-wrap @@ -115,10 +113,13 @@ msgstr "" #~ "در بخش <span class=\"guilabel\">گذرواژه</span> وارد کنید.\n" #~ msgid "" -#~ "3. If you select the <span class=\"guilabel\">Read-Only</span> check box, the\n" -#~ "content of persistent volume will be available and you will be able to modify\n" +#~ "3. If you select the <span class=\"guilabel\">Read-Only</span> check box, " +#~ "the\n" +#~ "content of persistent volume will be available and you will be able to " +#~ "modify\n" #~ "it but the changes will not be saved.\n" #~ msgstr "" -#~ "۳. اگر گزینهٔ <span class=\"guilabel\">فقط خواندن</span> را انتخاب کردهاید،\n" +#~ "۳. اگر گزینهٔ <span class=\"guilabel\">فقط خواندن</span> را انتخاب " +#~ "کردهاید،\n" #~ "محتویات درایو مانا قابل دسترسی خواهد بود و میتوانید آنها را تغییر دهید\n" #~ "اما تغییرات ذخیره نخواهند شد.\n" diff --git a/wiki/src/doc/first_steps/persistence/use.fr.po b/wiki/src/doc/first_steps/persistence/use.fr.po index ef5610d0917f82505149c7046a4e3367adf424e4..89c5b07bfe61bebb5c0d8e8fce58f4594bf94fe4 100644 --- a/wiki/src/doc/first_steps/persistence/use.fr.po +++ b/wiki/src/doc/first_steps/persistence/use.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2017-05-19 17:18+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2017-06-06 10:09-0000\n" "Last-Translator: \n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -37,22 +37,27 @@ msgid "Enable the persistent volume\n" msgstr "Activer le volume persistant\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "When starting Tails, in the\n" +#| "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" +#| "[[<span class=\"application\">Tails Greeter</span>|welcome_screen]], enter your passphrase and click\n" +#| "<span class=\"button\">Unlock</span>.\n" msgid "" "When starting Tails, in the\n" "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" -"[[<span class=\"application\">Tails Greeter</span>|startup_options#tails_greeter]], enter your passphrase and click\n" +"the [[Welcome Screen|welcome_screen]], enter your passphrase and click\n" "<span class=\"button\">Unlock</span>.\n" msgstr "" "Lors du démarrage de Tails, dans la\n" "section <span class=\"guilabel\">Stockage persistant chiffré</span> du\n" -"[[<span class=\"application\">Tails Greeter</span>|startup_options#tails_greeter]], entrez votre phrase de passe et cliquez\n" +"[[<span class=\"application\">Tails Greeter</span>|welcome_screen]], entrez votre phrase de passe et cliquez\n" "sur <span class=\"button\">Déverrouiller</span>.\n" #. type: Plain text #, no-wrap -msgid "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" -msgstr "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" +msgstr "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" #. type: Title = #, no-wrap @@ -103,10 +108,13 @@ msgstr "" #~ "boîte de texte <span class=\"guilabel\">Phrase de passe</span>.\n" #~ msgid "" -#~ "3. If you select the <span class=\"guilabel\">Read-Only</span> check box, the\n" -#~ "content of persistent volume will be available and you will be able to modify\n" +#~ "3. If you select the <span class=\"guilabel\">Read-Only</span> check box, " +#~ "the\n" +#~ "content of persistent volume will be available and you will be able to " +#~ "modify\n" #~ "it but the changes will not be saved.\n" #~ msgstr "" -#~ "3. Si vous cochez la case <span class=\"guilabel\">Lecture-Seule ?</span>, le\n" +#~ "3. Si vous cochez la case <span class=\"guilabel\">Lecture-Seule ?</" +#~ "span>, le\n" #~ "contenu du volume persistant sera disponible et vous pourrez le modifier\n" #~ "mais les modifications ne seront pas sauvegardées.\n" diff --git a/wiki/src/doc/first_steps/persistence/use.id.po b/wiki/src/doc/first_steps/persistence/use.id.po index 99a52c53bb670486669b6b0772c33e9d7b757ea4..162b5ce576723756f60f4605d2c8816eb74150c0 100644 --- a/wiki/src/doc/first_steps/persistence/use.id.po +++ b/wiki/src/doc/first_steps/persistence/use.id.po @@ -43,13 +43,13 @@ msgstr "" msgid "" "When starting Tails, in the\n" "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" -"[[<span class=\"application\">Tails Greeter</span>|startup_options#tails_greeter]], enter your passphrase and click\n" +"[[<span class=\"application\">Tails Greeter</span>|welcome_screen]], enter your passphrase and click\n" "<span class=\"button\">Unlock</span>.\n" msgstr "" #. type: Plain text #, no-wrap -msgid "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Title = diff --git a/wiki/src/doc/first_steps/persistence/use.it.po b/wiki/src/doc/first_steps/persistence/use.it.po index dd1446ca216528dc9f11b63c8be31d1a394398ef..bcfa50de823412588ad69db74b0461313bffdd22 100644 --- a/wiki/src/doc/first_steps/persistence/use.it.po +++ b/wiki/src/doc/first_steps/persistence/use.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2017-05-19 17:18+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2016-02-25 21:06+0100\n" "Last-Translator: Zeyev <zeyev@autistici.org>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -24,9 +24,7 @@ msgstr "[[!meta title=\"Avviare e usare il volume persistente\"]]\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"doc/first_steps/persistence.caution\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"doc/first_steps/persistence.caution.it\" raw=\"yes\" sort=" -"\"age\"]]\n" +msgstr "[[!inline pages=\"doc/first_steps/persistence.caution.it\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -43,23 +41,23 @@ msgstr "Avviare il volume persistente\n" #| msgid "" #| "1. When starting Tails, in the\n" #| "<span class=\"guilabel\">Use persistence?</span> dialog of [[Tails\n" -#| "Greeter|startup_options#tails_greeter]], choose <span class=\"guilabel\">Yes</span> to\n" +#| "Greeter|welcome_screen]], choose <span class=\"guilabel\">Yes</span> to\n" #| "enable the persistent volume for the current working session.\n" msgid "" "When starting Tails, in the\n" "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" -"[[<span class=\"application\">Tails Greeter</span>|startup_options#tails_greeter]], enter your passphrase and click\n" +"the [[Welcome Screen|welcome_screen]], enter your passphrase and click\n" "<span class=\"button\">Unlock</span>.\n" msgstr "" "1. All'avvio di Tails, nella \n" " finestra di dialogo <span class=\"guilabel\">Usare la persistenza?</span> di [[Tails\n" -"Greeter|startup_options#tails_greeter]], scegli <span class=\"guilabel\">Sì</span> per\n" +"Greeter|welcome_screen]], scegli <span class=\"guilabel\">Sì</span> per\n" "avviare il volume persistente nella sessione di lavoro corrente.\n" #. type: Plain text #, no-wrap -msgid "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" -msgstr "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" +msgstr "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" #. type: Title = #, no-wrap @@ -110,8 +108,10 @@ msgstr "" #~ "casella di testo <span class=\"guilabel\">Password</span>.\n" #~ msgid "" -#~ "3. If you select the <span class=\"guilabel\">Read-Only</span> check box, the\n" -#~ "content of persistent volume will be available and you will be able to modify\n" +#~ "3. If you select the <span class=\"guilabel\">Read-Only</span> check box, " +#~ "the\n" +#~ "content of persistent volume will be available and you will be able to " +#~ "modify\n" #~ "it but the changes will not be saved.\n" #~ msgstr "" #~ "3. Se spunti la casella <span class=\"guilabel\">Sola-Lettura</span>, il\n" diff --git a/wiki/src/doc/first_steps/persistence/use.mdwn b/wiki/src/doc/first_steps/persistence/use.mdwn index b089730cc2e948e5c032c56d05c7ef26980dd8ca..9648688423d45337c69bacd7caa3edd92e02840d 100644 --- a/wiki/src/doc/first_steps/persistence/use.mdwn +++ b/wiki/src/doc/first_steps/persistence/use.mdwn @@ -9,10 +9,10 @@ Enable the persistent volume When starting Tails, in the <span class="guilabel">Encrypted Persistent Storage</span> section of -[[<span class="application">Tails Greeter</span>|startup_options#tails_greeter]], enter your passphrase and click +the [[Welcome Screen|welcome_screen]], enter your passphrase and click <span class="button">Unlock</span>. -[[!img startup_options/persistence.png link="no" alt=""]] +[[!img welcome_screen/persistence.png link="no" alt=""]] Use the persistent volume ========================= diff --git a/wiki/src/doc/first_steps/persistence/use.pl.po b/wiki/src/doc/first_steps/persistence/use.pl.po index 5f8df31a7fa638b6ca6652d27e6eca9b659e5473..dda7aa92ba3329e9a5767da6c3cab812e249c66b 100644 --- a/wiki/src/doc/first_steps/persistence/use.pl.po +++ b/wiki/src/doc/first_steps/persistence/use.pl.po @@ -46,14 +46,14 @@ msgstr "" msgid "" "When starting Tails, in the\n" "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" -"[[<span class=\"application\">Tails Greeter</span>|startup_options#tails_greeter]], enter your passphrase and click\n" +"[[<span class=\"application\">Tails Greeter</span>|welcome_screen]], enter your passphrase and click\n" "<span class=\"button\">Unlock</span>.\n" msgstr "" #. type: Plain text #, no-wrap -msgid "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" -msgstr "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" +msgstr "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/first_steps/persistence/use.pt.po b/wiki/src/doc/first_steps/persistence/use.pt.po index 50f4e80c709bf8a066e3e1efe8bc894a542d4d6b..cf116dabc7e78f250142547ffeac6d798156b920 100644 --- a/wiki/src/doc/first_steps/persistence/use.pt.po +++ b/wiki/src/doc/first_steps/persistence/use.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-05-19 17:18+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2014-07-16 08:22-0300\n" "Last-Translator: Tails Developers <amnesia@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -40,22 +40,22 @@ msgstr "Habilite o volume persistente\n" #| msgid "" #| "1. When starting Tails, in the\n" #| "<span class=\"guilabel\">Use persistence?</span> dialog of [[Tails\n" -#| "Greeter|startup_options#tails_greeter]], choose <span class=\"guilabel\">Yes</span> to\n" +#| "Greeter|welcome_screen]], choose <span class=\"guilabel\">Yes</span> to\n" #| "enable the persistent volume for the current working session.\n" msgid "" "When starting Tails, in the\n" "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" -"[[<span class=\"application\">Tails Greeter</span>|startup_options#tails_greeter]], enter your passphrase and click\n" +"the [[Welcome Screen|welcome_screen]], enter your passphrase and click\n" "<span class=\"button\">Unlock</span>.\n" msgstr "" "1. Ao iniciar o Tails, na caixa de diálogo <span class=\"guilabel\">Usar persistência?</span>\n" -"do [[Tails Greeter|startup_options#tails_greeter]], escolha <span class=\"guilabel\">Sim</span>\n" +"do [[Tails Greeter|welcome_screen]], escolha <span class=\"guilabel\">Sim</span>\n" "para habilitar o volume persistente para a sessão atual.\n" #. type: Plain text #, no-wrap -msgid "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" -msgstr "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" +msgstr "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" #. type: Title = #, no-wrap @@ -123,10 +123,14 @@ msgstr "" #~ "<span class=\"guilabel\">Senha</span>.\n" #~ msgid "" -#~ "3. If you select the <span class=\"guilabel\">Read-Only</span> check box, the\n" -#~ "content of persistent volume will be available and you will be able to modify\n" +#~ "3. If you select the <span class=\"guilabel\">Read-Only</span> check box, " +#~ "the\n" +#~ "content of persistent volume will be available and you will be able to " +#~ "modify\n" #~ "it but the changes will not be saved.\n" #~ msgstr "" -#~ "3. Se você escolher a opção <span class=\"guilabel\">Somente leitura</span>,\n" -#~ "o conteúdo do volume persistente estará disponível e você poderá modificá-lo mas\n" +#~ "3. Se você escolher a opção <span class=\"guilabel\">Somente leitura</" +#~ "span>,\n" +#~ "o conteúdo do volume persistente estará disponível e você poderá modificá-" +#~ "lo mas\n" #~ "as modificações não serão salvas.\n" diff --git a/wiki/src/doc/first_steps/persistence/use.ru.po b/wiki/src/doc/first_steps/persistence/use.ru.po index be83c2404d47e82e651c1a0e6c3935442510c6bb..d5477a9503f8e42bf7c29326cb065b462939c945 100644 --- a/wiki/src/doc/first_steps/persistence/use.ru.po +++ b/wiki/src/doc/first_steps/persistence/use.ru.po @@ -49,15 +49,15 @@ msgid "" "When starting Tails, in the\n" "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" "[[<span class=\"application\">Tails " -"Greeter</span>|startup_options#tails_greeter]], enter your passphrase and " +"Greeter</span>|welcome_screen]], enter your passphrase and " "click\n" "<span class=\"button\">Unlock</span>.\n" msgstr "" #. type: Plain text #, no-wrap -msgid "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" -msgstr "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" +msgstr "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/first_steps/persistence/use.sr_Latn.po b/wiki/src/doc/first_steps/persistence/use.sr_Latn.po index 2d3b73acc34b829cd1025aec2f91cedfca64aef1..1c6ca7d5506e101caa0888fb1e4be86de7b9f79b 100644 --- a/wiki/src/doc/first_steps/persistence/use.sr_Latn.po +++ b/wiki/src/doc/first_steps/persistence/use.sr_Latn.po @@ -47,14 +47,14 @@ msgid "" "When starting Tails, in the\n" "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" "[[<span class=\"application\">Tails " -"Greeter</span>|startup_options#tails_greeter]], enter your passphrase and " +"Greeter</span>|welcome_screen]], enter your passphrase and " "click\n" "<span class=\"button\">Unlock</span>.\n" msgstr "" #. type: Plain text #, no-wrap -msgid "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Title = diff --git a/wiki/src/doc/first_steps/persistence/use.tr.po b/wiki/src/doc/first_steps/persistence/use.tr.po index 0d5e976632f9edb98b0c465968794bf94649b518..6757eff0e01a8b5231c3921976228551cf4c9048 100644 --- a/wiki/src/doc/first_steps/persistence/use.tr.po +++ b/wiki/src/doc/first_steps/persistence/use.tr.po @@ -45,14 +45,14 @@ msgstr "" msgid "" "When starting Tails, in the\n" "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" -"[[<span class=\"application\">Tails Greeter</span>|startup_options#tails_greeter]], enter your passphrase and click\n" +"[[<span class=\"application\">Tails Greeter</span>|welcome_screen]], enter your passphrase and click\n" "<span class=\"button\">Unlock</span>.\n" msgstr "" #. type: Plain text #, no-wrap -msgid "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" -msgstr "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" +msgstr "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/first_steps/persistence/use.zh.po b/wiki/src/doc/first_steps/persistence/use.zh.po index e299999b0391bac596aa1b3b448c6d8757b28ae0..8f0074dbb8e1dde37830abd8eee78c17e0db2066 100644 --- a/wiki/src/doc/first_steps/persistence/use.zh.po +++ b/wiki/src/doc/first_steps/persistence/use.zh.po @@ -48,15 +48,15 @@ msgid "" "When starting Tails, in the\n" "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" "[[<span class=\"application\">Tails " -"Greeter</span>|startup_options#tails_greeter]], enter your passphrase and " +"Greeter</span>|welcome_screen]], enter your passphrase and " "click\n" "<span class=\"button\">Unlock</span>.\n" msgstr "" #. type: Plain text #, no-wrap -msgid "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" -msgstr "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" +msgstr "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/first_steps/persistence/use.zh_TW.po b/wiki/src/doc/first_steps/persistence/use.zh_TW.po index 4f4966b06b99ba192062cf912e9941de024fef10..0a37e7291a32e1c56d8818ad76bb2b75adf75dc3 100644 --- a/wiki/src/doc/first_steps/persistence/use.zh_TW.po +++ b/wiki/src/doc/first_steps/persistence/use.zh_TW.po @@ -48,15 +48,15 @@ msgid "" "When starting Tails, in the\n" "<span class=\"guilabel\">Encrypted Persistent Storage</span> section of\n" "[[<span class=\"application\">Tails " -"Greeter</span>|startup_options#tails_greeter]], enter your passphrase and " +"Greeter</span>|welcome_screen]], enter your passphrase and " "click\n" "<span class=\"button\">Unlock</span>.\n" msgstr "" #. type: Plain text #, no-wrap -msgid "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" -msgstr "[[!img startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" +msgstr "[[!img welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/first_steps/startup_options/boot-menu-with-options.png b/wiki/src/doc/first_steps/startup_options/boot-menu-with-options.png deleted file mode 100644 index c5e65359ac91232101d0c98210520268b2950191..0000000000000000000000000000000000000000 Binary files a/wiki/src/doc/first_steps/startup_options/boot-menu-with-options.png and /dev/null differ diff --git a/wiki/src/doc/first_steps/startup_options.ar.po b/wiki/src/doc/first_steps/welcome_screen.ar.po similarity index 99% rename from wiki/src/doc/first_steps/startup_options.ar.po rename to wiki/src/doc/first_steps/welcome_screen.ar.po index b6dddbe8efb476da7bd3eaedcf3b05ed7e0dffaf..6ed8df0c3fba3f0b11d659657ae18dba7d994416 100644 --- a/wiki/src/doc/first_steps/startup_options.ar.po +++ b/wiki/src/doc/first_steps/welcome_screen.ar.po @@ -11,7 +11,7 @@ msgstr "" "PO-Revision-Date: 2018-07-02 05:57+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Arabic <http://translate.tails.boum.org/projects/tails/" -"startup_options/ar/>\n" +"welcome_screen/ar/>\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/wiki/src/doc/first_steps/startup_options.ca.po b/wiki/src/doc/first_steps/welcome_screen.ca.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options.ca.po rename to wiki/src/doc/first_steps/welcome_screen.ca.po diff --git a/wiki/src/doc/first_steps/startup_options.de.po b/wiki/src/doc/first_steps/welcome_screen.de.po similarity index 67% rename from wiki/src/doc/first_steps/startup_options.de.po rename to wiki/src/doc/first_steps/welcome_screen.de.po index 97a04d7abe2cbe710554a77268e34f0e37e4291a..a6614b14e56e11324fe774ba3459aefcb49fe638 100644 --- a/wiki/src/doc/first_steps/startup_options.de.po +++ b/wiki/src/doc/first_steps/welcome_screen.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-08-16 18:12+0200\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2019-10-23 09:05+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" @@ -19,144 +19,62 @@ msgstr "" "X-Generator: Weblate 2.20\n" #. type: Plain text -#, no-wrap -msgid "[[!meta title=\"Startup options\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!meta title=\"Startup options\"]]\n" +msgid "[[!meta title=\"Welcome Screen\"]]\n" msgstr "[[!meta title=\"Startoptionen\"]]\n" #. type: Plain text msgid "" -"When starting Tails, you can specify startup options to alter some of its " -"basic functioning. The two ways of specifying startup options are the " -"following:" -msgstr "" -"Beim Starten von Tails können Sie Optionen auswählen, um einige grundlegende " -"Funktionen zu verändern. Die zwei Möglichkeiten um Startoptionen anzugeben " -"sind folgende:" - -#. type: Plain text -#, no-wrap -msgid "[[!toc levels=2]]\n" -msgstr "[[!toc levels=2]]\n" - -#. type: Plain text -#, no-wrap -msgid "" -"<a id=\"boot_loader_menu\"></a>\n" -"<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" +"The Welcome Screen appears after the Boot Loader, but before the GNOME " +"Desktop." msgstr "" -"<a id=\"boot_loader_menu\"></a>\n" -"<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" - -#. type: Title = -#, no-wrap -msgid "Using the <span class=\"application\">Boot Loader Menu</span>\n" -msgstr "Benutzung des <span class=\"application\">Bootmenüs</span>\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "When starting Tails, you can specify startup options to alter some of its " +#| "basic functioning. The two ways of specifying startup options are the " +#| "following:" msgid "" -"The <span class=\"application\">Boot Loader Menu</span> is the first screen to appear\n" -"when Tails starts.\n" +"You can use the Welcome Screen to specify startup options that alter some of " +"the basic functioning of Tails." msgstr "" -"Das <span class=\"application\">Bootmenü</span> ist der erste erscheinende Bildschirm\n" -"beim Start von Tails.\n" - -#. type: Plain text -#, no-wrap -msgid "<div class=\"tip\">\n" -msgstr "<div class=\"tip\">\n" +"Beim Starten von Tails können Sie Optionen auswählen, um einige grundlegende " +"Funktionen zu verändern. Die zwei Möglichkeiten um Startoptionen anzugeben " +"sind folgende:" #. type: Plain text -#, no-wrap -msgid "" -"<p>The <span class=\"guilabel\">Troubleshooting Mode</span> disables some features of the\n" -"Linux kernel and might work better on some computers. You can try this option if you\n" -"think you are experiencing errors related to hardware compatibility while\n" -"starting Tails.</p>\n" -msgstr "" -"<p>Der <span class=\"guilabel\">Troubleshooting</span>-Modus deaktiviert einige Funktionen\n" -"des Linux-Kernels und könnte auf einigen Computern besser funktionieren. Sie können diese\n" -"Option ausprobieren, falls Sie annehmen, dass Sie aufgrund von Hardware-Inkompatibilität\n" -"Probleme beim Start von Tails haben.</p>\n" +#, fuzzy, no-wrap +#| msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Welcome to Tails!\"]]\n" +msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n" +msgstr "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Willkommen bei Tails!\"]]\n" #. type: Plain text #, no-wrap -msgid "</div>\n" -msgstr "</div>\n" - -#. type: Bullet: '1. ' msgid "" -"To add a boot option, press <span class=\"keycap\">Tab</span> when the <span " -"class=\"application\">Boot Loader Menu</span> appears. A list of boot " -"options appears at the bottom of the screen." +"To start Tails without options, click on the\n" +"<span class=\"button\">Start Tails</span> button.\n" msgstr "" -"Um eine Startoption hinzuzufügen, drücken Sie <span class=\"keycap\">Tab</" -"span>, sobald das <span class=\"application\">Bootmenü</span> erscheint. " -"Eine Liste von Startoptionen wird im unteren Teil des Bildschirms aufgeführt." +"Um Tails ohne Optionen zu starten, klicken Sie auf die Schaltfläche\n" +"<span class=\"button\">Tails starten</span>.\n" #. type: Plain text -#, no-wrap -msgid "" -"[[!img boot-menu-with-options.png link=no alt=\"Black screen with Tails\n" -"artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'.\n" -"At the bottom, a list of options ending with 'vsyscall=none quiet_'\"]]\n" -msgstr "" -"[[!img boot-menu-with-options.png link=no alt=\"Schwarzer Bildschirm mit Tails\n" -"Grafik. 'Bootmenü' mit zwei Optionen, 'Tails' und 'Tails (Troubleshooting Mode)'. Am unteren\n" -"Ende befindet sich eine Liste von Optionen die mit 'vsyscall=none quiet_' endet\"]]\n" - -#. type: Bullet: '2. ' -msgid "" -"Press <span class=\"keycap\">Space</span>, and type the boot option that you " -"want to add." -msgstr "" -"Drücken Sie die <span class=\"keycap\">Leertaste</span> und geben Sie die " -"Bootoptionen ein, die Sie hinzufügen möchten." - -#. type: Bullet: '3. ' -msgid "" -"If you want to add more than one boot option, type them one after the other, " -"and separate them by a <span class=\"keycap\">Space</span>." -msgstr "" -"Falls Sie mehr als eine Bootoption hinzufügen wollen, geben Sie eine nach " -"der anderen ein und trennen Sie diese jeweils durch ein <span class=\"keycap" -"\">Leerzeichen</span>." - -#. type: Bullet: '4. ' -msgid "Then press <span class=\"keycap\">Enter</span> to start Tails." -msgstr "" -"Drücken Sie anschließend <span class=\"keycap\">Enter</span>, um Tails zu " -"starten." +#, fuzzy, no-wrap +#| msgid "[[!toc levels=2]]\n" +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=2]]\n" #. type: Plain text -#, no-wrap -msgid "" -"<a id=\"greeter\"></a>\n" -"<a id=\"tails_greeter\"></a>\n" -msgstr "" -"<a id=\"greeter\"></a>\n" -"<a id=\"tails_greeter\"></a>\n" +#, fuzzy, no-wrap +#| msgid "<a id=\"additional\"></a>\n" +msgid "<a id=\"accessibility\"></a>\n" +msgstr "<a id=\"additional\"></a>\n" #. type: Title = #, no-wrap -msgid "Using <span class=\"application\">Tails Greeter</span>\n" -msgstr "Benutzung des <span class=\"application\">Tails Greeter</span>\n" - -#. type: Plain text -#, no-wrap -msgid "" -"<span class=\"application\">Tails Greeter</span>\n" -"appears after the <span class=\"application\">Boot Loader Menu</span>, but before the\n" -"<span class=\"application\">GNOME Desktop</span>:\n" +msgid "Assistive technologies\n" msgstr "" -"Der <span class=\"application\">Tails Greeter</span> erscheint nach\n" -"dem <span class=\"application\">Bootmenü</span>, aber vor der\n" -"<span class=\"application\">GNOME-Arbeitsumgebung</span>:\n" - -#. type: Plain text -#, no-wrap -msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Welcome to Tails!\"]]\n" -msgstr "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Willkommen bei Tails!\"]]\n" #. type: Plain text msgid "" @@ -177,37 +95,32 @@ msgstr "" "Symbol, welches wie eine Person aussieht) in der oberen Bildschirmleiste " "aktivieren." -#. type: Plain text -#, no-wrap -msgid "" -"To start Tails without options, click on the\n" -"<span class=\"button\">Start Tails</span> button.\n" -msgstr "" -"Um Tails ohne Optionen zu starten, klicken Sie auf die Schaltfläche\n" -"<span class=\"button\">Tails starten</span>.\n" - #. type: Plain text #, no-wrap msgid "<a id=\"locale\"></a>\n" msgstr "<a id=\"locale\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Language & region\n" msgstr "Sprache & Region\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "You can configure Tails depending on your language and location from\n" +#| "<span class=\"application\">Tails Greeter</span>.\n" msgid "" -"You can configure Tails depending on your language and location from\n" -"<span class=\"application\">Tails Greeter</span>.\n" +"You can configure Tails depending on your language and location from the " +"Welcome Screen." msgstr "" "Sie können mithilfe des <span class=\"application\">Tails\n" "Greeter</span> Tails entsprechend Ihrer Sprache und Region konfigurieren.\n" #. type: Plain text -#, no-wrap -msgid "[[!img locale.png link=\"no\" alt=\"Language & Region section of Tails Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!img locale.png link=\"no\" alt=\"Language & Region section of Tails Greeter\"]]\n" +msgid "[[!img locale.png link=\"no\" alt=\"Language & Region section of the Welcome Screen\"]]\n" msgstr "[[!img locale.png link=\"no\" alt=\"Bereich Sprache & Region des Tails Greeter\"]]\n" #. type: Bullet: '* ' @@ -319,21 +232,29 @@ msgstr " [[!img US_calendar_in_Russian.png link=\"no\" alt=\"\"]]\n" msgid "<a id=\"persistence\"></a>\n" msgstr "<a id=\"persistence\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Encrypted persistence storage\n" msgstr "Verschlüsselte beständige Datenpartition\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "If an [[encrypted persistence storage|first_steps/persistence]] is " +#| "detected on the USB stick, an\n" +#| "additional section appears in <span class=\"application\">Tails\n" +#| "Greeter</span> below the <span class=\"guilabel\">Language & Region</" +#| "span>\n" +#| "section:\n" msgid "" -"If an [[encrypted persistence storage|first_steps/persistence]] is detected on the USB stick, an\n" -"additional section appears in <span class=\"application\">Tails\n" -"Greeter</span> below the <span class=\"guilabel\">Language & Region</span>\n" -"section:\n" -msgstr "" -"Wenn eine [[verschlüsselte beständige Datenpartition|first_steps/persistence]] auf dem USB-Stick\n" -"erkannt wird, erscheint ein zusätzlicher Bereich unter dem Abschnitt <span class=\"guilabel\">Sprache & Region</span>\n" +"If an [[encrypted persistence storage|first_steps/persistence]] is detected " +"on the USB stick, an additional section appears in the Welcome Screen below " +"the **Language & Region** section:" +msgstr "" +"Wenn eine [[verschlüsselte beständige Datenpartition|first_steps/" +"persistence]] auf dem USB-Stick\n" +"erkannt wird, erscheint ein zusätzlicher Bereich unter dem Abschnitt <span " +"class=\"guilabel\">Sprache & Region</span>\n" " im <span class=\"application\">Tails Greeter</span>.\n" #. type: Plain text @@ -346,25 +267,32 @@ msgstr "[[!img persistence.png link=\"no\" alt=\"\"]]\n" msgid "<a id=\"additional\"></a>\n" msgstr "<a id=\"additional\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Additional settings\n" msgstr "Zusätzliche Einstellungen\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "Tails is configured with care to be as safe as possible by default. But,\n" +#| "depending on your situation, you can change one of the following\n" +#| "settings from <span class=\"application\">Tails Greeter</span>.\n" msgid "" -"Tails is configured with care to be as safe as possible by default. But,\n" -"depending on your situation, you can change one of the following\n" -"settings from <span class=\"application\">Tails Greeter</span>.\n" -msgstr "" -"Tails ist mit Sorgfalt so konfiguriert, dass es standardmäßig so sicher wie möglich ist.\n" -"Jedoch können Sie abhängig von Ihrer Situation die jeweiligen der folgenden Einstellungen\n" +"Tails is configured with care to be as safe as possible by default. But, " +"depending on your situation, you can change one of the following settings " +"from the Welcome Screen." +msgstr "" +"Tails ist mit Sorgfalt so konfiguriert, dass es standardmäßig so sicher wie " +"möglich ist.\n" +"Jedoch können Sie abhängig von Ihrer Situation die jeweiligen der folgenden " +"Einstellungen\n" "aus dem <span class=\"application\">Tails Greeter</span> aus anpassen.\n" #. type: Plain text -#, no-wrap -msgid "[[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid "[[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr "[[!img additional.png link=\"no\" alt=\"Zusätzliche Einstellungen des Tails Greeter\"]]\n" #. type: Bullet: '- ' @@ -381,9 +309,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[See our documentation about the administration password.|administration_password]]\n" -msgstr "" -" [[Lesen Sie die Dokumentation zum " -"Administrationspasswort.|administration_password]]\n" +msgstr " [[Lesen Sie die Dokumentation zum Administrationspasswort.|administration_password]]\n" #. type: Bullet: '- ' msgid "" @@ -450,7 +376,7 @@ msgstr "" "Deaktivieren Sie alle Netzwerkfunktionen, wenn Sie vollständig Offline mit " "zusätzlicher Sicherheit arbeiten möchten." -#. type: Title - +#. type: Title = #, no-wrap msgid "Keyboard shortcuts\n" msgstr "Tastaturkürzel\n" @@ -481,3 +407,108 @@ msgstr "" "<tr><td><span class=\"keycap\">Strg+Shift+N</span></td><td><span class=\"guilabel\">Netzwerkverbindung</td></tr>\n" "<tr><td><span class=\"keycap\">Alt+S</td><td><span class=\"guilabel\">Tails starten</td></tr>\n" "</table>\n" + +#~ msgid "" +#~ "<a id=\"boot_loader_menu\"></a>\n" +#~ "<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" +#~ msgstr "" +#~ "<a id=\"boot_loader_menu\"></a>\n" +#~ "<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" + +#~ msgid "Using the <span class=\"application\">Boot Loader Menu</span>\n" +#~ msgstr "Benutzung des <span class=\"application\">Bootmenüs</span>\n" + +#~ msgid "" +#~ "The <span class=\"application\">Boot Loader Menu</span> is the first " +#~ "screen to appear\n" +#~ "when Tails starts.\n" +#~ msgstr "" +#~ "Das <span class=\"application\">Bootmenü</span> ist der erste " +#~ "erscheinende Bildschirm\n" +#~ "beim Start von Tails.\n" + +#~ msgid "<div class=\"tip\">\n" +#~ msgstr "<div class=\"tip\">\n" + +#~ msgid "" +#~ "<p>The <span class=\"guilabel\">Troubleshooting Mode</span> disables some " +#~ "features of the\n" +#~ "Linux kernel and might work better on some computers. You can try this " +#~ "option if you\n" +#~ "think you are experiencing errors related to hardware compatibility " +#~ "while\n" +#~ "starting Tails.</p>\n" +#~ msgstr "" +#~ "<p>Der <span class=\"guilabel\">Troubleshooting</span>-Modus deaktiviert " +#~ "einige Funktionen\n" +#~ "des Linux-Kernels und könnte auf einigen Computern besser funktionieren. " +#~ "Sie können diese\n" +#~ "Option ausprobieren, falls Sie annehmen, dass Sie aufgrund von Hardware-" +#~ "Inkompatibilität\n" +#~ "Probleme beim Start von Tails haben.</p>\n" + +#~ msgid "</div>\n" +#~ msgstr "</div>\n" + +#~ msgid "" +#~ "To add a boot option, press <span class=\"keycap\">Tab</span> when the " +#~ "<span class=\"application\">Boot Loader Menu</span> appears. A list of " +#~ "boot options appears at the bottom of the screen." +#~ msgstr "" +#~ "Um eine Startoption hinzuzufügen, drücken Sie <span class=\"keycap\">Tab</" +#~ "span>, sobald das <span class=\"application\">Bootmenü</span> erscheint. " +#~ "Eine Liste von Startoptionen wird im unteren Teil des Bildschirms " +#~ "aufgeführt." + +#~ msgid "" +#~ "[[!img boot-menu-with-options.png link=no alt=\"Black screen with Tails\n" +#~ "artwork. Boot Loader Menu with two options 'Tails' and 'Tails " +#~ "(Troubleshooting Mode)'.\n" +#~ "At the bottom, a list of options ending with 'vsyscall=none quiet_'\"]]\n" +#~ msgstr "" +#~ "[[!img boot-menu-with-options.png link=no alt=\"Schwarzer Bildschirm mit " +#~ "Tails\n" +#~ "Grafik. 'Bootmenü' mit zwei Optionen, 'Tails' und 'Tails (Troubleshooting " +#~ "Mode)'. Am unteren\n" +#~ "Ende befindet sich eine Liste von Optionen die mit 'vsyscall=none quiet_' " +#~ "endet\"]]\n" + +#~ msgid "" +#~ "Press <span class=\"keycap\">Space</span>, and type the boot option that " +#~ "you want to add." +#~ msgstr "" +#~ "Drücken Sie die <span class=\"keycap\">Leertaste</span> und geben Sie die " +#~ "Bootoptionen ein, die Sie hinzufügen möchten." + +#~ msgid "" +#~ "If you want to add more than one boot option, type them one after the " +#~ "other, and separate them by a <span class=\"keycap\">Space</span>." +#~ msgstr "" +#~ "Falls Sie mehr als eine Bootoption hinzufügen wollen, geben Sie eine nach " +#~ "der anderen ein und trennen Sie diese jeweils durch ein <span class=" +#~ "\"keycap\">Leerzeichen</span>." + +#~ msgid "Then press <span class=\"keycap\">Enter</span> to start Tails." +#~ msgstr "" +#~ "Drücken Sie anschließend <span class=\"keycap\">Enter</span>, um Tails zu " +#~ "starten." + +#~ msgid "" +#~ "<a id=\"greeter\"></a>\n" +#~ "<a id=\"tails_greeter\"></a>\n" +#~ msgstr "" +#~ "<a id=\"greeter\"></a>\n" +#~ "<a id=\"tails_greeter\"></a>\n" + +#~ msgid "Using <span class=\"application\">Tails Greeter</span>\n" +#~ msgstr "Benutzung des <span class=\"application\">Tails Greeter</span>\n" + +#~ msgid "" +#~ "<span class=\"application\">Tails Greeter</span>\n" +#~ "appears after the <span class=\"application\">Boot Loader Menu</span>, " +#~ "but before the\n" +#~ "<span class=\"application\">GNOME Desktop</span>:\n" +#~ msgstr "" +#~ "Der <span class=\"application\">Tails Greeter</span> erscheint nach\n" +#~ "dem <span class=\"application\">Bootmenü</span>, aber vor der\n" +#~ "<span class=\"application\">GNOME-Arbeitsumgebung</span>:\n" diff --git a/wiki/src/doc/first_steps/startup_options.es.po b/wiki/src/doc/first_steps/welcome_screen.es.po similarity index 68% rename from wiki/src/doc/first_steps/startup_options.es.po rename to wiki/src/doc/first_steps/welcome_screen.es.po index e0e94a9def35dcb0db3823704eac718314c905b3..16a2137ea49168eb24f69cd5ee1aa192a0a54df8 100644 --- a/wiki/src/doc/first_steps/startup_options.es.po +++ b/wiki/src/doc/first_steps/welcome_screen.es.po @@ -6,11 +6,11 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-08-16 18:12+0200\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2018-01-30 21:56+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" -"startup_options/es/>\n" +"welcome_screen/es/>\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,141 +19,62 @@ msgstr "" "X-Generator: Weblate 2.10.1\n" #. type: Plain text -#, no-wrap -msgid "[[!meta title=\"Startup options\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!meta title=\"Startup options\"]]\n" +msgid "[[!meta title=\"Welcome Screen\"]]\n" msgstr "[[!meta title=\"Opciones de arranque\"]]\n" #. type: Plain text msgid "" -"When starting Tails, you can specify startup options to alter some of its " -"basic functioning. The two ways of specifying startup options are the " -"following:" +"The Welcome Screen appears after the Boot Loader, but before the GNOME " +"Desktop." msgstr "" -"Cuando inicies Tails, puedes especificar opciones de arranque para alterar " -"algunas de sus funcionalidades básicas. Las dos maneras de especificar " -"opciones de arranque son las siguientes:" - -#. type: Plain text -#, no-wrap -msgid "[[!toc levels=2]]\n" -msgstr "[[!toc levels=2]]\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "When starting Tails, you can specify startup options to alter some of its " +#| "basic functioning. The two ways of specifying startup options are the " +#| "following:" msgid "" -"<a id=\"boot_loader_menu\"></a>\n" -"<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" +"You can use the Welcome Screen to specify startup options that alter some of " +"the basic functioning of Tails." msgstr "" -"<a id=\"boot_loader_menu\"></a>\n" -"<a id=\"boot_menu\"></a> <!-- compatibilidad con versiones anteriores -->\n" - -#. type: Title = -#, no-wrap -msgid "Using the <span class=\"application\">Boot Loader Menu</span>\n" -msgstr "Utilizar el <span class=\"application\">Menú de gestor de arranque</span>\n" - -#. type: Plain text -#, no-wrap -msgid "" -"The <span class=\"application\">Boot Loader Menu</span> is the first screen to appear\n" -"when Tails starts.\n" -msgstr "" -"El <span class=\"application\">Menú de gestor de arranque</span> es la primer pantalla en aparecer\n" -"cuando Tails inicia.\n" - -#. type: Plain text -#, no-wrap -msgid "<div class=\"tip\">\n" -msgstr "<div class=\"tip\">\n" +"Cuando inicies Tails, puedes especificar opciones de arranque para alterar " +"algunas de sus funcionalidades básicas. Las dos maneras de especificar " +"opciones de arranque son las siguientes:" #. type: Plain text -#, no-wrap -msgid "" -"<p>The <span class=\"guilabel\">Troubleshooting Mode</span> disables some features of the\n" -"Linux kernel and might work better on some computers. You can try this option if you\n" -"think you are experiencing errors related to hardware compatibility while\n" -"starting Tails.</p>\n" -msgstr "" -"<p>El <span class=\"guilabel\">Troubleshooting Mode</span> deshabilita algunas funcionalidades del\n" -"kernel de Linux y podría funcionar mejor en algunas computadoras. Puedes utilizar esta opción si crees\n" -"que estás experimentando errores relacionados con la compatibilidad del hardware mientras\n" -"inicias Tails.</p>\n" +#, fuzzy, no-wrap +#| msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Welcome to Tails!\"]]\n" +msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n" +msgstr "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Bienvenido a Tails!\"]]\n" #. type: Plain text #, no-wrap -msgid "</div>\n" -msgstr "</div>\n" - -#. type: Bullet: '1. ' msgid "" -"To add a boot option, press <span class=\"keycap\">Tab</span> when the <span " -"class=\"application\">Boot Loader Menu</span> appears. A list of boot " -"options appears at the bottom of the screen." +"To start Tails without options, click on the\n" +"<span class=\"button\">Start Tails</span> button.\n" msgstr "" -"Para agregar una opción de arranque, presiona <span class=\"keycap\">Tab</" -"span> cuando el <span class=\"application\">Menú de Gestor de Arranque</" -"span> aparece. Una lista de opciones de arranque aparecerá en la parte " -"inferior de la pantalla." +"Para iniciar Tails sin opciones, haz click en el\n" +"botón de <span class=\"button\">Start Tails</span>.\n" #. type: Plain text -#, no-wrap -msgid "" -"[[!img boot-menu-with-options.png link=no alt=\"Black screen with Tails\n" -"artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'.\n" -"At the bottom, a list of options ending with 'vsyscall=none quiet_'\"]]\n" -msgstr "" -"[[!img boot-menu-with-options.png link=no alt=\"Pantalla negra con arte sobre\n" -"Tails. El menú de gestor de arranque con dos opciones 'Tails' and 'Tails (Troubleshooting mode)'.\n" -"En la parte inferior, una lista de opciones que terminan con 'vsyscall=none quiet_'\"]]\n" - -#. type: Bullet: '2. ' -msgid "" -"Press <span class=\"keycap\">Space</span>, and type the boot option that you " -"want to add." -msgstr "" -"Presiona <span class=\"keycap\">Espacio</span>, y escribe la opción de " -"arranque que deseas agregar." - -#. type: Bullet: '3. ' -msgid "" -"If you want to add more than one boot option, type them one after the other, " -"and separate them by a <span class=\"keycap\">Space</span>." -msgstr "" -"Si quieres agregar más de una opción de arranque, escríbelas una luego de la " -"otra, y sepáralas con un <span class=\"keycap\">Espacio</span>." - -#. type: Bullet: '4. ' -msgid "Then press <span class=\"keycap\">Enter</span> to start Tails." -msgstr "Luego presiona <span class=\"keycap\">Enter</span> para iniciar Tails." +#, fuzzy, no-wrap +#| msgid "[[!toc levels=2]]\n" +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=2]]\n" #. type: Plain text -#, no-wrap -msgid "" -"<a id=\"greeter\"></a>\n" -"<a id=\"tails_greeter\"></a>\n" -msgstr "" -"<a id=\"greeter\"></a>\n" -"<a id=\"tails_greeter\"></a>\n" +#, fuzzy, no-wrap +#| msgid "<a id=\"additional\"></a>\n" +msgid "<a id=\"accessibility\"></a>\n" +msgstr "<a id=\"additional\"></a>\n" #. type: Title = #, no-wrap -msgid "Using <span class=\"application\">Tails Greeter</span>\n" -msgstr "Usando el <span class=\"application\">Tails Greeter</span>\n" - -#. type: Plain text -#, no-wrap -msgid "" -"<span class=\"application\">Tails Greeter</span>\n" -"appears after the <span class=\"application\">Boot Loader Menu</span>, but before the\n" -"<span class=\"application\">GNOME Desktop</span>:\n" +msgid "Assistive technologies\n" msgstr "" -"<span class=\"application\">Tails Greeter</span> aparece después del <span class=\"application\">Menú de arranque</span>, pero antes del\n" -"<span class=\"application\">Escritorio GNOME</span>:\n" - -#. type: Plain text -#, no-wrap -msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Welcome to Tails!\"]]\n" -msgstr "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Bienvenido a Tails!\"]]\n" #. type: Plain text msgid "" @@ -173,37 +94,32 @@ msgid "icon which looks like a person) in the top bar." msgstr "" "icono que se parece a una persona) en la barra superior de herramientas." -#. type: Plain text -#, no-wrap -msgid "" -"To start Tails without options, click on the\n" -"<span class=\"button\">Start Tails</span> button.\n" -msgstr "" -"Para iniciar Tails sin opciones, haz click en el\n" -"botón de <span class=\"button\">Start Tails</span>.\n" - #. type: Plain text #, no-wrap msgid "<a id=\"locale\"></a>\n" msgstr "<a id=\"locale\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Language & region\n" msgstr "Idioma y región\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "You can configure Tails depending on your language and location from\n" +#| "<span class=\"application\">Tails Greeter</span>.\n" msgid "" -"You can configure Tails depending on your language and location from\n" -"<span class=\"application\">Tails Greeter</span>.\n" +"You can configure Tails depending on your language and location from the " +"Welcome Screen." msgstr "" "Puedes configurar Tails para tu idioma o lugar desde\n" "el <span class=\"application\">Tails Greeter</span>.\n" #. type: Plain text -#, no-wrap -msgid "[[!img locale.png link=\"no\" alt=\"Language & Region section of Tails Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!img locale.png link=\"no\" alt=\"Language & Region section of Tails Greeter\"]]\n" +msgid "[[!img locale.png link=\"no\" alt=\"Language & Region section of the Welcome Screen\"]]\n" msgstr "[[!img locale.png link=\"no\" alt=\"Sección Idioma y Región del Tails Greeter\"]]\n" #. type: Bullet: '* ' @@ -306,22 +222,30 @@ msgstr " [[!img US_calendar_in_Russian.png link=\"no\" alt=\"\"]]\n" msgid "<a id=\"persistence\"></a>\n" msgstr "<a id=\"persistence\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Encrypted persistence storage\n" msgstr "Almacenamiento cifrado persistente \n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "If an [[encrypted persistence storage|first_steps/persistence]] is " +#| "detected on the USB stick, an\n" +#| "additional section appears in <span class=\"application\">Tails\n" +#| "Greeter</span> below the <span class=\"guilabel\">Language & Region</" +#| "span>\n" +#| "section:\n" msgid "" -"If an [[encrypted persistence storage|first_steps/persistence]] is detected on the USB stick, an\n" -"additional section appears in <span class=\"application\">Tails\n" -"Greeter</span> below the <span class=\"guilabel\">Language & Region</span>\n" -"section:\n" +"If an [[encrypted persistence storage|first_steps/persistence]] is detected " +"on the USB stick, an additional section appears in the Welcome Screen below " +"the **Language & Region** section:" msgstr "" -"Si un [[almacenamiento cifrado persistente|first_steps/persistence]] se detecta en la memoria USB, una\n" +"Si un [[almacenamiento cifrado persistente|first_steps/persistence]] se " +"detecta en la memoria USB, una\n" "sección adicional parecerá en el <span class=\"application\">Tails\n" -"Greeter</span> debajo de la sección <span class=\"guilabel\">Idioma y región</span>\n" +"Greeter</span> debajo de la sección <span class=\"guilabel\">Idioma y " +"región</span>\n" ":\n" #. type: Plain text @@ -334,25 +258,32 @@ msgstr "[[!img persistence.png link=\"no\" alt=\"\"]]\n" msgid "<a id=\"additional\"></a>\n" msgstr "<a id=\"additional\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Additional settings\n" msgstr "Configuraciones adicionales\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "Tails is configured with care to be as safe as possible by default. But,\n" +#| "depending on your situation, you can change one of the following\n" +#| "settings from <span class=\"application\">Tails Greeter</span>.\n" msgid "" -"Tails is configured with care to be as safe as possible by default. But,\n" -"depending on your situation, you can change one of the following\n" -"settings from <span class=\"application\">Tails Greeter</span>.\n" +"Tails is configured with care to be as safe as possible by default. But, " +"depending on your situation, you can change one of the following settings " +"from the Welcome Screen." msgstr "" -"Tails esta configurado con cuidado para ser lo más seguro posible por defecto. Pero, \n" +"Tails esta configurado con cuidado para ser lo más seguro posible por " +"defecto. Pero, \n" "dependiendo de su situación, puede cambiar algunas de las configuraciones \n" -"siguientes desde la ventana de <span class=\"application\">Tails Greeter</span>.\n" +"siguientes desde la ventana de <span class=\"application\">Tails Greeter</" +"span>.\n" #. type: Plain text -#, no-wrap -msgid "[[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid "[[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr "[[!img additional.png link=\"no\" alt=\"Configuraciones adicionales del Tails Greeter\"]]\n" #. type: Bullet: '- ' @@ -430,7 +361,7 @@ msgstr "" "Desactivar todas las redes si quiere trabajar totalmente desconectado para " "mayor seguridad." -#. type: Title - +#. type: Title = #, no-wrap msgid "Keyboard shortcuts\n" msgstr "Atajos de teclado\n" @@ -462,6 +393,112 @@ msgstr "" "<tr><td><span class=\"keycap\">Alt+S</td><td><span class=\"guilabel\">Lanzar Tails</td></tr>\n" "</table>\n" +#~ msgid "" +#~ "<a id=\"boot_loader_menu\"></a>\n" +#~ "<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" +#~ msgstr "" +#~ "<a id=\"boot_loader_menu\"></a>\n" +#~ "<a id=\"boot_menu\"></a> <!-- compatibilidad con versiones anteriores --" +#~ ">\n" + +#~ msgid "Using the <span class=\"application\">Boot Loader Menu</span>\n" +#~ msgstr "" +#~ "Utilizar el <span class=\"application\">Menú de gestor de arranque</" +#~ "span>\n" + +#~ msgid "" +#~ "The <span class=\"application\">Boot Loader Menu</span> is the first " +#~ "screen to appear\n" +#~ "when Tails starts.\n" +#~ msgstr "" +#~ "El <span class=\"application\">Menú de gestor de arranque</span> es la " +#~ "primer pantalla en aparecer\n" +#~ "cuando Tails inicia.\n" + +#~ msgid "<div class=\"tip\">\n" +#~ msgstr "<div class=\"tip\">\n" + +#~ msgid "" +#~ "<p>The <span class=\"guilabel\">Troubleshooting Mode</span> disables some " +#~ "features of the\n" +#~ "Linux kernel and might work better on some computers. You can try this " +#~ "option if you\n" +#~ "think you are experiencing errors related to hardware compatibility " +#~ "while\n" +#~ "starting Tails.</p>\n" +#~ msgstr "" +#~ "<p>El <span class=\"guilabel\">Troubleshooting Mode</span> deshabilita " +#~ "algunas funcionalidades del\n" +#~ "kernel de Linux y podría funcionar mejor en algunas computadoras. Puedes " +#~ "utilizar esta opción si crees\n" +#~ "que estás experimentando errores relacionados con la compatibilidad del " +#~ "hardware mientras\n" +#~ "inicias Tails.</p>\n" + +#~ msgid "</div>\n" +#~ msgstr "</div>\n" + +#~ msgid "" +#~ "To add a boot option, press <span class=\"keycap\">Tab</span> when the " +#~ "<span class=\"application\">Boot Loader Menu</span> appears. A list of " +#~ "boot options appears at the bottom of the screen." +#~ msgstr "" +#~ "Para agregar una opción de arranque, presiona <span class=\"keycap\">Tab</" +#~ "span> cuando el <span class=\"application\">Menú de Gestor de Arranque</" +#~ "span> aparece. Una lista de opciones de arranque aparecerá en la parte " +#~ "inferior de la pantalla." + +#~ msgid "" +#~ "[[!img boot-menu-with-options.png link=no alt=\"Black screen with Tails\n" +#~ "artwork. Boot Loader Menu with two options 'Tails' and 'Tails " +#~ "(Troubleshooting Mode)'.\n" +#~ "At the bottom, a list of options ending with 'vsyscall=none quiet_'\"]]\n" +#~ msgstr "" +#~ "[[!img boot-menu-with-options.png link=no alt=\"Pantalla negra con arte " +#~ "sobre\n" +#~ "Tails. El menú de gestor de arranque con dos opciones 'Tails' and 'Tails " +#~ "(Troubleshooting mode)'.\n" +#~ "En la parte inferior, una lista de opciones que terminan con " +#~ "'vsyscall=none quiet_'\"]]\n" + +#~ msgid "" +#~ "Press <span class=\"keycap\">Space</span>, and type the boot option that " +#~ "you want to add." +#~ msgstr "" +#~ "Presiona <span class=\"keycap\">Espacio</span>, y escribe la opción de " +#~ "arranque que deseas agregar." + +#~ msgid "" +#~ "If you want to add more than one boot option, type them one after the " +#~ "other, and separate them by a <span class=\"keycap\">Space</span>." +#~ msgstr "" +#~ "Si quieres agregar más de una opción de arranque, escríbelas una luego de " +#~ "la otra, y sepáralas con un <span class=\"keycap\">Espacio</span>." + +#~ msgid "Then press <span class=\"keycap\">Enter</span> to start Tails." +#~ msgstr "" +#~ "Luego presiona <span class=\"keycap\">Enter</span> para iniciar Tails." + +#~ msgid "" +#~ "<a id=\"greeter\"></a>\n" +#~ "<a id=\"tails_greeter\"></a>\n" +#~ msgstr "" +#~ "<a id=\"greeter\"></a>\n" +#~ "<a id=\"tails_greeter\"></a>\n" + +#~ msgid "Using <span class=\"application\">Tails Greeter</span>\n" +#~ msgstr "Usando el <span class=\"application\">Tails Greeter</span>\n" + +#~ msgid "" +#~ "<span class=\"application\">Tails Greeter</span>\n" +#~ "appears after the <span class=\"application\">Boot Loader Menu</span>, " +#~ "but before the\n" +#~ "<span class=\"application\">GNOME Desktop</span>:\n" +#~ msgstr "" +#~ "<span class=\"application\">Tails Greeter</span> aparece después del " +#~ "<span class=\"application\">Menú de arranque</span>, pero antes del\n" +#~ "<span class=\"application\">Escritorio GNOME</span>:\n" + #~ msgid "" #~ "Here is a list of options that you can add to the <span class=" #~ "\"application\">Boot\n" diff --git a/wiki/src/doc/first_steps/startup_options.fa.po b/wiki/src/doc/first_steps/welcome_screen.fa.po similarity index 63% rename from wiki/src/doc/first_steps/startup_options.fa.po rename to wiki/src/doc/first_steps/welcome_screen.fa.po index 30ff496fef2d846f6621aed2e80c519a06f7032b..a17b3185264ba717fe854417c2f7297d70bc0915 100644 --- a/wiki/src/doc/first_steps/startup_options.fa.po +++ b/wiki/src/doc/first_steps/welcome_screen.fa.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-08-16 18:12+0200\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2015-10-10 06:50+0000\n" "Last-Translator: sprint5 <translation5@451f.org>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" -"startup_options/fa/>\n" +"welcome_screen/fa/>\n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,171 +20,70 @@ msgstr "" "X-Generator: Weblate 2.4-dev\n" #. type: Plain text -#, no-wrap -msgid "[[!meta title=\"Startup options\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!meta title=\"Startup options\"]]\n" +msgid "[[!meta title=\"Welcome Screen\"]]\n" msgstr "[[!meta title=\"گزینههای راهاندازی\"]]\n" #. type: Plain text msgid "" -"When starting Tails, you can specify startup options to alter some of its " -"basic functioning. The two ways of specifying startup options are the " -"following:" -msgstr "" -"هنگام راهاندازی تیلز میتوانید گزینههای خاصی برای راهاندازی انتخاب کنید تا " -"حالت پیشفرض تغییر کند. دو راه تغییر گزینههای راهاندازی عبارتند از:" - -#. type: Plain text -#, no-wrap -msgid "[[!toc levels=2]]\n" -msgstr "[[!toc levels=2]]\n" - -#. type: Plain text -#, no-wrap -msgid "" -"<a id=\"boot_loader_menu\"></a>\n" -"<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" +"The Welcome Screen appears after the Boot Loader, but before the GNOME " +"Desktop." msgstr "" -"<a id=\"boot_loader_menu\"></a>\n" -"<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" - -#. type: Title = -#, fuzzy, no-wrap -#| msgid "Using the <span class=\"application\">boot menu</span>\n" -msgid "Using the <span class=\"application\">Boot Loader Menu</span>\n" -msgstr "استفاده از <span class=\"application\">فهرست راهاندازی</span>\n" #. type: Plain text -#, fuzzy, no-wrap +#, fuzzy #| msgid "" -#| "The <span class=\"application\">boot menu</span> is the first screen to appear\n" -#| "when Tails starts.\n" +#| "When starting Tails, you can specify startup options to alter some of its " +#| "basic functioning. The two ways of specifying startup options are the " +#| "following:" msgid "" -"The <span class=\"application\">Boot Loader Menu</span> is the first screen to appear\n" -"when Tails starts.\n" +"You can use the Welcome Screen to specify startup options that alter some of " +"the basic functioning of Tails." msgstr "" -"<span class=\"application\">فهرست راهاندازی</span> نخستین صفحهای است که هنگام راهاندازی تیلز\n" -"به نمایش در میآید.\n" - -#. type: Plain text -#, no-wrap -msgid "<div class=\"tip\">\n" -msgstr "<div class=\"tip\">\n" +"هنگام راهاندازی تیلز میتوانید گزینههای خاصی برای راهاندازی انتخاب کنید تا " +"حالت پیشفرض تغییر کند. دو راه تغییر گزینههای راهاندازی عبارتند از:" #. type: Plain text #, fuzzy, no-wrap #| msgid "" -#| "The <span class=\"guilabel\">failsafe</span> mode disables some features of the\n" -#| "kernel and might work better on some computers. You can try this option if you\n" -#| "think you are experiencing errors related to hardware compatibility while\n" -#| "starting Tails.\n" -msgid "" -"<p>The <span class=\"guilabel\">Troubleshooting Mode</span> disables some features of the\n" -"Linux kernel and might work better on some computers. You can try this option if you\n" -"think you are experiencing errors related to hardware compatibility while\n" -"starting Tails.</p>\n" +#| "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Welcome to Tails. More\n" +#| "options? Yes, and No toggle button, and Login button.\"]]\n" +msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n" msgstr "" -"حالت <span class=\"guilabel\">failsafe</span> برخی از ویژگیهای کرنل را غیر فعال میکند و\n" -"ممکن است روی برخی رایانهها به خوبی کار کند.\n" -"در صورتی فکر میکنید هنگاه راهاندازی با خطاهایی مرتبط با سازگاری\n" -"سختافزارها مواجه میشوید از این گزینه استفاده کنید.\n" +"[[!img tails-greeter-welcome-to-tails.png link=no alt=\"به تیلز خوش آمدید.\n" +"گزینههای بیشتری در نظر دارید؟ دکمههای بله و خیر و دکمهٔ ورود.\"]]\n" #. type: Plain text -#, no-wrap -msgid "</div>\n" -msgstr "</div>\n" - -#. type: Bullet: '1. ' -#, fuzzy +#, fuzzy, no-wrap #| msgid "" -#| "To add a boot option, press <span class=\"keycap\">Tab</span> when the " -#| "<span class=\"application\">boot menu</span> appears. A list of boot " -#| "options appears at the bottom of the screen." +#| "**To start Tails without options**, click on the\n" +#| "<span class=\"button\">Login</span> button, or just press\n" +#| "<span class=\"keycap\">Enter</span>.\n" msgid "" -"To add a boot option, press <span class=\"keycap\">Tab</span> when the <span " -"class=\"application\">Boot Loader Menu</span> appears. A list of boot " -"options appears at the bottom of the screen." +"To start Tails without options, click on the\n" +"<span class=\"button\">Start Tails</span> button.\n" msgstr "" -"برای افزودن فهرست راهاندازی، وقتی که <span class=\"application\">فهرست " -"راهاندازی</span> نمایان شد دکمهٔ <span class=\"keycap\">Tab</span> را بزنید. " -"فهرستی از گزینههای راهاندازی در پایین صفحه نمایش داده میشود." +"**برای راهاندازی تیلز بدون گزینههای راهاندازی** دکمهٔ\n" +"<span class=\"button\">ورود</span> یا تنها دکمهٔ\n" +"<span class=\"keycap\">Enter</span> را فشار دهید.\n" #. type: Plain text #, fuzzy, no-wrap -#| msgid "" -#| "[[!img boot-menu-with-options.png link=no alt=\"Black screen with Tails\n" -#| "artwork. 'Boot menu' with two options 'Live' and 'Live (failsafe)'. At the\n" -#| "bottom, a list of options ending with 'noautologin quiet_'\"]]\n" -msgid "" -"[[!img boot-menu-with-options.png link=no alt=\"Black screen with Tails\n" -"artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'.\n" -"At the bottom, a list of options ending with 'vsyscall=none quiet_'\"]]\n" -msgstr "" -"[[!img boot-menu-with-options.png link=no alt=\"صفحهٔ سیاه با طرح تیلز\n" -"فهرست راهاندازی با دو گزینهٔ «زنده» و «زنده failsafe».\n" -"در پایین صفحه فهرستی از گزینهها میبینید که «noautologin quiet» آخرین آنها است._'\"]]\n" - -#. type: Bullet: '2. ' -msgid "" -"Press <span class=\"keycap\">Space</span>, and type the boot option that you " -"want to add." -msgstr "" -"دکمهٔ <span class=\"keycap\">Space</span> را فشار دهید و گزینهٔ راهاندازی که " -"قصد اضافه کردن آن را دارید تایپ کنید." - -#. type: Bullet: '3. ' -msgid "" -"If you want to add more than one boot option, type them one after the other, " -"and separate them by a <span class=\"keycap\">Space</span>." -msgstr "" -"اگر قصد اضافه کردن بیش از یک گزینهٔ راهاندازی دارید، آنها را یکی پس از دیگری " -"تایپ و با یک <span class=\"keycap\">Space</span> از هم جدا کنید." - -#. type: Bullet: '4. ' -msgid "Then press <span class=\"keycap\">Enter</span> to start Tails." -msgstr "" -"سپس کلید <span class=\"keycap\">Enter</span> را فشار دهید تا تیلز راهاندازی " -"شود." +#| msgid "[[!toc levels=2]]\n" +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=2]]\n" #. type: Plain text -#, no-wrap -msgid "" -"<a id=\"greeter\"></a>\n" -"<a id=\"tails_greeter\"></a>\n" -msgstr "" -"<a id=\"greeter\"></a>\n" -"<a id=\"tails_greeter\"></a>\n" +#, fuzzy, no-wrap +#| msgid "<a id=\"boot_menu\"></a>\n" +msgid "<a id=\"accessibility\"></a>\n" +msgstr "<a id=\"boot_menu\"></a>\n" #. type: Title = #, no-wrap -msgid "Using <span class=\"application\">Tails Greeter</span>\n" -msgstr "استفاده از <span class=\"application\">خوشامدگوی تیلز</span>\n" - -#. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<span class=\"application\">Tails Greeter</span> is the set of dialogs that\n" -#| "appear after the <span class=\"application\">boot menu</span>, but before the\n" -#| "<span class=\"application\">GNOME Desktop</span> appears. This is how to first\n" -#| "screen of <span class=\"application\">Tails Greeter</span> looks like:\n" -msgid "" -"<span class=\"application\">Tails Greeter</span>\n" -"appears after the <span class=\"application\">Boot Loader Menu</span>, but before the\n" -"<span class=\"application\">GNOME Desktop</span>:\n" -msgstr "" -"<span class=\"application\">خوشامدگوی تیلز</span> مجموعهای از نوشتهها است که\n" -"پس از <span class=\"application\">فهرست راهاندازی</span> و پیش از\n" -"<span class=\"application\">دسکتاپ گنوم</span> نمایش داده میشود. این تصویر نمایی از\n" -"<span class=\"application\">خوشامدگوی تیلز</span> است.\n" - -#. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Welcome to Tails. More\n" -#| "options? Yes, and No toggle button, and Login button.\"]]\n" -msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Welcome to Tails!\"]]\n" +msgid "Assistive technologies\n" msgstr "" -"[[!img tails-greeter-welcome-to-tails.png link=no alt=\"به تیلز خوش آمدید.\n" -"گزینههای بیشتری در نظر دارید؟ دکمههای بله و خیر و دکمهٔ ورود.\"]]\n" #. type: Plain text msgid "" @@ -201,46 +100,33 @@ msgstr "" msgid "icon which looks like a person) in the top bar." msgstr "" -#. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "**To start Tails without options**, click on the\n" -#| "<span class=\"button\">Login</span> button, or just press\n" -#| "<span class=\"keycap\">Enter</span>.\n" -msgid "" -"To start Tails without options, click on the\n" -"<span class=\"button\">Start Tails</span> button.\n" -msgstr "" -"**برای راهاندازی تیلز بدون گزینههای راهاندازی** دکمهٔ\n" -"<span class=\"button\">ورود</span> یا تنها دکمهٔ\n" -"<span class=\"keycap\">Enter</span> را فشار دهید.\n" - #. type: Plain text #, fuzzy, no-wrap #| msgid "<a id=\"boot_menu\"></a>\n" msgid "<a id=\"locale\"></a>\n" msgstr "<a id=\"boot_menu\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Language & region\n" msgstr "" #. type: Plain text -#, fuzzy, no-wrap +#, fuzzy #| msgid "" -#| "Here is a list of options that you can set using <span class=\"application\">Tails\n" +#| "Here is a list of options that you can set using <span class=\"application" +#| "\">Tails\n" #| "Greeter</span>:\n" msgid "" -"You can configure Tails depending on your language and location from\n" -"<span class=\"application\">Tails Greeter</span>.\n" +"You can configure Tails depending on your language and location from the " +"Welcome Screen." msgstr "" "اینجا فهرستی از گزینههایی که میتوانید در <span class=\"application\">\n" "خوشامدگوی تیلز</span> تغییر دهید آمده است:\n" #. type: Plain text #, no-wrap -msgid "[[!img locale.png link=\"no\" alt=\"Language & Region section of Tails Greeter\"]]\n" +msgid "[[!img locale.png link=\"no\" alt=\"Language & Region section of the Welcome Screen\"]]\n" msgstr "" #. type: Bullet: '* ' @@ -319,18 +205,16 @@ msgstr "" msgid "<a id=\"persistence\"></a>\n" msgstr "<a id=\"persistence\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Encrypted persistence storage\n" msgstr "" #. type: Plain text -#, no-wrap msgid "" -"If an [[encrypted persistence storage|first_steps/persistence]] is detected on the USB stick, an\n" -"additional section appears in <span class=\"application\">Tails\n" -"Greeter</span> below the <span class=\"guilabel\">Language & Region</span>\n" -"section:\n" +"If an [[encrypted persistence storage|first_steps/persistence]] is detected " +"on the USB stick, an additional section appears in the Welcome Screen below " +"the **Language & Region** section:" msgstr "" #. type: Plain text @@ -344,22 +228,21 @@ msgstr "" msgid "<a id=\"additional\"></a>\n" msgstr "<a id=\"boot_menu\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Additional settings\n" msgstr "" #. type: Plain text -#, no-wrap msgid "" -"Tails is configured with care to be as safe as possible by default. But,\n" -"depending on your situation, you can change one of the following\n" -"settings from <span class=\"application\">Tails Greeter</span>.\n" +"Tails is configured with care to be as safe as possible by default. But, " +"depending on your situation, you can change one of the following settings " +"from the Welcome Screen." msgstr "" #. type: Plain text #, no-wrap -msgid "[[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid "[[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr "" #. type: Bullet: '- ' @@ -428,7 +311,7 @@ msgid "" "additional security." msgstr "" -#. type: Title - +#. type: Title = #, no-wrap msgid "Keyboard shortcuts\n" msgstr "" @@ -449,6 +332,144 @@ msgid "" "</table>\n" msgstr "" +#~ msgid "" +#~ "<a id=\"boot_loader_menu\"></a>\n" +#~ "<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" +#~ msgstr "" +#~ "<a id=\"boot_loader_menu\"></a>\n" +#~ "<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" + +#, fuzzy +#~| msgid "Using the <span class=\"application\">boot menu</span>\n" +#~ msgid "Using the <span class=\"application\">Boot Loader Menu</span>\n" +#~ msgstr "استفاده از <span class=\"application\">فهرست راهاندازی</span>\n" + +#, fuzzy +#~| msgid "" +#~| "The <span class=\"application\">boot menu</span> is the first screen to " +#~| "appear\n" +#~| "when Tails starts.\n" +#~ msgid "" +#~ "The <span class=\"application\">Boot Loader Menu</span> is the first " +#~ "screen to appear\n" +#~ "when Tails starts.\n" +#~ msgstr "" +#~ "<span class=\"application\">فهرست راهاندازی</span> نخستین صفحهای است که " +#~ "هنگام راهاندازی تیلز\n" +#~ "به نمایش در میآید.\n" + +#~ msgid "<div class=\"tip\">\n" +#~ msgstr "<div class=\"tip\">\n" + +#, fuzzy +#~| msgid "" +#~| "The <span class=\"guilabel\">failsafe</span> mode disables some features " +#~| "of the\n" +#~| "kernel and might work better on some computers. You can try this option " +#~| "if you\n" +#~| "think you are experiencing errors related to hardware compatibility " +#~| "while\n" +#~| "starting Tails.\n" +#~ msgid "" +#~ "<p>The <span class=\"guilabel\">Troubleshooting Mode</span> disables some " +#~ "features of the\n" +#~ "Linux kernel and might work better on some computers. You can try this " +#~ "option if you\n" +#~ "think you are experiencing errors related to hardware compatibility " +#~ "while\n" +#~ "starting Tails.</p>\n" +#~ msgstr "" +#~ "حالت <span class=\"guilabel\">failsafe</span> برخی از ویژگیهای کرنل را " +#~ "غیر فعال میکند و\n" +#~ "ممکن است روی برخی رایانهها به خوبی کار کند.\n" +#~ "در صورتی فکر میکنید هنگاه راهاندازی با خطاهایی مرتبط با سازگاری\n" +#~ "سختافزارها مواجه میشوید از این گزینه استفاده کنید.\n" + +#~ msgid "</div>\n" +#~ msgstr "</div>\n" + +#, fuzzy +#~| msgid "" +#~| "To add a boot option, press <span class=\"keycap\">Tab</span> when the " +#~| "<span class=\"application\">boot menu</span> appears. A list of boot " +#~| "options appears at the bottom of the screen." +#~ msgid "" +#~ "To add a boot option, press <span class=\"keycap\">Tab</span> when the " +#~ "<span class=\"application\">Boot Loader Menu</span> appears. A list of " +#~ "boot options appears at the bottom of the screen." +#~ msgstr "" +#~ "برای افزودن فهرست راهاندازی، وقتی که <span class=\"application\">فهرست " +#~ "راهاندازی</span> نمایان شد دکمهٔ <span class=\"keycap\">Tab</span> را " +#~ "بزنید. فهرستی از گزینههای راهاندازی در پایین صفحه نمایش داده میشود." + +#, fuzzy +#~| msgid "" +#~| "[[!img boot-menu-with-options.png link=no alt=\"Black screen with Tails\n" +#~| "artwork. 'Boot menu' with two options 'Live' and 'Live (failsafe)'. At " +#~| "the\n" +#~| "bottom, a list of options ending with 'noautologin quiet_'\"]]\n" +#~ msgid "" +#~ "[[!img boot-menu-with-options.png link=no alt=\"Black screen with Tails\n" +#~ "artwork. Boot Loader Menu with two options 'Tails' and 'Tails " +#~ "(Troubleshooting Mode)'.\n" +#~ "At the bottom, a list of options ending with 'vsyscall=none quiet_'\"]]\n" +#~ msgstr "" +#~ "[[!img boot-menu-with-options.png link=no alt=\"صفحهٔ سیاه با طرح تیلز\n" +#~ "فهرست راهاندازی با دو گزینهٔ «زنده» و «زنده failsafe».\n" +#~ "در پایین صفحه فهرستی از گزینهها میبینید که «noautologin quiet» آخرین آنها " +#~ "است._'\"]]\n" + +#~ msgid "" +#~ "Press <span class=\"keycap\">Space</span>, and type the boot option that " +#~ "you want to add." +#~ msgstr "" +#~ "دکمهٔ <span class=\"keycap\">Space</span> را فشار دهید و گزینهٔ راهاندازی " +#~ "که قصد اضافه کردن آن را دارید تایپ کنید." + +#~ msgid "" +#~ "If you want to add more than one boot option, type them one after the " +#~ "other, and separate them by a <span class=\"keycap\">Space</span>." +#~ msgstr "" +#~ "اگر قصد اضافه کردن بیش از یک گزینهٔ راهاندازی دارید، آنها را یکی پس از " +#~ "دیگری تایپ و با یک <span class=\"keycap\">Space</span> از هم جدا کنید." + +#~ msgid "Then press <span class=\"keycap\">Enter</span> to start Tails." +#~ msgstr "" +#~ "سپس کلید <span class=\"keycap\">Enter</span> را فشار دهید تا تیلز " +#~ "راهاندازی شود." + +#~ msgid "" +#~ "<a id=\"greeter\"></a>\n" +#~ "<a id=\"tails_greeter\"></a>\n" +#~ msgstr "" +#~ "<a id=\"greeter\"></a>\n" +#~ "<a id=\"tails_greeter\"></a>\n" + +#~ msgid "Using <span class=\"application\">Tails Greeter</span>\n" +#~ msgstr "استفاده از <span class=\"application\">خوشامدگوی تیلز</span>\n" + +#, fuzzy +#~| msgid "" +#~| "<span class=\"application\">Tails Greeter</span> is the set of dialogs " +#~| "that\n" +#~| "appear after the <span class=\"application\">boot menu</span>, but " +#~| "before the\n" +#~| "<span class=\"application\">GNOME Desktop</span> appears. This is how to " +#~| "first\n" +#~| "screen of <span class=\"application\">Tails Greeter</span> looks like:\n" +#~ msgid "" +#~ "<span class=\"application\">Tails Greeter</span>\n" +#~ "appears after the <span class=\"application\">Boot Loader Menu</span>, " +#~ "but before the\n" +#~ "<span class=\"application\">GNOME Desktop</span>:\n" +#~ msgstr "" +#~ "<span class=\"application\">خوشامدگوی تیلز</span> مجموعهای از نوشتهها است " +#~ "که\n" +#~ "پس از <span class=\"application\">فهرست راهاندازی</span> و پیش از\n" +#~ "<span class=\"application\">دسکتاپ گنوم</span> نمایش داده میشود. این " +#~ "تصویر نمایی از\n" +#~ "<span class=\"application\">خوشامدگوی تیلز</span> است.\n" + #~ msgid "" #~ "**To start Tails in languages other than English**, select the one you\n" #~ "want from the menu at the bottom of the screen. You can also adapt\n" diff --git a/wiki/src/doc/first_steps/startup_options.fr.po b/wiki/src/doc/first_steps/welcome_screen.fr.po similarity index 71% rename from wiki/src/doc/first_steps/startup_options.fr.po rename to wiki/src/doc/first_steps/welcome_screen.fr.po index 558db10e9bcee6e494945f5d4933eae7cbed7668..9a08b176c52b25437904adfab7ee50d1fe01257e 100644 --- a/wiki/src/doc/first_steps/startup_options.fr.po +++ b/wiki/src/doc/first_steps/welcome_screen.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2018-08-16 18:12+0200\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2018-01-24 17:42+0000\n" "Last-Translator: amnesia <amnesia@boum.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -17,143 +17,62 @@ msgstr "" "X-Generator: Poedit 1.8.11\n" #. type: Plain text -#, no-wrap -msgid "[[!meta title=\"Startup options\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!meta title=\"Startup options\"]]\n" +msgid "[[!meta title=\"Welcome Screen\"]]\n" msgstr "[[!meta title=\"Options de démarrage\"]]\n" #. type: Plain text msgid "" -"When starting Tails, you can specify startup options to alter some of its " -"basic functioning. The two ways of specifying startup options are the " -"following:" -msgstr "" -"Quand Tails démarre, vous pouvez spécifier des options de démarrage pour " -"modifier son fonctionnement de base. Les deux manières de spécifier les " -"options de démarrage sont les suivantes :" - -#. type: Plain text -#, no-wrap -msgid "[[!toc levels=2]]\n" -msgstr "[[!toc levels=2]]\n" - -#. type: Plain text -#, no-wrap -msgid "" -"<a id=\"boot_loader_menu\"></a>\n" -"<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" +"The Welcome Screen appears after the Boot Loader, but before the GNOME " +"Desktop." msgstr "" -"<a id=\"boot_loader_menu\"></a>\n" -"<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" - -#. type: Title = -#, no-wrap -msgid "Using the <span class=\"application\">Boot Loader Menu</span>\n" -msgstr "Utiliser le <span class=\"application\">menu du chargeur d’amorçage</span>\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "When starting Tails, you can specify startup options to alter some of its " +#| "basic functioning. The two ways of specifying startup options are the " +#| "following:" msgid "" -"The <span class=\"application\">Boot Loader Menu</span> is the first screen to appear\n" -"when Tails starts.\n" +"You can use the Welcome Screen to specify startup options that alter some of " +"the basic functioning of Tails." msgstr "" -"Le <span class=\"application\">menu du chargeur d’amorçage</span> est le premier écran qui apparaît\n" -"lorsque Tails démarre.\n" - -#. type: Plain text -#, no-wrap -msgid "<div class=\"tip\">\n" -msgstr "<div class=\"tip\">\n" +"Quand Tails démarre, vous pouvez spécifier des options de démarrage pour " +"modifier son fonctionnement de base. Les deux manières de spécifier les " +"options de démarrage sont les suivantes :" #. type: Plain text -#, no-wrap -msgid "" -"<p>The <span class=\"guilabel\">Troubleshooting Mode</span> disables some features of the\n" -"Linux kernel and might work better on some computers. You can try this option if you\n" -"think you are experiencing errors related to hardware compatibility while\n" -"starting Tails.</p>\n" -msgstr "" -"<p>Le mode <span class=\"guilabel\">Troubleshooting Mode</span> désactive certaines fonctionnalités\n" -"du noyau Linux et peut mieux marcher sur certains ordinateurs. Vous pouvez essayer cette option\n" -"si vous pensez que vous rencontrez des erreurs de compatibilité\n" -"matérielle en démarrant Tails.</p>\n" +#, fuzzy, no-wrap +#| msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Welcome to Tails!\"]]\n" +msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n" +msgstr "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter : Bienvenue dans Tails !\"]]\n" #. type: Plain text #, no-wrap -msgid "</div>\n" -msgstr "</div>\n" - -#. type: Bullet: '1. ' msgid "" -"To add a boot option, press <span class=\"keycap\">Tab</span> when the <span " -"class=\"application\">Boot Loader Menu</span> appears. A list of boot " -"options appears at the bottom of the screen." +"To start Tails without options, click on the\n" +"<span class=\"button\">Start Tails</span> button.\n" msgstr "" -"Pour ajouter une option de démarrage, appuyez sur <span class=\"keycap" -"\">Tab</span> lorsque le <span class=\"application\">menu du chargeur " -"d’amorçage</span> apparaît. Une liste d'options de démarrage apparaît au bas " -"de l'écran." +"Pour démarrer Tails sans options, cliquez sur le\n" +"bouton <span class=\"button\">Démarrer Tails</span>.\n" #. type: Plain text -#, no-wrap -msgid "" -"[[!img boot-menu-with-options.png link=no alt=\"Black screen with Tails\n" -"artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'.\n" -"At the bottom, a list of options ending with 'vsyscall=none quiet_'\"]]\n" -msgstr "" -"[[!img boot-menu-with-options.png link=no alt=\"Écran noir avec le logo de\n" -"Tails. Menu du chargeur d’amorçage avec deux options 'Tails' et 'Tails (Troubleshooting Mode)'. En bas,\n" -"une liste d'options se terminant par 'vsyscall=none quiet_'\"]]\n" - -#. type: Bullet: '2. ' -msgid "" -"Press <span class=\"keycap\">Space</span>, and type the boot option that you " -"want to add." -msgstr "" -"Appuyez alors sur <span class=\"keycap\">Espace</span>, et saisissez " -"l'option de démarrage que vous souhaitez ajouter." - -#. type: Bullet: '3. ' -msgid "" -"If you want to add more than one boot option, type them one after the other, " -"and separate them by a <span class=\"keycap\">Space</span>." -msgstr "" -"Si vous désirez ajouter d'autres options de démarrage, saisissez-les après " -"la première, en les séparant par une <span class=\"keycap\">Espace</span>." - -#. type: Bullet: '4. ' -msgid "Then press <span class=\"keycap\">Enter</span> to start Tails." -msgstr "" -"Appuyez ensuite sur <span class=\"keycap\">Entrée</span> pour démarrer Tails." +#, fuzzy, no-wrap +#| msgid "[[!toc levels=2]]\n" +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=2]]\n" #. type: Plain text -#, no-wrap -msgid "" -"<a id=\"greeter\"></a>\n" -"<a id=\"tails_greeter\"></a>\n" -msgstr "" -"<a id=\"greeter\"></a>\n" -"<a id=\"tails_greeter\"></a>\n" +#, fuzzy, no-wrap +#| msgid "<a id=\"additional\"></a>\n" +msgid "<a id=\"accessibility\"></a>\n" +msgstr "<a id=\"additional\"></a>\n" #. type: Title = #, no-wrap -msgid "Using <span class=\"application\">Tails Greeter</span>\n" -msgstr "Utiliser <span class=\"application\">Tails Greeter</span>\n" - -#. type: Plain text -#, no-wrap -msgid "" -"<span class=\"application\">Tails Greeter</span>\n" -"appears after the <span class=\"application\">Boot Loader Menu</span>, but before the\n" -"<span class=\"application\">GNOME Desktop</span>:\n" +msgid "Assistive technologies\n" msgstr "" -"<span class=\"application\">Tails Greeter</span>\n" -"apparaît après le <span class=\"application\">menu du chargeur d’amorçage</span>, mais avant le\n" -"<span class=\"application\">bureau GNOME</span> :\n" - -#. type: Plain text -#, no-wrap -msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Welcome to Tails!\"]]\n" -msgstr "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter : Bienvenue dans Tails !\"]]\n" #. type: Plain text msgid "" @@ -172,37 +91,33 @@ msgstr "[[!img lib/preferences-desktop-accessibility.png alt=\"Accès universel\ msgid "icon which looks like a person) in the top bar." msgstr "qui ressemble à une personne) dans la barre du haut." -#. type: Plain text -#, no-wrap -msgid "" -"To start Tails without options, click on the\n" -"<span class=\"button\">Start Tails</span> button.\n" -msgstr "" -"Pour démarrer Tails sans options, cliquez sur le\n" -"bouton <span class=\"button\">Démarrer Tails</span>.\n" - #. type: Plain text #, no-wrap msgid "<a id=\"locale\"></a>\n" msgstr "<a id=\"locale\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Language & region\n" msgstr "Langue et région\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "You can configure Tails depending on your language and location from\n" +#| "<span class=\"application\">Tails Greeter</span>.\n" msgid "" -"You can configure Tails depending on your language and location from\n" -"<span class=\"application\">Tails Greeter</span>.\n" +"You can configure Tails depending on your language and location from the " +"Welcome Screen." msgstr "" -"Vous pouvez configurer Tails suivant votre langue et votre localisation depuis\n" +"Vous pouvez configurer Tails suivant votre langue et votre localisation " +"depuis\n" "<span class=\"application\">Tails Greeter</span>.\n" #. type: Plain text -#, no-wrap -msgid "[[!img locale.png link=\"no\" alt=\"Language & Region section of Tails Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!img locale.png link=\"no\" alt=\"Language & Region section of Tails Greeter\"]]\n" +msgid "[[!img locale.png link=\"no\" alt=\"Language & Region section of the Welcome Screen\"]]\n" msgstr "[[!img locale.png link=\"no\" alt=\"Section Langue et région du Tails Greeter\"]]\n" #. type: Bullet: '* ' @@ -306,22 +221,30 @@ msgstr " [[!img US_calendar_in_Russian.png link=\"no\" alt=\"\"]]\n" msgid "<a id=\"persistence\"></a>\n" msgstr "<a id=\"persistence\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Encrypted persistence storage\n" msgstr "Stockage persistant chiffré\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "If an [[encrypted persistence storage|first_steps/persistence]] is " +#| "detected on the USB stick, an\n" +#| "additional section appears in <span class=\"application\">Tails\n" +#| "Greeter</span> below the <span class=\"guilabel\">Language & Region</" +#| "span>\n" +#| "section:\n" msgid "" -"If an [[encrypted persistence storage|first_steps/persistence]] is detected on the USB stick, an\n" -"additional section appears in <span class=\"application\">Tails\n" -"Greeter</span> below the <span class=\"guilabel\">Language & Region</span>\n" -"section:\n" +"If an [[encrypted persistence storage|first_steps/persistence]] is detected " +"on the USB stick, an additional section appears in the Welcome Screen below " +"the **Language & Region** section:" msgstr "" -"Si un [[stockage persistant chiffré|first_steps/persistence]] est détecté sur la clé USB, une\n" +"Si un [[stockage persistant chiffré|first_steps/persistence]] est détecté " +"sur la clé USB, une\n" "section supplémentaire apparaît dans <span class=\"application\">Tails\n" -"Greeter</span> sous la section <span class=\"guilabel\">Langue et région</span>\n" +"Greeter</span> sous la section <span class=\"guilabel\">Langue et région</" +"span>\n" ":\n" #. type: Plain text @@ -334,25 +257,31 @@ msgstr "[[!img persistence.png link=\"no\" alt=\"\"]]\n" msgid "<a id=\"additional\"></a>\n" msgstr "<a id=\"additional\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Additional settings\n" msgstr "Paramètres supplémentaires\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "Tails is configured with care to be as safe as possible by default. But,\n" +#| "depending on your situation, you can change one of the following\n" +#| "settings from <span class=\"application\">Tails Greeter</span>.\n" msgid "" -"Tails is configured with care to be as safe as possible by default. But,\n" -"depending on your situation, you can change one of the following\n" -"settings from <span class=\"application\">Tails Greeter</span>.\n" +"Tails is configured with care to be as safe as possible by default. But, " +"depending on your situation, you can change one of the following settings " +"from the Welcome Screen." msgstr "" -"Tails est configuré avec attention pour être aussi sûr que possible par défaut. Mais,\n" +"Tails est configuré avec attention pour être aussi sûr que possible par " +"défaut. Mais,\n" "suivant votre situation, vous pouvez changer un des paramètres\n" "suivants depuis <span class=\"application\">Tails Greeter</span>.\n" #. type: Plain text -#, no-wrap -msgid "[[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid "[[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr "[[!img additional.png link=\"no\" alt=\"Paramètres supplémentaires du Tails Greeter\"]]\n" #. type: Bullet: '- ' @@ -433,7 +362,7 @@ msgstr "" "Désactiver toutes les connexions réseaux si vous voulez travailler hors " "ligne avec une sécurité supplémentaire." -#. type: Title - +#. type: Title = #, no-wrap msgid "Keyboard shortcuts\n" msgstr "Raccourcis clavier\n" @@ -465,6 +394,112 @@ msgstr "" "<tr><td><span class=\"keycap\">Alt+D</td><td><span class=\"guilabel\">Démarrer Tails</td></tr>\n" "</table>\n" +#~ msgid "" +#~ "<a id=\"boot_loader_menu\"></a>\n" +#~ "<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" +#~ msgstr "" +#~ "<a id=\"boot_loader_menu\"></a>\n" +#~ "<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" + +#~ msgid "Using the <span class=\"application\">Boot Loader Menu</span>\n" +#~ msgstr "" +#~ "Utiliser le <span class=\"application\">menu du chargeur d’amorçage</" +#~ "span>\n" + +#~ msgid "" +#~ "The <span class=\"application\">Boot Loader Menu</span> is the first " +#~ "screen to appear\n" +#~ "when Tails starts.\n" +#~ msgstr "" +#~ "Le <span class=\"application\">menu du chargeur d’amorçage</span> est le " +#~ "premier écran qui apparaît\n" +#~ "lorsque Tails démarre.\n" + +#~ msgid "<div class=\"tip\">\n" +#~ msgstr "<div class=\"tip\">\n" + +#~ msgid "" +#~ "<p>The <span class=\"guilabel\">Troubleshooting Mode</span> disables some " +#~ "features of the\n" +#~ "Linux kernel and might work better on some computers. You can try this " +#~ "option if you\n" +#~ "think you are experiencing errors related to hardware compatibility " +#~ "while\n" +#~ "starting Tails.</p>\n" +#~ msgstr "" +#~ "<p>Le mode <span class=\"guilabel\">Troubleshooting Mode</span> désactive " +#~ "certaines fonctionnalités\n" +#~ "du noyau Linux et peut mieux marcher sur certains ordinateurs. Vous " +#~ "pouvez essayer cette option\n" +#~ "si vous pensez que vous rencontrez des erreurs de compatibilité\n" +#~ "matérielle en démarrant Tails.</p>\n" + +#~ msgid "</div>\n" +#~ msgstr "</div>\n" + +#~ msgid "" +#~ "To add a boot option, press <span class=\"keycap\">Tab</span> when the " +#~ "<span class=\"application\">Boot Loader Menu</span> appears. A list of " +#~ "boot options appears at the bottom of the screen." +#~ msgstr "" +#~ "Pour ajouter une option de démarrage, appuyez sur <span class=\"keycap" +#~ "\">Tab</span> lorsque le <span class=\"application\">menu du chargeur " +#~ "d’amorçage</span> apparaît. Une liste d'options de démarrage apparaît au " +#~ "bas de l'écran." + +#~ msgid "" +#~ "[[!img boot-menu-with-options.png link=no alt=\"Black screen with Tails\n" +#~ "artwork. Boot Loader Menu with two options 'Tails' and 'Tails " +#~ "(Troubleshooting Mode)'.\n" +#~ "At the bottom, a list of options ending with 'vsyscall=none quiet_'\"]]\n" +#~ msgstr "" +#~ "[[!img boot-menu-with-options.png link=no alt=\"Écran noir avec le logo " +#~ "de\n" +#~ "Tails. Menu du chargeur d’amorçage avec deux options 'Tails' et 'Tails " +#~ "(Troubleshooting Mode)'. En bas,\n" +#~ "une liste d'options se terminant par 'vsyscall=none quiet_'\"]]\n" + +#~ msgid "" +#~ "Press <span class=\"keycap\">Space</span>, and type the boot option that " +#~ "you want to add." +#~ msgstr "" +#~ "Appuyez alors sur <span class=\"keycap\">Espace</span>, et saisissez " +#~ "l'option de démarrage que vous souhaitez ajouter." + +#~ msgid "" +#~ "If you want to add more than one boot option, type them one after the " +#~ "other, and separate them by a <span class=\"keycap\">Space</span>." +#~ msgstr "" +#~ "Si vous désirez ajouter d'autres options de démarrage, saisissez-les " +#~ "après la première, en les séparant par une <span class=\"keycap\">Espace</" +#~ "span>." + +#~ msgid "Then press <span class=\"keycap\">Enter</span> to start Tails." +#~ msgstr "" +#~ "Appuyez ensuite sur <span class=\"keycap\">Entrée</span> pour démarrer " +#~ "Tails." + +#~ msgid "" +#~ "<a id=\"greeter\"></a>\n" +#~ "<a id=\"tails_greeter\"></a>\n" +#~ msgstr "" +#~ "<a id=\"greeter\"></a>\n" +#~ "<a id=\"tails_greeter\"></a>\n" + +#~ msgid "Using <span class=\"application\">Tails Greeter</span>\n" +#~ msgstr "Utiliser <span class=\"application\">Tails Greeter</span>\n" + +#~ msgid "" +#~ "<span class=\"application\">Tails Greeter</span>\n" +#~ "appears after the <span class=\"application\">Boot Loader Menu</span>, " +#~ "but before the\n" +#~ "<span class=\"application\">GNOME Desktop</span>:\n" +#~ msgstr "" +#~ "<span class=\"application\">Tails Greeter</span>\n" +#~ "apparaît après le <span class=\"application\">menu du chargeur " +#~ "d’amorçage</span>, mais avant le\n" +#~ "<span class=\"application\">bureau GNOME</span> :\n" + #~ msgid "" #~ "**To start Tails in languages other than English**, select the one you\n" #~ "want from the menu at the bottom of the screen. You can also adapt\n" diff --git a/wiki/src/doc/first_steps/startup_options.id.po b/wiki/src/doc/first_steps/welcome_screen.id.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options.id.po rename to wiki/src/doc/first_steps/welcome_screen.id.po diff --git a/wiki/src/doc/first_steps/startup_options.it.po b/wiki/src/doc/first_steps/welcome_screen.it.po similarity index 72% rename from wiki/src/doc/first_steps/startup_options.it.po rename to wiki/src/doc/first_steps/welcome_screen.it.po index 9d21c2f296db16f1859ae1a75110c46d4453a436..542d8d0a03666bb4963303054158a53b8f408a4a 100644 --- a/wiki/src/doc/first_steps/startup_options.it.po +++ b/wiki/src/doc/first_steps/welcome_screen.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails italiano\n" -"POT-Creation-Date: 2018-08-16 18:12+0200\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2017-05-30 18:09+0200\n" "Last-Translator: Zeyev <tbd@tbd.com>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -17,149 +17,63 @@ msgstr "" "X-Generator: Poedit 1.8.11\n" #. type: Plain text -#, no-wrap -msgid "[[!meta title=\"Startup options\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!meta title=\"Startup options\"]]\n" +msgid "[[!meta title=\"Welcome Screen\"]]\n" msgstr "[[!meta title=\"Opzioni di avvio\"]]\n" #. type: Plain text msgid "" -"When starting Tails, you can specify startup options to alter some of its " -"basic functioning. The two ways of specifying startup options are the " -"following:" -msgstr "" -"Quando avvii Tails puoi definire le opzioni di avvio per alterare alcuni " -"aspetti del suo funzionamento. I due modi di definire le opzioni di avvio " -"sono i seguenti:" - -#. type: Plain text -#, no-wrap -msgid "[[!toc levels=2]]\n" -msgstr "[[!toc levels=2]]\n" - -#. type: Plain text -#, no-wrap -msgid "" -"<a id=\"boot_loader_menu\"></a>\n" -"<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" +"The Welcome Screen appears after the Boot Loader, but before the GNOME " +"Desktop." msgstr "" -"<a id=\"boot_loader_menu\"></a>\n" -"<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" - -#. type: Title = -#, no-wrap -msgid "Using the <span class=\"application\">Boot Loader Menu</span>\n" -msgstr "Utilizzare il <span class=\"application\">Menù di avvio</span>\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "When starting Tails, you can specify startup options to alter some of its " +#| "basic functioning. The two ways of specifying startup options are the " +#| "following:" msgid "" -"The <span class=\"application\">Boot Loader Menu</span> is the first screen to appear\n" -"when Tails starts.\n" +"You can use the Welcome Screen to specify startup options that alter some of " +"the basic functioning of Tails." msgstr "" -"Il <span class=\"application\">Menù di avvio</span> è la prima schermata che appare\n" -"quando si avvia Tails.\n" - -#. type: Plain text -#, no-wrap -msgid "<div class=\"tip\">\n" -msgstr "<div class=\"tip\">\n" +"Quando avvii Tails puoi definire le opzioni di avvio per alterare alcuni " +"aspetti del suo funzionamento. I due modi di definire le opzioni di avvio " +"sono i seguenti:" +# Più opzioni? Pulsante Si/No e Login #. type: Plain text -#, no-wrap -msgid "" -"<p>The <span class=\"guilabel\">Troubleshooting Mode</span> disables some features of the\n" -"Linux kernel and might work better on some computers. You can try this option if you\n" -"think you are experiencing errors related to hardware compatibility while\n" -"starting Tails.</p>\n" -msgstr "" -"<p>La modalità <span class=\"guilabel\">Troubleshooting Mode</span> disattiva alcune funzionalità\n" -"del kernel e potrebbe funzionare meglio su certi computer. Puoi provare questa opzione\n" -"se pensi di stare incontrando errori legati alla compatibilità dell'hardware quando\n" -"avvii Tails.</p>\n" +#, fuzzy, no-wrap +#| msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Welcome to Tails!\"]]\n" +msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n" +msgstr "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Benvenuto su Tails.\"]]\n" #. type: Plain text #, no-wrap -msgid "</div>\n" -msgstr "</div>\n" - -#. type: Bullet: '1. ' msgid "" -"To add a boot option, press <span class=\"keycap\">Tab</span> when the <span " -"class=\"application\">Boot Loader Menu</span> appears. A list of boot " -"options appears at the bottom of the screen." +"To start Tails without options, click on the\n" +"<span class=\"button\">Start Tails</span> button.\n" msgstr "" -"Per aggiungere un'opzione di avvio premi <span class=\"keycap\">Tab</span> " -"quando appare il <span class=\"application\">Menù di avvio</span>. Una lista " -"di opzioni apparirà nella parte bassa dello schermo." +"**Per avviare Tails senza opzioni**, cliccare sul pulsante\n" +"<span class=\"button\">Start Tails</span>.\n" #. type: Plain text -#, no-wrap -msgid "" -"[[!img boot-menu-with-options.png link=no alt=\"Black screen with Tails\n" -"artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'.\n" -"At the bottom, a list of options ending with 'vsyscall=none quiet_'\"]]\n" -msgstr "" -"[[!img boot-menu-with-options.png link=no alt=\"Schermo nero con l'illustrazione di\n" -"Tails. 'Boot menu' con due opzioni 'Live' e 'Live (Troubleshooting Mode)'. In basso,\n" -"una lista di opzioni che termina con 'vsyscall=none quiet_'\"]]\n" - -#. type: Bullet: '2. ' -msgid "" -"Press <span class=\"keycap\">Space</span>, and type the boot option that you " -"want to add." -msgstr "" -"Premi <span class=\"keycap\">Spazio</span> e digita l'opzione di avvio che " -"vuoi aggiungere." - -#. type: Bullet: '3. ' -msgid "" -"If you want to add more than one boot option, type them one after the other, " -"and separate them by a <span class=\"keycap\">Space</span>." -msgstr "" -"Se vuoi aggiungere più di una opzione di avvio, digitale una dopo l'altra " -"separandole con uno <span class=\"keycap\">Spazio</span>." - -#. type: Bullet: '4. ' -msgid "Then press <span class=\"keycap\">Enter</span> to start Tails." -msgstr "Poi premi <span class=\"keycap\">Invio</span> per avviare Tails." +#, fuzzy, no-wrap +#| msgid "[[!toc levels=2]]\n" +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=2]]\n" #. type: Plain text -#, no-wrap -msgid "" -"<a id=\"greeter\"></a>\n" -"<a id=\"tails_greeter\"></a>\n" -msgstr "" -"<a id=\"greeter\"></a>\n" -"<a id=\"tails_greeter\"></a>\n" +#, fuzzy, no-wrap +#| msgid "<a id=\"additional\"></a>\n" +msgid "<a id=\"accessibility\"></a>\n" +msgstr "<a id=\"additional\"></a>\n" #. type: Title = #, no-wrap -msgid "Using <span class=\"application\">Tails Greeter</span>\n" -msgstr "Usare <span class=\"application\">Tails Greeter</span>\n" - -#. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<span class=\"application\">Tails Greeter</span> is the set of dialogs that\n" -#| "appear after the <span class=\"application\">Boot Loader Menu</span>, but before the\n" -#| "<span class=\"application\">GNOME Desktop</span> appears. This is how the first\n" -#| "screen of <span class=\"application\">Tails Greeter</span> looks like:\n" -msgid "" -"<span class=\"application\">Tails Greeter</span>\n" -"appears after the <span class=\"application\">Boot Loader Menu</span>, but before the\n" -"<span class=\"application\">GNOME Desktop</span>:\n" +msgid "Assistive technologies\n" msgstr "" -"<span class=\"application\">Tails Greeter</span> è un insieme di finestre di dialogo\n" -"che appaiono dopo il <span class=\"application\">Menù di avvio</span>, ma prima che il\n" -"<span class=\"application\">desktop GNOME</span> appaia. \n" -"La prima schermata di <span class=\"application\">Tails Greeter</span> dovrebbe essere così:\n" - -# Più opzioni? Pulsante Si/No e Login -#. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Welcome to Tails!\"]]\n" -msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Welcome to Tails!\"]]\n" -msgstr "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Benvenuto su Tails.\"]]\n" #. type: Plain text msgid "" @@ -178,37 +92,32 @@ msgstr "[[!img lib/preferences-desktop-accessibility.png alt=\"Universal Access\ msgid "icon which looks like a person) in the top bar." msgstr "icona che assomiglia ad una persona) nella barra in alto." -#. type: Plain text -#, no-wrap -msgid "" -"To start Tails without options, click on the\n" -"<span class=\"button\">Start Tails</span> button.\n" -msgstr "" -"**Per avviare Tails senza opzioni**, cliccare sul pulsante\n" -"<span class=\"button\">Start Tails</span>.\n" - #. type: Plain text #, no-wrap msgid "<a id=\"locale\"></a>\n" msgstr "<a id=\"locale\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Language & region\n" msgstr "Lingua e zone geografica\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "You can configure Tails depending on your language and location from\n" +#| "<span class=\"application\">Tails Greeter</span>.\n" msgid "" -"You can configure Tails depending on your language and location from\n" -"<span class=\"application\">Tails Greeter</span>.\n" +"You can configure Tails depending on your language and location from the " +"Welcome Screen." msgstr "" "Puoi configurare Tails secondo la tua lingua e posizione usando \n" "<span class=\"application\">Tails Greeter</span>:\n" #. type: Plain text -#, no-wrap -msgid "[[!img locale.png link=\"no\" alt=\"Language & Region section of Tails Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!img locale.png link=\"no\" alt=\"Language & Region section of Tails Greeter\"]]\n" +msgid "[[!img locale.png link=\"no\" alt=\"Language & Region section of the Welcome Screen\"]]\n" msgstr "[[!img locale.png link=\"no\" alt=\"Language & Region section of Tails Greeter\"]]\n" #. type: Bullet: '* ' @@ -225,8 +134,7 @@ msgid "" " Text that is not translated yet will appear in English. You can [[help\n" " to translate more text|contribute/how/translate]].\n" msgstr "" -" Il testo che non è stato ancora tradotto apparirà in Inglese. Puoi [[" -"aiutare\n" +" Il testo che non è stato ancora tradotto apparirà in Inglese. Puoi [[aiutare\n" " a tradurre più testo|contribute/how/translate]].\n" #. type: Bullet: '* ' @@ -270,8 +178,7 @@ msgid "" " For example, the USA and the United Kingdom, two English-speaking countries,\n" " have different standards:\n" msgstr "" -" Per esempio, in USA e in Inghilterra, due paesi che parlano entrambi " -"inglese, \n" +" Per esempio, in USA e in Inghilterra, due paesi che parlano entrambi inglese, \n" "ci sono standard differenti:\n" #. type: Plain text @@ -308,10 +215,8 @@ msgid "" " than the main language. For example, to display a US calendar, with weeks\n" " starting on Sunday, when the main language is Russian.\n" msgstr "" -" All'interno di questa opzione puoi anche mostrare il calendario in una " -"lingua differente \n" -"dal linguaggio principale. Per esempio, per mostrare il calendario " -"americano, con settimane\n" +" All'interno di questa opzione puoi anche mostrare il calendario in una lingua differente \n" +"dal linguaggio principale. Per esempio, per mostrare il calendario americano, con settimane\n" "che cominciano dalla Domenica, quando il linguaggio principale è il russo.\n" #. type: Plain text @@ -324,27 +229,29 @@ msgstr " [[!img US_calendar_in_Russian.png link=\"no\" alt=\"\"]]\n" msgid "<a id=\"persistence\"></a>\n" msgstr "<a id=\"persistence\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Encrypted persistence storage\n" msgstr "Archiviazione cifrata persistente\n" #. type: Plain text -#, fuzzy, no-wrap +#, fuzzy #| msgid "" #| "If an [[encrypted persistence storage]] is detected on the USB stick, an\n" #| "additional section appears in <span class=\"application\">Tails\n" -#| "Greeter</span> below the <span class=\"guilabel\">Language & Region</span>\n" +#| "Greeter</span> below the <span class=\"guilabel\">Language & Region</" +#| "span>\n" #| "section:\n" msgid "" -"If an [[encrypted persistence storage|first_steps/persistence]] is detected on the USB stick, an\n" -"additional section appears in <span class=\"application\">Tails\n" -"Greeter</span> below the <span class=\"guilabel\">Language & Region</span>\n" -"section:\n" +"If an [[encrypted persistence storage|first_steps/persistence]] is detected " +"on the USB stick, an additional section appears in the Welcome Screen below " +"the **Language & Region** section:" msgstr "" -"Se una viene trovata un [[encrypted persistence storage]] all'interno di una chiavetta USB, una\n" +"Se una viene trovata un [[encrypted persistence storage]] all'interno di una " +"chiavetta USB, una\n" "sezione aggiuntiva compare in <span class=\"application\">Tails\n" -"Greeter</span> sotto l'opzione <span class=\"guilabel\">Language & Region</span>\n" +"Greeter</span> sotto l'opzione <span class=\"guilabel\">Language & Region</" +"span>\n" #. type: Plain text #, no-wrap @@ -356,25 +263,30 @@ msgstr "[[!img persistence.png link=\"no\" alt=\"\"]]\n" msgid "<a id=\"additional\"></a>\n" msgstr "<a id=\"additional\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Additional settings\n" msgstr "Configurazioni aggiuntive\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "Tails is configured with care to be as safe as possible by default. But,\n" +#| "depending on your situation, you can change one of the following\n" +#| "settings from <span class=\"application\">Tails Greeter</span>.\n" msgid "" -"Tails is configured with care to be as safe as possible by default. But,\n" -"depending on your situation, you can change one of the following\n" -"settings from <span class=\"application\">Tails Greeter</span>.\n" +"Tails is configured with care to be as safe as possible by default. But, " +"depending on your situation, you can change one of the following settings " +"from the Welcome Screen." msgstr "" "Tails è configurata con attenzione per essere più sicura possibile. Ma, \n" "a seconda delle situazioni, puoi cambiare una delle seguenti opzioni\n" "da <span class=\"application\">Tails Greeter</span>.\n" #. type: Plain text -#, no-wrap -msgid "[[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid "[[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr "[[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" #. type: Bullet: '- ' @@ -403,9 +315,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[See our documentation about MAC address spoofing.|mac_spoofing]]\n" -msgstr "" -" [[Guarda la nostra documentazione sul mascheramento indirizzo " -"Mac|mac_spoofing]]\n" +msgstr " [[Guarda la nostra documentazione sul mascheramento indirizzo Mac|mac_spoofing]]\n" #. type: Bullet: '- ' msgid "" @@ -438,8 +348,7 @@ msgid "" " After starting Tails and connecting to a network, an assistant will\n" " guide you through the configuration of Tor.\n" msgstr "" -" Dopo aver fatto partire Tails ed esserti collegato alla rete, un " -"assistente ti\n" +" Dopo aver fatto partire Tails ed esserti collegato alla rete, un assistente ti\n" "guiderà attraverso la configurazione di Tor.\n" #. type: Plain text @@ -457,7 +366,7 @@ msgstr "" "Disabilita tutte le connessioni se vuoi lavorare completamente disconnesso " "per una sicurezza maggiore." -#. type: Title - +#. type: Title = #, no-wrap msgid "Keyboard shortcuts\n" msgstr "Scorciatoie da tastiera (Keyboard shortcuts)\n" @@ -489,6 +398,119 @@ msgstr "" "<tr><td><span class=\"keycap\">Alt+S</td><td><span class=\"guilabel\">Start Tails</td></tr>\n" "</table>\n" +#~ msgid "" +#~ "<a id=\"boot_loader_menu\"></a>\n" +#~ "<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" +#~ msgstr "" +#~ "<a id=\"boot_loader_menu\"></a>\n" +#~ "<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" + +#~ msgid "Using the <span class=\"application\">Boot Loader Menu</span>\n" +#~ msgstr "Utilizzare il <span class=\"application\">Menù di avvio</span>\n" + +#~ msgid "" +#~ "The <span class=\"application\">Boot Loader Menu</span> is the first " +#~ "screen to appear\n" +#~ "when Tails starts.\n" +#~ msgstr "" +#~ "Il <span class=\"application\">Menù di avvio</span> è la prima schermata " +#~ "che appare\n" +#~ "quando si avvia Tails.\n" + +#~ msgid "<div class=\"tip\">\n" +#~ msgstr "<div class=\"tip\">\n" + +#~ msgid "" +#~ "<p>The <span class=\"guilabel\">Troubleshooting Mode</span> disables some " +#~ "features of the\n" +#~ "Linux kernel and might work better on some computers. You can try this " +#~ "option if you\n" +#~ "think you are experiencing errors related to hardware compatibility " +#~ "while\n" +#~ "starting Tails.</p>\n" +#~ msgstr "" +#~ "<p>La modalità <span class=\"guilabel\">Troubleshooting Mode</span> " +#~ "disattiva alcune funzionalità\n" +#~ "del kernel e potrebbe funzionare meglio su certi computer. Puoi provare " +#~ "questa opzione\n" +#~ "se pensi di stare incontrando errori legati alla compatibilità " +#~ "dell'hardware quando\n" +#~ "avvii Tails.</p>\n" + +#~ msgid "</div>\n" +#~ msgstr "</div>\n" + +#~ msgid "" +#~ "To add a boot option, press <span class=\"keycap\">Tab</span> when the " +#~ "<span class=\"application\">Boot Loader Menu</span> appears. A list of " +#~ "boot options appears at the bottom of the screen." +#~ msgstr "" +#~ "Per aggiungere un'opzione di avvio premi <span class=\"keycap\">Tab</" +#~ "span> quando appare il <span class=\"application\">Menù di avvio</span>. " +#~ "Una lista di opzioni apparirà nella parte bassa dello schermo." + +#~ msgid "" +#~ "[[!img boot-menu-with-options.png link=no alt=\"Black screen with Tails\n" +#~ "artwork. Boot Loader Menu with two options 'Tails' and 'Tails " +#~ "(Troubleshooting Mode)'.\n" +#~ "At the bottom, a list of options ending with 'vsyscall=none quiet_'\"]]\n" +#~ msgstr "" +#~ "[[!img boot-menu-with-options.png link=no alt=\"Schermo nero con " +#~ "l'illustrazione di\n" +#~ "Tails. 'Boot menu' con due opzioni 'Live' e 'Live (Troubleshooting " +#~ "Mode)'. In basso,\n" +#~ "una lista di opzioni che termina con 'vsyscall=none quiet_'\"]]\n" + +#~ msgid "" +#~ "Press <span class=\"keycap\">Space</span>, and type the boot option that " +#~ "you want to add." +#~ msgstr "" +#~ "Premi <span class=\"keycap\">Spazio</span> e digita l'opzione di avvio " +#~ "che vuoi aggiungere." + +#~ msgid "" +#~ "If you want to add more than one boot option, type them one after the " +#~ "other, and separate them by a <span class=\"keycap\">Space</span>." +#~ msgstr "" +#~ "Se vuoi aggiungere più di una opzione di avvio, digitale una dopo l'altra " +#~ "separandole con uno <span class=\"keycap\">Spazio</span>." + +#~ msgid "Then press <span class=\"keycap\">Enter</span> to start Tails." +#~ msgstr "Poi premi <span class=\"keycap\">Invio</span> per avviare Tails." + +#~ msgid "" +#~ "<a id=\"greeter\"></a>\n" +#~ "<a id=\"tails_greeter\"></a>\n" +#~ msgstr "" +#~ "<a id=\"greeter\"></a>\n" +#~ "<a id=\"tails_greeter\"></a>\n" + +#~ msgid "Using <span class=\"application\">Tails Greeter</span>\n" +#~ msgstr "Usare <span class=\"application\">Tails Greeter</span>\n" + +#, fuzzy +#~| msgid "" +#~| "<span class=\"application\">Tails Greeter</span> is the set of dialogs " +#~| "that\n" +#~| "appear after the <span class=\"application\">Boot Loader Menu</span>, " +#~| "but before the\n" +#~| "<span class=\"application\">GNOME Desktop</span> appears. This is how " +#~| "the first\n" +#~| "screen of <span class=\"application\">Tails Greeter</span> looks like:\n" +#~ msgid "" +#~ "<span class=\"application\">Tails Greeter</span>\n" +#~ "appears after the <span class=\"application\">Boot Loader Menu</span>, " +#~ "but before the\n" +#~ "<span class=\"application\">GNOME Desktop</span>:\n" +#~ msgstr "" +#~ "<span class=\"application\">Tails Greeter</span> è un insieme di finestre " +#~ "di dialogo\n" +#~ "che appaiono dopo il <span class=\"application\">Menù di avvio</span>, ma " +#~ "prima che il\n" +#~ "<span class=\"application\">desktop GNOME</span> appaia. \n" +#~ "La prima schermata di <span class=\"application\">Tails Greeter</span> " +#~ "dovrebbe essere così:\n" + #~ msgid "" #~ "**To start Tails in languages other than English**, select the one you\n" #~ "want from the menu at the bottom of the screen. You can also adapt\n" diff --git a/wiki/src/doc/first_steps/startup_options.mdwn b/wiki/src/doc/first_steps/welcome_screen.mdwn similarity index 65% rename from wiki/src/doc/first_steps/startup_options.mdwn rename to wiki/src/doc/first_steps/welcome_screen.mdwn index 6d98d3995338ad609b371ec6a6fcc9cc3af6d801..e2975877e49181da5e5845fee318f22c365a8aa3 100644 --- a/wiki/src/doc/first_steps/startup_options.mdwn +++ b/wiki/src/doc/first_steps/welcome_screen.mdwn @@ -1,73 +1,38 @@ -[[!meta title="Startup options"]] +[[!meta title="Welcome Screen"]] -When starting Tails, you can specify startup options to alter some of its basic -functioning. The two ways of specifying startup options are the following: +The Welcome Screen +appears after the Boot Loader, but before the +GNOME Desktop. -[[!toc levels=2]] +You can use the Welcome Screen to specify startup options that alter some of the basic +functioning of Tails. -<a id="boot_loader_menu"></a> -<a id="boot_menu"></a> <!-- for backward compatibility --> +[[!img welcome-screen.png link=no alt="Welcome to Tails!"]] -Using the <span class="application">Boot Loader Menu</span> -=========================================================== - -The <span class="application">Boot Loader Menu</span> is the first screen to appear -when Tails starts. - -<div class="tip"> - -<p>The <span class="guilabel">Troubleshooting Mode</span> disables some features of the -Linux kernel and might work better on some computers. You can try this option if you -think you are experiencing errors related to hardware compatibility while -starting Tails.</p> - -</div> - -1. To add a boot option, press <span class="keycap">Tab</span> when the - <span class="application">Boot Loader Menu</span> appears. A list of boot options - appears at the bottom of the screen. - -[[!img boot-menu-with-options.png link=no alt="Black screen with Tails -artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'. -At the bottom, a list of options ending with 'vsyscall=none quiet_'"]] - -2. Press <span class="keycap">Space</span>, and type the boot option that you - want to add. - -3. If you want to add more than one boot option, type them one after the - other, and separate them by a <span class="keycap">Space</span>. - -4. Then press <span class="keycap">Enter</span> to start Tails. - -<a id="greeter"></a> -<a id="tails_greeter"></a> +To start Tails without options, click on the +<span class="button">Start Tails</span> button. -Using <span class="application">Tails Greeter</span> -==================================================== +[[!toc levels=1]] -<span class="application">Tails Greeter</span> -appears after the <span class="application">Boot Loader Menu</span>, but before the -<span class="application">GNOME Desktop</span>: +<a id="accessibility"></a> -[[!img tails-greeter-welcome-to-tails.png link=no alt="Tails Greeter: Welcome to Tails!"]] +Assistive technologies +====================== You can activate assistive technologies, like a screen reader or large text, from the universal access menu (the [[!img lib/preferences-desktop-accessibility.png alt="Universal Access" class="symbolic" link="no"]] icon which looks like a person) in the top bar. -To start Tails without options, click on the -<span class="button">Start Tails</span> button. - <a id="locale"></a> Language & region ------------------ +================= You can configure Tails depending on your language and location from -<span class="application">Tails Greeter</span>. +the Welcome Screen. -[[!img locale.png link="no" alt="Language & Region section of Tails Greeter"]] +[[!img locale.png link="no" alt="Language & Region section of the Welcome Screen"]] * The <span class="guilabel">Language</span> option allows you to change the main language of the interface. @@ -108,11 +73,11 @@ You can configure Tails depending on your language and location from <a id="persistence"></a> Encrypted persistence storage ------------------------------ +============================= If an [[encrypted persistence storage|first_steps/persistence]] is detected on the USB stick, an -additional section appears in <span class="application">Tails -Greeter</span> below the <span class="guilabel">Language & Region</span> +additional section appears in the Welcome Screen +below the **Language & Region** section: [[!img persistence.png link="no" alt=""]] @@ -120,13 +85,13 @@ section: <a id="additional"></a> Additional settings -------------------- +=================== Tails is configured with care to be as safe as possible by default. But, depending on your situation, you can change one of the following -settings from <span class="application">Tails Greeter</span>. +settings from the Welcome Screen. -[[!img additional.png link="no" alt="Additional settings of Tails Greeter"]] +[[!img additional.png link="no" alt="Additional settings of the Welcome Screen"]] - Set an <span class="guilabel">Administration Password</span> to be able to perform administrative tasks like installing additional @@ -158,7 +123,7 @@ settings from <span class="application">Tails Greeter</span>. additional security. Keyboard shortcuts ------------------- +================== <table> <tr><td><span class="keycap">Alt+L</span></td><td><span class="guilabel">Language</td></tr> diff --git a/wiki/src/doc/first_steps/startup_options.pl.po b/wiki/src/doc/first_steps/welcome_screen.pl.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options.pl.po rename to wiki/src/doc/first_steps/welcome_screen.pl.po diff --git a/wiki/src/doc/first_steps/startup_options.pt.po b/wiki/src/doc/first_steps/welcome_screen.pt.po similarity index 64% rename from wiki/src/doc/first_steps/startup_options.pt.po rename to wiki/src/doc/first_steps/welcome_screen.pt.po index 810a9091a398bd6139af8c0c5eb4c29305f6bedf..d4e4b3d02ee64ed37d2d46929166fc04b502fc2c 100644 --- a/wiki/src/doc/first_steps/startup_options.pt.po +++ b/wiki/src/doc/first_steps/welcome_screen.pt.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-08-16 18:12+0200\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2019-12-22 21:03+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" -"startup_options/pt/>\n" +"welcome_screen/pt/>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,171 +20,71 @@ msgstr "" "X-Generator: Weblate 3.5.1\n" #. type: Plain text -#, no-wrap -msgid "[[!meta title=\"Startup options\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!meta title=\"Startup options\"]]\n" +msgid "[[!meta title=\"Welcome Screen\"]]\n" msgstr "[[!meta title=\"Opções de Inicialização\"]]\n" #. type: Plain text msgid "" -"When starting Tails, you can specify startup options to alter some of its " -"basic functioning. The two ways of specifying startup options are the " -"following:" -msgstr "" -"Ao iniciar o Tails, você pode especificar opções de inicialização para " -"alterar partes do seu funcionamento básico. As duas formas de especificar " -"opções de inicialização são as seguintes:" - -#. type: Plain text -#, no-wrap -msgid "[[!toc levels=2]]\n" -msgstr "[[!toc levels=2]]\n" - -#. type: Plain text -#, no-wrap -msgid "" -"<a id=\"boot_loader_menu\"></a>\n" -"<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" +"The Welcome Screen appears after the Boot Loader, but before the GNOME " +"Desktop." msgstr "" -"<a id=\"boot_loader_menu\"></a>\n" -"<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" - -#. type: Title = -#, fuzzy, no-wrap -#| msgid "Using the <span class=\"application\">boot menu</span>\n" -msgid "Using the <span class=\"application\">Boot Loader Menu</span>\n" -msgstr "Usando o <span class=\"application\">menu de boot</span>\n" #. type: Plain text -#, fuzzy, no-wrap +#, fuzzy #| msgid "" -#| "The <span class=\"application\">boot menu</span> is the first screen to appear\n" -#| "when Tails starts.\n" +#| "When starting Tails, you can specify startup options to alter some of its " +#| "basic functioning. The two ways of specifying startup options are the " +#| "following:" msgid "" -"The <span class=\"application\">Boot Loader Menu</span> is the first screen to appear\n" -"when Tails starts.\n" +"You can use the Welcome Screen to specify startup options that alter some of " +"the basic functioning of Tails." msgstr "" -"O <span class=\"application\">menu de boot</span> é a primeira tela a aparecer\n" -"quando Tails é iniciado.\n" - -#. type: Plain text -#, no-wrap -msgid "<div class=\"tip\">\n" -msgstr "<div class=\"tip\">\n" +"Ao iniciar o Tails, você pode especificar opções de inicialização para " +"alterar partes do seu funcionamento básico. As duas formas de especificar " +"opções de inicialização são as seguintes:" #. type: Plain text #, fuzzy, no-wrap #| msgid "" -#| "The <span class=\"guilabel\">failsafe</span> mode disables some features of the\n" -#| "kernel and might work better on some computers. You can try this option if you\n" -#| "think you are experiencing errors related to hardware compatibility while\n" -#| "starting Tails.\n" -msgid "" -"<p>The <span class=\"guilabel\">Troubleshooting Mode</span> disables some features of the\n" -"Linux kernel and might work better on some computers. You can try this option if you\n" -"think you are experiencing errors related to hardware compatibility while\n" -"starting Tails.</p>\n" +#| "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Welcome to Tails. More\n" +#| "options? Yes, and No toggle button, and Login button.\"]]\n" +msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n" msgstr "" -"O modo <span class=\"guilabel\">failsafe</span> desabilita algumas funcionalidades\n" -"do kernel e pode funcionar melhor em alguns computadores. Você pode tentar esta\n" -"opção se você acha que está experienciando erros relacionados a compatibilidade de\n" -"hardware ao iniciar o Tails.\n" +"[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Bem vindo/a ao Tails. Mais\n" +"opções? Botão Sim e Não, e botão de Login.\"]]\n" #. type: Plain text -#, no-wrap -msgid "</div>\n" -msgstr "</div>\n" - -#. type: Bullet: '1. ' -#, fuzzy +#, fuzzy, no-wrap #| msgid "" -#| "To add a boot option, press <span class=\"keycap\">Tab</span> when the " -#| "<span class=\"application\">boot menu</span> appears. A list of boot " -#| "options appears at the bottom of the screen." +#| "**To start Tails without options**, click on the\n" +#| "<span class=\"button\">Login</span> button, or just press\n" +#| "<span class=\"keycap\">Enter</span>.\n" msgid "" -"To add a boot option, press <span class=\"keycap\">Tab</span> when the <span " -"class=\"application\">Boot Loader Menu</span> appears. A list of boot " -"options appears at the bottom of the screen." +"To start Tails without options, click on the\n" +"<span class=\"button\">Start Tails</span> button.\n" msgstr "" -"Para adicionar uma opção de boot, pressione <span class=\"keycap\">Tab</" -"span> quando o <span class=\"application\">menu de boot</span> aparecer. Uma " -"lista de opções de boot aparecerão na parte de baixo da tela." +"**Para iniciar o Tails sem opções**, clique no botão de \n" +"<span class=\"button\">Login</span>, ou simplesmente\n" +"pressione <span class=\"keycap\">Enter</span>.\n" #. type: Plain text #, fuzzy, no-wrap -#| msgid "" -#| "[[!img boot-menu-with-options.png link=no alt=\"Black screen with Debian live\n" -#| "artwork. 'Boot menu' with two options 'Live' and 'Live (failsafe)'. At the\n" -#| "bottom, a list of options ending with 'noautologin quiet_'\"]]\n" -msgid "" -"[[!img boot-menu-with-options.png link=no alt=\"Black screen with Tails\n" -"artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'.\n" -"At the bottom, a list of options ending with 'vsyscall=none quiet_'\"]]\n" -msgstr "" -"[[!img boot-menu-with-options.png link=no alt=\"Tela preta com a arte do Tails.\n" -"'Menu de boot' com duas opções 'Live' e 'Live (failsafe)'. Na parte de baixo,\n" -"uma lista de opções que termina com 'noautologin quiet_'\"]]\n" - -#. type: Bullet: '2. ' -msgid "" -"Press <span class=\"keycap\">Space</span>, and type the boot option that you " -"want to add." -msgstr "" -"Precione <span class=\"keycap\">Espaço</span>, e digite a opção de boot que " -"você quer adicionar." - -#. type: Bullet: '3. ' -msgid "" -"If you want to add more than one boot option, type them one after the other, " -"and separate them by a <span class=\"keycap\">Space</span>." -msgstr "" -"Se você quiser adicionar mais de uma opção de boot, digite-as uma após a " -"outra, e separe-as por um <span class=\"keycap\">Espaço</span>." - -#. type: Bullet: '4. ' -msgid "Then press <span class=\"keycap\">Enter</span> to start Tails." -msgstr "" -"A seguir presione <span class=\"keycap\">Enter</span> para iniciar o Tails." +#| msgid "[[!toc levels=2]]\n" +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=2]]\n" #. type: Plain text -#, no-wrap -msgid "" -"<a id=\"greeter\"></a>\n" -"<a id=\"tails_greeter\"></a>\n" -msgstr "" -"<a id=\"greeter\"></a>\n" -"<a id=\"tails_greeter\"></a>\n" +#, fuzzy, no-wrap +#| msgid "<a id=\"boot_menu\"></a>\n" +msgid "<a id=\"accessibility\"></a>\n" +msgstr "<a id=\"boot_menu\"></a>\n" #. type: Title = #, no-wrap -msgid "Using <span class=\"application\">Tails Greeter</span>\n" -msgstr "Usando o <span class=\"application\">Tails Greeter</span>\n" - -#. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<span class=\"application\">Tails Greeter</span> is the set of dialogs that\n" -#| "appear after the <span class=\"application\">boot menu</span>, but before the\n" -#| "<span class=\"application\">GNOME Desktop</span> appears. This is how to first\n" -#| "screen of <span class=\"application\">Tails Greeter</span> looks like:\n" -msgid "" -"<span class=\"application\">Tails Greeter</span>\n" -"appears after the <span class=\"application\">Boot Loader Menu</span>, but before the\n" -"<span class=\"application\">GNOME Desktop</span>:\n" -msgstr "" -"<span class=\"application\">Tails Greeter</span> é um conjunto de diálogos que\n" -"aparecem após o <span class=\"application\">menu de boot</span>, mas antes que\n" -"o <span class=\"application\">GNOME Desktop</span> apareça. É assim que a primeira\n" -"tela do <span class=\"application\">Tails Greeter</span> se parece:\n" - -#. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Welcome to Tails. More\n" -#| "options? Yes, and No toggle button, and Login button.\"]]\n" -msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Welcome to Tails!\"]]\n" +msgid "Assistive technologies\n" msgstr "" -"[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Bem vindo/a ao Tails. Mais\n" -"opções? Botão Sim e Não, e botão de Login.\"]]\n" #. type: Plain text msgid "" @@ -201,46 +101,34 @@ msgstr "" msgid "icon which looks like a person) in the top bar." msgstr "" -#. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "**To start Tails without options**, click on the\n" -#| "<span class=\"button\">Login</span> button, or just press\n" -#| "<span class=\"keycap\">Enter</span>.\n" -msgid "" -"To start Tails without options, click on the\n" -"<span class=\"button\">Start Tails</span> button.\n" -msgstr "" -"**Para iniciar o Tails sem opções**, clique no botão de \n" -"<span class=\"button\">Login</span>, ou simplesmente\n" -"pressione <span class=\"keycap\">Enter</span>.\n" - #. type: Plain text #, fuzzy, no-wrap #| msgid "<a id=\"boot_menu\"></a>\n" msgid "<a id=\"locale\"></a>\n" msgstr "<a id=\"boot_menu\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Language & region\n" msgstr "" #. type: Plain text -#, fuzzy, no-wrap +#, fuzzy #| msgid "" -#| "Here is a list of options that you can set using <span class=\"application\">Tails\n" +#| "Here is a list of options that you can set using <span class=\"application" +#| "\">Tails\n" #| "Greeter</span>:\n" msgid "" -"You can configure Tails depending on your language and location from\n" -"<span class=\"application\">Tails Greeter</span>.\n" +"You can configure Tails depending on your language and location from the " +"Welcome Screen." msgstr "" -"Aqui está uma lista de aplicações que você pode configurar usando o <span class=\"application\">Tails\n" +"Aqui está uma lista de aplicações que você pode configurar usando o <span " +"class=\"application\">Tails\n" "Greeter</span>:\n" #. type: Plain text #, no-wrap -msgid "[[!img locale.png link=\"no\" alt=\"Language & Region section of Tails Greeter\"]]\n" +msgid "[[!img locale.png link=\"no\" alt=\"Language & Region section of the Welcome Screen\"]]\n" msgstr "" #. type: Bullet: '* ' @@ -319,18 +207,16 @@ msgstr "" msgid "<a id=\"persistence\"></a>\n" msgstr "<a id=\"persistence\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Encrypted persistence storage\n" msgstr "" #. type: Plain text -#, no-wrap msgid "" -"If an [[encrypted persistence storage|first_steps/persistence]] is detected on the USB stick, an\n" -"additional section appears in <span class=\"application\">Tails\n" -"Greeter</span> below the <span class=\"guilabel\">Language & Region</span>\n" -"section:\n" +"If an [[encrypted persistence storage|first_steps/persistence]] is detected " +"on the USB stick, an additional section appears in the Welcome Screen below " +"the **Language & Region** section:" msgstr "" #. type: Plain text @@ -344,22 +230,21 @@ msgstr "" msgid "<a id=\"additional\"></a>\n" msgstr "<a id=\"boot_menu\"></a>\n" -#. type: Title - +#. type: Title = #, no-wrap msgid "Additional settings\n" msgstr "" #. type: Plain text -#, no-wrap msgid "" -"Tails is configured with care to be as safe as possible by default. But,\n" -"depending on your situation, you can change one of the following\n" -"settings from <span class=\"application\">Tails Greeter</span>.\n" +"Tails is configured with care to be as safe as possible by default. But, " +"depending on your situation, you can change one of the following settings " +"from the Welcome Screen." msgstr "" #. type: Plain text #, no-wrap -msgid "[[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid "[[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr "" #. type: Bullet: '- ' @@ -428,7 +313,7 @@ msgid "" "additional security." msgstr "" -#. type: Title - +#. type: Title = #, no-wrap msgid "Keyboard shortcuts\n" msgstr "" @@ -449,6 +334,149 @@ msgid "" "</table>\n" msgstr "" +#~ msgid "" +#~ "<a id=\"boot_loader_menu\"></a>\n" +#~ "<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" +#~ msgstr "" +#~ "<a id=\"boot_loader_menu\"></a>\n" +#~ "<a id=\"boot_menu\"></a> <!-- for backward compatibility -->\n" + +#, fuzzy +#~| msgid "Using the <span class=\"application\">boot menu</span>\n" +#~ msgid "Using the <span class=\"application\">Boot Loader Menu</span>\n" +#~ msgstr "Usando o <span class=\"application\">menu de boot</span>\n" + +#, fuzzy +#~| msgid "" +#~| "The <span class=\"application\">boot menu</span> is the first screen to " +#~| "appear\n" +#~| "when Tails starts.\n" +#~ msgid "" +#~ "The <span class=\"application\">Boot Loader Menu</span> is the first " +#~ "screen to appear\n" +#~ "when Tails starts.\n" +#~ msgstr "" +#~ "O <span class=\"application\">menu de boot</span> é a primeira tela a " +#~ "aparecer\n" +#~ "quando Tails é iniciado.\n" + +#~ msgid "<div class=\"tip\">\n" +#~ msgstr "<div class=\"tip\">\n" + +#, fuzzy +#~| msgid "" +#~| "The <span class=\"guilabel\">failsafe</span> mode disables some features " +#~| "of the\n" +#~| "kernel and might work better on some computers. You can try this option " +#~| "if you\n" +#~| "think you are experiencing errors related to hardware compatibility " +#~| "while\n" +#~| "starting Tails.\n" +#~ msgid "" +#~ "<p>The <span class=\"guilabel\">Troubleshooting Mode</span> disables some " +#~ "features of the\n" +#~ "Linux kernel and might work better on some computers. You can try this " +#~ "option if you\n" +#~ "think you are experiencing errors related to hardware compatibility " +#~ "while\n" +#~ "starting Tails.</p>\n" +#~ msgstr "" +#~ "O modo <span class=\"guilabel\">failsafe</span> desabilita algumas " +#~ "funcionalidades\n" +#~ "do kernel e pode funcionar melhor em alguns computadores. Você pode " +#~ "tentar esta\n" +#~ "opção se você acha que está experienciando erros relacionados a " +#~ "compatibilidade de\n" +#~ "hardware ao iniciar o Tails.\n" + +#~ msgid "</div>\n" +#~ msgstr "</div>\n" + +#, fuzzy +#~| msgid "" +#~| "To add a boot option, press <span class=\"keycap\">Tab</span> when the " +#~| "<span class=\"application\">boot menu</span> appears. A list of boot " +#~| "options appears at the bottom of the screen." +#~ msgid "" +#~ "To add a boot option, press <span class=\"keycap\">Tab</span> when the " +#~ "<span class=\"application\">Boot Loader Menu</span> appears. A list of " +#~ "boot options appears at the bottom of the screen." +#~ msgstr "" +#~ "Para adicionar uma opção de boot, pressione <span class=\"keycap\">Tab</" +#~ "span> quando o <span class=\"application\">menu de boot</span> aparecer. " +#~ "Uma lista de opções de boot aparecerão na parte de baixo da tela." + +#, fuzzy +#~| msgid "" +#~| "[[!img boot-menu-with-options.png link=no alt=\"Black screen with Debian " +#~| "live\n" +#~| "artwork. 'Boot menu' with two options 'Live' and 'Live (failsafe)'. At " +#~| "the\n" +#~| "bottom, a list of options ending with 'noautologin quiet_'\"]]\n" +#~ msgid "" +#~ "[[!img boot-menu-with-options.png link=no alt=\"Black screen with Tails\n" +#~ "artwork. Boot Loader Menu with two options 'Tails' and 'Tails " +#~ "(Troubleshooting Mode)'.\n" +#~ "At the bottom, a list of options ending with 'vsyscall=none quiet_'\"]]\n" +#~ msgstr "" +#~ "[[!img boot-menu-with-options.png link=no alt=\"Tela preta com a arte do " +#~ "Tails.\n" +#~ "'Menu de boot' com duas opções 'Live' e 'Live (failsafe)'. Na parte de " +#~ "baixo,\n" +#~ "uma lista de opções que termina com 'noautologin quiet_'\"]]\n" + +#~ msgid "" +#~ "Press <span class=\"keycap\">Space</span>, and type the boot option that " +#~ "you want to add." +#~ msgstr "" +#~ "Precione <span class=\"keycap\">Espaço</span>, e digite a opção de boot " +#~ "que você quer adicionar." + +#~ msgid "" +#~ "If you want to add more than one boot option, type them one after the " +#~ "other, and separate them by a <span class=\"keycap\">Space</span>." +#~ msgstr "" +#~ "Se você quiser adicionar mais de uma opção de boot, digite-as uma após a " +#~ "outra, e separe-as por um <span class=\"keycap\">Espaço</span>." + +#~ msgid "Then press <span class=\"keycap\">Enter</span> to start Tails." +#~ msgstr "" +#~ "A seguir presione <span class=\"keycap\">Enter</span> para iniciar o " +#~ "Tails." + +#~ msgid "" +#~ "<a id=\"greeter\"></a>\n" +#~ "<a id=\"tails_greeter\"></a>\n" +#~ msgstr "" +#~ "<a id=\"greeter\"></a>\n" +#~ "<a id=\"tails_greeter\"></a>\n" + +#~ msgid "Using <span class=\"application\">Tails Greeter</span>\n" +#~ msgstr "Usando o <span class=\"application\">Tails Greeter</span>\n" + +#, fuzzy +#~| msgid "" +#~| "<span class=\"application\">Tails Greeter</span> is the set of dialogs " +#~| "that\n" +#~| "appear after the <span class=\"application\">boot menu</span>, but " +#~| "before the\n" +#~| "<span class=\"application\">GNOME Desktop</span> appears. This is how to " +#~| "first\n" +#~| "screen of <span class=\"application\">Tails Greeter</span> looks like:\n" +#~ msgid "" +#~ "<span class=\"application\">Tails Greeter</span>\n" +#~ "appears after the <span class=\"application\">Boot Loader Menu</span>, " +#~ "but before the\n" +#~ "<span class=\"application\">GNOME Desktop</span>:\n" +#~ msgstr "" +#~ "<span class=\"application\">Tails Greeter</span> é um conjunto de " +#~ "diálogos que\n" +#~ "aparecem após o <span class=\"application\">menu de boot</span>, mas " +#~ "antes que\n" +#~ "o <span class=\"application\">GNOME Desktop</span> apareça. É assim que a " +#~ "primeira\n" +#~ "tela do <span class=\"application\">Tails Greeter</span> se parece:\n" + #~ msgid "" #~ "**To start Tails in languages other than English**, select the one you\n" #~ "want from the menu at the bottom of the screen. You can also adapt\n" diff --git a/wiki/src/doc/first_steps/startup_options.ru.po b/wiki/src/doc/first_steps/welcome_screen.ru.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options.ru.po rename to wiki/src/doc/first_steps/welcome_screen.ru.po diff --git a/wiki/src/doc/first_steps/startup_options.sr_Latn.po b/wiki/src/doc/first_steps/welcome_screen.sr_Latn.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options.sr_Latn.po rename to wiki/src/doc/first_steps/welcome_screen.sr_Latn.po diff --git a/wiki/src/doc/first_steps/startup_options.tr.po b/wiki/src/doc/first_steps/welcome_screen.tr.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options.tr.po rename to wiki/src/doc/first_steps/welcome_screen.tr.po diff --git a/wiki/src/doc/first_steps/startup_options.zh.po b/wiki/src/doc/first_steps/welcome_screen.zh.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options.zh.po rename to wiki/src/doc/first_steps/welcome_screen.zh.po diff --git a/wiki/src/doc/first_steps/startup_options.zh_TW.po b/wiki/src/doc/first_steps/welcome_screen.zh_TW.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options.zh_TW.po rename to wiki/src/doc/first_steps/welcome_screen.zh_TW.po diff --git a/wiki/src/doc/first_steps/startup_options/US_calendar_in_Russian.png b/wiki/src/doc/first_steps/welcome_screen/US_calendar_in_Russian.png similarity index 100% rename from wiki/src/doc/first_steps/startup_options/US_calendar_in_Russian.png rename to wiki/src/doc/first_steps/welcome_screen/US_calendar_in_Russian.png diff --git a/wiki/src/doc/first_steps/startup_options/additional.png b/wiki/src/doc/first_steps/welcome_screen/additional.png similarity index 100% rename from wiki/src/doc/first_steps/startup_options/additional.png rename to wiki/src/doc/first_steps/welcome_screen/additional.png diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.ar.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.ar.po similarity index 98% rename from wiki/src/doc/first_steps/startup_options/administration_password.ar.po rename to wiki/src/doc/first_steps/welcome_screen/administration_password.ar.po index c31d193816d2c601b55fef5de8549c6b354567c9..d42c74884034ea03627abbe21060a1906b469499 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.ar.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.ar.po @@ -66,7 +66,7 @@ msgstr "" msgid "" "In order to perform administration tasks, you need to set up an administration\n" "password when starting Tails, using [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"Greeter</span>|welcome_screen]].\n" msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.ca.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.ca.po similarity index 98% rename from wiki/src/doc/first_steps/startup_options/administration_password.ca.po rename to wiki/src/doc/first_steps/welcome_screen/administration_password.ca.po index c31d193816d2c601b55fef5de8549c6b354567c9..d42c74884034ea03627abbe21060a1906b469499 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.ca.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.ca.po @@ -66,7 +66,7 @@ msgstr "" msgid "" "In order to perform administration tasks, you need to set up an administration\n" "password when starting Tails, using [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"Greeter</span>|welcome_screen]].\n" msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.de.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.de.po similarity index 84% rename from wiki/src/doc/first_steps/startup_options/administration_password.de.po rename to wiki/src/doc/first_steps/welcome_screen/administration_password.de.po index 68e3b90070c012f203180c5ec3f1e883530bd061..da65344b03c598155d2c358ce55547faa66f2a91 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.de.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2018-08-14 20:37+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2018-04-06 20:21+0200\n" "Last-Translator: Tails translators\n" "Language-Team: Tails Translators <tails-l10n@boum.org>\n" @@ -37,8 +37,7 @@ msgstr "" "Zum Beispiel:\n" #. type: Bullet: ' - ' -msgid "" -"To [[install additional software|doc/first_steps/additional_software]]" +msgid "To [[install additional software|doc/first_steps/additional_software]]" msgstr "" "Zum [[Installieren zusätzlicher Software|doc/first_steps/" "additional_software]]" @@ -78,29 +77,40 @@ msgid "Set up an administration password\n" msgstr "Ein Administrationspasswort einstellen\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "In order to perform administration tasks, you need to set up an " +#| "administration\n" +#| "password when starting Tails, using [[<span class=\"application\">Tails\n" +#| "Greeter</span>|welcome_screen]].\n" msgid "" -"In order to perform administration tasks, you need to set up an administration\n" -"password when starting Tails, using [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"In order to perform administration tasks, you need to set up an " +"administration password when starting Tails, using the [[Welcome Screen|" +"welcome_screen]]." msgstr "" "Um administrative Tätigkeiten durchzuführen, müssen Sie\n" "beim Start von Tails mithilfe des [[<span class=\"application\">Tails\n" -"Greeters</span>|startup_options#tails_greeter]] ein Administrationspasswort setzen.\n" +"Greeters</span>|welcome_screen]] ein Administrationspasswort setzen.\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When <span class=\"application\">Tails Greeter</span> appears, click on " +#| "the <span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" +#| "\"symbolic\" link=\"no\"]]</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" "Sobald der <span class=\"application\">Tails Greeter</span> erscheint, " "klicken Sie auf die Schaltfläche <span class=\"button\">[[!img lib/list-add." "png alt=\"Erweitern\" class=\"symbolic\" link=\"no\"]]</span>." #. type: Plain text -#, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr " [[!img additional.png link=\"no\" alt=\"Zusätzliche Optionen des Tails Greeter\"]]\n" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.es.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.es.po similarity index 79% rename from wiki/src/doc/first_steps/startup_options/administration_password.es.po rename to wiki/src/doc/first_steps/welcome_screen/administration_password.es.po index bd90eb7b4d9e5da2b2a1e13b43e5fe94e9cadeee..f15f77a740912ca45594121af189469f450e6bd2 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.es.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-08-14 20:37+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-08-24 06:21+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -35,8 +35,7 @@ msgstr "" "Por ejemplo:" #. type: Bullet: ' - ' -msgid "" -"To [[install additional software|doc/first_steps/additional_software]]" +msgid "To [[install additional software|doc/first_steps/additional_software]]" msgstr "" "Para [[instalar software adicional|doc/first_steps/additional_software]]" @@ -68,11 +67,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!img password-prompt.png link=\"no\" alt=\"Authentication required: amnesia password (also called *administration password* or *root password*)\"]] <!-- Note for translators: the alt tag is useful for SEO. -->\n" -msgstr "" -"[[!img password-prompt.png link=\"no\" alt=\"Autenticación requerida: " -"amnesia password (también llamada *contraseña de admnistración* o *" -"contraseña root*)\"]] <!-- Note for translators: the alt tag is useful for " -"SEO. -->\n" +msgstr "[[!img password-prompt.png link=\"no\" alt=\"Autenticación requerida: amnesia password (también llamada *contraseña de admnistración* o *contraseña root*)\"]] <!-- Note for translators: the alt tag is useful for SEO. -->\n" #. type: Title = #, no-wrap @@ -80,29 +75,42 @@ msgid "Set up an administration password\n" msgstr "Habilita una contraseña de administración\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "In order to perform administration tasks, you need to set up an " +#| "administration\n" +#| "password when starting Tails, using [[<span class=\"application\">Tails\n" +#| "Greeter</span>|welcome_screen]].\n" msgid "" -"In order to perform administration tasks, you need to set up an administration\n" -"password when starting Tails, using [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"In order to perform administration tasks, you need to set up an " +"administration password when starting Tails, using the [[Welcome Screen|" +"welcome_screen]]." msgstr "" -"Para poder realizar tareas administrativas, necesitas configurar una contraseña\n" -"de administrador cuando inicies Tails, usando el [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"Para poder realizar tareas administrativas, necesitas configurar una " +"contraseña\n" +"de administrador cuando inicies Tails, usando el [[<span class=\"application" +"\">Tails\n" +"Greeter</span>|welcome_screen]].\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When <span class=\"application\">Tails Greeter</span> appears, click on " +#| "the <span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" +#| "\"symbolic\" link=\"no\"]]</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" "Cuando aparezca el <span class=\"application\">Tails Greeter</span>, haz " -"click en el botón <span class=\"button\">[[!img lib/list-add.png alt=\"" -"Expandir\" class=\"symbolic\" link=\"no\"]]</span>." +"click en el botón <span class=\"button\">[[!img lib/list-add.png alt=" +"\"Expandir\" class=\"symbolic\" link=\"no\"]]</span>." #. type: Plain text -#, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr " [[!img additional.png link=\"no\" alt=\"Configuraciones adicionales de Tails Greeter\"]]\n" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.fa.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.fa.po similarity index 84% rename from wiki/src/doc/first_steps/startup_options/administration_password.fa.po rename to wiki/src/doc/first_steps/welcome_screen/administration_password.fa.po index 60a499e5d093fb5af99272a0399b18504c4cc317..58758aaa7f624245cce9dfdcdcd8feb79609255e 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.fa.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-08-14 20:37+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2015-09-30 14:18+0000\n" "Last-Translator: sprint5 <translation5@451f.org>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" @@ -39,8 +39,7 @@ msgstr "" "برای نمونه:\n" #. type: Bullet: ' - ' -msgid "" -"To [[install additional software|doc/first_steps/additional_software]]" +msgid "To [[install additional software|doc/first_steps/additional_software]]" msgstr "برای [[نصب نرمافزارهای بیشتر|doc/first_steps/additional_software]]" #. type: Bullet: ' - ' @@ -79,32 +78,42 @@ msgid "Set up an administration password\n" msgstr "یک گذرواژهٔ مدیریتی بسازید.\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "In order to perform administration tasks, you need to set up an " +#| "administration\n" +#| "password when starting Tails, using [[<span class=\"application\">Tails\n" +#| "Greeter</span>|welcome_screen]].\n" msgid "" -"In order to perform administration tasks, you need to set up an administration\n" -"password when starting Tails, using [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"In order to perform administration tasks, you need to set up an " +"administration password when starting Tails, using the [[Welcome Screen|" +"welcome_screen]]." msgstr "" "برای انجام عملکردهای مدیریتی باید هنگام راهاندازی تیلز \n" "با استفاده از [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]] \n" +"Greeter</span>|welcome_screen]] \n" "یک گذرواژهٔ مدیریتی بسازید.\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When <span class=\"application\">Tails Greeter</span> appears, click on " +#| "the <span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" +#| "\"symbolic\" link=\"no\"]]</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" -"وقتی <span class=\"application\">خوشامدگوی تیلز</span> بالا میآید، در پنجرهٔ" -" <span class=\"guilabel\">به تیلز خوش آمدید</span> روی دکمهٔ <span class=\"" -"button\">بله</span> کلیک کنید. سپس روی\n" -"<span class=\"button\">[[!img lib/list-add.png alt=\"ادامه\" class=\"" -"symbolic\" link=\"no\"]]</span> کلیک کنید." +"وقتی <span class=\"application\">خوشامدگوی تیلز</span> بالا میآید، در پنجرهٔ " +"<span class=\"guilabel\">به تیلز خوش آمدید</span> روی دکمهٔ <span class=" +"\"button\">بله</span> کلیک کنید. سپس روی\n" +"<span class=\"button\">[[!img lib/list-add.png alt=\"ادامه\" class=\"symbolic" +"\" link=\"no\"]]</span> کلیک کنید." #. type: Plain text #, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.fr.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.fr.po similarity index 84% rename from wiki/src/doc/first_steps/startup_options/administration_password.fr.po rename to wiki/src/doc/first_steps/welcome_screen/administration_password.fr.po index fe1ade09cfd91893b587caa999fa5f85753ddb14..b57ee1e16086b2c6cee50078121a6b32ca4e3cd7 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.fr.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.fr.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2018-08-14 20:37+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2018-01-24 17:40+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -27,8 +27,7 @@ msgstr "" "d'administration système. Par exemple :" #. type: Bullet: ' - ' -msgid "" -"To [[install additional software|doc/first_steps/additional_software]]" +msgid "To [[install additional software|doc/first_steps/additional_software]]" msgstr "" "Pour [[installer des logiciels additionnels|doc/first_steps/" "additional_software]]" @@ -69,29 +68,41 @@ msgid "Set up an administration password\n" msgstr "Définir un mot de passe d'administration\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "In order to perform administration tasks, you need to set up an " +#| "administration\n" +#| "password when starting Tails, using [[<span class=\"application\">Tails\n" +#| "Greeter</span>|welcome_screen]].\n" msgid "" -"In order to perform administration tasks, you need to set up an administration\n" -"password when starting Tails, using [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"In order to perform administration tasks, you need to set up an " +"administration password when starting Tails, using the [[Welcome Screen|" +"welcome_screen]]." msgstr "" "Afin d'effectuer des tâches d'administration, vous devez choisir un mot\n" -"de passe d'administration lors du démarrage de Tails, en utilisant [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"de passe d'administration lors du démarrage de Tails, en utilisant [[<span " +"class=\"application\">Tails\n" +"Greeter</span>|welcome_screen]].\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When <span class=\"application\">Tails Greeter</span> appears, click on " +#| "the <span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" +#| "\"symbolic\" link=\"no\"]]</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" "Lorsque <span class=\"application\">Tails Greeter</span> apparaît, cliquez " "sur le bouton <span class=\"button\">[[!img lib/list-add.png alt=\"Étendre\" " "class=\"symbolic\" link=\"no\"]]</span>." #. type: Plain text -#, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr " [[!img additional.png link=\"no\" alt=\"Paramètres additionnels du Tails Greeter\"]]\n" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.id.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.id.po similarity index 98% rename from wiki/src/doc/first_steps/startup_options/administration_password.id.po rename to wiki/src/doc/first_steps/welcome_screen/administration_password.id.po index 2aa591a53f31829f98cce7c2e0272dfcb79c6b2d..06bfa6e092be242e547367f6a2f3af2a14527a65 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.id.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.id.po @@ -66,7 +66,7 @@ msgstr "" msgid "" "In order to perform administration tasks, you need to set up an administration\n" "password when starting Tails, using [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"Greeter</span>|welcome_screen]].\n" msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.it.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.it.po similarity index 85% rename from wiki/src/doc/first_steps/startup_options/administration_password.it.po rename to wiki/src/doc/first_steps/welcome_screen/administration_password.it.po index c2d88dbf077daedc375d9753eda22c36383f8b08..e68a3b962f6f2f27f3c62d13600585e0d6f1719e 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.it.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails Italiano\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-08-14 20:37+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-06-14 14:03+0000\n" "Last-Translator: Boy Ska <piuttosto@logorroici.org>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -34,8 +34,7 @@ msgstr "" "Per esempio:\n" #. type: Bullet: ' - ' -msgid "" -"To [[install additional software|doc/first_steps/additional_software]]" +msgid "To [[install additional software|doc/first_steps/additional_software]]" msgstr "Per [[installare altro software|doc/first_steps/additional_software]]" #. type: Bullet: ' - ' @@ -74,21 +73,32 @@ msgid "Set up an administration password\n" msgstr "Definire una password da amministratore\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "In order to perform administration tasks, you need to set up an " +#| "administration\n" +#| "password when starting Tails, using [[<span class=\"application\">Tails\n" +#| "Greeter</span>|welcome_screen]].\n" msgid "" -"In order to perform administration tasks, you need to set up an administration\n" -"password when starting Tails, using [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"In order to perform administration tasks, you need to set up an " +"administration password when starting Tails, using the [[Welcome Screen|" +"welcome_screen]]." msgstr "" "Per effettuare operazioni da amministratore hai bisogno di \n" -"impostare una password da amministratore durante l'avvio di Tails, usando [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"impostare una password da amministratore durante l'avvio di Tails, usando " +"[[<span class=\"application\">Tails\n" +"Greeter</span>|welcome_screen]].\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When <span class=\"application\">Tails Greeter</span> appears, click on " +#| "the <span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" +#| "\"symbolic\" link=\"no\"]]</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" "Quando appare <span class=\"application\">Tails Greeter</span>, cliccate " "sul\n" @@ -98,7 +108,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.mdwn b/wiki/src/doc/first_steps/welcome_screen/administration_password.mdwn similarity index 87% rename from wiki/src/doc/first_steps/startup_options/administration_password.mdwn rename to wiki/src/doc/first_steps/welcome_screen/administration_password.mdwn index fbeee056b7bec1d9d0d4b17887712e82c7c8442d..802ddb84c592bfc349835813cec5a0256b099fbf 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.mdwn +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.mdwn @@ -19,13 +19,13 @@ Set up an administration password ================================= In order to perform administration tasks, you need to set up an administration -password when starting Tails, using [[<span class="application">Tails -Greeter</span>|startup_options#tails_greeter]]. +password when starting Tails, using the [[Welcome +Screen|welcome_screen]]. -1. When <span class="application">Tails Greeter</span> appears, click on the +1. When the Welcome Screen appears, click on the <span class="button">[[!img lib/list-add.png alt="Expand" class="symbolic" link="no"]]</span> button. - [[!img additional.png link="no" alt="Additional settings of Tails Greeter"]] + [[!img additional.png link="no" alt="Additional settings of the Welcome Screen"]] 2. When the <span class="guilabel">Additional Settings</span> dialog appears, click on <span class="guilabel">Administration Password</span>. diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.pl.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.pl.po similarity index 98% rename from wiki/src/doc/first_steps/startup_options/administration_password.pl.po rename to wiki/src/doc/first_steps/welcome_screen/administration_password.pl.po index c31d193816d2c601b55fef5de8549c6b354567c9..d42c74884034ea03627abbe21060a1906b469499 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.pl.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.pl.po @@ -66,7 +66,7 @@ msgstr "" msgid "" "In order to perform administration tasks, you need to set up an administration\n" "password when starting Tails, using [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"Greeter</span>|welcome_screen]].\n" msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.pt.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.pt.po similarity index 89% rename from wiki/src/doc/first_steps/startup_options/administration_password.pt.po rename to wiki/src/doc/first_steps/welcome_screen/administration_password.pt.po index 9a79b303435482d7f424fd99b784c90d9e0a1adb..f4f1b86bb4276b473cfb5cffcbfddeec4c2c6bf9 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.pt.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-08-14 20:37+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2014-06-21 19:15-0300\n" "Last-Translator: Tails Developers <amnesia@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -36,8 +36,7 @@ msgstr "" "Por exemplo:\n" #. type: Bullet: ' - ' -msgid "" -"To [[install additional software|doc/first_steps/additional_software]]" +msgid "To [[install additional software|doc/first_steps/additional_software]]" msgstr "" #. type: Bullet: ' - ' @@ -74,15 +73,22 @@ msgid "Set up an administration password\n" msgstr "Configure uma senha de administração\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "In order to perform administration tasks, you need to set up an " +#| "administration\n" +#| "password when starting Tails, using [[<span class=\"application\">Tails\n" +#| "Greeter</span>|welcome_screen]].\n" msgid "" -"In order to perform administration tasks, you need to set up an administration\n" -"password when starting Tails, using [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"In order to perform administration tasks, you need to set up an " +"administration password when starting Tails, using the [[Welcome Screen|" +"welcome_screen]]." msgstr "" -"Para poder realizar tarefas de administração, você precisa configurar uma senha\n" -"de administração ao iniciar o Tails, usando o [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"Para poder realizar tarefas de administração, você precisa configurar uma " +"senha\n" +"de administração ao iniciar o Tails, usando o [[<span class=\"application" +"\">Tails\n" +"Greeter</span>|welcome_screen]].\n" #. type: Bullet: '1. ' #, fuzzy @@ -92,9 +98,9 @@ msgstr "" #| "<span class=\"button\">Yes</span> button. Then click on the <span class=" #| "\"button\">Forward</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" "Quando o <span class=\"application\">Tails Greeter</span> aparecer, na " "janela <span class=\"guilabel\">Bem vindo/a ao Tails</span>, clique no botão " @@ -103,7 +109,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.ru.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.ru.po similarity index 98% rename from wiki/src/doc/first_steps/startup_options/administration_password.ru.po rename to wiki/src/doc/first_steps/welcome_screen/administration_password.ru.po index c31d193816d2c601b55fef5de8549c6b354567c9..d42c74884034ea03627abbe21060a1906b469499 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.ru.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.ru.po @@ -66,7 +66,7 @@ msgstr "" msgid "" "In order to perform administration tasks, you need to set up an administration\n" "password when starting Tails, using [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"Greeter</span>|welcome_screen]].\n" msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.sr_Latn.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.sr_Latn.po similarity index 98% rename from wiki/src/doc/first_steps/startup_options/administration_password.sr_Latn.po rename to wiki/src/doc/first_steps/welcome_screen/administration_password.sr_Latn.po index c31d193816d2c601b55fef5de8549c6b354567c9..d42c74884034ea03627abbe21060a1906b469499 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.sr_Latn.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.sr_Latn.po @@ -66,7 +66,7 @@ msgstr "" msgid "" "In order to perform administration tasks, you need to set up an administration\n" "password when starting Tails, using [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"Greeter</span>|welcome_screen]].\n" msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.tr.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.tr.po similarity index 98% rename from wiki/src/doc/first_steps/startup_options/administration_password.tr.po rename to wiki/src/doc/first_steps/welcome_screen/administration_password.tr.po index c31d193816d2c601b55fef5de8549c6b354567c9..d42c74884034ea03627abbe21060a1906b469499 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.tr.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.tr.po @@ -66,7 +66,7 @@ msgstr "" msgid "" "In order to perform administration tasks, you need to set up an administration\n" "password when starting Tails, using [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"Greeter</span>|welcome_screen]].\n" msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.zh.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.zh.po similarity index 98% rename from wiki/src/doc/first_steps/startup_options/administration_password.zh.po rename to wiki/src/doc/first_steps/welcome_screen/administration_password.zh.po index c31d193816d2c601b55fef5de8549c6b354567c9..d42c74884034ea03627abbe21060a1906b469499 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.zh.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.zh.po @@ -66,7 +66,7 @@ msgstr "" msgid "" "In order to perform administration tasks, you need to set up an administration\n" "password when starting Tails, using [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"Greeter</span>|welcome_screen]].\n" msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.zh_TW.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.zh_TW.po similarity index 97% rename from wiki/src/doc/first_steps/startup_options/administration_password.zh_TW.po rename to wiki/src/doc/first_steps/welcome_screen/administration_password.zh_TW.po index b6f738f74864a8eb6fd2f6666029df8122e27b20..19d08df724d402527020860dc9dffb49c9096716 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.zh_TW.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.zh_TW.po @@ -74,11 +74,11 @@ msgstr "設定一個管理員密碼\n" msgid "" "In order to perform administration tasks, you need to set up an administration\n" "password when starting Tails, using [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]].\n" +"Greeter</span>|welcome_screen]].\n" msgstr "" "為了執行管理者任務,需要在一開始進入 Tails 時\n" "設定一個管理者密碼[[<span class=\"application\">Tails\n" -"Greeters</span>|startup_options#tails_greeter]]。\n" +"Greeters</span>|welcome_screen]]。\n" #. type: Bullet: '1. ' msgid "" diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.ar.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.ar.po similarity index 97% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.ar.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.ar.po index ab47045777b107dda6f312e26a8c19797a835b9e..bd7a4078e28a9180b70a6f2f97e65257de841866 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.ar.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.ar.po @@ -147,10 +147,10 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline\" " +"[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline\" " "raw=\"yes\" sort=\"age\"]]\n" msgstr "" -"[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline.ar\" " +"[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline.ar\" " "raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.ca.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.ca.po similarity index 97% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.ca.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.ca.po index 136093c1110cf4e08d8aa783b5e3dada726deac7..4d70f726d66fb9e73abd261744b619934a7fc0d2 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.ca.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.ca.po @@ -143,9 +143,9 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgid "[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" -"[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline.ca\" " +"[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline.ca\" " "raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.de.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.de.po similarity index 95% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.de.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.de.po index 80c2a5f7abd33f84d9300f2b3dc4fd9b1fc48f5c..3f38fc96fc5a4e0c8036feb69e9bc74ff9a9c9d6 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.de.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: TAILS\n" -"POT-Creation-Date: 2016-03-14 17:54+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2018-04-07 14:07+0200\n" "Last-Translator: Tails translators\n" "Language-Team: Tails Translations <tails-l10n@boum.org>\n" @@ -166,18 +166,21 @@ msgid "`ScrambleSuit`" msgstr "`ScrambleSuit`" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "To use bridges, choose to configure bridge settings from\n" +#| "<span class=\"application\">Tails Greeter</span>:\n" msgid "" -"To use bridges, choose to configure bridge settings from\n" -"<span class=\"application\">Tails Greeter</span>:\n" +"To use bridges, choose to configure bridge settings from the Welcome Screen:" msgstr "" -"Um Bridges zu benutzen, konfigurieren Sie bitte die Bridge-Einstellungen des\n" +"Um Bridges zu benutzen, konfigurieren Sie bitte die Bridge-Einstellungen " +"des\n" "<span class=\"application\">Tails Greeter</span>:\n" #. type: Plain text #, no-wrap -msgid "[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline.de\" raw=\"yes\" sort=\"age\"]]\n" +msgid "[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline.de\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.es.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.es.po similarity index 86% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.es.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.es.po index c56cc4dcc370be3c3d0ad781683aa2d81af6260d..1fa05e56b63de2eb4814e9e39abdec3913cd4d76 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.es.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.es.po @@ -5,12 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2018-01-17 16:52+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2018-02-08 18:19+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" -"Language-Team: Spanish " -"<http://translate.tails.boum.org/projects/tails/startup_tor_bridge_mode/es/>" -"\n" +"Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" +"startup_tor_bridge_mode/es/>\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -103,8 +102,8 @@ msgid "" msgstr "" "Para usar Tor a través de puentes debes saber al menos la dirección de un " "puente por adelantado. El Tor Project distribuye direcciones de bridge de " -"muchas maneras, por ejemplo desde su " -"[website](https://bridges.torproject.org/) y por email." +"muchas maneras, por ejemplo desde su [website](https://bridges.torproject." +"org/) y por email." #. type: Plain text #, no-wrap @@ -164,20 +163,20 @@ msgid "`ScrambleSuit`" msgstr "`ScrambleSuit`" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "To use bridges, choose to configure bridge settings from\n" +#| "<span class=\"application\">Tails Greeter</span>:\n" msgid "" -"To use bridges, choose to configure bridge settings from\n" -"<span class=\"application\">Tails Greeter</span>:\n" +"To use bridges, choose to configure bridge settings from the Welcome Screen:" msgstr "" "Para usar puentes elige configurar puentes (bridges) en el\n" "<span class=\"application\">Tails Greeter</span>:\n" #. type: Plain text #, no-wrap -msgid "[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline.es\" " -"raw=\"yes\" sort=\"age\"]]\n" +msgid "[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline.es\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -191,11 +190,9 @@ msgid "" "relay of your Tor circuits in\n" "<span class=\"application\">[[Onion Circuits|doc/anonymous_internet/tor_status#circuits]]</span>.</p>\n" msgstr "" -"<p>Cuando arranca Tor los puentes que has configurado aparecen como los " -"primeros\n" +"<p>Cuando arranca Tor los puentes que has configurado aparecen como los primeros\n" "relays de tus circuitos de Tor en\n" -"<span class=\"application\">[[Onion " -"Circuits|doc/anonymous_internet/tor_status#circuits]]</span>.</p>\n" +"<span class=\"application\">[[Onion Circuits|doc/anonymous_internet/tor_status#circuits]]</span>.</p>\n" #. type: Title = #, no-wrap @@ -210,11 +207,11 @@ msgid "" "your country, then there are some extra rules that you should follow in " "order to prevent yourself from being identified as a Tor user." msgstr "" -"La [documentación de Tor Project sobre los " -"puentes](https://www.torproject.org/docs/bridges) se concentra sobre todo en " -"evitar la censura: cuando se censura el tráfico de Tor. Si usar Tor es " -"peligroso, o si se considera sospechoso en tu país, hay otras reglas que " -"deberás seguir para que no puedan ver que usas Tor." +"La [documentación de Tor Project sobre los puentes](https://www.torproject." +"org/docs/bridges) se concentra sobre todo en evitar la censura: cuando se " +"censura el tráfico de Tor. Si usar Tor es peligroso, o si se considera " +"sospechoso en tu país, hay otras reglas que deberás seguir para que no " +"puedan ver que usas Tor." #. type: Plain text #, no-wrap @@ -228,8 +225,7 @@ msgid "" "not absolute protection</strong> against all techniques that\n" "an adversary could do to identify Tor users.\n" msgstr "" -"Los puentes son herramientas importantes que funcionan en la mayoría de los " -"casos, pero <strong>no son\n" +"Los puentes son herramientas importantes que funcionan en la mayoría de los casos, pero <strong>no son\n" "la protección absoluta</strong> contra todas las técnicas que\n" "un adversario puede utilizar para identificar usuarios de Tor.\n" @@ -243,9 +239,9 @@ msgid "" "bridges#PluggableTransports) since they are harder to identify than other " "bridges." msgstr "" -"Utiliza sólo [puentes " -"*ofuscados*](https://www.torproject.org/docs/bridges#PluggableTransports) " -"que son más difíciles de identificar que los otros puentes." +"Utiliza sólo [puentes *ofuscados*](https://www.torproject.org/docs/" +"bridges#PluggableTransports) que son más difíciles de identificar que los " +"otros puentes." #. type: Bullet: '3. ' msgid "" @@ -272,10 +268,8 @@ msgid "" " and so it could end up in the hands of your adversary.\n" msgstr "" " Así que lo mejor sería si pudieras encontrar un amigo de confianza o\n" -" una organización en otro país que mantenga un *puente ofuscado* \"" -"privado\"\n" +" una organización en otro país que mantenga un *puente ofuscado* \"privado\"\n" " para ti. En este caso \"privado\" significaría que el puente está\n" -" configurado con la opción `PublishServerDescriptor 0`. Sin esta opción, " -"Tor Project\n" +" configurado con la opción `PublishServerDescriptor 0`. Sin esta opción, Tor Project\n" " recibirá noticia del puente y puede que distribuya su dirección a otros,\n" " por lo que podría caer en manos de tu adversario.\n" diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.fa.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.fa.po similarity index 97% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.fa.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.fa.po index d04218f20c025f2712b987f628726053d6c210fc..82ce59d82d20d86ba13ddd7e9d78dd47807b139c 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.fa.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2016-03-14 17:54+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2015-10-16 14:51+0000\n" "Last-Translator: sprint5 <translation5@451f.org>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" @@ -166,10 +166,9 @@ msgid "`ScrambleSuit`" msgstr "`ScrambleSuit`" #. type: Plain text -#, fuzzy, no-wrap +#, fuzzy msgid "" -"To use bridges, choose to configure bridge settings from\n" -"<span class=\"application\">Tails Greeter</span>:\n" +"To use bridges, choose to configure bridge settings from the Welcome Screen:" msgstr "" "برای استفاده از پل پیکربندی تنظیمات پل را از \n" "<span class=\"application\">خوشامدگوی تیلز</span> \n" @@ -177,8 +176,8 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline.fa\" raw=\"yes\" sort=\"age\"]]\n" +msgid "[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline.fa\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.fr.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.fr.po similarity index 95% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.fr.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.fr.po index e7b6aef3a618eef1cb972fd1f22af472dc7f2604..da0550a2844caf504e59648535875343fe1b5f6a 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.fr.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2016-03-07 18:54+0100\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2016-03-26 22:15+0100\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -162,18 +162,21 @@ msgid "`ScrambleSuit`" msgstr "`ScrambleSuit`" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "To use bridges, choose to configure bridge settings from\n" +#| "<span class=\"application\">Tails Greeter</span>:\n" msgid "" -"To use bridges, choose to configure bridge settings from\n" -"<span class=\"application\">Tails Greeter</span>:\n" +"To use bridges, choose to configure bridge settings from the Welcome Screen:" msgstr "" -"Pour utiliser les bridges, vous devez en configurer les paramètres au niveau du\n" +"Pour utiliser les bridges, vous devez en configurer les paramètres au niveau " +"du\n" "<span class=\"application\">Tails Greeter</span> :\n" #. type: Plain text #, no-wrap -msgid "[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline.fr\" raw=\"yes\" sort=\"age\"]]\n" +msgid "[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline.fr\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.id.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.id.po similarity index 97% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.id.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.id.po index 760e40ced68e20a0d8de98e07671fffa2f3eed91..043e925a9c905f8679de93d6a7757b1ca85ce790 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.id.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.id.po @@ -144,9 +144,9 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgid "[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" -"[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline.id\" " +"[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline.id\" " "raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.ar.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.ar.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.inline.ar.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.ar.po diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.ca.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.ca.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.inline.ca.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.ca.po diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.de.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.de.po similarity index 80% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.inline.de.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.de.po index 0fd91b4602ca1f65c0d826323a5e5a0a6c165e64..5946c9435d936457446b04e3bd2c1c6c8f697a8a 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.de.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-05-09 16:20+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2018-04-06 15:15+0200\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -17,18 +17,24 @@ msgstr "" "X-Generator: Poedit 1.8.11\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When <span class=\"application\">Tails Greeter</span> appears, click on " +#| "the <span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" +#| "\"symbolic\" link=\"no\"]]</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" "Sobald der <span class=\"application\">Tails Greeter</span> erscheint, " "klicken Sie auf die Schaltfläche <span class=\"button\">[[!img lib/list-add." "png alt=\"Erweitern\" class=\"symbolic\" link=\"no\"]]</span>." #. type: Plain text -#, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr " [[!img additional.png link=\"no\" alt=\"Zusätzliche Optionen des Tails Greeter\"]]\n" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.es.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.es.po similarity index 71% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.inline.es.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.es.po index 28399a4db828bd871933078a821ad7deccb0114e..0a79f5fc2b5080651ecc554a8b030ec4a1e9e327 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.es.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-01-30 12:40+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-08-24 06:21+0000\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -19,21 +19,25 @@ msgstr "" "X-Generator: Weblate 2.20\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When <span class=\"application\">Tails Greeter</span> appears, click on " +#| "the <span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" +#| "\"symbolic\" link=\"no\"]]</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" "Cuando aparezca el <span class=\"application\">Tails Greeter</span>, haz " -"click en el botón <span class=\"button\">[[!img lib/list-add.png alt=\"" -"Expandir\" class=\"symbolic\" link=\"no\"]]</span>." +"click en el botón <span class=\"button\">[[!img lib/list-add.png alt=" +"\"Expandir\" class=\"symbolic\" link=\"no\"]]</span>." #. type: Plain text -#, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" -msgstr "" -" [[!img additional.png link=\"no\" alt=\"Configuraciones adicionales de " -"Tails Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" +msgstr " [[!img additional.png link=\"no\" alt=\"Configuraciones adicionales de Tails Greeter\"]]\n" #. type: Bullet: '2. ' msgid "" diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.fa.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.fa.po similarity index 63% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.inline.fa.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.fa.po index 8b6449eb454f17f537157e169855a4bf307fec22..17f7dd8faf82cd7f9fcb3ec7b59111ca6101fd57 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.fa.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-01-29 14:25+0100\n" +"POT-Creation-Date: 2020-03-25 05:24+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" @@ -16,20 +16,25 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When <span class=\"application\">Tails Greeter</span> appears, click on " +#| "the <span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" +#| "\"symbolic\" link=\"no\"]]</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" -"وقتی <span class=\"application\">خوشامدگوی تیلز</span> بالا میآید، در پنجرهٔ" -" <span class=\"guilabel\">به تیلز خوش آمدید</span> روی دکمهٔ <span class=\"" -"button\">بله</span> کلیک کنید. سپس روی\n" -"<span class=\"button\">[[!img lib/list-add.png alt=\"ادامه\" class=\"" -"symbolic\" link=\"no\"]]</span> کلیک کنید." +"وقتی <span class=\"application\">خوشامدگوی تیلز</span> بالا میآید، در پنجرهٔ " +"<span class=\"guilabel\">به تیلز خوش آمدید</span> روی دکمهٔ <span class=" +"\"button\">بله</span> کلیک کنید. سپس روی\n" +"<span class=\"button\">[[!img lib/list-add.png alt=\"ادامه\" class=\"symbolic" +"\" link=\"no\"]]</span> کلیک کنید." #. type: Plain text #, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.fr.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.fr.po similarity index 79% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.inline.fr.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.fr.po index 7aae57fdc1f6bfc23fe8c5ca3d49dd65d75570f7..fc0557dfd82f83d5e49b8308a68148a1309f4194 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.fr.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.fr.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-02-13 18:56+0100\n" +"POT-Creation-Date: 2020-03-25 05:24+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" @@ -15,18 +15,24 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When <span class=\"application\">Tails Greeter</span> appears, click on " +#| "the <span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" +#| "\"symbolic\" link=\"no\"]]</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" "Lorsque <span class=\"application\">Tails Greeter</span> apparaît, cliquez " "sur le bouton <span class=\"button\">[[!img lib/list-add.png alt=\"Étendre\" " "class=\"symbolic\" link=\"no\"]]</span>." #. type: Plain text -#, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr " [[!img additional.png link=\"no\" alt=\"Paramètres additionnels du Tails Greeter\"]]\n" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.id.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.id.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.inline.id.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.id.po diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.it.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.it.po similarity index 75% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.inline.it.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.it.po index f24b6a5d8dfff5928fe194b121be43daf1d3df2d..3467e43af456eb8ad46c1ed551527312746bdd36 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.it.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.it.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: 2018-01-29 14:25+0100\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -17,10 +17,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When <span class=\"application\">Tails Greeter</span> appears, click on " +#| "the <span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" +#| "\"symbolic\" link=\"no\"]]</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" "Quando appare <span class=\"application\">Tails Greeter</span>, cliccate " "sul\n" @@ -30,7 +35,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.mdwn b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.mdwn similarity index 75% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.inline.mdwn rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.mdwn index 9ddbb0aface2f96d5a73f12720c23a95f2392350..1341ef0dac130ba4bc68ba5d1dbbed8b6d4c1d2e 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.mdwn +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.mdwn @@ -1,7 +1,7 @@ -1. When <span class="application">Tails Greeter</span> appears, click on the +1. When the Welcome Screen appears, click on the <span class="button">[[!img lib/list-add.png alt="Expand" class="symbolic" link="no"]]</span> button. - [[!img additional.png link="no" alt="Additional settings of Tails Greeter"]] + [[!img additional.png link="no" alt="Additional settings of the Welcome Screen"]] 2. When the <span class="guilabel">Additional Settings</span> dialog appears, click on <span class="guilabel">Network Configuration</span>. diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.pl.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.pl.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.inline.pl.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.pl.po diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.pt.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.pt.po similarity index 81% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.inline.pt.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.pt.po index 4f35de82a7306f8fdc4caa8484a80bf1e6f133e8..8913ece4d7447b4408c0805dffecb10684204c52 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.pt.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-01-29 14:25+0100\n" +"POT-Creation-Date: 2020-03-25 05:24+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" @@ -17,14 +17,14 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.ru.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.ru.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.inline.ru.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.ru.po diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.sr_Latn.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.sr_Latn.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.inline.sr_Latn.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.sr_Latn.po diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.tr.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.tr.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.inline.tr.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.tr.po diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.zh.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.zh.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.inline.zh.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.zh.po diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.zh_TW.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.zh_TW.po similarity index 100% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.inline.zh_TW.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.inline.zh_TW.po diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.it.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.it.po similarity index 94% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.it.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.it.po index eb76761877adaf3fbd6e0e8c2b8c6334520a377c..9b286eef62d37a32036b2e72ebbcc7e89c378eee 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.it.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Italian Team\n" -"POT-Creation-Date: 2016-05-17 09:40+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2016-04-03 19:24-0000\n" "Last-Translator: Zeyev <tbd@tbd.com>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -170,18 +170,14 @@ msgid "`ScrambleSuit`" msgstr "`ScrambleSuit`" #. type: Plain text -#, no-wrap msgid "" -"To use bridges, choose to configure bridge settings from\n" -"<span class=\"application\">Tails Greeter</span>:\n" +"To use bridges, choose to configure bridge settings from the Welcome Screen:" msgstr "" #. type: Plain text #, no-wrap -msgid "[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline.it\" " -"raw=\"yes\" sort=\"age\"]]\n" +msgid "[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline.it\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -306,13 +302,17 @@ msgstr "" #, fuzzy #~| msgid "" #~| "To use bridges, choose to configure bridge settings from [[<span\n" -#~| "class=\"application\">Tails Greeter</span>|startup_options#tails_greeter]] as\n" -#~| "explained in the [[network configuration|network_configuration]] documentation.\n" +#~| "class=\"application\">Tails Greeter</span>|welcome_screen]] as\n" +#~| "explained in the [[network configuration|network_configuration]] " +#~| "documentation.\n" #~ msgid "" -#~ "To use Tor through bridges, choose the bridge settings configuration option in [[<span\n" -#~ "class=\"application\">Tails Greeter</span>|startup_options#tails_greeter]] as\n" -#~ "explained in the [[network configuration|network_configuration]] documentation.\n" +#~ "To use Tor through bridges, choose the bridge settings configuration " +#~ "option in [[<span\n" +#~ "class=\"application\">Tails Greeter</span>|welcome_screen]] as\n" +#~ "explained in the [[network configuration|network_configuration]] " +#~ "documentation.\n" #~ msgstr "" #~ "Per usare i bridge scegli di configurare le opzioni bridge dal [[<span\n" -#~ "class=\"application\">Tails Greeter</span>|startup_options#tails_greeter]], come\n" -#~ "spiegato nella documentazione relativa alla [[configurazione di rete|network_configuration]].\n" +#~ "class=\"application\">Tails Greeter</span>|welcome_screen]], come\n" +#~ "spiegato nella documentazione relativa alla [[configurazione di rete|" +#~ "network_configuration]].\n" diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.mdwn b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.mdwn similarity index 96% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.mdwn rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.mdwn index 12c09e044871c2896a17cfd56828008fc8313507..7b565cfe8a3a59417621d61cc7ab5cc7e7d7de5c 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.mdwn +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.mdwn @@ -60,9 +60,9 @@ Tails allows you to use bridges of the following types: - `ScrambleSuit` To use bridges, choose to configure bridge settings from -<span class="application">Tails Greeter</span>: +the Welcome Screen: -[[!inline pages="doc/first_steps/startup_options/bridge_mode.inline" raw="yes" sort="age"]] +[[!inline pages="doc/first_steps/welcome_screen/bridge_mode.inline" raw="yes" sort="age"]] <div class="tip"> diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.pl.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.pl.po similarity index 97% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.pl.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.pl.po index bc0918e56d21d55e31c654bca459adb4ccfca397..eb31ca88643c89b91ef16958c9445d5536e1fd4e 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.pl.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.pl.po @@ -145,9 +145,9 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgid "[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" -"[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline.pl\" " +"[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline.pl\" " "raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.pt.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.pt.po similarity index 95% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.pt.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.pt.po index e1c515241e9d43cd2f779159c7ca44cee55451e5..15951ff43a11cde16163d526bec461248e5008af 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.pt.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2016-03-14 17:54+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2014-06-21 10:07-0300\n" "Last-Translator: Tails Developers <amnesia@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -167,18 +167,21 @@ msgid "`ScrambleSuit`" msgstr "" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "To use bridges, choose to configure bridge settings from\n" +#| "<span class=\"application\">Tails Greeter</span>:\n" msgid "" -"To use bridges, choose to configure bridge settings from\n" -"<span class=\"application\">Tails Greeter</span>:\n" +"To use bridges, choose to configure bridge settings from the Welcome Screen:" msgstr "" -"Para usar pontes, escolha para configurar as preferências de ponte a partir do\n" +"Para usar pontes, escolha para configurar as preferências de ponte a partir " +"do\n" "<span class=\"application\">Tails Greeter</span>:\n" #. type: Plain text #, no-wrap -msgid "[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline.pt\" raw=\"yes\" sort=\"age\"]]\n" +msgid "[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline.pt\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -301,14 +304,14 @@ msgstr "" #~ "class=\"application\">boot menu</span>. For detailed instructions, see\n" #~ "the documentation on\n" #~ "[[using the <span class=\"application\">boot menu</span>|" -#~ "startup_options#boot_menu]].\n" +#~ "welcome_screen#boot_menu]].\n" #~ msgstr "" #~ "Para ativar o modo bridge do Tor, adicione a opção de boot <span class=" #~ "\"command\">bridge</span>\n" #~ "no <span class=\"application\">menu de boot</span>. Para instruções " #~ "detalhadas,\n" #~ "veja a documentação sobre [[como usar o <span class=\"application\">menu " -#~ "de boot</span>|startup_options#boot_menu]].\n" +#~ "de boot</span>|welcome_screen#boot_menu]].\n" #~ msgid "" #~ "If you live in a country where Tor is blocked, or if you want to try to " diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.ru.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.ru.po similarity index 97% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.ru.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.ru.po index 0667054fb611a6edaa1edfec4d250d035e59e846..2be3eba5edd0befd06a01949ddb02961c05a31c3 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.ru.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.ru.po @@ -145,10 +145,10 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline\" " +"[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline\" " "raw=\"yes\" sort=\"age\"]]\n" msgstr "" -"[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline.ru\" " +"[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline.ru\" " "raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.sr_Latn.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.sr_Latn.po similarity index 98% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.sr_Latn.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.sr_Latn.po index f199ee8d82510b5754c4d5a687802c8ea45ded32..f06da6e562289e0d5ae3c8c52097e031b500974a 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.sr_Latn.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.sr_Latn.po @@ -145,7 +145,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline\" " +"[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline\" " "raw=\"yes\" sort=\"age\"]]\n" msgstr "" diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.tr.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.tr.po similarity index 97% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.tr.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.tr.po index 0cd8dbb64b25543a2f2a9fb0a52720d1ffa69e00..ba38db96251c3456991cd2dc284110e71c339d40 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.tr.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.tr.po @@ -144,9 +144,9 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgid "[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" -"[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline.tr\" " +"[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline.tr\" " "raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.zh.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.zh.po similarity index 97% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.zh.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.zh.po index ae33333e83e5650a20a7d0fdef870de2acc51bd2..c28fa0d299c11f5b69b64f21af2e2827231220ce 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.zh.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.zh.po @@ -143,10 +143,10 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline\" " +"[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline\" " "raw=\"yes\" sort=\"age\"]]\n" msgstr "" -"[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline.zh\" " +"[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline.zh\" " "raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.zh_TW.po b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.zh_TW.po similarity index 98% rename from wiki/src/doc/first_steps/startup_options/bridge_mode.zh_TW.po rename to wiki/src/doc/first_steps/welcome_screen/bridge_mode.zh_TW.po index f45f6b83792004042335c5da0c576caae7f15d3b..c48d11ebb331451a300cf321134d21eec3ebfab1 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.zh_TW.po +++ b/wiki/src/doc/first_steps/welcome_screen/bridge_mode.zh_TW.po @@ -155,10 +155,10 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline\" " +"[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline\" " "raw=\"yes\" sort=\"age\"]]\n" msgstr "" -"[[!inline pages=\"doc/first_steps/startup_options/bridge_mode.inline.zh_TW\" " +"[[!inline pages=\"doc/first_steps/welcome_screen/bridge_mode.inline.zh_TW\" " "raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text diff --git a/wiki/src/doc/first_steps/startup_options/locale.png b/wiki/src/doc/first_steps/welcome_screen/locale.png similarity index 100% rename from wiki/src/doc/first_steps/startup_options/locale.png rename to wiki/src/doc/first_steps/welcome_screen/locale.png diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.ar.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.ar.po similarity index 99% rename from wiki/src/doc/first_steps/startup_options/mac_spoofing.ar.po rename to wiki/src/doc/first_steps/welcome_screen/mac_spoofing.ar.po index a515a51be98d7441199e9df94733fcad7ff39757..6b8395bb810db0d511c37715e681ce6dbe2a4e07 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.ar.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.ar.po @@ -207,7 +207,7 @@ msgstr "" #, no-wrap msgid "" "You can disable MAC address spoofing from [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"Greeter</span>|welcome_screen]]:\n" msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.ca.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.ca.po similarity index 99% rename from wiki/src/doc/first_steps/startup_options/mac_spoofing.ca.po rename to wiki/src/doc/first_steps/welcome_screen/mac_spoofing.ca.po index a515a51be98d7441199e9df94733fcad7ff39757..6b8395bb810db0d511c37715e681ce6dbe2a4e07 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.ca.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.ca.po @@ -207,7 +207,7 @@ msgstr "" #, no-wrap msgid "" "You can disable MAC address spoofing from [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"Greeter</span>|welcome_screen]]:\n" msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.de.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.de.po similarity index 94% rename from wiki/src/doc/first_steps/startup_options/mac_spoofing.de.po rename to wiki/src/doc/first_steps/welcome_screen/mac_spoofing.de.po index fa6c880d34c9bfc00b191f920c94909af34486d8..6a2653ca12bb85c8462e61c621ebfcdcc4df09d0 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.de.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-05-09 16:20+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-10-23 09:05+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" @@ -288,30 +288,39 @@ msgid "Disable MAC address spoofing\n" msgstr "Verschleiern der MAC-Adresse deaktivieren\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "You can disable MAC address spoofing from [[<span class=\"application" +#| "\">Tails\n" +#| "Greeter</span>|welcome_screen]]:\n" msgid "" -"You can disable MAC address spoofing from [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"You can disable MAC address spoofing from the [[Welcome Screen|" +"welcome_screen]]:" msgstr "" -"Sie können das Verschleiern Ihrer MAC-Adresse in [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]] deaktivieren:\n" +"Sie können das Verschleiern Ihrer MAC-Adresse in [[<span class=\"application" +"\">Tails\n" +"Greeter</span>|welcome_screen]] deaktivieren:\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When <span class=\"application\">Tails Greeter</span> appears, click on " +#| "the <span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" +#| "\"symbolic\" link=\"no\"]]</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" "Sobald der <span class=\"application\">Tails Greeter</span> erscheint, " "klicken Sie auf die Schaltfläche <span class=\"button\">[[!img lib/list-add." "png alt=\"Erweitern\" class=\"symbolic\" link=\"no\"]]</span>." #. type: Plain text -#, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" -msgstr "" -" [[!img additional.png link=\"no\" alt=\"Zusätzliche Optionen des Tails " -"Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" +msgstr " [[!img additional.png link=\"no\" alt=\"Zusätzliche Optionen des Tails Greeter\"]]\n" #. type: Bullet: '2. ' msgid "" diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.es.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.es.po similarity index 93% rename from wiki/src/doc/first_steps/startup_options/mac_spoofing.es.po rename to wiki/src/doc/first_steps/welcome_screen/mac_spoofing.es.po index 46647651755b571647ae1bab0d29a44b43df0a46..f338c0646154a095a7e7bd9de9a4b99cee6845bd 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.es.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-01-30 12:41+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-08-24 06:21+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -277,30 +277,39 @@ msgid "Disable MAC address spoofing\n" msgstr "Deshabilitar el spoofing de direcciones MAC\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "You can disable MAC address spoofing from [[<span class=\"application" +#| "\">Tails\n" +#| "Greeter</span>|welcome_screen]]:\n" msgid "" -"You can disable MAC address spoofing from [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"You can disable MAC address spoofing from the [[Welcome Screen|" +"welcome_screen]]:" msgstr "" -"Puedes deshabilitar el spoofing de direcciones MAC desde [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"Puedes deshabilitar el spoofing de direcciones MAC desde [[<span class=" +"\"application\">Tails\n" +"Greeter</span>|welcome_screen]]:\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When <span class=\"application\">Tails Greeter</span> appears, click on " +#| "the <span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" +#| "\"symbolic\" link=\"no\"]]</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" "Cuando aparezca el <span class=\"application\">Tails Greeter</span>, haz " -"click en el botón <span class=\"button\">[[!img lib/list-add.png alt=\"" -"Expandir\" class=\"symbolic\" link=\"no\"]]</span>." +"click en el botón <span class=\"button\">[[!img lib/list-add.png alt=" +"\"Expandir\" class=\"symbolic\" link=\"no\"]]</span>." #. type: Plain text -#, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" -msgstr "" -" [[!img additional.png link=\"no\" alt=\"Configuraciones adicionales de " -"Tails Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" +msgstr " [[!img additional.png link=\"no\" alt=\"Configuraciones adicionales de Tails Greeter\"]]\n" #. type: Bullet: '2. ' msgid "" diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.fa.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.fa.po similarity index 90% rename from wiki/src/doc/first_steps/startup_options/mac_spoofing.fa.po rename to wiki/src/doc/first_steps/welcome_screen/mac_spoofing.fa.po index 97b9d8f2c38cd01bf97166a631a8ea5b9d427246..366c1733cb002a398f303c39cf0a11a0cbd603e3 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.fa.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-01-29 14:25+0100\n" +"POT-Creation-Date: 2020-03-25 05:24+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" @@ -203,27 +203,31 @@ msgid "Disable MAC address spoofing\n" msgstr "" #. type: Plain text -#, no-wrap msgid "" -"You can disable MAC address spoofing from [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"You can disable MAC address spoofing from the [[Welcome Screen|" +"welcome_screen]]:" msgstr "" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When <span class=\"application\">Tails Greeter</span> appears, click on " +#| "the <span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" +#| "\"symbolic\" link=\"no\"]]</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" -"وقتی <span class=\"application\">خوشامدگوی تیلز</span> بالا میآید، در پنجرهٔ" -" <span class=\"guilabel\">به تیلز خوش آمدید</span> روی دکمهٔ <span class=\"" -"button\">بله</span> کلیک کنید. سپس روی\n" -"<span class=\"button\">[[!img lib/list-add.png alt=\"ادامه\" class=\"" -"symbolic\" link=\"no\"]]</span> کلیک کنید." +"وقتی <span class=\"application\">خوشامدگوی تیلز</span> بالا میآید، در پنجرهٔ " +"<span class=\"guilabel\">به تیلز خوش آمدید</span> روی دکمهٔ <span class=" +"\"button\">بله</span> کلیک کنید. سپس روی\n" +"<span class=\"button\">[[!img lib/list-add.png alt=\"ادامه\" class=\"symbolic" +"\" link=\"no\"]]</span> کلیک کنید." #. type: Plain text #, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.fr.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.fr.po similarity index 95% rename from wiki/src/doc/first_steps/startup_options/mac_spoofing.fr.po rename to wiki/src/doc/first_steps/welcome_screen/mac_spoofing.fr.po index 3499e22f2909aa35fd9cf49c703e5cf72b7a10b0..383234f5b203f789f31dcecf26dfe4acc66a1aab 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.fr.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-01-29 14:25+0100\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2018-01-24 18:01+0000\n" "Last-Translator: \n" "Language-Team: \n" @@ -278,27 +278,38 @@ msgid "Disable MAC address spoofing\n" msgstr "Désactiver l'usurpation d'adresse MAC\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "You can disable MAC address spoofing from [[<span class=\"application" +#| "\">Tails\n" +#| "Greeter</span>|welcome_screen]]:\n" msgid "" -"You can disable MAC address spoofing from [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"You can disable MAC address spoofing from the [[Welcome Screen|" +"welcome_screen]]:" msgstr "" -"Vous pouvez désactiver l'usurpation d'adresse MAC depuis le [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]] :\n" +"Vous pouvez désactiver l'usurpation d'adresse MAC depuis le [[<span class=" +"\"application\">Tails\n" +"Greeter</span>|welcome_screen]] :\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When <span class=\"application\">Tails Greeter</span> appears, click on " +#| "the <span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" +#| "\"symbolic\" link=\"no\"]]</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" "Lorsque <span class=\"application\">Tails Greeter</span> apparaît, cliquez " "sur le bouton <span class=\"button\">[[!img lib/list-add.png alt=\"Étendre\" " "class=\"symbolic\" link=\"no\"]]</span>." #. type: Plain text -#, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr " [[!img additional.png link=\"no\" alt=\"Paramètres additionnels du Tails Greeter\"]]\n" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.id.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.id.po similarity index 99% rename from wiki/src/doc/first_steps/startup_options/mac_spoofing.id.po rename to wiki/src/doc/first_steps/welcome_screen/mac_spoofing.id.po index 358ad7dd2d4e1f01dd08eeeec5e3264affd32f6a..d6251283c4aa3ed95311fe32e88c0b1c63c8cbbf 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.id.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.id.po @@ -209,7 +209,7 @@ msgstr "" #, no-wrap msgid "" "You can disable MAC address spoofing from [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"Greeter</span>|welcome_screen]]:\n" msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.it.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.it.po similarity index 95% rename from wiki/src/doc/first_steps/startup_options/mac_spoofing.it.po rename to wiki/src/doc/first_steps/welcome_screen/mac_spoofing.it.po index 2123c118435107e1b188b9a1aece6aedb0a2627c..c941da6f0dd925939d363d8edce56d99880c369d 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.it.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Team italiano\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-01-29 14:25+0100\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2016-04-03 19:29-0000\n" "Last-Translator: Zeyev <tbd@tbd.com>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -278,19 +278,29 @@ msgid "Disable MAC address spoofing\n" msgstr "Disattivare lo spoofing dell'indirizzo MAC\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "You can disable MAC address spoofing from [[<span class=\"application" +#| "\">Tails\n" +#| "Greeter</span>|welcome_screen]]:\n" msgid "" -"You can disable MAC address spoofing from [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"You can disable MAC address spoofing from the [[Welcome Screen|" +"welcome_screen]]:" msgstr "" -"Puoi disattivare lo spoofing dell'indirizzo MAC tramite [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"Puoi disattivare lo spoofing dell'indirizzo MAC tramite [[<span class=" +"\"application\">Tails\n" +"Greeter</span>|welcome_screen]]:\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When <span class=\"application\">Tails Greeter</span> appears, click on " +#| "the <span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" +#| "\"symbolic\" link=\"no\"]]</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" "Quando appare <span class=\"application\">Tails Greeter</span>, cliccate " "sul\n" @@ -300,7 +310,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.mdwn b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.mdwn similarity index 95% rename from wiki/src/doc/first_steps/startup_options/mac_spoofing.mdwn rename to wiki/src/doc/first_steps/welcome_screen/mac_spoofing.mdwn index 327e584a4030aaf4a522f1b634b02347ab918939..ce8cd7e16e59bc415ac4354a95e8d5fb3df4d0d6 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.mdwn +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.mdwn @@ -105,13 +105,13 @@ Here are a few examples: Disable MAC address spoofing ============================ -You can disable MAC address spoofing from [[<span class="application">Tails -Greeter</span>|startup_options#tails_greeter]]: +You can disable MAC address spoofing from the [[Welcome +Screen|welcome_screen]]: -1. When <span class="application">Tails Greeter</span> appears, click on the +1. When the Welcome Screen appears, click on the <span class="button">[[!img lib/list-add.png alt="Expand" class="symbolic" link="no"]]</span> button. - [[!img additional.png link="no" alt="Additional settings of Tails Greeter"]] + [[!img additional.png link="no" alt="Additional settings of the Welcome Screen"]] 2. When the <span class="guilabel">Additional Settings</span> dialog appears, click on <span class="guilabel">MAC Address Spoofing</span>. diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.pl.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.pl.po similarity index 99% rename from wiki/src/doc/first_steps/startup_options/mac_spoofing.pl.po rename to wiki/src/doc/first_steps/welcome_screen/mac_spoofing.pl.po index a515a51be98d7441199e9df94733fcad7ff39757..6b8395bb810db0d511c37715e681ce6dbe2a4e07 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.pl.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.pl.po @@ -207,7 +207,7 @@ msgstr "" #, no-wrap msgid "" "You can disable MAC address spoofing from [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"Greeter</span>|welcome_screen]]:\n" msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.pt.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.pt.po similarity index 96% rename from wiki/src/doc/first_steps/startup_options/mac_spoofing.pt.po rename to wiki/src/doc/first_steps/welcome_screen/mac_spoofing.pt.po index 3945d6460c4b0a35ebf1b574e7daa423e85c77ce..239f817bcf0f83b0f276749329927bb278ab698a 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.pt.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-01-29 14:25+0100\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2014-06-21 19:20-0300\n" "Last-Translator: Tails Developers <amnesia@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -274,13 +274,18 @@ msgid "Disable MAC address spoofing\n" msgstr "Desabilitar a alteração de endereço MAC\n" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "You can disable MAC address spoofing from [[<span class=\"application" +#| "\">Tails\n" +#| "Greeter</span>|welcome_screen]]:\n" msgid "" -"You can disable MAC address spoofing from [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"You can disable MAC address spoofing from the [[Welcome Screen|" +"welcome_screen]]:" msgstr "" -"Você pode desabilitar a alteração de endereço MAC a partir to [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"Você pode desabilitar a alteração de endereço MAC a partir to [[<span class=" +"\"application\">Tails\n" +"Greeter</span>|welcome_screen]]:\n" #. type: Bullet: '1. ' #, fuzzy @@ -290,9 +295,9 @@ msgstr "" #| "<span class=\"button\">Yes</span> button. Then click on the <span class=" #| "\"button\">Forward</span> button." msgid "" -"When <span class=\"application\">Tails Greeter</span> appears, click on the " -"<span class=\"button\">[[!img lib/list-add.png alt=\"Expand\" class=" -"\"symbolic\" link=\"no\"]]</span> button." +"When the Welcome Screen appears, click on the <span class=\"button\">[[!img " +"lib/list-add.png alt=\"Expand\" class=\"symbolic\" link=\"no\"]]</span> " +"button." msgstr "" "Quando o <span class=\"application\">Tails Greeter</span> aparecer, na " "janela <span class=\"guilabel\">Bem vindo/a ao Tails</span>, clique no botão " @@ -301,7 +306,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of Tails Greeter\"]]\n" +msgid " [[!img additional.png link=\"no\" alt=\"Additional settings of the Welcome Screen\"]]\n" msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.ru.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.ru.po similarity index 99% rename from wiki/src/doc/first_steps/startup_options/mac_spoofing.ru.po rename to wiki/src/doc/first_steps/welcome_screen/mac_spoofing.ru.po index 04820148597654f3d46d1b7c54397acbf238e9ac..24d3e37d6363f0561504e6afff385f474b8727d0 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.ru.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.ru.po @@ -207,7 +207,7 @@ msgstr "" #, no-wrap msgid "" "You can disable MAC address spoofing from [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"Greeter</span>|welcome_screen]]:\n" msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.sr_Latn.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.sr_Latn.po similarity index 99% rename from wiki/src/doc/first_steps/startup_options/mac_spoofing.sr_Latn.po rename to wiki/src/doc/first_steps/welcome_screen/mac_spoofing.sr_Latn.po index e21b0448b6593fab047b5a7c1781b3ee1663f881..fb3b0a76171ec1618647cde5995a7d6cddedcd05 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.sr_Latn.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.sr_Latn.po @@ -213,7 +213,7 @@ msgstr "" msgid "" "You can disable MAC address spoofing from [[<span " "class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"Greeter</span>|welcome_screen]]:\n" msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.tr.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.tr.po similarity index 99% rename from wiki/src/doc/first_steps/startup_options/mac_spoofing.tr.po rename to wiki/src/doc/first_steps/welcome_screen/mac_spoofing.tr.po index a515a51be98d7441199e9df94733fcad7ff39757..6b8395bb810db0d511c37715e681ce6dbe2a4e07 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.tr.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.tr.po @@ -207,7 +207,7 @@ msgstr "" #, no-wrap msgid "" "You can disable MAC address spoofing from [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"Greeter</span>|welcome_screen]]:\n" msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.zh.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.zh.po similarity index 99% rename from wiki/src/doc/first_steps/startup_options/mac_spoofing.zh.po rename to wiki/src/doc/first_steps/welcome_screen/mac_spoofing.zh.po index a515a51be98d7441199e9df94733fcad7ff39757..6b8395bb810db0d511c37715e681ce6dbe2a4e07 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.zh.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.zh.po @@ -207,7 +207,7 @@ msgstr "" #, no-wrap msgid "" "You can disable MAC address spoofing from [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"Greeter</span>|welcome_screen]]:\n" msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.zh_TW.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.zh_TW.po similarity index 99% rename from wiki/src/doc/first_steps/startup_options/mac_spoofing.zh_TW.po rename to wiki/src/doc/first_steps/welcome_screen/mac_spoofing.zh_TW.po index c5f50d58f1359805553519787813b14d5bcfd326..6e83083096e62f76d79c1035ea1e4777a82dee6c 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.zh_TW.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.zh_TW.po @@ -245,10 +245,10 @@ msgstr "取消MAC-地址欺騙\n" msgid "" "You can disable MAC address spoofing from [[<span " "class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]]:\n" +"Greeter</span>|welcome_screen]]:\n" msgstr "" "要取消MAC-地址欺騙功能,可在 [[<span class=\"application\">Tails\n" -"Greeter</span>|startup_options#tails_greeter]] 底下進行:\n" +"Greeter</span>|welcome_screen]] 底下進行:\n" #. type: Bullet: '1. ' msgid "" diff --git a/wiki/src/doc/first_steps/startup_options/password-prompt.png b/wiki/src/doc/first_steps/welcome_screen/password-prompt.png similarity index 100% rename from wiki/src/doc/first_steps/startup_options/password-prompt.png rename to wiki/src/doc/first_steps/welcome_screen/password-prompt.png diff --git a/wiki/src/doc/first_steps/startup_options/persistence.png b/wiki/src/doc/first_steps/welcome_screen/persistence.png similarity index 100% rename from wiki/src/doc/first_steps/startup_options/persistence.png rename to wiki/src/doc/first_steps/welcome_screen/persistence.png diff --git a/wiki/src/doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png b/wiki/src/doc/first_steps/welcome_screen/welcome-screen.png similarity index 100% rename from wiki/src/doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png rename to wiki/src/doc/first_steps/welcome_screen/welcome-screen.png diff --git a/wiki/src/doc/reset/linux.ar.po b/wiki/src/doc/reset/linux.ar.po index 68b739b48d8b2ad6e1ee475052fa12a52c936775..6a44a8704a36ff3fcd937237ff124be050e9ae7b 100644 --- a/wiki/src/doc/reset/linux.ar.po +++ b/wiki/src/doc/reset/linux.ar.po @@ -165,7 +165,7 @@ msgid "" "When starting Tails, add the <span class=\"command\">toram</span> boot " "option in the <span class=\"application\">Boot Loader Menu</span>. For " "detailed instructions, see the documentation on [[using the <span class=" -"\"application\">Boot Loader Menu</span>|startup_options#boot_loader_menu]]." +"\"application\">Boot Loader Menu</span>|doc/advanced_topics/boot_options]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/reset/linux.ca.po b/wiki/src/doc/reset/linux.ca.po index cdbe7d3106ed1c8f6ab16ef6e5bdcd0bbeee622b..b6ef6e5d758df8db21b765ad24c290e727bb0c1c 100644 --- a/wiki/src/doc/reset/linux.ca.po +++ b/wiki/src/doc/reset/linux.ca.po @@ -163,7 +163,7 @@ msgid "" "When starting Tails, add the <span class=\"command\">toram</span> boot " "option in the <span class=\"application\">Boot Loader Menu</span>. For " "detailed instructions, see the documentation on [[using the <span class=" -"\"application\">Boot Loader Menu</span>|startup_options#boot_loader_menu]]." +"\"application\">Boot Loader Menu</span>|doc/advanced_topics/boot_options]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/reset/linux.de.po b/wiki/src/doc/reset/linux.de.po index 8ac5b3424e98976163531b871aa0c689d66b982e..08fb6b21974a1d55a3f53e9c1c0aad6b4cf877fd 100644 --- a/wiki/src/doc/reset/linux.de.po +++ b/wiki/src/doc/reset/linux.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2018-05-12 15:11+0200\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2018-05-13 20:31+0200\n" "Last-Translator: Tails translators\n" "Language-Team: Tails localization <tails-l10n@boum.org>\n" @@ -190,17 +190,24 @@ msgstr "" "Stick mit Tails direkt zurücksetzen, während Tails läuft." #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When starting Tails, add the <span class=\"command\">toram</span> boot " +#| "option in the <span class=\"application\">Boot Loader Menu</span>. For " +#| "detailed instructions, see the documentation on [[using the <span class=" +#| "\"application\">Boot Loader Menu</span>|doc/advanced_topics/" +#| "boot_options]]." msgid "" "When starting Tails, add the <span class=\"command\">toram</span> boot " -"option in the <span class=\"application\">Boot Loader Menu</span>. For " -"detailed instructions, see the documentation on [[using the <span class=" -"\"application\">Boot Loader Menu</span>|startup_options#boot_loader_menu]]." +"option in the <span class=\"application\">Boot Loader</span>. For detailed " +"instructions, see the documentation on [[using the <span class=\"application" +"\">Boot Loader</span>|advanced_topics/boot_options]]." msgstr "" "Fügen Sie beim Start von Tails die <span class=\"command\">toram</span> " "Bootoption im <span class=\"application\">Bootmenü</span> hinzu. Für " "detaillierte Anweisungen lesen Sie bitte die Dokumentation\n" -"zum [[<span class=\"application\">Bootmenü</span>|" -"startup_options#boot_loader_menu]]." +"zum [[<span class=\"application\">Bootmenü</span>|welcome_screen#boot-" +"loader]]." #. type: Bullet: '2. ' msgid "" diff --git a/wiki/src/doc/reset/linux.es.po b/wiki/src/doc/reset/linux.es.po index 32c102eff2f8922985343f81000a896753c87f78..19fe8b43deac8785e7567cbabc653a5f9d0d62bf 100644 --- a/wiki/src/doc/reset/linux.es.po +++ b/wiki/src/doc/reset/linux.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-01-30 12:41+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-11-19 03:36+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -105,10 +105,8 @@ msgid "" " A new device appears in the list of storage devices. This new device\n" " corresponds to the USB stick that you plugged in. Click on it.\n" msgstr "" -" Un nuevo dispositivo aparecerá en la lista de dispositivos de " -"almacenamiento. Este nuevo\n" -" dispositivo corresponde al dispositivo USB que has enchufado. Haz click " -"en él.\n" +" Un nuevo dispositivo aparecerá en la lista de dispositivos de almacenamiento. Este nuevo\n" +" dispositivo corresponde al dispositivo USB que has enchufado. Haz click en él.\n" #. type: Bullet: '1. ' msgid "" @@ -172,9 +170,9 @@ msgid "" "<span class=\"guimenu\">[[!img lib/media-eject.png alt=\"Eject\" " "class=symbolic link=no]]</span> button in the titlebar." msgstr "" -"Para asegurarte de que se escriben todos los cambios, haz clic en el botón <" -"span class=\"guimenu\">[[!img lib/media-eject.png alt=\"Eject\" class=" -"symbolic link=no]]</span> de la barra de título." +"Para asegurarte de que se escriben todos los cambios, haz clic en el botón " +"<span class=\"guimenu\">[[!img lib/media-eject.png alt=\"Eject\" " +"class=symbolic link=no]]</span> de la barra de título." #. type: Title = #, no-wrap @@ -190,17 +188,24 @@ msgstr "" "directamente desde la misma memoria USB mientras lo usas." #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When starting Tails, add the <span class=\"command\">toram</span> boot " +#| "option in the <span class=\"application\">Boot Loader Menu</span>. For " +#| "detailed instructions, see the documentation on [[using the <span class=" +#| "\"application\">Boot Loader Menu</span>|doc/advanced_topics/" +#| "boot_options]]." msgid "" "When starting Tails, add the <span class=\"command\">toram</span> boot " -"option in the <span class=\"application\">Boot Loader Menu</span>. For " -"detailed instructions, see the documentation on [[using the <span class=" -"\"application\">Boot Loader Menu</span>|startup_options#boot_loader_menu]]." +"option in the <span class=\"application\">Boot Loader</span>. For detailed " +"instructions, see the documentation on [[using the <span class=\"application" +"\">Boot Loader</span>|advanced_topics/boot_options]]." msgstr "" "Cuando inicies Tails, añade la opción de arranque <span class=\"command" "\">toram</span> en el <span class=\"application\">Menú de Gestión de " "Arranque</span>. Para instrucciones detalladas, lee la documentación sobre " "como [[usar el <span class=\"application\">Menú de Gestión de Arranque</" -"span>|startup_options#boot_loader_menu]]." +"span>|doc/advanced_topics/boot_options]]." #. type: Bullet: '2. ' msgid "" @@ -208,8 +213,8 @@ msgid "" "stick using <span class=\"application\">GNOME Disks</span>|linux#disks]]." msgstr "" "Si Tails arranca como siempre, sigue las instrucciones para [[resetear un " -"dispositivo USB usando <span class=\"application\">GNOME " -"Disks</span>|linux#disks]]." +"dispositivo USB usando <span class=\"application\">GNOME Disks</span>|" +"linux#disks]]." #. type: Plain text #, no-wrap @@ -218,9 +223,6 @@ msgid "" " enough memory for this operation mode. Try with another computer, or find\n" " another Linux system, such as another Tails USB stick, to do the reset from.\n" msgstr "" -" **Si el sistema no arranca** eso significa que el ordenador no tiene " -"suficiente\n" -" memoria para este modo de operación. Intenta con otro ordenador, o " -"encuentra\n" -" otro sistema Linux para hacer el reset, por ejemplo otra memoria USB con " -"Tails.\n" +" **Si el sistema no arranca** eso significa que el ordenador no tiene suficiente\n" +" memoria para este modo de operación. Intenta con otro ordenador, o encuentra\n" +" otro sistema Linux para hacer el reset, por ejemplo otra memoria USB con Tails.\n" diff --git a/wiki/src/doc/reset/linux.fa.po b/wiki/src/doc/reset/linux.fa.po index d8547a1f7e04d9dc0490143b041b5d93d28bcbf5..c22b50c3f024277c65964b7920543438246f7fc8 100644 --- a/wiki/src/doc/reset/linux.fa.po +++ b/wiki/src/doc/reset/linux.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-31 21:51+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2015-10-14 19:35+0000\n" "Last-Translator: sprint5 <translation5@451f.org>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" @@ -27,9 +27,7 @@ msgstr "[[!meta title=\"ایجاد دوبارهٔ یک درایو یواسب #. type: Plain text #, no-wrap msgid "[[!inline pages=\"doc/reset.intro\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"doc/reset.intro.fa\" raw=\"yes\" sort=\"age\"]]" -"\n" +msgstr "[[!inline pages=\"doc/reset.intro.fa\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -220,17 +218,17 @@ msgstr "" #| "When starting Tails, add the <span class=\"command\">toram</span> boot " #| "option in the <span class=\"application\">boot menu</span>. For detailed " #| "instructions, see the documentation on [[using the <span class=" -#| "\"application\">boot menu</span>|startup_options#boot_menu]]." +#| "\"application\">boot menu</span>|welcome_screen#boot_menu]]." msgid "" "When starting Tails, add the <span class=\"command\">toram</span> boot " -"option in the <span class=\"application\">Boot Loader Menu</span>. For " -"detailed instructions, see the documentation on [[using the <span class=" -"\"application\">Boot Loader Menu</span>|startup_options#boot_loader_menu]]." +"option in the <span class=\"application\">Boot Loader</span>. For detailed " +"instructions, see the documentation on [[using the <span class=\"application" +"\">Boot Loader</span>|advanced_topics/boot_options]]." msgstr "" "هنگام راهاندازی تیلز گزینهٔ بوت <span class=\"command\">toram</span> را در " "<span class=\"application\">فهرست بوت</span> اضافه کنید. برای خواندن راهنمای " "مشروح به [[استفاده از<span class=\"application\">فهرست بوت</span>|" -"startup_options#boot_menu]] مراجعه کنید." +"welcome_screen#boot_menu]] مراجعه کنید." #. type: Bullet: '2. ' #, fuzzy diff --git a/wiki/src/doc/reset/linux.fr.po b/wiki/src/doc/reset/linux.fr.po index 318fd0abc1158865df038c18fbec4de34851ed57..70bbf135a0b737158d8357d6a4a76441f75a0cab 100644 --- a/wiki/src/doc/reset/linux.fr.po +++ b/wiki/src/doc/reset/linux.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2017-07-31 21:51+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2017-08-28 17:01+0000\n" "Last-Translator: Tails translators <tails@boum.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -192,17 +192,24 @@ msgstr "" "d'exécution." #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When starting Tails, add the <span class=\"command\">toram</span> boot " +#| "option in the <span class=\"application\">Boot Loader Menu</span>. For " +#| "detailed instructions, see the documentation on [[using the <span class=" +#| "\"application\">Boot Loader Menu</span>|doc/advanced_topics/" +#| "boot_options]]." msgid "" "When starting Tails, add the <span class=\"command\">toram</span> boot " -"option in the <span class=\"application\">Boot Loader Menu</span>. For " -"detailed instructions, see the documentation on [[using the <span class=" -"\"application\">Boot Loader Menu</span>|startup_options#boot_loader_menu]]." +"option in the <span class=\"application\">Boot Loader</span>. For detailed " +"instructions, see the documentation on [[using the <span class=\"application" +"\">Boot Loader</span>|advanced_topics/boot_options]]." msgstr "" "Au démarrage de Tails, ajoutez <span class=\"command\">toram</span> comme " "option de démarrage dans le <span class=\"application\">menu du chargeur " "d’amorçage</span>. Pour des instructions détaillées, voir la documentation " "sur [[l'utilisation du <span class=\"application\">menu du chargeur " -"d’amorçage</span>|startup_options#boot_loader_menu]]." +"d’amorçage</span>|doc/advanced_topics/boot_options]]." #. type: Bullet: '2. ' msgid "" diff --git a/wiki/src/doc/reset/linux.id.po b/wiki/src/doc/reset/linux.id.po index f17011afc0ec71378029f4ae74deba1b6537c0c6..f32acb03230ce63d3612efe304a79285d7da0302 100644 --- a/wiki/src/doc/reset/linux.id.po +++ b/wiki/src/doc/reset/linux.id.po @@ -161,7 +161,7 @@ msgid "" "When starting Tails, add the <span class=\"command\">toram</span> boot " "option in the <span class=\"application\">Boot Loader Menu</span>. For " "detailed instructions, see the documentation on [[using the <span class=" -"\"application\">Boot Loader Menu</span>|startup_options#boot_loader_menu]]." +"\"application\">Boot Loader Menu</span>|doc/advanced_topics/boot_options]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/reset/linux.it.po b/wiki/src/doc/reset/linux.it.po index 653154a737a36ffdbdc4b6037d7674fb1df908b4..3313a764198862edda401ff3c14cc2d906f5d4c9 100644 --- a/wiki/src/doc/reset/linux.it.po +++ b/wiki/src/doc/reset/linux.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Italian Tails translation\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2017-07-31 21:51+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-06-14 13:03+0000\n" "Last-Translator: anonymous <amnesia@boum.org>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -26,9 +26,7 @@ msgstr "[[!meta title=\"Formattare una chiavetta USB usando Linux\"]]\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"doc/reset.intro\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"doc/reset.intro.it\" raw=\"yes\" sort=\"age\"]]" -"\n" +msgstr "[[!inline pages=\"doc/reset.intro.it\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -186,9 +184,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " Then click on the <span class=\"button\">Format…</span> button.\n" -msgstr "" -" Per formattare il dispositivo, clicca su <span class=\"button\">" -"Formattare il Disco</span>.\n" +msgstr " Per formattare il dispositivo, clicca su <span class=\"button\">Formattare il Disco</span>.\n" #. type: Bullet: '1. ' msgid "" @@ -238,17 +234,17 @@ msgstr "" #| "When starting Tails, add the <span class=\"command\">toram</span> boot " #| "option in the <span class=\"application\">boot menu</span>. For detailed " #| "instructions, see the documentation on [[using the <span class=" -#| "\"application\">boot menu</span>|startup_options#boot_menu]]." +#| "\"application\">boot menu</span>|welcome_screen#boot_menu]]." msgid "" "When starting Tails, add the <span class=\"command\">toram</span> boot " -"option in the <span class=\"application\">Boot Loader Menu</span>. For " -"detailed instructions, see the documentation on [[using the <span class=" -"\"application\">Boot Loader Menu</span>|startup_options#boot_loader_menu]]." +"option in the <span class=\"application\">Boot Loader</span>. For detailed " +"instructions, see the documentation on [[using the <span class=\"application" +"\">Boot Loader</span>|advanced_topics/boot_options]]." msgstr "" "Quando Tails è partito, aggiungi l'opzione di avvio <span class=\"command" "\">toram</span> nel<span class=\"application\">menù di avvio</span>. Per " "istruzioni dettagliate, guarda la documentazione su [[usare <span class=" -"\"application\">menù di avvio</span>|startup_options#boot_menu]]." +"\"application\">menù di avvio</span>|welcome_screen#boot_menu]]." #. type: Bullet: '2. ' #, fuzzy diff --git a/wiki/src/doc/reset/linux.mdwn b/wiki/src/doc/reset/linux.mdwn index fda63b0f89f754c982cf569e8431cab214fb76b5..e0888ad6c1e3c6172223b3a539561db8d3c9b76c 100644 --- a/wiki/src/doc/reset/linux.mdwn +++ b/wiki/src/doc/reset/linux.mdwn @@ -66,9 +66,9 @@ If Tails is your only Linux system, you can generally reset a Tails USB stick directly from that USB stick while running Tails. 1. When starting Tails, add the <span class="command">toram</span> boot - option in the <span class="application">Boot Loader Menu</span>. For detailed + option in the <span class="application">Boot Loader</span>. For detailed instructions, see the documentation on [[using the <span - class="application">Boot Loader Menu</span>|startup_options#boot_loader_menu]]. + class="application">Boot Loader</span>|advanced_topics/boot_options]]. 2. If Tails starts as usual, follow the instructions for [[resetting a USB stick using <span class="application">GNOME Disks</span>|linux#disks]]. diff --git a/wiki/src/doc/reset/linux.pl.po b/wiki/src/doc/reset/linux.pl.po index 9cd84d8b3c4deb391eae327112f3dced40dfe522..e2d6e632d9eaf92250ce1456849008daba42de4b 100644 --- a/wiki/src/doc/reset/linux.pl.po +++ b/wiki/src/doc/reset/linux.pl.po @@ -164,7 +164,7 @@ msgid "" "When starting Tails, add the <span class=\"command\">toram</span> boot " "option in the <span class=\"application\">Boot Loader Menu</span>. For " "detailed instructions, see the documentation on [[using the <span class=" -"\"application\">Boot Loader Menu</span>|startup_options#boot_loader_menu]]." +"\"application\">Boot Loader Menu</span>|doc/advanced_topics/boot_options]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/reset/linux.pt.po b/wiki/src/doc/reset/linux.pt.po index 3611b14cb65cc628f0608397d56ac1af963fae91..e56f4d49fa199dd420837f1778bdf9703b9a6328 100644 --- a/wiki/src/doc/reset/linux.pt.po +++ b/wiki/src/doc/reset/linux.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-31 21:51+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2018-02-19 11:01+0000\n" "Last-Translator: Tails translators <amnesia@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -222,17 +222,17 @@ msgstr "" #| "When starting Tails, add the <span class=\"command\">toram</span> boot " #| "option in the <span class=\"application\">boot menu</span>. For detailed " #| "instructions, see the documentation on [[using the <span class=" -#| "\"application\">boot menu</span>|startup_options#boot_menu]]." +#| "\"application\">boot menu</span>|welcome_screen#boot_menu]]." msgid "" "When starting Tails, add the <span class=\"command\">toram</span> boot " -"option in the <span class=\"application\">Boot Loader Menu</span>. For " -"detailed instructions, see the documentation on [[using the <span class=" -"\"application\">Boot Loader Menu</span>|startup_options#boot_loader_menu]]." +"option in the <span class=\"application\">Boot Loader</span>. For detailed " +"instructions, see the documentation on [[using the <span class=\"application" +"\">Boot Loader</span>|advanced_topics/boot_options]]." msgstr "" "Quando iniciar o Tails, adicione a opção de boot <span class=\"command" "\">toram</span> no <span class=\"application\">meno de boot</span>. Para " "instruções detalhadas, veja a documentação sobre [[como usar o <span class=" -"\"application\">menu de boot</span>|startup_options#boot_menu]]." +"\"application\">menu de boot</span>|welcome_screen#boot_menu]]." #. type: Bullet: '2. ' #, fuzzy diff --git a/wiki/src/doc/reset/linux.ru.po b/wiki/src/doc/reset/linux.ru.po index e38e6cabb9fb0cb290ffae17f3d9884757167cce..0a34fa6522c07f22b3ee9114125a205ed3d3ffae 100644 --- a/wiki/src/doc/reset/linux.ru.po +++ b/wiki/src/doc/reset/linux.ru.po @@ -164,7 +164,7 @@ msgid "" "When starting Tails, add the <span class=\"command\">toram</span> boot " "option in the <span class=\"application\">Boot Loader Menu</span>. For " "detailed instructions, see the documentation on [[using the <span class=" -"\"application\">Boot Loader Menu</span>|startup_options#boot_loader_menu]]." +"\"application\">Boot Loader Menu</span>|doc/advanced_topics/boot_options]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/reset/linux.sr_Latn.po b/wiki/src/doc/reset/linux.sr_Latn.po index 3ab2d5c21b51c47383ae928f126c5645509c9490..f2ce74991061a7d40e73bb502a1c2fdc86755e4f 100644 --- a/wiki/src/doc/reset/linux.sr_Latn.po +++ b/wiki/src/doc/reset/linux.sr_Latn.po @@ -167,7 +167,7 @@ msgid "" "option in the <span class=\"application\">Boot Loader Menu</span>. For " "detailed instructions, see the documentation on [[using the <span " "class=\"application\">Boot Loader " -"Menu</span>|startup_options#boot_loader_menu]]." +"Menu</span>|doc/advanced_topics/boot_options]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/reset/linux.tr.po b/wiki/src/doc/reset/linux.tr.po index feb251f99d31caef319461af6b0da2e4841bbd29..6ecc389b0a5e046ef72944ed3b7a4ea124845d88 100644 --- a/wiki/src/doc/reset/linux.tr.po +++ b/wiki/src/doc/reset/linux.tr.po @@ -163,7 +163,7 @@ msgid "" "When starting Tails, add the <span class=\"command\">toram</span> boot " "option in the <span class=\"application\">Boot Loader Menu</span>. For " "detailed instructions, see the documentation on [[using the <span class=" -"\"application\">Boot Loader Menu</span>|startup_options#boot_loader_menu]]." +"\"application\">Boot Loader Menu</span>|doc/advanced_topics/boot_options]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/reset/linux.zh.po b/wiki/src/doc/reset/linux.zh.po index ce04f147f48ef490dacd505aacee9038c6993c03..77e098008b9eaced7ddbb41f4af44de8d092a27f 100644 --- a/wiki/src/doc/reset/linux.zh.po +++ b/wiki/src/doc/reset/linux.zh.po @@ -165,7 +165,7 @@ msgid "" "When starting Tails, add the <span class=\"command\">toram</span> boot " "option in the <span class=\"application\">Boot Loader Menu</span>. For " "detailed instructions, see the documentation on [[using the <span class=" -"\"application\">Boot Loader Menu</span>|startup_options#boot_loader_menu]]." +"\"application\">Boot Loader Menu</span>|doc/advanced_topics/boot_options]]." msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/doc/reset/linux.zh_TW.po b/wiki/src/doc/reset/linux.zh_TW.po index f52e54ec84acd28da1b79ee8eb07f7fdadc5b72d..8f1fb6c3c134764356cd3cc319c2797e80fb7ee1 100644 --- a/wiki/src/doc/reset/linux.zh_TW.po +++ b/wiki/src/doc/reset/linux.zh_TW.po @@ -183,11 +183,11 @@ msgid "" "option in the <span class=\"application\">Boot Loader Menu</span>. For " "detailed instructions, see the documentation on [[using the <span " "class=\"application\">Boot Loader " -"Menu</span>|startup_options#boot_loader_menu]]." +"Menu</span>|doc/advanced_topics/boot_options]]." msgstr "" "在啟動Tails 時,新增 <span class=\"command\">toram</span> 開機選項在 <span class=\"" "application\">開機載入選單Boot Loader Menu</span>。 詳細的指示,請參見[[<span class=\"" -"application\">Boot Loader Menu</span>|startup_options#boot_menu]]文件。" +"application\">Boot Loader Menu</span>|welcome_screen#boot_menu]]文件。" #. type: Bullet: '2. ' msgid "" diff --git a/wiki/src/home/testing.de.po b/wiki/src/home/testing.de.po index db797a4ad7add2fa3cd8386042ac3485d2ee1a0f..a8f77fb389fe2b395e6d0802a0b39ba54ae82bae 100644 --- a/wiki/src/home/testing.de.po +++ b/wiki/src/home/testing.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-03-27 18:21+0100\n" +"POT-Creation-Date: 2020-04-07 17:21+0200\n" "PO-Revision-Date: 2019-05-24 09:49+0200\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -51,12 +51,6 @@ msgid "" "testers@boum.org</a>." msgstr "" -#. type: Content of: <ul><li> -msgid "" -"<a href=\"https://tails.boum.org/news/test_4.5-rc1/\">Call for testing: " -"4.5~rc1</a>" -msgstr "" - #. type: Content of: <div> msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.de\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home/testing.es.po b/wiki/src/home/testing.es.po index e6a429156b77b7e743ea078713b8c7a744530562..fec245a9d893cd6a63e85d0d2f77a21754f2dd75 100644 --- a/wiki/src/home/testing.es.po +++ b/wiki/src/home/testing.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-03-27 18:21+0100\n" +"POT-Creation-Date: 2020-04-07 17:21+0200\n" "PO-Revision-Date: 2019-11-16 12:11+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -54,12 +54,6 @@ msgid "" "testers@boum.org</a>." msgstr "" -#. type: Content of: <ul><li> -msgid "" -"<a href=\"https://tails.boum.org/news/test_4.5-rc1/\">Call for testing: " -"4.5~rc1</a>" -msgstr "" - #. type: Content of: <div> msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.es\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home/testing.fa.po b/wiki/src/home/testing.fa.po index 19cd7e5fdd5aa158e8a1d960f5c2e889a6d103b1..6079739adadf0b63f1622d247b481b4a6daa0460 100644 --- a/wiki/src/home/testing.fa.po +++ b/wiki/src/home/testing.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-03-27 18:21+0100\n" +"POT-Creation-Date: 2020-04-07 17:21+0200\n" "PO-Revision-Date: 2020-01-22 15:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -54,12 +54,6 @@ msgid "" "testers@boum.org</a>." msgstr "" -#. type: Content of: <ul><li> -msgid "" -"<a href=\"https://tails.boum.org/news/test_4.5-rc1/\">Call for testing: " -"4.5~rc1</a>" -msgstr "" - #. type: Content of: <div> msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.fa\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home/testing.fr.po b/wiki/src/home/testing.fr.po index b7a5b9a989bde0ff8aecc4ad2ba2d2b1118bfe32..a25676ee03bbda8914d441522e7c5460d06ec6e5 100644 --- a/wiki/src/home/testing.fr.po +++ b/wiki/src/home/testing.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-03-27 18:21+0100\n" +"POT-Creation-Date: 2020-04-07 17:21+0200\n" "PO-Revision-Date: 2020-03-29 07:36+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -61,17 +61,16 @@ msgstr "" "Signalez tout problème à <a href=\"mailto:tails-testers@boum.org\">tails-" "testers@boum.org</a>." -#. type: Content of: <ul><li> -msgid "" -"<a href=\"https://tails.boum.org/news/test_4.5-rc1/\">Call for testing: " -"4.5~rc1</a>" -msgstr "" -"<a href=\"https://tails.boum.org/news/test_4.5-rc1/\">Call for testing: " -"4.5~rc1</a>" - #. type: Content of: <div> msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.fr\" raw=\"yes\" sort=\"age\"]]" +#~ msgid "" +#~ "<a href=\"https://tails.boum.org/news/test_4.5-rc1/\">Call for testing: " +#~ "4.5~rc1</a>" +#~ msgstr "" +#~ "<a href=\"https://tails.boum.org/news/test_4.5-rc1/\">Call for testing: " +#~ "4.5~rc1</a>" + #~ msgid "[[!inline pages=\"home/tor_check\" raw=\"yes\" sort=\"age\"]]" #~ msgstr "[[!inline pages=\"home/tor_check.fr\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home/testing.html b/wiki/src/home/testing.html index b2378131b68beb5f83b8260cd2b15a6dafcc5756..13d8d5c4e8e53b21385df0967ee0e7848e5e116e 100644 --- a/wiki/src/home/testing.html +++ b/wiki/src/home/testing.html @@ -25,9 +25,9 @@ purposes.</li> <!-- Content specific to current calls for testing and alpha/beta/RCs starts here --> -<ul> -<li><a href="https://tails.boum.org/news/test_4.5-rc1/">Call for testing: 4.5~rc1</a></li> -</ul> +<!-- <ul> --> +<!-- <li><a href="https://tails.boum.org/news/test_4.5-rc1/">Call for testing: 4.5~rc1</a></li> --> +<!-- </ul> --> <!-- Content specific to current calls for testing and alpha/beta/RCs ends here --> diff --git a/wiki/src/home/testing.it.po b/wiki/src/home/testing.it.po index 715fe8e51d8bec7906107061f8ba4abc8727d3c5..c64f9ab91bfedbf134ee0c65c4519a6a9e1fb308 100644 --- a/wiki/src/home/testing.it.po +++ b/wiki/src/home/testing.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-03-27 18:21+0100\n" +"POT-Creation-Date: 2020-04-07 17:21+0200\n" "PO-Revision-Date: 2019-05-24 09:50+0200\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -51,12 +51,6 @@ msgid "" "testers@boum.org</a>." msgstr "" -#. type: Content of: <ul><li> -msgid "" -"<a href=\"https://tails.boum.org/news/test_4.5-rc1/\">Call for testing: " -"4.5~rc1</a>" -msgstr "" - #. type: Content of: <div> msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.it\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home/testing.pt.po b/wiki/src/home/testing.pt.po index ed5901883872dd623154890d90028ddfa9b3759d..85b64037766d8038053ec259e00a9533c5c19104 100644 --- a/wiki/src/home/testing.pt.po +++ b/wiki/src/home/testing.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-03-27 18:21+0100\n" +"POT-Creation-Date: 2020-04-07 17:21+0200\n" "PO-Revision-Date: 2019-12-22 21:03+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -54,12 +54,6 @@ msgid "" "testers@boum.org</a>." msgstr "" -#. type: Content of: <ul><li> -msgid "" -"<a href=\"https://tails.boum.org/news/test_4.5-rc1/\">Call for testing: " -"4.5~rc1</a>" -msgstr "" - #. type: Content of: <div> msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.pt\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/inc/stable_amd64_date.html b/wiki/src/inc/stable_amd64_date.html index 2266f8592f0fd51d9587bb666378a4f5429c8aa3..f2c8db624713c0a0d32e2f34bd16d4be5f8fe10b 100644 --- a/wiki/src/inc/stable_amd64_date.html +++ b/wiki/src/inc/stable_amd64_date.html @@ -1 +1 @@ -2020-03-22 \ No newline at end of file +2020-04-07 \ 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 5a7c81164dd9918ba0b574a66ea791d5fcabc8e9..f54cd4f022643989288612ef639f3e06c98f2839 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 Sun Mar 22 21:07:43 2020 UTC<br/> +gpg: Signature made Mon Apr 6 20:55:02 2020 UTC<br/> gpg: using RSA key FE029CB4AAD4788E1D7828E8A8B0F4E45B1B50E2<br/> gpg: Good signature from "Tails developers <tails@boum.org>" [full]<br/> gpg: aka "Tails developers (offline long-term identity key) <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 89b8618ab26abda315f1730cad20fc869884138d..9f7fd6d836075090c5eca0d4622b6aa03b260f6a 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-4.4.1.img.sig tails-amd64-4.4.1.img +TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-4.5.img.sig tails-amd64-4.5.img diff --git a/wiki/src/inc/stable_amd64_img_sig_url.html b/wiki/src/inc/stable_amd64_img_sig_url.html index ea5090515e451e5d8864328ce8f1977c60f2361a..de7abb2ee212d44e9a0e746c044ae206739148a6 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-4.4.1.img.sig +https://tails.boum.org/torrents/files/tails-amd64-4.5.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 268f6afbf444514223d75b0ba4c509edc74d74d0..f24a5ee36bbf9b23e25f08c8cfe597867ced80af 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-4.4.1.img.torrent +https://tails.boum.org/torrents/files/tails-amd64-4.5.img.torrent diff --git a/wiki/src/inc/stable_amd64_img_url.html b/wiki/src/inc/stable_amd64_img_url.html index e786a3e27b6e46b0417dfe091bdda417d1183126..361e34f8b2d1e209b9c5d4bc23c4ac014a2fb210 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-4.4.1/tails-amd64-4.4.1.img +http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.5/tails-amd64-4.5.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 3d274a71dc0f3d4316f331e569b80fe4c4c8890d..2d7740ff159956ba2d100950da9244185ff1006b 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 Sun Mar 22 21:07:28 2020 UTC<br/> +gpg: Signature made Mon Apr 6 20:54:43 2020 UTC<br/> gpg: using RSA key FE029CB4AAD4788E1D7828E8A8B0F4E45B1B50E2<br/> gpg: Good signature from "Tails developers <tails@boum.org>" [full]<br/> gpg: aka "Tails developers (offline long-term identity key) <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 240393d689e0196d0a2cb9f42451f0cbf42964b4..a04d50b0f167e1fd035398f4d6f1ed8f17779ae1 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-4.4.1.iso.sig tails-amd64-4.4.1.iso +TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-4.5.iso.sig tails-amd64-4.5.iso diff --git a/wiki/src/inc/stable_amd64_iso_sig_url.html b/wiki/src/inc/stable_amd64_iso_sig_url.html index bf1a644b2278d54a28fb36c0fabb78bdc231f08e..9065f69d9719540f33cc56cf76465abd351bd14e 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-4.4.1.iso.sig +https://tails.boum.org/torrents/files/tails-amd64-4.5.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 f4f29ed5fde6b1c5fde765d08a4eebc909dc0296..ad60314ed0ffedda90b633afcb24ec9501033c93 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-4.4.1.iso.torrent +https://tails.boum.org/torrents/files/tails-amd64-4.5.iso.torrent diff --git a/wiki/src/inc/stable_amd64_iso_url.html b/wiki/src/inc/stable_amd64_iso_url.html index da04607eca7476d25f1b89eb387ce9b6e55a13da..e5aa2321f5a2e8c7190fe6339caad54fdbf46d89 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-4.4.1/tails-amd64-4.4.1.iso +http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.5/tails-amd64-4.5.iso diff --git a/wiki/src/inc/stable_amd64_version.html b/wiki/src/inc/stable_amd64_version.html index cca25a93cd0cfd5e7c7f655c88595469c43264f6..4caecc733e6bc437e8afacd9a27cd84edd18a5bc 100644 --- a/wiki/src/inc/stable_amd64_version.html +++ b/wiki/src/inc/stable_amd64_version.html @@ -1 +1 @@ -4.4.1 +4.5 diff --git a/wiki/src/install/inc/screenshots/boot_loader_menu.png b/wiki/src/install/inc/screenshots/boot_loader_menu.png deleted file mode 100644 index 5620a6769a27aaae6c9621187634a94ec6fd22a0..0000000000000000000000000000000000000000 Binary files a/wiki/src/install/inc/screenshots/boot_loader_menu.png and /dev/null differ diff --git a/wiki/src/install/inc/screenshots/grub.png b/wiki/src/install/inc/screenshots/grub.png new file mode 100644 index 0000000000000000000000000000000000000000..2315467badfcff9d0cf03990fe0e86885bbae031 Binary files /dev/null and b/wiki/src/install/inc/screenshots/grub.png differ diff --git a/wiki/src/install/inc/screenshots/startup-security-utility.png b/wiki/src/install/inc/screenshots/startup-security-utility.png new file mode 100644 index 0000000000000000000000000000000000000000..68adfdbb8f15178f0e845dfe6aeb83dd88f2fd2a Binary files /dev/null and b/wiki/src/install/inc/screenshots/startup-security-utility.png differ diff --git a/wiki/src/install/inc/screenshots/syslinux.png b/wiki/src/install/inc/screenshots/syslinux.png new file mode 100644 index 0000000000000000000000000000000000000000..154f07fadb9bffb99742879adb2eeba04c619cea Binary files /dev/null and b/wiki/src/install/inc/screenshots/syslinux.png differ diff --git a/wiki/src/install/inc/screenshots/greeter_with_persistence.png b/wiki/src/install/inc/screenshots/welcome_screen_with_persistence.png similarity index 100% rename from wiki/src/install/inc/screenshots/greeter_with_persistence.png rename to wiki/src/install/inc/screenshots/welcome_screen_with_persistence.png diff --git a/wiki/src/install/inc/steps/create_persistence.inline.de.po b/wiki/src/install/inc/steps/create_persistence.inline.de.po index e715d2db1b1f340ffe18b1ebb2441dd9b782f761..1b1fe29dd75a4ef1e4d1fc2b93c7b1a0866fd0a1 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.de.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-11-18 11:20+0000\n" "Last-Translator: Muri Nicanor <muri@immerda.ch>\n" "Language-Team: \n" @@ -345,13 +345,13 @@ msgstr "" "span> USB-Stick mit Tails neu." #. type: Bullet: '1. ' -msgid "In <span class=\"application\">Tails Greeter</span>:" -msgstr "Im <span class=\"application\">Tails Greeter</span>:" +msgid "In the Welcome Screen:" +msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid " [[!img install/inc/screenshots/greeter_with_persistence.png link=\"no\"]]\n" -msgid " [[!img install/inc/screenshots/greeter_with_persistence.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img install/inc/screenshots/welcome_screen_with_persistence.png link=\"no\" alt=\"Welcome to Tails!\"]]\n" msgstr " [[!img install/inc/screenshots/greeter_with_persistence.png link=\"no\"]]\n" #. type: Bullet: ' - ' @@ -475,3 +475,6 @@ msgstr "" #, no-wrap msgid "<p>We hope you enjoy using Tails :)</p>\n" msgstr "<p>Wir hoffen, dass Sie viel Freude beim Benutzen von Tails haben :)</p>\n" + +#~ msgid "In <span class=\"application\">Tails Greeter</span>:" +#~ msgstr "Im <span class=\"application\">Tails Greeter</span>:" diff --git a/wiki/src/install/inc/steps/create_persistence.inline.es.po b/wiki/src/install/inc/steps/create_persistence.inline.es.po index 1ea2413d7c0254209d0494e54e8e81550ece978c..3a01ce18e9dd1a8a2be069e6dc1a7ad83133c76e 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.es.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-01-14 16:26+0000\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -326,12 +326,13 @@ msgstr "" "\">final</span> <span class=\"clone\">nueva</span> memoria USB de Tails." #. type: Bullet: '1. ' -msgid "In <span class=\"application\">Tails Greeter</span>:" -msgstr "En el <span class=\"application\">Tails Greeter</span>:" +msgid "In the Welcome Screen:" +msgstr "" #. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/greeter_with_persistence.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img install/inc/screenshots/greeter_with_persistence.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img install/inc/screenshots/welcome_screen_with_persistence.png link=\"no\" alt=\"Welcome to Tails!\"]]\n" msgstr " [[!img install/inc/screenshots/greeter_with_persistence.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!''\" ]]\n" #. type: Bullet: ' - ' @@ -449,5 +450,8 @@ msgstr "" msgid "<p>We hope you enjoy using Tails :)</p>\n" msgstr "<p>Esperamos que disfrutes usando Tails :)</p>\n" +#~ msgid "In <span class=\"application\">Tails Greeter</span>:" +#~ msgstr "En el <span class=\"application\">Tails Greeter</span>:" + #~ msgid "Test your Wi-Fi\n" #~ msgstr "Prueba tu Wi-Fi\n" diff --git a/wiki/src/install/inc/steps/create_persistence.inline.fa.po b/wiki/src/install/inc/steps/create_persistence.inline.fa.po index 34a7eaaebfb5521af0cf2c237fb806a778b3c781..fe9394cb9c5d155943fff778b434e9c024e854a4 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.fa.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.fa.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-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-01-22 16:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -102,9 +102,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"step-image\">[[!img install/inc/infography/create-persistence.png link=\"no\" alt=\"\"]]</div>\n" -msgstr "" -"<div class=\"step-image\">[[!img install/inc/infography/create-" -"persistence.png link=\"no\" alt=\"\"]]</div>\n" +msgstr "<div class=\"step-image\">[[!img install/inc/infography/create-persistence.png link=\"no\" alt=\"\"]]</div>\n" #. type: Plain text #, no-wrap @@ -255,12 +253,12 @@ msgid "" msgstr "" #. type: Bullet: '1. ' -msgid "In <span class=\"application\">Tails Greeter</span>:" +msgid "In the Welcome Screen:" msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img install/inc/screenshots/greeter_with_persistence.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img install/inc/screenshots/welcome_screen_with_persistence.png link=\"no\" alt=\"Welcome to Tails!\"]]\n" msgstr "" #. type: Bullet: ' - ' @@ -328,9 +326,7 @@ msgstr " <div class=\"col-md-6\">\n" #. type: Plain text #, no-wrap msgid " [[!img lib/dialog-warning.png link=\"no\" alt=\"\" class=\"float-left\"]]\n" -msgstr "" -" [[!img lib/dialog-warning.png link=\"no\" alt=\"\" class=\"float-left\"]]" -"\n" +msgstr " [[!img lib/dialog-warning.png link=\"no\" alt=\"\" class=\"float-left\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/create_persistence.inline.fr.po b/wiki/src/install/inc/steps/create_persistence.inline.fr.po index f3e2844e185a9ab63739b8774eeb359116ebf47f..df71a63ac6d7eb46379b4aee4ea8382826d8b3b5 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.fr.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-01-26 17:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -308,12 +308,13 @@ msgstr "" "span> clé USB Tails." #. type: Bullet: '1. ' -msgid "In <span class=\"application\">Tails Greeter</span>:" -msgstr "Dans <span class=\"application\">Tails Greeter</span> :" +msgid "In the Welcome Screen:" +msgstr "" #. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/greeter_with_persistence.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img install/inc/screenshots/greeter_with_persistence.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img install/inc/screenshots/welcome_screen_with_persistence.png link=\"no\" alt=\"Welcome to Tails!\"]]\n" msgstr " [[!img install/inc/screenshots/greeter_with_persistence.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" #. type: Bullet: ' - ' @@ -432,5 +433,8 @@ msgstr "" msgid "<p>We hope you enjoy using Tails :)</p>\n" msgstr "<p>Nous espérons que vous apprécierez Tails :)</p>\n" +#~ msgid "In <span class=\"application\">Tails Greeter</span>:" +#~ msgstr "Dans <span class=\"application\">Tails Greeter</span> :" + #~ msgid "Test your Wi-Fi\n" #~ msgstr "Tester votre Wi-Fi\n" diff --git a/wiki/src/install/inc/steps/create_persistence.inline.it.po b/wiki/src/install/inc/steps/create_persistence.inline.it.po index 9cababfb6fc8b0c0a0f069787d2fbd912735703e..719d92c327d6edf6e3111cbe2f1ea7ba0a1f13b1 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.it.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: transitails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-03-08 15:39+0000\n" "Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -36,9 +36,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/system.png link=\"no\"]]\n" -msgstr "" -" [[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/" -"system.png link=\"no\"]]\n" +msgstr " [[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/system.png link=\"no\"]]\n" #. type: Bullet: '1. ' msgid "" @@ -340,12 +338,12 @@ msgstr "" "linux mac-usb\">finale</span> <span class=\"clone\">nuova</span>." #. type: Bullet: '1. ' -msgid "In <span class=\"application\">Tails Greeter</span>:" -msgstr "In <span class=\"application\">Tails Greeter</span>:" +msgid "In the Welcome Screen:" +msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img install/inc/screenshots/greeter_with_persistence.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img install/inc/screenshots/welcome_screen_with_persistence.png link=\"no\" alt=\"Welcome to Tails!\"]]\n" msgstr "" #. type: Bullet: ' - ' @@ -430,9 +428,7 @@ msgstr " <div class=\"col-md-6\">\n" #. type: Plain text #, no-wrap msgid " [[!img lib/dialog-warning.png link=\"no\" alt=\"\" class=\"float-left\"]]\n" -msgstr "" -" [[!img lib/dialog-warning.png link=\"no\" alt=\"\" class=\"float-left\"]]" -"\n" +msgstr " [[!img lib/dialog-warning.png link=\"no\" alt=\"\" class=\"float-left\"]]\n" #. type: Plain text #, no-wrap @@ -468,3 +464,6 @@ msgstr "" #, no-wrap msgid "<p>We hope you enjoy using Tails :)</p>\n" msgstr "<p>Speriamo che ti divertirai usando Tails :)</p>\n" + +#~ msgid "In <span class=\"application\">Tails Greeter</span>:" +#~ msgstr "In <span class=\"application\">Tails Greeter</span>:" diff --git a/wiki/src/install/inc/steps/create_persistence.inline.mdwn b/wiki/src/install/inc/steps/create_persistence.inline.mdwn index 3c7e5010eb720620f77a2c53e58f18a78169c471..12da5f87078cae60cd6357d95f9c8ad1b4a92503 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.mdwn +++ b/wiki/src/install/inc/steps/create_persistence.inline.mdwn @@ -119,9 +119,9 @@ Restart and activate the persistent storage <span class="clone">new</span> Tails USB stick. -1. In <span class="application">Tails Greeter</span>: +1. In the Welcome Screen: - [[!img install/inc/screenshots/greeter_with_persistence.png link="no" alt="Tails Greeter: 'Welcome to Tails!'"]] + [[!img install/inc/screenshots/welcome_screen_with_persistence.png link="no" alt="Welcome to Tails!"]] - Select your language and keyboard layout in the <span class="guilabel">Language & Region</span> section. diff --git a/wiki/src/install/inc/steps/create_persistence.inline.pt.po b/wiki/src/install/inc/steps/create_persistence.inline.pt.po index b1ac4de62f57ef21a3a655ffde74127751b7fdb6..34a30d938711dca900f9b480eddac750bfc3d386 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.pt.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails 2.2.1\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-01-03 14:25+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -322,14 +322,14 @@ msgstr "" "Desligue o computador e reinicie-o na sua <span class=\"clone\">nova</span> " "memória USB com Tails." -# É necessário confirmar a tradução de "Tails Greeter" #. type: Bullet: '1. ' -msgid "In <span class=\"application\">Tails Greeter</span>:" -msgstr "No <span class=\"application\">Tails Greeter</span>:" +msgid "In the Welcome Screen:" +msgstr "" #. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/greeter_with_persistence.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img install/inc/screenshots/greeter_with_persistence.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img install/inc/screenshots/welcome_screen_with_persistence.png link=\"no\" alt=\"Welcome to Tails!\"]]\n" msgstr " [[!img install/inc/screenshots/greeter_with_persistence.png link=\"no\" alt=\"Tails Greeter: 'Bem-vinda a Tails!'\"]]\n" #. type: Bullet: ' - ' @@ -446,5 +446,9 @@ msgstr "" msgid "<p>We hope you enjoy using Tails :)</p>\n" msgstr "<p>Esperamos que você goste de usar o Tails :)</p>\n" +# É necessário confirmar a tradução de "Tails Greeter" +#~ msgid "In <span class=\"application\">Tails Greeter</span>:" +#~ msgstr "No <span class=\"application\">Tails Greeter</span>:" + #~ msgid "Test your Wi-Fi\n" #~ msgstr "Teste sua conexão Wi-Fi\n" diff --git a/wiki/src/install/inc/steps/mac_startup_disks.inline.de.po b/wiki/src/install/inc/steps/mac_startup_disks.inline.de.po index 5e1c00d9d8ed0d9e9fe6fbfd21222aa815800923..127f9a2c2b08e486e6860fae5f32a92602b6e1e9 100644 --- a/wiki/src/install/inc/steps/mac_startup_disks.inline.de.po +++ b/wiki/src/install/inc/steps/mac_startup_disks.inline.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-10-18 01:54+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2016-05-08 10:42+0200\n" "Last-Translator: Tails translators <tails@boum.org>\n" "Language-Team: \n" @@ -127,27 +127,136 @@ msgid "" "inc/steps/reporting.inline\" raw=\"yes\"]] \"\"\"]]" msgstr "" +#. type: Content of: <ol><li> +msgid "<a id=\"startup-security\"></a>" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "If your Mac displays the following error:" +msgstr "" + +#. type: Content of: <ol><li><pre> +#, no-wrap +msgid "Security settings do not allow this Mac to use an external startup disk." +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"Then you have to change the settings of the <em>Startup Security Utility</" +"em> of your Mac to authorize starting from Tails." +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "To open <em>Startup Security Utility</em>:" +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " +"immediately after you see the Apple logo. Your Mac starts up from <a href=" +"\"https://support.apple.com/kb/HT201314\">macOS Recovery</a>." +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"When you see the macOS <em>Utilities</em> window, choose " +"<strong>Utilities ▸ Startup Security Utility</strong> from the menu bar." +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"When you are asked to authenticate, click <strong>Enter macOS Password</" +"strong>, then choose an administrator account and enter its password." +msgstr "" + #. type: Content of: <ol><li><p> +#, fuzzy +#| msgid "" +#| " [[!img install/inc/screenshots/mac_option_key.png class=\"mac mac-clone" +#| "\" link=\"no\"]]\n" msgid "" -"If the computer starts on Tails, the <span class=\"application\">Boot Loader " -"Menu</span> appears and Tails starts automatically after 4 seconds." +"[[!img install/inc/screenshots/startup-security-utility.png link=\"no\" alt=" +"\"Startup Security Utility\"]]" msgstr "" +" [[!img install/inc/screenshots/mac_option_key.png class=\"mac mac-clone\" " +"link=\"no\"]]\n" #. type: Content of: <ol><li><p> +msgid "In the <em>Startup Security Utility</em>:" +msgstr "" + +#. type: Content of: <ol><li><ul><li><p> msgid "" -"[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black " -"screen with Tails artwork. Boot Loader Menu with two options 'Tails' and " -"'Tails (Troubleshooting Mode)'.\"]]" +"Choose <strong>No Security</strong> in the <strong>Secure Boot</strong> " +"section." msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <ol><li><ul><li><p> msgid "" -"If your computer displays the <span class=\"application\">Boot Loader Menu</" -"span> but then fails to start on the USB stick, it might currently be " -"impossible to start Tails on your Mac model." +"Choose <strong>Allow booting from external media</strong> in the " +"<strong>External Boot</strong>." msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <ol><li><div><p> +msgid "" +"To still protect your Mac from starting on untrusted external media, you can " +"set a firmware password, available on macOS Mountain Lion or later. A " +"firmware password prevents users who do not have the password from starting " +"up from any media other than the designated startup disk." +msgstr "" + +#. type: Content of: <ol><li><div><p> +msgid "" +"<strong>If you forget your firmware password you will require an in-person " +"service appointment with an Apple Store or Apple Authorized Service Provider." +"</strong>" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "Read more on Apple Support about:" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "" +"<a href=\"https://support.apple.com/en-us/HT208198\">Startup Security " +"Utility</a>" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "<a href=\"https://support.apple.com/en-us/HT208330\">Secure Boot</a>" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "" +"<a href=\"https://support.apple.com/en-us/HT204455\">How to set a firmware " +"password on your Mac</a>" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"If the computer starts on Tails, the Boot Loader appears and Tails starts " +"automatically after 4 seconds." +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU " +"GRUB') with Tails logo and 2 options: 'Tails' and 'Tails (Troubleshooting " +"Mode)'.\"]]" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"The Boot Loader on Mac is always <em>GRUB</em>. It might be different on PC." +msgstr "" + +#. type: Content of: <ol><li><div><p> +msgid "" +"If your computer displays the Boot Loader but then fails to start on the USB " +"stick, it might currently be impossible to start Tails on your Mac model." +msgstr "" + +#. type: Content of: <ol><li><div><p> msgid "" "Please [[!toggle id=\"report-toggle\" text=\"report the problem to our help " "desk\"]]." diff --git a/wiki/src/install/inc/steps/mac_startup_disks.inline.es.po b/wiki/src/install/inc/steps/mac_startup_disks.inline.es.po index 6b3fbb3f534d9d5779cbe98051f7014a7857e06b..1633a567fa31d16d53ae8f3ab42068a4bb956100 100644 --- a/wiki/src/install/inc/steps/mac_startup_disks.inline.es.po +++ b/wiki/src/install/inc/steps/mac_startup_disks.inline.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-31 11:29+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-03-08 15:39+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -55,8 +55,8 @@ msgid "" msgstr "" "Elige la memoria USB y presiona <span class=\"keycap\">Enter</span>. La " "memoria USB aparece como un disco duro externo y puede estar catalogada como " -"<span class=\"guilabel\">EFI Boot</span> o <span class=\"guilabel\"" -">Windows</span> como en las siguientes capturas de pantalla:" +"<span class=\"guilabel\">EFI Boot</span> o <span class=\"guilabel\">Windows</" +"span> como en las siguientes capturas de pantalla:" #. type: Content of: <ol><li><p> msgid "" @@ -64,9 +64,10 @@ msgid "" "with the logo of an internal hard disk labeled 'Macintosh HD' and an " "external hard disk labelled 'Windows' (selected)\"]]" msgstr "" -"[[!img install/inc/screenshots/mac_startup_usb.png link=\"no\" alt=\"" -"Pantalla con el logotipo de un disco duro interno con la etiqueta 'Macintosh " -"HD' y un disco duro externo con la etiqueta 'Windows' (seleccionado)\"]]" +"[[!img install/inc/screenshots/mac_startup_usb.png link=\"no\" alt=" +"\"Pantalla con el logotipo de un disco duro interno con la etiqueta " +"'Macintosh HD' y un disco duro externo con la etiqueta " +"'Windows' (seleccionado)\"]]" #. type: Content of: <ol><li><div><p> msgid "If the USB stick does not appear in the list of possible startup disks:" @@ -107,10 +108,119 @@ msgstr "" "toggle id=\"report-toggle-1\" text=\"\"]]</span> [[!inline pages=\"install/" "inc/steps/reporting.inline.es\" raw=\"yes\"]] \"\"\"]]" +#. type: Content of: <ol><li> +msgid "<a id=\"startup-security\"></a>" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "If your Mac displays the following error:" +msgstr "" + +#. type: Content of: <ol><li><pre> +#, no-wrap +msgid "Security settings do not allow this Mac to use an external startup disk." +msgstr "" + #. type: Content of: <ol><li><p> msgid "" -"If the computer starts on Tails, the <span class=\"application\">Boot Loader " -"Menu</span> appears and Tails starts automatically after 4 seconds." +"Then you have to change the settings of the <em>Startup Security Utility</" +"em> of your Mac to authorize starting from Tails." +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "To open <em>Startup Security Utility</em>:" +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " +"immediately after you see the Apple logo. Your Mac starts up from <a href=" +"\"https://support.apple.com/kb/HT201314\">macOS Recovery</a>." +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"When you see the macOS <em>Utilities</em> window, choose " +"<strong>Utilities ▸ Startup Security Utility</strong> from the menu bar." +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"When you are asked to authenticate, click <strong>Enter macOS Password</" +"strong>, then choose an administrator account and enter its password." +msgstr "" + +#. type: Content of: <ol><li><p> +#, fuzzy +#| msgid "" +#| "[[!img install/inc/screenshots/mac_option_key.png link=\"no\" alt=" +#| "\"'Option' or 'alt' key in the bottom left of Mac keyboard\"]]" +msgid "" +"[[!img install/inc/screenshots/startup-security-utility.png link=\"no\" alt=" +"\"Startup Security Utility\"]]" +msgstr "" +"[[!img install/inc/screenshots/mac_option_key.png link=\"no\" alt=\"Tecla " +"'opción' o 'alt' en la parte inferior izquierda del teclado de Mac\"]]" + +#. type: Content of: <ol><li><p> +msgid "In the <em>Startup Security Utility</em>:" +msgstr "" + +#. type: Content of: <ol><li><ul><li><p> +msgid "" +"Choose <strong>No Security</strong> in the <strong>Secure Boot</strong> " +"section." +msgstr "" + +#. type: Content of: <ol><li><ul><li><p> +msgid "" +"Choose <strong>Allow booting from external media</strong> in the " +"<strong>External Boot</strong>." +msgstr "" + +#. type: Content of: <ol><li><div><p> +msgid "" +"To still protect your Mac from starting on untrusted external media, you can " +"set a firmware password, available on macOS Mountain Lion or later. A " +"firmware password prevents users who do not have the password from starting " +"up from any media other than the designated startup disk." +msgstr "" + +#. type: Content of: <ol><li><div><p> +msgid "" +"<strong>If you forget your firmware password you will require an in-person " +"service appointment with an Apple Store or Apple Authorized Service Provider." +"</strong>" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "Read more on Apple Support about:" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "" +"<a href=\"https://support.apple.com/en-us/HT208198\">Startup Security " +"Utility</a>" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "<a href=\"https://support.apple.com/en-us/HT208330\">Secure Boot</a>" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "" +"<a href=\"https://support.apple.com/en-us/HT204455\">How to set a firmware " +"password on your Mac</a>" +msgstr "" + +#. type: Content of: <ol><li><p> +#, fuzzy +#| msgid "" +#| "If the computer starts on Tails, the <span class=\"application\">Boot " +#| "Loader Menu</span> appears and Tails starts automatically after 4 seconds." +msgid "" +"If the computer starts on Tails, the Boot Loader appears and Tails starts " +"automatically after 4 seconds." msgstr "" "Si la computadora se inicia en Tails, el <span class=\"aplicación\">Menú del " "cargador de arranque</span> aparece y Tails comienza automáticamente después " @@ -118,23 +228,27 @@ msgstr "" #. type: Content of: <ol><li><p> msgid "" -"[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black " -"screen with Tails artwork. Boot Loader Menu with two options 'Tails' and " -"'Tails (Troubleshooting Mode)'.\"]]" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU " +"GRUB') with Tails logo and 2 options: 'Tails' and 'Tails (Troubleshooting " +"Mode)'.\"]]" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"The Boot Loader on Mac is always <em>GRUB</em>. It might be different on PC." msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <ol><li><div><p> #, fuzzy msgid "" -"If your computer displays the <span class=\"application\">Boot Loader Menu</" -"span> but then fails to start on the USB stick, it might currently be " -"impossible to start Tails on your Mac model." +"If your computer displays the Boot Loader but then fails to start on the USB " +"stick, it might currently be impossible to start Tails on your Mac model." msgstr "" "Si la computadora se inicia en Tails, la <span class=\"aplicación\">Menú del " "cargador de arranque</span> aparece y Tails comienza automáticamente después " "de 4 segundos." -#. type: Content of: <div><p> +#. type: Content of: <ol><li><div><p> msgid "" "Please [[!toggle id=\"report-toggle\" text=\"report the problem to our help " "desk\"]]." diff --git a/wiki/src/install/inc/steps/mac_startup_disks.inline.fa.po b/wiki/src/install/inc/steps/mac_startup_disks.inline.fa.po index 370ab4c49317bac00de16289305ebe0f321bc0c5..a8f8cbed33a665ed8b224a2c523028782bf3bf2e 100644 --- a/wiki/src/install/inc/steps/mac_startup_disks.inline.fa.po +++ b/wiki/src/install/inc/steps/mac_startup_disks.inline.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-18 01:54+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\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" @@ -87,27 +87,130 @@ msgid "" "inc/steps/reporting.inline\" raw=\"yes\"]] \"\"\"]]" msgstr "" +#. type: Content of: <ol><li> +msgid "<a id=\"startup-security\"></a>" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "If your Mac displays the following error:" +msgstr "" + +#. type: Content of: <ol><li><pre> +#, no-wrap +msgid "Security settings do not allow this Mac to use an external startup disk." +msgstr "" + #. type: Content of: <ol><li><p> msgid "" -"If the computer starts on Tails, the <span class=\"application\">Boot Loader " -"Menu</span> appears and Tails starts automatically after 4 seconds." +"Then you have to change the settings of the <em>Startup Security Utility</" +"em> of your Mac to authorize starting from Tails." msgstr "" #. type: Content of: <ol><li><p> +msgid "To open <em>Startup Security Utility</em>:" +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " +"immediately after you see the Apple logo. Your Mac starts up from <a href=" +"\"https://support.apple.com/kb/HT201314\">macOS Recovery</a>." +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> msgid "" -"[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black " -"screen with Tails artwork. Boot Loader Menu with two options 'Tails' and " -"'Tails (Troubleshooting Mode)'.\"]]" +"When you see the macOS <em>Utilities</em> window, choose " +"<strong>Utilities ▸ Startup Security Utility</strong> from the menu bar." msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"When you are asked to authenticate, click <strong>Enter macOS Password</" +"strong>, then choose an administrator account and enter its password." +msgstr "" + +#. type: Content of: <ol><li><p> msgid "" -"If your computer displays the <span class=\"application\">Boot Loader Menu</" -"span> but then fails to start on the USB stick, it might currently be " -"impossible to start Tails on your Mac model." +"[[!img install/inc/screenshots/startup-security-utility.png link=\"no\" alt=" +"\"Startup Security Utility\"]]" msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <ol><li><p> +msgid "In the <em>Startup Security Utility</em>:" +msgstr "" + +#. type: Content of: <ol><li><ul><li><p> +msgid "" +"Choose <strong>No Security</strong> in the <strong>Secure Boot</strong> " +"section." +msgstr "" + +#. type: Content of: <ol><li><ul><li><p> +msgid "" +"Choose <strong>Allow booting from external media</strong> in the " +"<strong>External Boot</strong>." +msgstr "" + +#. type: Content of: <ol><li><div><p> +msgid "" +"To still protect your Mac from starting on untrusted external media, you can " +"set a firmware password, available on macOS Mountain Lion or later. A " +"firmware password prevents users who do not have the password from starting " +"up from any media other than the designated startup disk." +msgstr "" + +#. type: Content of: <ol><li><div><p> +msgid "" +"<strong>If you forget your firmware password you will require an in-person " +"service appointment with an Apple Store or Apple Authorized Service Provider." +"</strong>" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "Read more on Apple Support about:" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "" +"<a href=\"https://support.apple.com/en-us/HT208198\">Startup Security " +"Utility</a>" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "<a href=\"https://support.apple.com/en-us/HT208330\">Secure Boot</a>" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "" +"<a href=\"https://support.apple.com/en-us/HT204455\">How to set a firmware " +"password on your Mac</a>" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"If the computer starts on Tails, the Boot Loader appears and Tails starts " +"automatically after 4 seconds." +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU " +"GRUB') with Tails logo and 2 options: 'Tails' and 'Tails (Troubleshooting " +"Mode)'.\"]]" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"The Boot Loader on Mac is always <em>GRUB</em>. It might be different on PC." +msgstr "" + +#. type: Content of: <ol><li><div><p> +msgid "" +"If your computer displays the Boot Loader but then fails to start on the USB " +"stick, it might currently be impossible to start Tails on your Mac model." +msgstr "" + +#. type: Content of: <ol><li><div><p> msgid "" "Please [[!toggle id=\"report-toggle\" text=\"report the problem to our help " "desk\"]]." diff --git a/wiki/src/install/inc/steps/mac_startup_disks.inline.fr.po b/wiki/src/install/inc/steps/mac_startup_disks.inline.fr.po index 9ad4f89ea828e480d85ae2763e38ed515bd50d80..e4d1a9c7fda979b50889a397944e1d50519f1537 100644 --- a/wiki/src/install/inc/steps/mac_startup_disks.inline.fr.po +++ b/wiki/src/install/inc/steps/mac_startup_disks.inline.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-18 01:54+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-01-02 13:25+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -114,37 +114,160 @@ msgstr "" "toggle id=\"report-toggle-1\" text=\"\"]]</span> [[!inline pages=\"install/" "inc/steps/reporting.inline.fr\" raw=\"yes\"]] \"\"\"]]" +#. type: Content of: <ol><li> +msgid "<a id=\"startup-security\"></a>" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "If your Mac displays the following error:" +msgstr "" + +#. type: Content of: <ol><li><pre> +#, no-wrap +msgid "Security settings do not allow this Mac to use an external startup disk." +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"Then you have to change the settings of the <em>Startup Security Utility</" +"em> of your Mac to authorize starting from Tails." +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "To open <em>Startup Security Utility</em>:" +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " +"immediately after you see the Apple logo. Your Mac starts up from <a href=" +"\"https://support.apple.com/kb/HT201314\">macOS Recovery</a>." +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"When you see the macOS <em>Utilities</em> window, choose " +"<strong>Utilities ▸ Startup Security Utility</strong> from the menu bar." +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"When you are asked to authenticate, click <strong>Enter macOS Password</" +"strong>, then choose an administrator account and enter its password." +msgstr "" + +#. type: Content of: <ol><li><p> +#, fuzzy +#| msgid "" +#| "[[!img install/inc/screenshots/mac_option_key.png link=\"no\" alt=" +#| "\"'Option' or 'alt' key in the bottom left of Mac keyboard\"]]" +msgid "" +"[[!img install/inc/screenshots/startup-security-utility.png link=\"no\" alt=" +"\"Startup Security Utility\"]]" +msgstr "" +"[[!img install/inc/screenshots/mac_option_key.png link=\"no\" alt=\"Touche " +"'Option' ou 'alt' en bas à gauche du clavier Mac\"]]" + #. type: Content of: <ol><li><p> +msgid "In the <em>Startup Security Utility</em>:" +msgstr "" + +#. type: Content of: <ol><li><ul><li><p> msgid "" -"If the computer starts on Tails, the <span class=\"application\">Boot Loader " -"Menu</span> appears and Tails starts automatically after 4 seconds." +"Choose <strong>No Security</strong> in the <strong>Secure Boot</strong> " +"section." +msgstr "" + +#. type: Content of: <ol><li><ul><li><p> +msgid "" +"Choose <strong>Allow booting from external media</strong> in the " +"<strong>External Boot</strong>." +msgstr "" + +#. type: Content of: <ol><li><div><p> +msgid "" +"To still protect your Mac from starting on untrusted external media, you can " +"set a firmware password, available on macOS Mountain Lion or later. A " +"firmware password prevents users who do not have the password from starting " +"up from any media other than the designated startup disk." +msgstr "" + +#. type: Content of: <ol><li><div><p> +msgid "" +"<strong>If you forget your firmware password you will require an in-person " +"service appointment with an Apple Store or Apple Authorized Service Provider." +"</strong>" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "Read more on Apple Support about:" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "" +"<a href=\"https://support.apple.com/en-us/HT208198\">Startup Security " +"Utility</a>" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "<a href=\"https://support.apple.com/en-us/HT208330\">Secure Boot</a>" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "" +"<a href=\"https://support.apple.com/en-us/HT204455\">How to set a firmware " +"password on your Mac</a>" +msgstr "" + +#. type: Content of: <ol><li><p> +#, fuzzy +#| msgid "" +#| "If the computer starts on Tails, the <span class=\"application\">Boot " +#| "Loader Menu</span> appears and Tails starts automatically after 4 seconds." +msgid "" +"If the computer starts on Tails, the Boot Loader appears and Tails starts " +"automatically after 4 seconds." msgstr "" "Si l'ordinateur démarre sur Tails, le <span class=\"application\">menu du " "chargeur d'amorçage</span> apparaît et Tails démarre automatiquement après 4 " "secondes." #. type: Content of: <ol><li><p> +#, fuzzy +#| msgid "" +#| "[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" +#| "\"Black screen with Tails artwork. Boot Loader Menu with two options " +#| "'Tails' and 'Tails (Troubleshooting Mode)'.\"]]" msgid "" -"[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black " -"screen with Tails artwork. Boot Loader Menu with two options 'Tails' and " -"'Tails (Troubleshooting Mode)'.\"]]" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU " +"GRUB') with Tails logo and 2 options: 'Tails' and 'Tails (Troubleshooting " +"Mode)'.\"]]" msgstr "" "[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Écran " "noir avec le logo Tails. Le menu du chargeur d'amorçage avec deux options " "'Tails' et 'Tails (Troubleshooting Mode)'.\"]]" -#. type: Content of: <div><p> +#. type: Content of: <ol><li><p> msgid "" -"If your computer displays the <span class=\"application\">Boot Loader Menu</" -"span> but then fails to start on the USB stick, it might currently be " -"impossible to start Tails on your Mac model." +"The Boot Loader on Mac is always <em>GRUB</em>. It might be different on PC." +msgstr "" + +#. type: Content of: <ol><li><div><p> +#, fuzzy +#| msgid "" +#| "If your computer displays the <span class=\"application\">Boot Loader " +#| "Menu</span> but then fails to start on the USB stick, it might currently " +#| "be impossible to start Tails on your Mac model." +msgid "" +"If your computer displays the Boot Loader but then fails to start on the USB " +"stick, it might currently be impossible to start Tails on your Mac model." msgstr "" "Si votre ordinateur affiche le <span class=\"application\">menu du chargeur " "d'amorçage</span> mais échoue alors à démarrer sur la clé USB, il est " "probablement actuellement impossible de démarrer Tails sur votre modèle de " "Mac." -#. type: Content of: <div><p> +#. type: Content of: <ol><li><div><p> msgid "" "Please [[!toggle id=\"report-toggle\" text=\"report the problem to our help " "desk\"]]." diff --git a/wiki/src/install/inc/steps/mac_startup_disks.inline.html b/wiki/src/install/inc/steps/mac_startup_disks.inline.html index 46f1906438416c8e2b417619873c67ddab8b4ebf..8dfba03c00d7a07ef0a24cdbe321ca40a32b06a0 100644 --- a/wiki/src/install/inc/steps/mac_startup_disks.inline.html +++ b/wiki/src/install/inc/steps/mac_startup_disks.inline.html @@ -43,24 +43,95 @@ """]] +<li><a id="startup-security"></a> + + <p>If your Mac displays the following error:</p> + + <pre>Security settings do not allow this Mac to use an external startup disk.</pre> + + <p>Then you have to change the settings of the <em>Startup + Security Utility</em> of your Mac to authorize starting from Tails.</p> + + <p>To open <em>Startup Security Utility</em>:</p> + + <ol> + + <!-- Section copied from https://support.apple.com/en-us/HT208198 --> + + <li><p>Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> + immediately after you see the Apple logo. Your Mac starts up from + <a href="https://support.apple.com/kb/HT201314">macOS Recovery</a>.</p></li> + + <li><p>When you see the macOS <em>Utilities</em> window, choose + <strong>Utilities ▸ Startup Security Utility</strong> from the menu + bar.</p></li> + + <li><p>When you are asked to authenticate, click <strong>Enter macOS + Password</strong>, then choose an administrator account and enter its + password.</p></li> + + </ol> + + <p>[[!img install/inc/screenshots/startup-security-utility.png link="no" alt="Startup Security Utility"]]</p> + + <p>In the <em>Startup Security Utility</em>:</p> + + <ul> + + <li><p>Choose <strong>No Security</strong> in the <strong>Secure + Boot</strong> section.</p></li> + + <li><p>Choose <strong>Allow booting from external media</strong> in the + <strong>External Boot</strong>.</p></li> + + </ul> + + <div class="tip"> + + <p>To still protect your Mac from starting on untrusted external media, you + can set a firmware password, available on macOS Mountain Lion or later. A + firmware password prevents users who do not have the password from starting + up from any media other than the designated startup disk.</p> + + <p><strong>If you forget your firmware password you will require an in-person + service appointment with an Apple Store or Apple Authorized Service + Provider.</strong></p> + + </div> + + <p>Read more on Apple Support about:</p> + + <ul> + + <li><a href="https://support.apple.com/en-us/HT208198">Startup Security Utility</a></li> + <li><a href="https://support.apple.com/en-us/HT208330">Secure Boot</a></li> + <li><a href="https://support.apple.com/en-us/HT204455">How to set a firmware password on your Mac</a></li> + + </ul> + +</li> + <li> - <p>If the computer starts on Tails, the <span class="application">Boot Loader Menu</span> + <p>If the computer starts on Tails, the Boot Loader appears and Tails starts automatically after 4 seconds.</p> - <p>[[!img install/inc/screenshots/boot_loader_menu.png link="no" alt="Black screen with Tails artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'."]]</p> + <p>[[!img install/inc/screenshots/grub.png link="no" alt="Black screen ('GNU GRUB') with Tails logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'."]]</p> + + <p>The Boot Loader on Mac is always <em>GRUB</em>. It might be + different on PC.</p> + + <div class="bug"> + <p>If your computer displays the Boot Loader + but then fails to start on the USB stick, it might + currently be impossible to start Tails on your Mac model.</p> + <p>Please [[!toggle id="report-toggle" text="report the problem to our help desk"]].</p> + </div> </li> </ol> -<div class="bug"> -<p>If your computer displays the <span class="application">Boot Loader Menu</span> -but then fails to start on the USB stick, it might -currently be impossible to start Tails on your Mac model.</p> -<p>Please [[!toggle id="report-toggle" text="report the problem to our help desk"]].</p> -</div> - [[!toggleable id="report-toggle" text=""" <span class="hide">[[!toggle id="report-toggle" text=""]]</span> diff --git a/wiki/src/install/inc/steps/mac_startup_disks.inline.it.po b/wiki/src/install/inc/steps/mac_startup_disks.inline.it.po index 5845bf4772218d2bb802c3a70be0784ad2353934..447642aba734ec897f5cfb3619e545fd83ec6f75 100644 --- a/wiki/src/install/inc/steps/mac_startup_disks.inline.it.po +++ b/wiki/src/install/inc/steps/mac_startup_disks.inline.it.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-10-31 11:29+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2019-10-24 10:40+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -133,27 +133,136 @@ msgstr "" "toggle id=\"report-toggle-1\" text=\"\"]]</span> [[!inline pages=\"install/" "inc/steps/reporting.inline.it\" raw=\"yes\"]] \"\"\"]]" +#. type: Content of: <ol><li> +msgid "<a id=\"startup-security\"></a>" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "If your Mac displays the following error:" +msgstr "" + +#. type: Content of: <ol><li><pre> +#, no-wrap +msgid "Security settings do not allow this Mac to use an external startup disk." +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"Then you have to change the settings of the <em>Startup Security Utility</" +"em> of your Mac to authorize starting from Tails." +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "To open <em>Startup Security Utility</em>:" +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " +"immediately after you see the Apple logo. Your Mac starts up from <a href=" +"\"https://support.apple.com/kb/HT201314\">macOS Recovery</a>." +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"When you see the macOS <em>Utilities</em> window, choose " +"<strong>Utilities ▸ Startup Security Utility</strong> from the menu bar." +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"When you are asked to authenticate, click <strong>Enter macOS Password</" +"strong>, then choose an administrator account and enter its password." +msgstr "" + #. type: Content of: <ol><li><p> +#, fuzzy +#| msgid "" +#| " [[!img install/inc/screenshots/mac_option_key.png class=\"mac mac-clone" +#| "\" link=\"no\"]]\n" msgid "" -"If the computer starts on Tails, the <span class=\"application\">Boot Loader " -"Menu</span> appears and Tails starts automatically after 4 seconds." +"[[!img install/inc/screenshots/startup-security-utility.png link=\"no\" alt=" +"\"Startup Security Utility\"]]" msgstr "" +" [[!img install/inc/screenshots/mac_option_key.png class=\"mac mac-clone\" " +"link=\"no\"]]\n" #. type: Content of: <ol><li><p> +msgid "In the <em>Startup Security Utility</em>:" +msgstr "" + +#. type: Content of: <ol><li><ul><li><p> msgid "" -"[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black " -"screen with Tails artwork. Boot Loader Menu with two options 'Tails' and " -"'Tails (Troubleshooting Mode)'.\"]]" +"Choose <strong>No Security</strong> in the <strong>Secure Boot</strong> " +"section." msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <ol><li><ul><li><p> msgid "" -"If your computer displays the <span class=\"application\">Boot Loader Menu</" -"span> but then fails to start on the USB stick, it might currently be " -"impossible to start Tails on your Mac model." +"Choose <strong>Allow booting from external media</strong> in the " +"<strong>External Boot</strong>." msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <ol><li><div><p> +msgid "" +"To still protect your Mac from starting on untrusted external media, you can " +"set a firmware password, available on macOS Mountain Lion or later. A " +"firmware password prevents users who do not have the password from starting " +"up from any media other than the designated startup disk." +msgstr "" + +#. type: Content of: <ol><li><div><p> +msgid "" +"<strong>If you forget your firmware password you will require an in-person " +"service appointment with an Apple Store or Apple Authorized Service Provider." +"</strong>" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "Read more on Apple Support about:" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "" +"<a href=\"https://support.apple.com/en-us/HT208198\">Startup Security " +"Utility</a>" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "<a href=\"https://support.apple.com/en-us/HT208330\">Secure Boot</a>" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "" +"<a href=\"https://support.apple.com/en-us/HT204455\">How to set a firmware " +"password on your Mac</a>" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"If the computer starts on Tails, the Boot Loader appears and Tails starts " +"automatically after 4 seconds." +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU " +"GRUB') with Tails logo and 2 options: 'Tails' and 'Tails (Troubleshooting " +"Mode)'.\"]]" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"The Boot Loader on Mac is always <em>GRUB</em>. It might be different on PC." +msgstr "" + +#. type: Content of: <ol><li><div><p> +msgid "" +"If your computer displays the Boot Loader but then fails to start on the USB " +"stick, it might currently be impossible to start Tails on your Mac model." +msgstr "" + +#. type: Content of: <ol><li><div><p> msgid "" "Please [[!toggle id=\"report-toggle\" text=\"report the problem to our help " "desk\"]]." diff --git a/wiki/src/install/inc/steps/mac_startup_disks.inline.pt.po b/wiki/src/install/inc/steps/mac_startup_disks.inline.pt.po index fa363225853ac4ccff81b5b019f7c4ade8daa7d2..b73bf0ae2dd9fe4771607addd7e65a92acee5122 100644 --- a/wiki/src/install/inc/steps/mac_startup_disks.inline.pt.po +++ b/wiki/src/install/inc/steps/mac_startup_disks.inline.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails 2.2.1\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-31 11:29+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2019-10-24 10:41+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -132,27 +132,136 @@ msgstr "" "toggle id=\"report-toggle-1\" text=\"\"]]</span> [[!inline pages=\"install/" "inc/steps/reporting.inline.pt\" raw=\"yes\"]] \"\"\"]]" +#. type: Content of: <ol><li> +msgid "<a id=\"startup-security\"></a>" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "If your Mac displays the following error:" +msgstr "" + +#. type: Content of: <ol><li><pre> +#, no-wrap +msgid "Security settings do not allow this Mac to use an external startup disk." +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"Then you have to change the settings of the <em>Startup Security Utility</" +"em> of your Mac to authorize starting from Tails." +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "To open <em>Startup Security Utility</em>:" +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " +"immediately after you see the Apple logo. Your Mac starts up from <a href=" +"\"https://support.apple.com/kb/HT201314\">macOS Recovery</a>." +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"When you see the macOS <em>Utilities</em> window, choose " +"<strong>Utilities ▸ Startup Security Utility</strong> from the menu bar." +msgstr "" + +#. type: Content of: <ol><li><ol><li><p> +msgid "" +"When you are asked to authenticate, click <strong>Enter macOS Password</" +"strong>, then choose an administrator account and enter its password." +msgstr "" + #. type: Content of: <ol><li><p> +#, fuzzy +#| msgid "" +#| " [[!img install/inc/screenshots/mac_option_key.png class=\"mac mac-clone" +#| "\" link=\"no\"]]\n" msgid "" -"If the computer starts on Tails, the <span class=\"application\">Boot Loader " -"Menu</span> appears and Tails starts automatically after 4 seconds." +"[[!img install/inc/screenshots/startup-security-utility.png link=\"no\" alt=" +"\"Startup Security Utility\"]]" msgstr "" +" [[!img install/inc/screenshots/mac_option_key.png class=\"mac mac-clone\" " +"link=\"no\"]]\n" #. type: Content of: <ol><li><p> +msgid "In the <em>Startup Security Utility</em>:" +msgstr "" + +#. type: Content of: <ol><li><ul><li><p> msgid "" -"[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black " -"screen with Tails artwork. Boot Loader Menu with two options 'Tails' and " -"'Tails (Troubleshooting Mode)'.\"]]" +"Choose <strong>No Security</strong> in the <strong>Secure Boot</strong> " +"section." msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <ol><li><ul><li><p> msgid "" -"If your computer displays the <span class=\"application\">Boot Loader Menu</" -"span> but then fails to start on the USB stick, it might currently be " -"impossible to start Tails on your Mac model." +"Choose <strong>Allow booting from external media</strong> in the " +"<strong>External Boot</strong>." msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <ol><li><div><p> +msgid "" +"To still protect your Mac from starting on untrusted external media, you can " +"set a firmware password, available on macOS Mountain Lion or later. A " +"firmware password prevents users who do not have the password from starting " +"up from any media other than the designated startup disk." +msgstr "" + +#. type: Content of: <ol><li><div><p> +msgid "" +"<strong>If you forget your firmware password you will require an in-person " +"service appointment with an Apple Store or Apple Authorized Service Provider." +"</strong>" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "Read more on Apple Support about:" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "" +"<a href=\"https://support.apple.com/en-us/HT208198\">Startup Security " +"Utility</a>" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "<a href=\"https://support.apple.com/en-us/HT208330\">Secure Boot</a>" +msgstr "" + +#. type: Content of: <ol><li><ul><li> +msgid "" +"<a href=\"https://support.apple.com/en-us/HT204455\">How to set a firmware " +"password on your Mac</a>" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"If the computer starts on Tails, the Boot Loader appears and Tails starts " +"automatically after 4 seconds." +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU " +"GRUB') with Tails logo and 2 options: 'Tails' and 'Tails (Troubleshooting " +"Mode)'.\"]]" +msgstr "" + +#. type: Content of: <ol><li><p> +msgid "" +"The Boot Loader on Mac is always <em>GRUB</em>. It might be different on PC." +msgstr "" + +#. type: Content of: <ol><li><div><p> +msgid "" +"If your computer displays the Boot Loader but then fails to start on the USB " +"stick, it might currently be impossible to start Tails on your Mac model." +msgstr "" + +#. type: Content of: <ol><li><div><p> msgid "" "Please [[!toggle id=\"report-toggle\" text=\"report the problem to our help " "desk\"]]." diff --git a/wiki/src/install/inc/steps/pc_boot_menu.inline.de.po b/wiki/src/install/inc/steps/pc_boot_menu.inline.de.po index 8794c3f9edac0b0c4aae280492e0dc66de1b886d..a31c17a869d0cfda9dc63d89d04436be3216989b 100644 --- a/wiki/src/install/inc/steps/pc_boot_menu.inline.de.po +++ b/wiki/src/install/inc/steps/pc_boot_menu.inline.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-28 18:06+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2019-10-23 08:55+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -29,7 +29,7 @@ msgstr "" #. type: Content of: <ul><li> msgid "" -"On most computers, our basic instructions to get to the boot menu work fine." +"On most computers, our basic instructions to get to the Boot Menu work fine." msgstr "" #. type: Content of: <ul><li> @@ -46,34 +46,65 @@ msgstr "" #. type: Content of: <p> msgid "" -"The goal is to reach the <span class=\"application\">Boot Loader Menu</span> " -"of Tails:" +"The goal is to reach the Boot Loader of Tails. Depending on the computer, " +"the Boot Loader might be either <em>GRUB</em> or <em>SYSLINUX</em>." msgstr "" #. type: Content of: <p> +msgid "This is what <em>GRUB</em> looks like:" +msgstr "" + +#. type: Content of: <p> +#, fuzzy +#| msgid "" +#| " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" +#| "\"Black screen with Tails artwork. 'Boot menu' with two options 'Live' " +#| "and 'Live (failsafe)'.\"]]\n" msgid "" -"[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black " -"screen with Tails artwork. Boot Loader Menu with two options 'Tails' and " -"'Tails (Troubleshooting Mode)'.\"]]" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU " +"GRUB') with Tails logo and 2 options: 'Tails' and 'Tails (Troubleshooting " +"Mode)'.\"]]" +msgstr "" +" [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" +"\"Schwarzer Bildschirm mit Tails-Hintergrund. 'Boot-Menü' mit den Optionen " +"'Live' und 'Live (failsafe)'.\"]]\n" + +#. type: Content of: <p> +msgid "This is what <em>SYSLINUX</em> looks like:" msgstr "" +#. type: Content of: <p> +#, fuzzy +#| msgid "" +#| " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" +#| "\"Black screen with Tails artwork. 'Boot menu' with two options 'Live' " +#| "and 'Live (failsafe)'.\"]]\n" +msgid "" +"[[!img install/inc/screenshots/syslinux.png link=\"no\" alt=\"Black screen " +"('SYSLINUX') with Tails logo and 2 options: 'Tails' and 'Tails " +"(Troubleshooting Mode)'.\"]]" +msgstr "" +" [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" +"\"Schwarzer Bildschirm mit Tails-Hintergrund. 'Boot-Menü' mit den Optionen " +"'Live' und 'Live (failsafe)'.\"]]\n" + #. type: Content of: <div><p> msgid "" -"After you reach the <span class=\"application\">Boot Loader Menu</span>, you " -"can skip the rest of this section and <a href=\"#greeter\">wait until <span " -"class=\"application\">Tails Greeter</span> appears</a>." +"After you reach the Boot Loader, either <em>GRUB</em> or <em>SYSLINUX</em>, " +"you can skip the rest of this section and <a href=\"#welcome-screen\">wait " +"until the Welcome Screen appears</a>." msgstr "" #. type: Content of: <h3> -msgid "Getting to the boot menu" +msgid "Getting to the Boot Menu" msgstr "" #. type: Content of: <p> msgid "" -"On most computers, you can press a <em>boot menu key</em> to display a list " +"On most computers, you can press a <em>Boot Menu key</em> to display a list " "of possible devices to start from. The following instructions explain how to " -"display the boot menu and start on the USB stick. The following screenshot " -"is an example of a boot menu:" +"display the Boot Menu and start on the USB stick. The following screenshot " +"is an example of a Boot Menu:" msgstr "" #. type: Content of: <p> @@ -103,7 +134,7 @@ msgstr "" #. type: Content of: <ol><li><p> msgid "" -"Identify the possible boot menu keys for the computer depending on the " +"Identify the possible Boot Menu keys for the computer depending on the " "computer manufacturer in the following list:" msgstr "" @@ -198,37 +229,37 @@ msgstr "" #. type: Content of: <ol><li><div><p> msgid "" "On many computers, a message is displayed very briefly when switching on " -"that also explains how to get to the boot menu or edit the BIOS settings." +"that also explains how to get to the Boot Menu or edit the BIOS settings." msgstr "" #. type: Content of: <ol><li><p> msgid "" "Switch on the computer and immediately press several times the first " -"possible boot menu key identified in step 2." +"possible Boot Menu key identified in step 2." msgstr "" #. type: Content of: <ol><li><p> msgid "" "If the computer starts on another operating system or returns an error " "message, shut down the computer again and repeat step 3 for all the possible " -"boot menu keys identified in step 2." +"Boot Menu keys identified in step 2." msgstr "" #. type: Content of: <ol><li><p> msgid "" -"If a boot menu with a list of devices appears, select your USB stick and " +"If a Boot Menu with a list of devices appears, select your USB stick and " "press <span class=\"keycap\">Enter</span>." msgstr "" #. type: Content of: <ol><li><div><p> msgid "" -"If the boot menu key that works on your computer is a different one than the " +"If the Boot Menu key that works on your computer is a different one than the " "first in the list, please let us know so we can improve the list. You can " "write to [[sajolida@pimienta.org]] (private email)." msgstr "" #. type: Content of: <p> -msgid "This animation explains how to use the boot menu key:" +msgid "This animation explains how to use the Boot Menu key:" msgstr "" #. type: Content of: <h3> @@ -242,121 +273,64 @@ msgid "" msgstr "" #. type: Content of: <h3> -msgid "Edit the BIOS settings" +msgid "Edit the BIOS settings (advanced users)" msgstr "" #. type: Content of: <p> msgid "" -"If none of the possible boot menu keys from the previous technique work, or " -"if the USB stick does not appear in the boot menu, you might need to edit " -"your BIOS settings." +"If none of the possible Boot Menu keys from the previous technique work, or " +"if the USB stick does not appear in the Boot Menu, you might need to edit " +"your BIOS settings. To learn how to edit the BIOS settings, search for the " +"user manual of the computer on the support website of the manufacturer." msgstr "" #. type: Content of: <div><p> msgid "" -"Search for the user manual of the computer on the website of its " -"manufacturer to learn how to edit the BIOS settings:" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://us.acer.com/ac/en/US/content/drivers\">Acer</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"https://www.asus.com/us/support/\">Asus</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"https://www.dell.com/support/home/us/en/19/Products/\">Dell</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"https://www.fujitsu.com/global/support/products/software/manual/" -"\">Fujitsu</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"https://support.hp.com/us-en/products/\">HP</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://support.lenovo.com/us/en/\">Lenovo</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://www.samsung.com/us/support/downloads\">Samsung</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://esupport.sony.com/US\">Sony</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"http://support.toshiba.com/support/products?cat=Computers" -"\">Toshiba</a>" +"Take note of the changes that you apply to the BIOS settings. That way, you " +"can revert the changes if they prevent the computer from starting on its " +"usual operating system." msgstr "" #. type: Content of: <p> msgid "" -"In the BIOS settings, try to apply the following changes one by one and " -"restart the computer after each change. Some changes might not apply to " -"certain computer models." +"In the BIOS settings, try to apply the following changes. Some changes might " +"not apply to certain computer models." msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <ul><li><p> msgid "" -"Take note of the changes that you apply to the BIOS settings. That way, you " -"can revert the changes if they prevent the computer from starting on its " -"usual operating system." +"There might be an option in your BIOS to enable the Boot Menu key. Make sure " +"that the Boot Menu key is enabled. This option might be called <strong>Boot " +"Device List</strong> or differently depending on the computer." msgstr "" -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "" -"Edit the <strong>Boot Order</strong>. Depending on the computer model you " -"might see an entry for <strong>removable devices</strong> or <strong>USB " -"media</strong>. Move this entry to the top of the list to force the computer " -"to try to start from the USB stick before starting from the internal hard " -"disk." +"Edit the <strong>Boot Order</strong>. Depending on the computer, you might " +"see an entry for <strong>removable devices</strong> or <strong>USB media</" +"strong>. Move this entry to the top of the list to force the computer to try " +"to start from the USB stick before starting from the internal hard disk." msgstr "" -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "Disable <strong>Fast boot</strong>." msgstr "" -#. type: Content of: <ol><li><p> -msgid "" -"If the computer is configured to start with <strong>legacy BIOS</strong>, " -"try to configure it to start with <strong>UEFI</strong>. Else, if the " -"computer is configured to start with <strong>UEFI</strong>, try to configure " -"it to start with <strong>legacy BIOS</strong>. To do so, try any of the " -"following options if available:" -msgstr "" - -#. type: Content of: <ol><li><ul><li> -msgid "Enable <strong>Legacy mode</strong>" +#. type: Content of: <ul><li><p> +msgid "Enable <strong>CSM boot</strong>." msgstr "" -#. type: Content of: <ol><li><ul><li> +#. type: Content of: <ul><li><p> msgid "" -"Disable <strong>Secure boot</strong> (see the <a href=\"https://docs." -"microsoft.com/en-us/windows-hardware/manufacture/desktop/disabling-secure-" -"boot\">Microsoft documentation</a>)" -msgstr "" - -#. type: Content of: <ol><li><ul><li> -msgid "Enable <strong>CSM boot</strong>" -msgstr "" - -#. type: Content of: <ol><li><ul><li> -msgid "Disable <strong>UEFI</strong>" +"Enable <strong>Legacy boot</strong> in addition to UEFI. The computer might " +"not start anymore on its regular operating system if you disable UEFI " +"completely or if you only enable Legacy boot." msgstr "" -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "" -"Try to upgrade the BIOS to the latest version provided by the manufacturer." +"Try to upgrade the BIOS. To do so, refer to the support website of the " +"computer manufacturer." msgstr "" #. type: Content of: <div><p> @@ -543,20 +517,6 @@ msgstr "" #~ "\"\"]]\n" #~ msgstr " [[!img install/inc/screenshots/desktop.png link=\"no\"]]\n" -#, fuzzy -#~| msgid "" -#~| " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" -#~| "\"Black screen with Tails artwork. 'Boot menu' with two options 'Live' " -#~| "and 'Live (failsafe)'.\"]]\n" -#~ msgid "" -#~ " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" -#~ "\"Black screen with Tails artwork. Boot Loader Menu with two options " -#~ "'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" -#~ msgstr "" -#~ " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" -#~ "\"Schwarzer Bildschirm mit Tails-Hintergrund. 'Boot-Menü' mit den " -#~ "Optionen 'Live' und 'Live (failsafe)'.\"]]\n" - #, fuzzy #~| msgid "" #~| " <div class=\"bug mac-dvd\">\n" diff --git a/wiki/src/install/inc/steps/pc_boot_menu.inline.es.po b/wiki/src/install/inc/steps/pc_boot_menu.inline.es.po index bbc5d4829139b06882deff51f4021d7f822c62f0..ec832b794b5163805ced122284b1d7ebd17616a1 100644 --- a/wiki/src/install/inc/steps/pc_boot_menu.inline.es.po +++ b/wiki/src/install/inc/steps/pc_boot_menu.inline.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-28 18:06+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2019-08-16 12:46+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -29,7 +29,7 @@ msgstr "" #. type: Content of: <ul><li> msgid "" -"On most computers, our basic instructions to get to the boot menu work fine." +"On most computers, our basic instructions to get to the Boot Menu work fine." msgstr "" #. type: Content of: <ul><li> @@ -46,34 +46,65 @@ msgstr "" #. type: Content of: <p> msgid "" -"The goal is to reach the <span class=\"application\">Boot Loader Menu</span> " -"of Tails:" +"The goal is to reach the Boot Loader of Tails. Depending on the computer, " +"the Boot Loader might be either <em>GRUB</em> or <em>SYSLINUX</em>." msgstr "" #. type: Content of: <p> +msgid "This is what <em>GRUB</em> looks like:" +msgstr "" + +#. type: Content of: <p> +#, fuzzy +#| msgid "" +#| " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" +#| "\"Black screen with Tails artwork. Boot Loader Menu with two options " +#| "'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +msgid "" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU " +"GRUB') with Tails logo and 2 options: 'Tails' and 'Tails (Troubleshooting " +"Mode)'.\"]]" +msgstr "" +" [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" +"\"Pantalla negra con el logo de Tails. Menú de arranque con dos opciones " +"'Tails' y 'Tails (Modo seguro)'.\"]]\n" + +#. type: Content of: <p> +msgid "This is what <em>SYSLINUX</em> looks like:" +msgstr "" + +#. type: Content of: <p> +#, fuzzy +#| msgid "" +#| " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" +#| "\"Black screen with Tails artwork. Boot Loader Menu with two options " +#| "'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" msgid "" -"[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black " -"screen with Tails artwork. Boot Loader Menu with two options 'Tails' and " -"'Tails (Troubleshooting Mode)'.\"]]" +"[[!img install/inc/screenshots/syslinux.png link=\"no\" alt=\"Black screen " +"('SYSLINUX') with Tails logo and 2 options: 'Tails' and 'Tails " +"(Troubleshooting Mode)'.\"]]" msgstr "" +" [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" +"\"Pantalla negra con el logo de Tails. Menú de arranque con dos opciones " +"'Tails' y 'Tails (Modo seguro)'.\"]]\n" #. type: Content of: <div><p> msgid "" -"After you reach the <span class=\"application\">Boot Loader Menu</span>, you " -"can skip the rest of this section and <a href=\"#greeter\">wait until <span " -"class=\"application\">Tails Greeter</span> appears</a>." +"After you reach the Boot Loader, either <em>GRUB</em> or <em>SYSLINUX</em>, " +"you can skip the rest of this section and <a href=\"#welcome-screen\">wait " +"until the Welcome Screen appears</a>." msgstr "" #. type: Content of: <h3> -msgid "Getting to the boot menu" +msgid "Getting to the Boot Menu" msgstr "" #. type: Content of: <p> msgid "" -"On most computers, you can press a <em>boot menu key</em> to display a list " +"On most computers, you can press a <em>Boot Menu key</em> to display a list " "of possible devices to start from. The following instructions explain how to " -"display the boot menu and start on the USB stick. The following screenshot " -"is an example of a boot menu:" +"display the Boot Menu and start on the USB stick. The following screenshot " +"is an example of a Boot Menu:" msgstr "" #. type: Content of: <p> @@ -103,7 +134,7 @@ msgstr "" #. type: Content of: <ol><li><p> msgid "" -"Identify the possible boot menu keys for the computer depending on the " +"Identify the possible Boot Menu keys for the computer depending on the " "computer manufacturer in the following list:" msgstr "" @@ -198,37 +229,37 @@ msgstr "" #. type: Content of: <ol><li><div><p> msgid "" "On many computers, a message is displayed very briefly when switching on " -"that also explains how to get to the boot menu or edit the BIOS settings." +"that also explains how to get to the Boot Menu or edit the BIOS settings." msgstr "" #. type: Content of: <ol><li><p> msgid "" "Switch on the computer and immediately press several times the first " -"possible boot menu key identified in step 2." +"possible Boot Menu key identified in step 2." msgstr "" #. type: Content of: <ol><li><p> msgid "" "If the computer starts on another operating system or returns an error " "message, shut down the computer again and repeat step 3 for all the possible " -"boot menu keys identified in step 2." +"Boot Menu keys identified in step 2." msgstr "" #. type: Content of: <ol><li><p> msgid "" -"If a boot menu with a list of devices appears, select your USB stick and " +"If a Boot Menu with a list of devices appears, select your USB stick and " "press <span class=\"keycap\">Enter</span>." msgstr "" #. type: Content of: <ol><li><div><p> msgid "" -"If the boot menu key that works on your computer is a different one than the " +"If the Boot Menu key that works on your computer is a different one than the " "first in the list, please let us know so we can improve the list. You can " "write to [[sajolida@pimienta.org]] (private email)." msgstr "" #. type: Content of: <p> -msgid "This animation explains how to use the boot menu key:" +msgid "This animation explains how to use the Boot Menu key:" msgstr "" #. type: Content of: <h3> @@ -242,121 +273,64 @@ msgid "" msgstr "" #. type: Content of: <h3> -msgid "Edit the BIOS settings" +msgid "Edit the BIOS settings (advanced users)" msgstr "" #. type: Content of: <p> msgid "" -"If none of the possible boot menu keys from the previous technique work, or " -"if the USB stick does not appear in the boot menu, you might need to edit " -"your BIOS settings." +"If none of the possible Boot Menu keys from the previous technique work, or " +"if the USB stick does not appear in the Boot Menu, you might need to edit " +"your BIOS settings. To learn how to edit the BIOS settings, search for the " +"user manual of the computer on the support website of the manufacturer." msgstr "" #. type: Content of: <div><p> msgid "" -"Search for the user manual of the computer on the website of its " -"manufacturer to learn how to edit the BIOS settings:" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://us.acer.com/ac/en/US/content/drivers\">Acer</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"https://www.asus.com/us/support/\">Asus</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"https://www.dell.com/support/home/us/en/19/Products/\">Dell</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"https://www.fujitsu.com/global/support/products/software/manual/" -"\">Fujitsu</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"https://support.hp.com/us-en/products/\">HP</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://support.lenovo.com/us/en/\">Lenovo</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://www.samsung.com/us/support/downloads\">Samsung</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://esupport.sony.com/US\">Sony</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"http://support.toshiba.com/support/products?cat=Computers" -"\">Toshiba</a>" +"Take note of the changes that you apply to the BIOS settings. That way, you " +"can revert the changes if they prevent the computer from starting on its " +"usual operating system." msgstr "" #. type: Content of: <p> msgid "" -"In the BIOS settings, try to apply the following changes one by one and " -"restart the computer after each change. Some changes might not apply to " -"certain computer models." +"In the BIOS settings, try to apply the following changes. Some changes might " +"not apply to certain computer models." msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <ul><li><p> msgid "" -"Take note of the changes that you apply to the BIOS settings. That way, you " -"can revert the changes if they prevent the computer from starting on its " -"usual operating system." +"There might be an option in your BIOS to enable the Boot Menu key. Make sure " +"that the Boot Menu key is enabled. This option might be called <strong>Boot " +"Device List</strong> or differently depending on the computer." msgstr "" -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "" -"Edit the <strong>Boot Order</strong>. Depending on the computer model you " -"might see an entry for <strong>removable devices</strong> or <strong>USB " -"media</strong>. Move this entry to the top of the list to force the computer " -"to try to start from the USB stick before starting from the internal hard " -"disk." +"Edit the <strong>Boot Order</strong>. Depending on the computer, you might " +"see an entry for <strong>removable devices</strong> or <strong>USB media</" +"strong>. Move this entry to the top of the list to force the computer to try " +"to start from the USB stick before starting from the internal hard disk." msgstr "" -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "Disable <strong>Fast boot</strong>." msgstr "" -#. type: Content of: <ol><li><p> -msgid "" -"If the computer is configured to start with <strong>legacy BIOS</strong>, " -"try to configure it to start with <strong>UEFI</strong>. Else, if the " -"computer is configured to start with <strong>UEFI</strong>, try to configure " -"it to start with <strong>legacy BIOS</strong>. To do so, try any of the " -"following options if available:" +#. type: Content of: <ul><li><p> +msgid "Enable <strong>CSM boot</strong>." msgstr "" -#. type: Content of: <ol><li><ul><li> -msgid "Enable <strong>Legacy mode</strong>" -msgstr "" - -#. type: Content of: <ol><li><ul><li> +#. type: Content of: <ul><li><p> msgid "" -"Disable <strong>Secure boot</strong> (see the <a href=\"https://docs." -"microsoft.com/en-us/windows-hardware/manufacture/desktop/disabling-secure-" -"boot\">Microsoft documentation</a>)" -msgstr "" - -#. type: Content of: <ol><li><ul><li> -msgid "Enable <strong>CSM boot</strong>" -msgstr "" - -#. type: Content of: <ol><li><ul><li> -msgid "Disable <strong>UEFI</strong>" +"Enable <strong>Legacy boot</strong> in addition to UEFI. The computer might " +"not start anymore on its regular operating system if you disable UEFI " +"completely or if you only enable Legacy boot." msgstr "" -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "" -"Try to upgrade the BIOS to the latest version provided by the manufacturer." +"Try to upgrade the BIOS. To do so, refer to the support website of the " +"computer manufacturer." msgstr "" #. type: Content of: <div><p> @@ -528,15 +502,6 @@ msgstr "" #~ " [[!img install/inc/screenshots/desktop.png link=\"no\" alt=" #~ "\"EscritorioTails\"]]\n" -#~ msgid "" -#~ " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" -#~ "\"Black screen with Tails artwork. Boot Loader Menu with two options " -#~ "'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" -#~ msgstr "" -#~ " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" -#~ "\"Pantalla negra con el logo de Tails. Menú de arranque con dos opciones " -#~ "'Tails' y 'Tails (Modo seguro)'.\"]]\n" - #, fuzzy #~| msgid "" #~| " <div class=\"bug mac-dvd\">\n" diff --git a/wiki/src/install/inc/steps/pc_boot_menu.inline.fa.po b/wiki/src/install/inc/steps/pc_boot_menu.inline.fa.po index 274b2da4c714a4b651fe093f6b923a01f1d15582..e6f6656d6512e2d0b096f622aacbcf5634d63753 100644 --- a/wiki/src/install/inc/steps/pc_boot_menu.inline.fa.po +++ b/wiki/src/install/inc/steps/pc_boot_menu.inline.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-28 18:06+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\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" @@ -28,7 +28,7 @@ msgstr "" #. type: Content of: <ul><li> msgid "" -"On most computers, our basic instructions to get to the boot menu work fine." +"On most computers, our basic instructions to get to the Boot Menu work fine." msgstr "" #. type: Content of: <ul><li> @@ -45,34 +45,49 @@ msgstr "" #. type: Content of: <p> msgid "" -"The goal is to reach the <span class=\"application\">Boot Loader Menu</span> " -"of Tails:" +"The goal is to reach the Boot Loader of Tails. Depending on the computer, " +"the Boot Loader might be either <em>GRUB</em> or <em>SYSLINUX</em>." +msgstr "" + +#. type: Content of: <p> +msgid "This is what <em>GRUB</em> looks like:" msgstr "" #. type: Content of: <p> msgid "" -"[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black " -"screen with Tails artwork. Boot Loader Menu with two options 'Tails' and " -"'Tails (Troubleshooting Mode)'.\"]]" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU " +"GRUB') with Tails logo and 2 options: 'Tails' and 'Tails (Troubleshooting " +"Mode)'.\"]]" +msgstr "" + +#. type: Content of: <p> +msgid "This is what <em>SYSLINUX</em> looks like:" +msgstr "" + +#. type: Content of: <p> +msgid "" +"[[!img install/inc/screenshots/syslinux.png link=\"no\" alt=\"Black screen " +"('SYSLINUX') with Tails logo and 2 options: 'Tails' and 'Tails " +"(Troubleshooting Mode)'.\"]]" msgstr "" #. type: Content of: <div><p> msgid "" -"After you reach the <span class=\"application\">Boot Loader Menu</span>, you " -"can skip the rest of this section and <a href=\"#greeter\">wait until <span " -"class=\"application\">Tails Greeter</span> appears</a>." +"After you reach the Boot Loader, either <em>GRUB</em> or <em>SYSLINUX</em>, " +"you can skip the rest of this section and <a href=\"#welcome-screen\">wait " +"until the Welcome Screen appears</a>." msgstr "" #. type: Content of: <h3> -msgid "Getting to the boot menu" +msgid "Getting to the Boot Menu" msgstr "" #. type: Content of: <p> msgid "" -"On most computers, you can press a <em>boot menu key</em> to display a list " +"On most computers, you can press a <em>Boot Menu key</em> to display a list " "of possible devices to start from. The following instructions explain how to " -"display the boot menu and start on the USB stick. The following screenshot " -"is an example of a boot menu:" +"display the Boot Menu and start on the USB stick. The following screenshot " +"is an example of a Boot Menu:" msgstr "" #. type: Content of: <p> @@ -102,7 +117,7 @@ msgstr "" #. type: Content of: <ol><li><p> msgid "" -"Identify the possible boot menu keys for the computer depending on the " +"Identify the possible Boot Menu keys for the computer depending on the " "computer manufacturer in the following list:" msgstr "" @@ -197,37 +212,37 @@ msgstr "" #. type: Content of: <ol><li><div><p> msgid "" "On many computers, a message is displayed very briefly when switching on " -"that also explains how to get to the boot menu or edit the BIOS settings." +"that also explains how to get to the Boot Menu or edit the BIOS settings." msgstr "" #. type: Content of: <ol><li><p> msgid "" "Switch on the computer and immediately press several times the first " -"possible boot menu key identified in step 2." +"possible Boot Menu key identified in step 2." msgstr "" #. type: Content of: <ol><li><p> msgid "" "If the computer starts on another operating system or returns an error " "message, shut down the computer again and repeat step 3 for all the possible " -"boot menu keys identified in step 2." +"Boot Menu keys identified in step 2." msgstr "" #. type: Content of: <ol><li><p> msgid "" -"If a boot menu with a list of devices appears, select your USB stick and " +"If a Boot Menu with a list of devices appears, select your USB stick and " "press <span class=\"keycap\">Enter</span>." msgstr "" #. type: Content of: <ol><li><div><p> msgid "" -"If the boot menu key that works on your computer is a different one than the " +"If the Boot Menu key that works on your computer is a different one than the " "first in the list, please let us know so we can improve the list. You can " "write to [[sajolida@pimienta.org]] (private email)." msgstr "" #. type: Content of: <p> -msgid "This animation explains how to use the boot menu key:" +msgid "This animation explains how to use the Boot Menu key:" msgstr "" #. type: Content of: <h3> @@ -241,121 +256,64 @@ msgid "" msgstr "" #. type: Content of: <h3> -msgid "Edit the BIOS settings" +msgid "Edit the BIOS settings (advanced users)" msgstr "" #. type: Content of: <p> msgid "" -"If none of the possible boot menu keys from the previous technique work, or " -"if the USB stick does not appear in the boot menu, you might need to edit " -"your BIOS settings." +"If none of the possible Boot Menu keys from the previous technique work, or " +"if the USB stick does not appear in the Boot Menu, you might need to edit " +"your BIOS settings. To learn how to edit the BIOS settings, search for the " +"user manual of the computer on the support website of the manufacturer." msgstr "" #. type: Content of: <div><p> msgid "" -"Search for the user manual of the computer on the website of its " -"manufacturer to learn how to edit the BIOS settings:" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://us.acer.com/ac/en/US/content/drivers\">Acer</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"https://www.asus.com/us/support/\">Asus</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"https://www.dell.com/support/home/us/en/19/Products/\">Dell</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"https://www.fujitsu.com/global/support/products/software/manual/" -"\">Fujitsu</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"https://support.hp.com/us-en/products/\">HP</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://support.lenovo.com/us/en/\">Lenovo</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://www.samsung.com/us/support/downloads\">Samsung</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://esupport.sony.com/US\">Sony</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"http://support.toshiba.com/support/products?cat=Computers" -"\">Toshiba</a>" +"Take note of the changes that you apply to the BIOS settings. That way, you " +"can revert the changes if they prevent the computer from starting on its " +"usual operating system." msgstr "" #. type: Content of: <p> msgid "" -"In the BIOS settings, try to apply the following changes one by one and " -"restart the computer after each change. Some changes might not apply to " -"certain computer models." +"In the BIOS settings, try to apply the following changes. Some changes might " +"not apply to certain computer models." msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <ul><li><p> msgid "" -"Take note of the changes that you apply to the BIOS settings. That way, you " -"can revert the changes if they prevent the computer from starting on its " -"usual operating system." +"There might be an option in your BIOS to enable the Boot Menu key. Make sure " +"that the Boot Menu key is enabled. This option might be called <strong>Boot " +"Device List</strong> or differently depending on the computer." msgstr "" -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "" -"Edit the <strong>Boot Order</strong>. Depending on the computer model you " -"might see an entry for <strong>removable devices</strong> or <strong>USB " -"media</strong>. Move this entry to the top of the list to force the computer " -"to try to start from the USB stick before starting from the internal hard " -"disk." +"Edit the <strong>Boot Order</strong>. Depending on the computer, you might " +"see an entry for <strong>removable devices</strong> or <strong>USB media</" +"strong>. Move this entry to the top of the list to force the computer to try " +"to start from the USB stick before starting from the internal hard disk." msgstr "" -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "Disable <strong>Fast boot</strong>." msgstr "" -#. type: Content of: <ol><li><p> -msgid "" -"If the computer is configured to start with <strong>legacy BIOS</strong>, " -"try to configure it to start with <strong>UEFI</strong>. Else, if the " -"computer is configured to start with <strong>UEFI</strong>, try to configure " -"it to start with <strong>legacy BIOS</strong>. To do so, try any of the " -"following options if available:" -msgstr "" - -#. type: Content of: <ol><li><ul><li> -msgid "Enable <strong>Legacy mode</strong>" +#. type: Content of: <ul><li><p> +msgid "Enable <strong>CSM boot</strong>." msgstr "" -#. type: Content of: <ol><li><ul><li> +#. type: Content of: <ul><li><p> msgid "" -"Disable <strong>Secure boot</strong> (see the <a href=\"https://docs." -"microsoft.com/en-us/windows-hardware/manufacture/desktop/disabling-secure-" -"boot\">Microsoft documentation</a>)" -msgstr "" - -#. type: Content of: <ol><li><ul><li> -msgid "Enable <strong>CSM boot</strong>" +"Enable <strong>Legacy boot</strong> in addition to UEFI. The computer might " +"not start anymore on its regular operating system if you disable UEFI " +"completely or if you only enable Legacy boot." msgstr "" -#. type: Content of: <ol><li><ul><li> -msgid "Disable <strong>UEFI</strong>" -msgstr "" - -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "" -"Try to upgrade the BIOS to the latest version provided by the manufacturer." +"Try to upgrade the BIOS. To do so, refer to the support website of the " +"computer manufacturer." msgstr "" #. type: Content of: <div><p> diff --git a/wiki/src/install/inc/steps/pc_boot_menu.inline.fr.po b/wiki/src/install/inc/steps/pc_boot_menu.inline.fr.po index f24ae8c3faaccfba249e875c41486035dec1973c..1cb04ed276fcc189e6e8fed7519fdf161f8f7538 100644 --- a/wiki/src/install/inc/steps/pc_boot_menu.inline.fr.po +++ b/wiki/src/install/inc/steps/pc_boot_menu.inline.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-28 18:06+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-01-03 14:25+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -30,8 +30,12 @@ msgstr "" "modèle de l'ordinateur :" #. type: Content of: <ul><li> +#, fuzzy +#| msgid "" +#| "On most computers, our basic instructions to get to the boot menu work " +#| "fine." msgid "" -"On most computers, our basic instructions to get to the boot menu work fine." +"On most computers, our basic instructions to get to the Boot Menu work fine." msgstr "" "Sur la plupart des ordinateurs, nos instructions de base pour obtenir le " "menu de démarrage fonctionnent bien." @@ -54,27 +58,58 @@ msgstr "" #. type: Content of: <p> msgid "" -"The goal is to reach the <span class=\"application\">Boot Loader Menu</span> " -"of Tails:" +"The goal is to reach the Boot Loader of Tails. Depending on the computer, " +"the Boot Loader might be either <em>GRUB</em> or <em>SYSLINUX</em>." +msgstr "" + +#. type: Content of: <p> +msgid "This is what <em>GRUB</em> looks like:" +msgstr "" + +#. type: Content of: <p> +#, fuzzy +#| msgid "" +#| "[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" +#| "\"Black screen with Tails artwork. Boot Loader Menu with two options " +#| "'Tails' and 'Tails (Troubleshooting Mode)'.\"]]" +msgid "" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU " +"GRUB') with Tails logo and 2 options: 'Tails' and 'Tails (Troubleshooting " +"Mode)'.\"]]" +msgstr "" +"[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Écran " +"noir avec le logo Tails. Le menu du chargeur d'amorçage avec deux options " +"'Tails' et 'Tails (Troubleshooting Mode)'.\"]]" + +#. type: Content of: <p> +msgid "This is what <em>SYSLINUX</em> looks like:" msgstr "" -"Le but est d'obtenir le <span class=\"application\">menu du chargeur " -"d’amorçage</span> de Tails :" #. type: Content of: <p> +#, fuzzy +#| msgid "" +#| "[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" +#| "\"Black screen with Tails artwork. Boot Loader Menu with two options " +#| "'Tails' and 'Tails (Troubleshooting Mode)'.\"]]" msgid "" -"[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black " -"screen with Tails artwork. Boot Loader Menu with two options 'Tails' and " -"'Tails (Troubleshooting Mode)'.\"]]" +"[[!img install/inc/screenshots/syslinux.png link=\"no\" alt=\"Black screen " +"('SYSLINUX') with Tails logo and 2 options: 'Tails' and 'Tails " +"(Troubleshooting Mode)'.\"]]" msgstr "" "[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Écran " "noir avec le logo Tails. Le menu du chargeur d'amorçage avec deux options " "'Tails' et 'Tails (Troubleshooting Mode)'.\"]]" #. type: Content of: <div><p> +#, fuzzy +#| msgid "" +#| "After you reach the <span class=\"application\">Boot Loader Menu</span>, " +#| "you can skip the rest of this section and <a href=\"#greeter\">wait until " +#| "<span class=\"application\">Tails Greeter</span> appears</a>." msgid "" -"After you reach the <span class=\"application\">Boot Loader Menu</span>, you " -"can skip the rest of this section and <a href=\"#greeter\">wait until <span " -"class=\"application\">Tails Greeter</span> appears</a>." +"After you reach the Boot Loader, either <em>GRUB</em> or <em>SYSLINUX</em>, " +"you can skip the rest of this section and <a href=\"#welcome-screen\">wait " +"until the Welcome Screen appears</a>." msgstr "" "Après avoir obtenu le <span class=\"application\">menu du chargeur " "d'amorçage</span>, vous pouvez ignorer le reste de cette section et <a href=" @@ -82,15 +117,23 @@ msgstr "" "Greeter</span> apparaisse</a>." #. type: Content of: <h3> -msgid "Getting to the boot menu" +#, fuzzy +#| msgid "Getting to the boot menu" +msgid "Getting to the Boot Menu" msgstr "Obtenir le menu de démarrage" #. type: Content of: <p> +#, fuzzy +#| msgid "" +#| "On most computers, you can press a <em>boot menu key</em> to display a " +#| "list of possible devices to start from. The following instructions " +#| "explain how to display the boot menu and start on the USB stick. The " +#| "following screenshot is an example of a boot menu:" msgid "" -"On most computers, you can press a <em>boot menu key</em> to display a list " +"On most computers, you can press a <em>Boot Menu key</em> to display a list " "of possible devices to start from. The following instructions explain how to " -"display the boot menu and start on the USB stick. The following screenshot " -"is an example of a boot menu:" +"display the Boot Menu and start on the USB stick. The following screenshot " +"is an example of a Boot Menu:" msgstr "" "Sur la plupart des ordinateurs, il est possible d'appuyer sur une touche " "afin d'obtenir un menu (souvent appelé *Boot Menu*) permettant de choisir le " @@ -125,10 +168,18 @@ msgid "" msgstr "" #. type: Content of: <ol><li><p> +#, fuzzy +#| msgid "" +#| " 1. Identify the potential boot menu keys for the computer depending " +#| "on\n" +#| " the computer manufacturer in the following list:\n" msgid "" -"Identify the possible boot menu keys for the computer depending on the " +"Identify the possible Boot Menu keys for the computer depending on the " "computer manufacturer in the following list:" msgstr "" +" 1. Identifier la touche pour obtenir le *Boot Menu*. La liste suivante " +"donne\n" +" des possibilités selon la marque de l'ordinateur :\n" #. type: Content of: <ol><li><table><tr><th> msgid "Manufacturer" @@ -221,37 +272,64 @@ msgstr "" #. type: Content of: <ol><li><div><p> msgid "" "On many computers, a message is displayed very briefly when switching on " -"that also explains how to get to the boot menu or edit the BIOS settings." +"that also explains how to get to the Boot Menu or edit the BIOS settings." msgstr "" #. type: Content of: <ol><li><p> +#, fuzzy +#| msgid "" +#| " Immediately press several times the first potential boot menu key " +#| "identified in step 3.\n" msgid "" "Switch on the computer and immediately press several times the first " -"possible boot menu key identified in step 2." +"possible Boot Menu key identified in step 2." msgstr "" +" Immédiatement après, appuyer plusieurs fois sur la première des " +"touches possibles identifiée à l'étape 3.\n" #. type: Content of: <ol><li><p> +#, fuzzy +#| msgid "" +#| " a. If the computer starts on another operating system or " +#| "returns an\n" +#| " error message, then shut down the computer again and " +#| "repeat step\n" +#| " 4 for all the potential boot menu keys identified in step " +#| "3.\n" msgid "" "If the computer starts on another operating system or returns an error " "message, shut down the computer again and repeat step 3 for all the possible " -"boot menu keys identified in step 2." +"Boot Menu keys identified in step 2." msgstr "" +" a. Si l'ordinateur démarre un autre système d'exploitation ou " +"qu'il affiche un\n" +" message d'erreur, l'éteindre à nouveau et répéter l'étape 4 " +"pour chacune des\n" +" touches possibles identifiées à l'étape 3.\n" #. type: Content of: <ol><li><p> +#, fuzzy +#| msgid "" +#| " a. If a boot menu with a list of devices appears, select your USB " +#| "stick\n" +#| " and press <span class=\"keycap\">Enter</span>.\n" msgid "" -"If a boot menu with a list of devices appears, select your USB stick and " +"If a Boot Menu with a list of devices appears, select your USB stick and " "press <span class=\"keycap\">Enter</span>." msgstr "" +" a. Si un menu avec une liste de périphériques apparaît, choisir votre " +"clé USB\n" +" et appuyer sur <span class=\"keycap\">Entrée</span>.\n" #. type: Content of: <ol><li><div><p> msgid "" -"If the boot menu key that works on your computer is a different one than the " +"If the Boot Menu key that works on your computer is a different one than the " "first in the list, please let us know so we can improve the list. You can " "write to [[sajolida@pimienta.org]] (private email)." msgstr "" #. type: Content of: <p> -msgid "This animation explains how to use the boot menu key:" +msgid "This animation explains how to use the Boot Menu key:" msgstr "" #. type: Content of: <h3> @@ -265,8 +343,10 @@ msgid "" msgstr "" #. type: Content of: <h3> -msgid "Edit the BIOS settings" -msgstr "" +#, fuzzy +#| msgid " ### Edit the BIOS settings\n" +msgid "Edit the BIOS settings (advanced users)" +msgstr " ### Modifier les réglages du BIOS\n" #. type: Content of: <p> #, fuzzy @@ -276,69 +356,16 @@ msgstr "" #| " the USB stick does not appear in the list, then try the second\n" #| " troubleshooting technique described below.\n" msgid "" -"If none of the possible boot menu keys from the previous technique work, or " -"if the USB stick does not appear in the boot menu, you might need to edit " -"your BIOS settings." +"If none of the possible Boot Menu keys from the previous technique work, or " +"if the USB stick does not appear in the Boot Menu, you might need to edit " +"your BIOS settings. To learn how to edit the BIOS settings, search for the " +"user manual of the computer on the support website of the manufacturer." msgstr "" " Si aucune des touches possibles identifiées lors de l'étape 3 ne " "fonctionne ou que\n" " la clé USB n'apparaît pas dans la liste, alors essayer la seconde\n" " technique décrite ci-dessous.\n" -#. type: Content of: <div><p> -msgid "" -"Search for the user manual of the computer on the website of its " -"manufacturer to learn how to edit the BIOS settings:" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://us.acer.com/ac/en/US/content/drivers\">Acer</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"https://www.asus.com/us/support/\">Asus</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"https://www.dell.com/support/home/us/en/19/Products/\">Dell</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"https://www.fujitsu.com/global/support/products/software/manual/" -"\">Fujitsu</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"https://support.hp.com/us-en/products/\">HP</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://support.lenovo.com/us/en/\">Lenovo</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://www.samsung.com/us/support/downloads\">Samsung</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://esupport.sony.com/US\">Sony</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"http://support.toshiba.com/support/products?cat=Computers" -"\">Toshiba</a>" -msgstr "" - -#. type: Content of: <p> -msgid "" -"In the BIOS settings, try to apply the following changes one by one and " -"restart the computer after each change. Some changes might not apply to " -"certain computer models." -msgstr "" - #. type: Content of: <div><p> #, fuzzy #| msgid "" @@ -362,7 +389,31 @@ msgstr "" " sur son système d'exploitation habituel.</p>\n" " </div>\n" -#. type: Content of: <ol><li><p> +#. type: Content of: <p> +#, fuzzy +#| msgid "" +#| " In the BIOS settings, try to apply the following changes one by one " +#| "and\n" +#| " restart the computer after each change. Some changes might not\n" +#| " apply to certain computer models.\n" +msgid "" +"In the BIOS settings, try to apply the following changes. Some changes might " +"not apply to certain computer models." +msgstr "" +" Dans les réglages du BIOS, essayer d'appliquer les modifications " +"suivantes une par une et\n" +" redémarrer l'ordinateur après chaque changement. Certaines modifications " +"peuvent ne\n" +" pas s'appliquer à certains modèles d'ordinateurs.\n" + +#. type: Content of: <ul><li><p> +msgid "" +"There might be an option in your BIOS to enable the Boot Menu key. Make sure " +"that the Boot Menu key is enabled. This option might be called <strong>Boot " +"Device List</strong> or differently depending on the computer." +msgstr "" + +#. type: Content of: <ul><li><p> #, fuzzy #| msgid "" #| " 1. Edit the **Boot Order**. Depending on the computer model you might\n" @@ -371,11 +422,10 @@ msgstr "" #| " to the top of the list to force the computer to try to start from\n" #| " the first USB stick before starting from the internal hard disk.\n" msgid "" -"Edit the <strong>Boot Order</strong>. Depending on the computer model you " -"might see an entry for <strong>removable devices</strong> or <strong>USB " -"media</strong>. Move this entry to the top of the list to force the computer " -"to try to start from the USB stick before starting from the internal hard " -"disk." +"Edit the <strong>Boot Order</strong>. Depending on the computer, you might " +"see an entry for <strong>removable devices</strong> or <strong>USB media</" +"strong>. Move this entry to the top of the list to force the computer to try " +"to start from the USB stick before starting from the internal hard disk." msgstr "" " 1. Modifier l'ordre des périphériques (**Boot Order**) sur lequel " "l'ordinateur cherche un système d'exploitation. Selon le modèle, vous " @@ -386,41 +436,25 @@ msgstr "" "sur\n" " la première clé USB avant qu'il ne démarre sur le disque interne.\n" -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "Disable <strong>Fast boot</strong>." msgstr "" -#. type: Content of: <ol><li><p> -msgid "" -"If the computer is configured to start with <strong>legacy BIOS</strong>, " -"try to configure it to start with <strong>UEFI</strong>. Else, if the " -"computer is configured to start with <strong>UEFI</strong>, try to configure " -"it to start with <strong>legacy BIOS</strong>. To do so, try any of the " -"following options if available:" +#. type: Content of: <ul><li><p> +msgid "Enable <strong>CSM boot</strong>." msgstr "" -#. type: Content of: <ol><li><ul><li> -msgid "Enable <strong>Legacy mode</strong>" -msgstr "" - -#. type: Content of: <ol><li><ul><li> +#. type: Content of: <ul><li><p> msgid "" -"Disable <strong>Secure boot</strong> (see the <a href=\"https://docs." -"microsoft.com/en-us/windows-hardware/manufacture/desktop/disabling-secure-" -"boot\">Microsoft documentation</a>)" -msgstr "" - -#. type: Content of: <ol><li><ul><li> -msgid "Enable <strong>CSM boot</strong>" +"Enable <strong>Legacy boot</strong> in addition to UEFI. The computer might " +"not start anymore on its regular operating system if you disable UEFI " +"completely or if you only enable Legacy boot." msgstr "" -#. type: Content of: <ol><li><ul><li> -msgid "Disable <strong>UEFI</strong>" -msgstr "" - -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "" -"Try to upgrade the BIOS to the latest version provided by the manufacturer." +"Try to upgrade the BIOS. To do so, refer to the support website of the " +"computer manufacturer." msgstr "" #. type: Content of: <div><p> @@ -447,6 +481,13 @@ msgid "" "inc/steps/reporting.inline\" raw=\"yes\"]] \"\"\"]]" msgstr "" +#~ msgid "" +#~ "The goal is to reach the <span class=\"application\">Boot Loader Menu</" +#~ "span> of Tails:" +#~ msgstr "" +#~ "Le but est d'obtenir le <span class=\"application\">menu du chargeur " +#~ "d’amorçage</span> de Tails :" + #, fuzzy #~| msgid " ### Report the problem to our support team\n" #~ msgid "Reporting the problem to our help desk" @@ -573,15 +614,6 @@ msgstr "" #~ msgid "Make sure that the first USB stick is plugged in the computer." #~ msgstr "S'assurer que la première clé USB est branchée à l'ordinateur." -#~ msgid "" -#~ " 1. Identify the potential boot menu keys for the computer depending " -#~ "on\n" -#~ " the computer manufacturer in the following list:\n" -#~ msgstr "" -#~ " 1. Identifier la touche pour obtenir le *Boot Menu*. La liste suivante " -#~ "donne\n" -#~ " des possibilités selon la marque de l'ordinateur :\n" - #~ msgid "" #~ " <table>\n" #~ " <tr><th>Manufacturer</th><th>Key</th></tr>\n" @@ -611,22 +643,6 @@ msgstr "" #~ " <tr><td>autres…</td><td>F12, Échap</td></tr>\n" #~ " </table>\n" -#~ msgid "" -#~ " Immediately press several times the first potential boot menu key " -#~ "identified in step 3.\n" -#~ msgstr "" -#~ " Immédiatement après, appuyer plusieurs fois sur la première des " -#~ "touches possibles identifiée à l'étape 3.\n" - -#~ msgid "" -#~ " a. If a boot menu with a list of devices appears, select your USB " -#~ "stick\n" -#~ " and press <span class=\"keycap\">Enter</span>.\n" -#~ msgstr "" -#~ " a. Si un menu avec une liste de périphériques apparaît, choisir " -#~ "votre clé USB\n" -#~ " et appuyer sur <span class=\"keycap\">Entrée</span>.\n" - #~ msgid " a. If the computer starts on another operating system, then:\n" #~ msgstr "" #~ " a. Si l'ordinateur démarre sur un autre système d'exploitation, " @@ -653,20 +669,6 @@ msgstr "" #~ "choisir votre clé USB\n" #~ " et appuyer sur <span class=\"keycap\">Entrée</span>.\n" -#~ msgid "" -#~ " a. If the computer starts on another operating system or " -#~ "returns an\n" -#~ " error message, then shut down the computer again and " -#~ "repeat step\n" -#~ " 4 for all the potential boot menu keys identified in step " -#~ "3.\n" -#~ msgstr "" -#~ " a. Si l'ordinateur démarre un autre système d'exploitation ou " -#~ "qu'il affiche un\n" -#~ " message d'erreur, l'éteindre à nouveau et répéter l'étape " -#~ "4 pour chacune des\n" -#~ " touches possibles identifiées à l'étape 3.\n" - #~ msgid " ### Check our list of known issues\n" #~ msgstr " ### Vérifier la liste des problèmes connus\n" @@ -679,9 +681,6 @@ msgstr "" #~ "modèle d'ordinateur\n" #~ " dans notre [[liste des problèmes connus|support/known_issues]].\n" -#~ msgid " ### Edit the BIOS settings\n" -#~ msgstr " ### Modifier les réglages du BIOS\n" - #~ msgid " You might need to edit the BIOS settings of the computer.\n" #~ msgstr "" #~ " Il est possible qu'il soit nécessaire de modifier les réglages du BIOS " @@ -726,18 +725,6 @@ msgstr "" #~ " </p>\n" #~ " </div>\n" -#~ msgid "" -#~ " In the BIOS settings, try to apply the following changes one by one " -#~ "and\n" -#~ " restart the computer after each change. Some changes might not\n" -#~ " apply to certain computer models.\n" -#~ msgstr "" -#~ " Dans les réglages du BIOS, essayer d'appliquer les modifications " -#~ "suivantes une par une et\n" -#~ " redémarrer l'ordinateur après chaque changement. Certaines " -#~ "modifications peuvent ne\n" -#~ " pas s'appliquer à certains modèles d'ordinateurs.\n" - #~ msgid "Disable **Fast boot**." #~ msgstr "Désactiver le démarrage rapide (**Fast boot**)." diff --git a/wiki/src/install/inc/steps/pc_boot_menu.inline.html b/wiki/src/install/inc/steps/pc_boot_menu.inline.html index 71dab9bb42c94ce7bd707f408df73c8486e68138..9d2c447af56486825fe1cfb3d2c3058e04049ed5 100644 --- a/wiki/src/install/inc/steps/pc_boot_menu.inline.html +++ b/wiki/src/install/inc/steps/pc_boot_menu.inline.html @@ -4,7 +4,7 @@ model of the computer:</p> <ul> -<li>On most computers, our basic instructions to get to the boot menu +<li>On most computers, our basic instructions to get to the Boot Menu work fine.</li> <li>On some computers, you might have to do more advanced techniques, like editing the BIOS settings.</li> @@ -12,25 +12,34 @@ like editing the BIOS settings.</li> But, it is very hard to know without trying.</li> </ul> -<p>The goal is to reach the <span class="application">Boot Loader -Menu</span> of Tails:</p> +<p>The goal is to reach the Boot Loader of Tails. Depending on the +computer, the Boot Loader might be either <em>GRUB</em> or +<em>SYSLINUX</em>.</p> -<p>[[!img install/inc/screenshots/boot_loader_menu.png link="no" alt="Black screen with Tails artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'."]]</p> +<p>This is what <em>GRUB</em> looks like:</p> + +<p>[[!img install/inc/screenshots/grub.png link="no" alt="Black screen ('GNU GRUB') with Tails +logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'."]]</p> + +<p>This is what <em>SYSLINUX</em> looks like:</p> + +<p>[[!img install/inc/screenshots/syslinux.png link="no" alt="Black screen ('SYSLINUX') with Tails +logo and 2 options: 'Tails' and 'Tails (Troubleshooting Mode)'."]]</p> <div class="next"> -<p>After you reach the <span class="application">Boot Loader Menu</span>, you -can skip the rest of this section and <a href="#greeter">wait until -<span class="application">Tails Greeter</span> appears</a>.</p> +<p>After you reach the Boot Loader, either <em>GRUB</em> or <em>SYSLINUX</em>, you +can skip the rest of this section and <a href="#welcome-screen">wait until +the Welcome Screen appears</a>.</p> </div> -<h3 id="boot-menu">Getting to the boot menu</h3> +<h3 id="boot-menu">Getting to the Boot Menu</h3> -<p>On most computers, you can press a <em>boot menu key</em> to display +<p>On most computers, you can press a <em>Boot Menu key</em> to display a list of possible devices to start from. The following instructions -explain how to display the boot menu and start on the USB stick. The -following screenshot is an example of a boot menu:</p> +explain how to display the Boot Menu and start on the USB stick. The +following screenshot is an example of a Boot Menu:</p> <p>[[!img install/inc/screenshots/bios_boot_menu.png link="no" alt=""]]</p> @@ -47,7 +56,7 @@ following screenshot is an example of a boot menu:</p> </li> <li> - <p>Identify the possible boot menu keys for the computer depending on + <p>Identify the possible Boot Menu keys for the computer depending on the computer manufacturer in the following list:</p> <table> @@ -67,25 +76,25 @@ following screenshot is an example of a boot menu:</p> <div class="tip"> <p>On many computers, a message is displayed very briefly when switching on - that also explains how to get to the boot menu or edit the BIOS settings.</p> + that also explains how to get to the Boot Menu or edit the BIOS settings.</p> </div> </li> <li> <p>Switch on the computer and immediately press several times the first - possible boot menu key identified in step 2.</p> + possible Boot Menu key identified in step 2.</p> </li> <li> <p>If the computer starts on another operating system or returns an error message, shut down the computer again and repeat step - 3 for all the possible boot menu keys identified in step 2.</p> + 3 for all the possible Boot Menu keys identified in step 2.</p> - <p>If a boot menu with a list of devices appears, select your USB stick + <p>If a Boot Menu with a list of devices appears, select your USB stick and press <span class="keycap">Enter</span>.</p> <div class="note"> - <p>If the boot menu key that works on your computer is a different one than + <p>If the Boot Menu key that works on your computer is a different one than the first in the list, please let us know so we can improve the list. You can write to [[sajolida@pimienta.org]] (private email).</p> </div> @@ -93,7 +102,7 @@ following screenshot is an example of a boot menu:</p> </ol> -<p id="animation">This animation explains how to use the boot menu key:</p> +<p id="animation">This animation explains how to use the Boot Menu key:</p> <video controls="true" width="640" height="360" poster="https://tails.boum.org/install/inc/videos/boot-menu-key.png"> <source src="https://tails.boum.org/install/inc/videos/boot-menu-key.webm" type="video/webm" /> @@ -105,31 +114,12 @@ following screenshot is an example of a boot menu:</p> <p>Similar problems might have been reported already for your model of computer in our [[list of known issues|support/known_issues]].</p> -<h3 id="bios-settings">Edit the BIOS settings</h3> - -<p>If none of the possible boot menu keys from the previous technique work, or if -the USB stick does not appear in the boot menu, you might need to edit your BIOS -settings.</p> - -<div class="tip"> -<p>Search for the user manual of the computer on the website of its -manufacturer to learn how to edit the BIOS settings:</p> -<ul> - <li><a href="http://us.acer.com/ac/en/US/content/drivers">Acer</a></li> - <li><a href="https://www.asus.com/us/support/">Asus</a></li> - <li><a href="https://www.dell.com/support/home/us/en/19/Products/">Dell</a></li> - <li><a href="https://www.fujitsu.com/global/support/products/software/manual/">Fujitsu</a></li> - <li><a href="https://support.hp.com/us-en/products/">HP</a></li> - <li><a href="http://support.lenovo.com/us/en/">Lenovo</a></li> - <li><a href="http://www.samsung.com/us/support/downloads">Samsung</a></li> - <li><a href="http://esupport.sony.com/US">Sony</a></li> - <li><a href="http://support.toshiba.com/support/products?cat=Computers">Toshiba</a></li> -</ul> -</div> +<h3 id="bios-settings">Edit the BIOS settings (advanced users)</h3> -<p>In the BIOS settings, try to apply the following changes one by one and -restart the computer after each change. Some changes might not -apply to certain computer models.</p> +<p>If none of the possible Boot Menu keys from the previous technique work, or if +the USB stick does not appear in the Boot Menu, you might need to edit your BIOS +settings. To learn how to edit the BIOS settings, search for the user manual of +the computer on the support website of the manufacturer.</p> <div class="caution"> <p>Take note of the changes that you apply to the BIOS settings. That way, you @@ -137,9 +127,19 @@ can revert the changes if they prevent the computer from starting on its usual operating system.</p> </div> -<ol> +<p>In the BIOS settings, try to apply the following changes. Some changes might not +apply to certain computer models.</p> + +<ul> + <li> + <p>There might be an option in your BIOS to enable the Boot Menu key. Make + sure that the Boot Menu key is enabled. This option might be called + <strong>Boot Device List</strong> or differently depending on the + computer.</p> + </li> + <li> - <p>Edit the <strong>Boot Order</strong>. Depending on the computer model you might + <p>Edit the <strong>Boot Order</strong>. Depending on the computer, you might see an entry for <strong>removable devices</strong> or <strong>USB media</strong>. Move this entry to the top of the list to force the computer to try to start from the USB stick before starting from the internal hard disk.</p> @@ -150,22 +150,19 @@ operating system.</p> </li> <li> - <p>If the computer is configured to start with <strong>legacy BIOS</strong>, try to - configure it to start with <strong>UEFI</strong>. Else, if the computer is configured - to start with <strong>UEFI</strong>, try to configure it to start with <strong>legacy - BIOS</strong>. To do so, try any of the following options if available:</p> - - <ul> - <li>Enable <strong>Legacy mode</strong></li> - <li>Disable <strong>Secure boot</strong> - (see the <a href="https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/disabling-secure-boot">Microsoft documentation</a>)</li> - <li>Enable <strong>CSM boot</strong></li> - <li>Disable <strong>UEFI</strong></li> - </ul> - </li> - - <li><p>Try to upgrade the BIOS to the latest version provided by the manufacturer.</p></li> -</ol> + <p>Enable <strong>CSM boot</strong>.</p> + </li> + + <li> + <p>Enable <strong>Legacy boot</strong> in addition to UEFI. + The computer might not start anymore on its regular operating system + if you disable UEFI completely or if you only enable Legacy boot.</p> + </li> + + <li> + <p>Try to upgrade the BIOS. To do so, refer to the support website of + the computer manufacturer.</p></li> +</ul> <div class="bug" id="report"> <p>If none of these options work, we are sorry but you might not be diff --git a/wiki/src/install/inc/steps/pc_boot_menu.inline.it.po b/wiki/src/install/inc/steps/pc_boot_menu.inline.it.po index cb6763db5db64d229f80d6d621bc683be8f53bc5..ea8ff62d7dee2704169fe240b9b1f815d0d54d5c 100644 --- a/wiki/src/install/inc/steps/pc_boot_menu.inline.it.po +++ b/wiki/src/install/inc/steps/pc_boot_menu.inline.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-28 18:06+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2019-10-23 09:20+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -29,7 +29,7 @@ msgstr "" #. type: Content of: <ul><li> msgid "" -"On most computers, our basic instructions to get to the boot menu work fine." +"On most computers, our basic instructions to get to the Boot Menu work fine." msgstr "" #. type: Content of: <ul><li> @@ -46,34 +46,65 @@ msgstr "" #. type: Content of: <p> msgid "" -"The goal is to reach the <span class=\"application\">Boot Loader Menu</span> " -"of Tails:" +"The goal is to reach the Boot Loader of Tails. Depending on the computer, " +"the Boot Loader might be either <em>GRUB</em> or <em>SYSLINUX</em>." msgstr "" #. type: Content of: <p> +msgid "This is what <em>GRUB</em> looks like:" +msgstr "" + +#. type: Content of: <p> +#, fuzzy +#| msgid "" +#| " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" +#| "\"Black screen with Tails artwork. 'Boot menu' with two options 'Live' " +#| "and 'Live (failsafe)'.\"]]\n" msgid "" -"[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black " -"screen with Tails artwork. Boot Loader Menu with two options 'Tails' and " -"'Tails (Troubleshooting Mode)'.\"]]" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU " +"GRUB') with Tails logo and 2 options: 'Tails' and 'Tails (Troubleshooting " +"Mode)'.\"]]" +msgstr "" +" [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" +"\"Schermo nero con il disegno di Tails. 'Menù di avvio' con due opzioni, " +"'Live' e 'Live (failsafe)'.\"]]\n" + +#. type: Content of: <p> +msgid "This is what <em>SYSLINUX</em> looks like:" msgstr "" +#. type: Content of: <p> +#, fuzzy +#| msgid "" +#| " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" +#| "\"Black screen with Tails artwork. 'Boot menu' with two options 'Live' " +#| "and 'Live (failsafe)'.\"]]\n" +msgid "" +"[[!img install/inc/screenshots/syslinux.png link=\"no\" alt=\"Black screen " +"('SYSLINUX') with Tails logo and 2 options: 'Tails' and 'Tails " +"(Troubleshooting Mode)'.\"]]" +msgstr "" +" [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" +"\"Schermo nero con il disegno di Tails. 'Menù di avvio' con due opzioni, " +"'Live' e 'Live (failsafe)'.\"]]\n" + #. type: Content of: <div><p> msgid "" -"After you reach the <span class=\"application\">Boot Loader Menu</span>, you " -"can skip the rest of this section and <a href=\"#greeter\">wait until <span " -"class=\"application\">Tails Greeter</span> appears</a>." +"After you reach the Boot Loader, either <em>GRUB</em> or <em>SYSLINUX</em>, " +"you can skip the rest of this section and <a href=\"#welcome-screen\">wait " +"until the Welcome Screen appears</a>." msgstr "" #. type: Content of: <h3> -msgid "Getting to the boot menu" +msgid "Getting to the Boot Menu" msgstr "" #. type: Content of: <p> msgid "" -"On most computers, you can press a <em>boot menu key</em> to display a list " +"On most computers, you can press a <em>Boot Menu key</em> to display a list " "of possible devices to start from. The following instructions explain how to " -"display the boot menu and start on the USB stick. The following screenshot " -"is an example of a boot menu:" +"display the Boot Menu and start on the USB stick. The following screenshot " +"is an example of a Boot Menu:" msgstr "" #. type: Content of: <p> @@ -103,7 +134,7 @@ msgstr "" #. type: Content of: <ol><li><p> msgid "" -"Identify the possible boot menu keys for the computer depending on the " +"Identify the possible Boot Menu keys for the computer depending on the " "computer manufacturer in the following list:" msgstr "" @@ -198,37 +229,37 @@ msgstr "" #. type: Content of: <ol><li><div><p> msgid "" "On many computers, a message is displayed very briefly when switching on " -"that also explains how to get to the boot menu or edit the BIOS settings." +"that also explains how to get to the Boot Menu or edit the BIOS settings." msgstr "" #. type: Content of: <ol><li><p> msgid "" "Switch on the computer and immediately press several times the first " -"possible boot menu key identified in step 2." +"possible Boot Menu key identified in step 2." msgstr "" #. type: Content of: <ol><li><p> msgid "" "If the computer starts on another operating system or returns an error " "message, shut down the computer again and repeat step 3 for all the possible " -"boot menu keys identified in step 2." +"Boot Menu keys identified in step 2." msgstr "" #. type: Content of: <ol><li><p> msgid "" -"If a boot menu with a list of devices appears, select your USB stick and " +"If a Boot Menu with a list of devices appears, select your USB stick and " "press <span class=\"keycap\">Enter</span>." msgstr "" #. type: Content of: <ol><li><div><p> msgid "" -"If the boot menu key that works on your computer is a different one than the " +"If the Boot Menu key that works on your computer is a different one than the " "first in the list, please let us know so we can improve the list. You can " "write to [[sajolida@pimienta.org]] (private email)." msgstr "" #. type: Content of: <p> -msgid "This animation explains how to use the boot menu key:" +msgid "This animation explains how to use the Boot Menu key:" msgstr "" #. type: Content of: <h3> @@ -242,121 +273,64 @@ msgid "" msgstr "" #. type: Content of: <h3> -msgid "Edit the BIOS settings" +msgid "Edit the BIOS settings (advanced users)" msgstr "" #. type: Content of: <p> msgid "" -"If none of the possible boot menu keys from the previous technique work, or " -"if the USB stick does not appear in the boot menu, you might need to edit " -"your BIOS settings." +"If none of the possible Boot Menu keys from the previous technique work, or " +"if the USB stick does not appear in the Boot Menu, you might need to edit " +"your BIOS settings. To learn how to edit the BIOS settings, search for the " +"user manual of the computer on the support website of the manufacturer." msgstr "" #. type: Content of: <div><p> msgid "" -"Search for the user manual of the computer on the website of its " -"manufacturer to learn how to edit the BIOS settings:" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://us.acer.com/ac/en/US/content/drivers\">Acer</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"https://www.asus.com/us/support/\">Asus</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"https://www.dell.com/support/home/us/en/19/Products/\">Dell</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"https://www.fujitsu.com/global/support/products/software/manual/" -"\">Fujitsu</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"https://support.hp.com/us-en/products/\">HP</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://support.lenovo.com/us/en/\">Lenovo</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://www.samsung.com/us/support/downloads\">Samsung</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://esupport.sony.com/US\">Sony</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"http://support.toshiba.com/support/products?cat=Computers" -"\">Toshiba</a>" +"Take note of the changes that you apply to the BIOS settings. That way, you " +"can revert the changes if they prevent the computer from starting on its " +"usual operating system." msgstr "" #. type: Content of: <p> msgid "" -"In the BIOS settings, try to apply the following changes one by one and " -"restart the computer after each change. Some changes might not apply to " -"certain computer models." +"In the BIOS settings, try to apply the following changes. Some changes might " +"not apply to certain computer models." msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <ul><li><p> msgid "" -"Take note of the changes that you apply to the BIOS settings. That way, you " -"can revert the changes if they prevent the computer from starting on its " -"usual operating system." +"There might be an option in your BIOS to enable the Boot Menu key. Make sure " +"that the Boot Menu key is enabled. This option might be called <strong>Boot " +"Device List</strong> or differently depending on the computer." msgstr "" -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "" -"Edit the <strong>Boot Order</strong>. Depending on the computer model you " -"might see an entry for <strong>removable devices</strong> or <strong>USB " -"media</strong>. Move this entry to the top of the list to force the computer " -"to try to start from the USB stick before starting from the internal hard " -"disk." +"Edit the <strong>Boot Order</strong>. Depending on the computer, you might " +"see an entry for <strong>removable devices</strong> or <strong>USB media</" +"strong>. Move this entry to the top of the list to force the computer to try " +"to start from the USB stick before starting from the internal hard disk." msgstr "" -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "Disable <strong>Fast boot</strong>." msgstr "" -#. type: Content of: <ol><li><p> -msgid "" -"If the computer is configured to start with <strong>legacy BIOS</strong>, " -"try to configure it to start with <strong>UEFI</strong>. Else, if the " -"computer is configured to start with <strong>UEFI</strong>, try to configure " -"it to start with <strong>legacy BIOS</strong>. To do so, try any of the " -"following options if available:" -msgstr "" - -#. type: Content of: <ol><li><ul><li> -msgid "Enable <strong>Legacy mode</strong>" +#. type: Content of: <ul><li><p> +msgid "Enable <strong>CSM boot</strong>." msgstr "" -#. type: Content of: <ol><li><ul><li> +#. type: Content of: <ul><li><p> msgid "" -"Disable <strong>Secure boot</strong> (see the <a href=\"https://docs." -"microsoft.com/en-us/windows-hardware/manufacture/desktop/disabling-secure-" -"boot\">Microsoft documentation</a>)" -msgstr "" - -#. type: Content of: <ol><li><ul><li> -msgid "Enable <strong>CSM boot</strong>" -msgstr "" - -#. type: Content of: <ol><li><ul><li> -msgid "Disable <strong>UEFI</strong>" +"Enable <strong>Legacy boot</strong> in addition to UEFI. The computer might " +"not start anymore on its regular operating system if you disable UEFI " +"completely or if you only enable Legacy boot." msgstr "" -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "" -"Try to upgrade the BIOS to the latest version provided by the manufacturer." +"Try to upgrade the BIOS. To do so, refer to the support website of the " +"computer manufacturer." msgstr "" #. type: Content of: <div><p> @@ -530,20 +504,6 @@ msgstr "" #~ "\"\"]]\n" #~ msgstr " [[!img install/inc/screenshots/desktop.png link=\"no\"]]\n" -#, fuzzy -#~| msgid "" -#~| " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" -#~| "\"Black screen with Tails artwork. 'Boot menu' with two options 'Live' " -#~| "and 'Live (failsafe)'.\"]]\n" -#~ msgid "" -#~ " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" -#~ "\"Black screen with Tails artwork. Boot Loader Menu with two options " -#~ "'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" -#~ msgstr "" -#~ " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=" -#~ "\"Schermo nero con il disegno di Tails. 'Menù di avvio' con due opzioni, " -#~ "'Live' e 'Live (failsafe)'.\"]]\n" - #, fuzzy #~| msgid "" #~| " <div class=\"bug mac-dvd\">\n" @@ -805,8 +765,8 @@ msgstr "" #~ "link=\"no\"]]\n" #~ msgid "" -#~ " [[!img doc/first_steps/startup_options/boot-menu-with-options.png " +#~ " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png " #~ "link=\"no\"]]\n" #~ msgstr "" -#~ " [[!img doc/first_steps/startup_options/boot-menu-with-options.png " +#~ " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png " #~ "link=\"no\"]]\n" diff --git a/wiki/src/install/inc/steps/pc_boot_menu.inline.pt.po b/wiki/src/install/inc/steps/pc_boot_menu.inline.pt.po index 274b2da4c714a4b651fe093f6b923a01f1d15582..e6f6656d6512e2d0b096f622aacbcf5634d63753 100644 --- a/wiki/src/install/inc/steps/pc_boot_menu.inline.pt.po +++ b/wiki/src/install/inc/steps/pc_boot_menu.inline.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-28 18:06+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\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" @@ -28,7 +28,7 @@ msgstr "" #. type: Content of: <ul><li> msgid "" -"On most computers, our basic instructions to get to the boot menu work fine." +"On most computers, our basic instructions to get to the Boot Menu work fine." msgstr "" #. type: Content of: <ul><li> @@ -45,34 +45,49 @@ msgstr "" #. type: Content of: <p> msgid "" -"The goal is to reach the <span class=\"application\">Boot Loader Menu</span> " -"of Tails:" +"The goal is to reach the Boot Loader of Tails. Depending on the computer, " +"the Boot Loader might be either <em>GRUB</em> or <em>SYSLINUX</em>." +msgstr "" + +#. type: Content of: <p> +msgid "This is what <em>GRUB</em> looks like:" msgstr "" #. type: Content of: <p> msgid "" -"[[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black " -"screen with Tails artwork. Boot Loader Menu with two options 'Tails' and " -"'Tails (Troubleshooting Mode)'.\"]]" +"[[!img install/inc/screenshots/grub.png link=\"no\" alt=\"Black screen ('GNU " +"GRUB') with Tails logo and 2 options: 'Tails' and 'Tails (Troubleshooting " +"Mode)'.\"]]" +msgstr "" + +#. type: Content of: <p> +msgid "This is what <em>SYSLINUX</em> looks like:" +msgstr "" + +#. type: Content of: <p> +msgid "" +"[[!img install/inc/screenshots/syslinux.png link=\"no\" alt=\"Black screen " +"('SYSLINUX') with Tails logo and 2 options: 'Tails' and 'Tails " +"(Troubleshooting Mode)'.\"]]" msgstr "" #. type: Content of: <div><p> msgid "" -"After you reach the <span class=\"application\">Boot Loader Menu</span>, you " -"can skip the rest of this section and <a href=\"#greeter\">wait until <span " -"class=\"application\">Tails Greeter</span> appears</a>." +"After you reach the Boot Loader, either <em>GRUB</em> or <em>SYSLINUX</em>, " +"you can skip the rest of this section and <a href=\"#welcome-screen\">wait " +"until the Welcome Screen appears</a>." msgstr "" #. type: Content of: <h3> -msgid "Getting to the boot menu" +msgid "Getting to the Boot Menu" msgstr "" #. type: Content of: <p> msgid "" -"On most computers, you can press a <em>boot menu key</em> to display a list " +"On most computers, you can press a <em>Boot Menu key</em> to display a list " "of possible devices to start from. The following instructions explain how to " -"display the boot menu and start on the USB stick. The following screenshot " -"is an example of a boot menu:" +"display the Boot Menu and start on the USB stick. The following screenshot " +"is an example of a Boot Menu:" msgstr "" #. type: Content of: <p> @@ -102,7 +117,7 @@ msgstr "" #. type: Content of: <ol><li><p> msgid "" -"Identify the possible boot menu keys for the computer depending on the " +"Identify the possible Boot Menu keys for the computer depending on the " "computer manufacturer in the following list:" msgstr "" @@ -197,37 +212,37 @@ msgstr "" #. type: Content of: <ol><li><div><p> msgid "" "On many computers, a message is displayed very briefly when switching on " -"that also explains how to get to the boot menu or edit the BIOS settings." +"that also explains how to get to the Boot Menu or edit the BIOS settings." msgstr "" #. type: Content of: <ol><li><p> msgid "" "Switch on the computer and immediately press several times the first " -"possible boot menu key identified in step 2." +"possible Boot Menu key identified in step 2." msgstr "" #. type: Content of: <ol><li><p> msgid "" "If the computer starts on another operating system or returns an error " "message, shut down the computer again and repeat step 3 for all the possible " -"boot menu keys identified in step 2." +"Boot Menu keys identified in step 2." msgstr "" #. type: Content of: <ol><li><p> msgid "" -"If a boot menu with a list of devices appears, select your USB stick and " +"If a Boot Menu with a list of devices appears, select your USB stick and " "press <span class=\"keycap\">Enter</span>." msgstr "" #. type: Content of: <ol><li><div><p> msgid "" -"If the boot menu key that works on your computer is a different one than the " +"If the Boot Menu key that works on your computer is a different one than the " "first in the list, please let us know so we can improve the list. You can " "write to [[sajolida@pimienta.org]] (private email)." msgstr "" #. type: Content of: <p> -msgid "This animation explains how to use the boot menu key:" +msgid "This animation explains how to use the Boot Menu key:" msgstr "" #. type: Content of: <h3> @@ -241,121 +256,64 @@ msgid "" msgstr "" #. type: Content of: <h3> -msgid "Edit the BIOS settings" +msgid "Edit the BIOS settings (advanced users)" msgstr "" #. type: Content of: <p> msgid "" -"If none of the possible boot menu keys from the previous technique work, or " -"if the USB stick does not appear in the boot menu, you might need to edit " -"your BIOS settings." +"If none of the possible Boot Menu keys from the previous technique work, or " +"if the USB stick does not appear in the Boot Menu, you might need to edit " +"your BIOS settings. To learn how to edit the BIOS settings, search for the " +"user manual of the computer on the support website of the manufacturer." msgstr "" #. type: Content of: <div><p> msgid "" -"Search for the user manual of the computer on the website of its " -"manufacturer to learn how to edit the BIOS settings:" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://us.acer.com/ac/en/US/content/drivers\">Acer</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"https://www.asus.com/us/support/\">Asus</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"https://www.dell.com/support/home/us/en/19/Products/\">Dell</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"https://www.fujitsu.com/global/support/products/software/manual/" -"\">Fujitsu</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"https://support.hp.com/us-en/products/\">HP</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://support.lenovo.com/us/en/\">Lenovo</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://www.samsung.com/us/support/downloads\">Samsung</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "<a href=\"http://esupport.sony.com/US\">Sony</a>" -msgstr "" - -#. type: Content of: <div><ul><li> -msgid "" -"<a href=\"http://support.toshiba.com/support/products?cat=Computers" -"\">Toshiba</a>" +"Take note of the changes that you apply to the BIOS settings. That way, you " +"can revert the changes if they prevent the computer from starting on its " +"usual operating system." msgstr "" #. type: Content of: <p> msgid "" -"In the BIOS settings, try to apply the following changes one by one and " -"restart the computer after each change. Some changes might not apply to " -"certain computer models." +"In the BIOS settings, try to apply the following changes. Some changes might " +"not apply to certain computer models." msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <ul><li><p> msgid "" -"Take note of the changes that you apply to the BIOS settings. That way, you " -"can revert the changes if they prevent the computer from starting on its " -"usual operating system." +"There might be an option in your BIOS to enable the Boot Menu key. Make sure " +"that the Boot Menu key is enabled. This option might be called <strong>Boot " +"Device List</strong> or differently depending on the computer." msgstr "" -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "" -"Edit the <strong>Boot Order</strong>. Depending on the computer model you " -"might see an entry for <strong>removable devices</strong> or <strong>USB " -"media</strong>. Move this entry to the top of the list to force the computer " -"to try to start from the USB stick before starting from the internal hard " -"disk." +"Edit the <strong>Boot Order</strong>. Depending on the computer, you might " +"see an entry for <strong>removable devices</strong> or <strong>USB media</" +"strong>. Move this entry to the top of the list to force the computer to try " +"to start from the USB stick before starting from the internal hard disk." msgstr "" -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "Disable <strong>Fast boot</strong>." msgstr "" -#. type: Content of: <ol><li><p> -msgid "" -"If the computer is configured to start with <strong>legacy BIOS</strong>, " -"try to configure it to start with <strong>UEFI</strong>. Else, if the " -"computer is configured to start with <strong>UEFI</strong>, try to configure " -"it to start with <strong>legacy BIOS</strong>. To do so, try any of the " -"following options if available:" -msgstr "" - -#. type: Content of: <ol><li><ul><li> -msgid "Enable <strong>Legacy mode</strong>" +#. type: Content of: <ul><li><p> +msgid "Enable <strong>CSM boot</strong>." msgstr "" -#. type: Content of: <ol><li><ul><li> +#. type: Content of: <ul><li><p> msgid "" -"Disable <strong>Secure boot</strong> (see the <a href=\"https://docs." -"microsoft.com/en-us/windows-hardware/manufacture/desktop/disabling-secure-" -"boot\">Microsoft documentation</a>)" -msgstr "" - -#. type: Content of: <ol><li><ul><li> -msgid "Enable <strong>CSM boot</strong>" +"Enable <strong>Legacy boot</strong> in addition to UEFI. The computer might " +"not start anymore on its regular operating system if you disable UEFI " +"completely or if you only enable Legacy boot." msgstr "" -#. type: Content of: <ol><li><ul><li> -msgid "Disable <strong>UEFI</strong>" -msgstr "" - -#. type: Content of: <ol><li><p> +#. type: Content of: <ul><li><p> msgid "" -"Try to upgrade the BIOS to the latest version provided by the manufacturer." +"Try to upgrade the BIOS. To do so, refer to the support website of the " +"computer manufacturer." msgstr "" #. type: Content of: <div><p> diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.ar.po b/wiki/src/install/inc/steps/restart_first_time.inline.ar.po index 086d810b8e77a9b212304dcec3c75a7ab4d8fff8..ada44ef6d7ff92853ada16a2bf16c207b604110f 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.ar.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.ar.po @@ -294,7 +294,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" msgstr "" #. type: Bullet: ' 1. ' @@ -327,7 +327,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.ca.po b/wiki/src/install/inc/steps/restart_first_time.inline.ca.po index 27cd02414dcce0de9b5401b88108cf949880e3e4..d101cc05530f59c3f5e3b3a522e15328dbec2deb 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.ca.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.ca.po @@ -292,7 +292,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" msgstr "" #. type: Bullet: ' 1. ' @@ -325,7 +325,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.de.po b/wiki/src/install/inc/steps/restart_first_time.inline.de.po index 51e70108a05157400313b790b27cff515954c5f3..dd5d8069c477696b1136e347e853a56bbccf8220 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.de.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-31 11:29+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2019-10-23 09:05+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" @@ -250,24 +250,17 @@ msgstr " [[!inline pages=\"install/inc/steps/mac_startup_disks.inline.de\" raw #. type: Plain text #, no-wrap -msgid "<h2 id=\"greeter\">Tails Greeter</h2>\n" +msgid "<a id=\"greeter\"></a>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<h2 id=\"welcome-screen\">Welcome Screen</h2>\n" msgstr "" #. type: Bullet: '1. ' -#, fuzzy -#| msgid "" -#| " The following section applies if the <span class=\"guilabel\">Boot " -#| "Tails</span> menu appears but not\n" -#| " <span class=\"application\">Tails Greeter</span> when starting Tails.\n" -msgid "" -"One to two minutes after the <span class=\"application\">Boot Loader Menu</" -"span>, another screen called <span class=\"application\">Tails Greeter</" -"span> appears." +msgid "One to two minutes after the Boot Loader, the Welcome Screen appears." msgstr "" -" Der folgende Abschnitt trifft zu, wenn das Menü <span class=\"guilabel" -"\">Boot Tails</span>, aber nicht\n" -" der <span class=\"application\">Tails Greeter</span> beim Start von Tails " -"erscheint.\n" #. type: Plain text #, no-wrap @@ -290,7 +283,7 @@ msgstr "" #| " </div>\n" msgid "" " <p>If the computer stops responding or displays other error messages before\n" -" getting to <span class=\"application\">Tails Greeter</span>, refer to\n" +" getting to the Welcome Screen, refer to\n" " [[!toggle id=\"not_entirely\" text=\"the troubleshooting section about\n" " Tails not starting entirely\"]].</p>\n" " </div>\n" @@ -336,8 +329,8 @@ msgstr "" #| " The following section applies if the <span class=\"guilabel\">Boot Tails</span> menu appears but not\n" #| " <span class=\"application\">Tails Greeter</span> when starting Tails.\n" msgid "" -" The following section applies if the <span class=\"application\">Boot Loader Menu</span> appears but not\n" -" <span class=\"application\">Tails Greeter</span> when starting Tails.\n" +" The following section applies if the Boot Loader appears but not\n" +" the Welcome Screen when starting Tails.\n" msgstr "" " Der folgende Abschnitt trifft zu, wenn das Menü <span class=\"guilabel\">Boot Tails</span>, aber nicht\n" " der <span class=\"application\">Tails Greeter</span> beim Start von Tails erscheint.\n" @@ -352,7 +345,7 @@ msgstr "Starten Sie den Computer mit dem ersten USB-Stick neu." #| " 1. In the <span class=\"guilabel\">Boot Tails</span> menu, choose the <span class=\"guilabel\">failsafe</span>\n" #| " mode which might work better on some computers.\n" msgid "" -" 1. In the <span class=\"application\">Boot Loader Menu</span>, choose the\n" +" 1. In the Boot Loader, choose the\n" " <span class=\"guilabel\">Troubleshooting Mode</span>\n" " which might work better on some computers.\n" msgstr "" @@ -372,28 +365,41 @@ msgstr "" " 1. Wenn der <span class=\"guilabel\">failsafe</span>-Modus nicht besser funktioniert,\n" " starten Sie den Computer erneut mit dem ersten USB-Stick neu.\n" +#. type: Bullet: ' 1. ' +msgid "Depending on whether the Boot Loader is *GRUB* or *SYSLINUX*:" +msgstr "" + #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| " 1. In the <span class=\"guilabel\">Boot Tails</span> menu, press\n" -#| " <span class=\"keycap\">TAB</span>. A command line with a list\n" -#| " of boot options appears at the bottom of the screen.\n" -msgid "" -" 1. In the <span class=\"application\">Boot Loader Menu</span>, press\n" -" <span class=\"keycap\">TAB</span>. A command line with a list\n" -" of boot options appears at the bottom of the screen.\n" +#, no-wrap +msgid " If the Boot Loader is *GRUB*:\n" +msgstr "" + +#. type: Bullet: ' 1. ' +msgid "Press **e** when GRUB appears." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " A new screen appears with more options.\n" msgstr "" -" 1. Drücken Sie im Menü <span class=\"guilabel\">Boot Tails</span> die Taste\n" -" <span class=\"keycap\">TAB</span>. Eine Kommandozeile mit einer Liste von\n" -" Startoptionen erscheint am unteren Rand des Bildschirms.\n" #. type: Plain text #, fuzzy, no-wrap -#| msgid " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\"]]\n" -msgid " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" -msgstr " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\"]]\n" +#| msgid " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\"]]\n" +msgid "" +" [[!img doc/first_steps/welcome_screen/grub-with-options.png link=\"no\" alt=\"GRUB with a list of\n" +" options starting with 'setparams Tails'\"]]\n" +msgstr " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\"]]\n" -#. type: Bullet: ' 1. ' +#. type: Bullet: ' 1. ' +msgid "" +"Navigate with the arrows of the keyboard to the end of the line that starts " +"with <span class=\"code\">linux</span>. The line is most likely wrapped and " +"displayed on several lines on the screen but it is a single configuration " +"line." +msgstr "" + +#. type: Bullet: ' 1. ' msgid "" "Press the <span class=\"keycap\">Backspace</span> key several times to " "remove the <span class=\"code\">quiet</span> option from the command line." @@ -402,32 +408,43 @@ msgstr "" "die Option <span class=\"code\">quiet</span> von der Kommandozeile zu " "entfernen." -#. type: Bullet: ' 1. ' +#. type: Bullet: ' 1. ' +#, fuzzy +#| msgid "Type `debug nosplash` to add these options to the command line." msgid "" -"If Tails previously failed to start and displayed the <span class=\"code" -"\">Probing EDD (edd=off to disable)...</span> error, then type `edd=off` to " -"add this option to the command line." -msgstr "" - -#. type: Bullet: ' 1. ' -msgid "Type `debug nosplash` to add these options to the command line." +"Type <span class=\"code\">debug nosplash</span> to add these options to the " +"command line." msgstr "" "Geben Sie `debug nosplash` ein, um diese Optionen zur Kommandozeile " "hinzuzufügen." -#. type: Bullet: ' 1. ' -msgid "To start Tails, press <span class=\"keycap\">Enter</span>." +#. type: Bullet: ' 1. ' +msgid "If Tails previously failed to start and displayed the following error:" msgstr "" -"Drücken Sie <span class=\"keycap\">Enter</span>, um Tails neu zu starten." -#. type: Bullet: ' 1. ' +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">Probing EDD (edd=off to disable)...</span>\n" +msgstr "" + +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "Type `debug nosplash` to add these options to the command line." +msgid " Then type `edd=off` to add this option to the command line.\n" +msgstr "Geben Sie `debug nosplash` ein, um diese Optionen zur Kommandozeile hinzuzufügen." + +#. type: Bullet: ' 1. ' +msgid "Press **Ctrl+X** to start Tails." +msgstr "" + +#. type: Bullet: ' 1. ' #, fuzzy #| msgid "" #| "Hopefully, error messages now appear when starting Tails. You can [[send " #| "them to our support team by email|support/talk]], for example by taking a " #| "picture of the last screen and error messages." msgid "" -"Hopefully, error messages now appear when starting Tails. You can [[send " +"Hopefully, new error messages now appear when starting Tails. You can [[send " "them to our help desk by email|support/talk]], for example by taking a " "picture of the last screen and error messages." msgstr "" @@ -435,11 +452,53 @@ msgstr "" "können [[diese an unser Support-Team senden|support/talk]], zum Beispiel " "indem Sie ein Foto von dem letzten Bildschirm und den Fehlermeldungen machen." +#. type: Plain text +#, no-wrap +msgid " If the Boot Loader is *SYSLINUX*:\n" +msgstr "" + +#. type: Bullet: ' 1. ' +#, fuzzy +#| msgid "" +#| " 1. In the <span class=\"guilabel\">Boot Tails</span> menu, press\n" +#| " <span class=\"keycap\">TAB</span>. A command line with a list\n" +#| " of boot options appears at the bottom of the screen.\n" +msgid "" +"Press <span class=\"keycap\">Tab</span>. A command line with a list of boot " +"options appears at the bottom of the screen." +msgstr "" +" 1. Drücken Sie im Menü <span class=\"guilabel\">Boot Tails</span> die " +"Taste\n" +" <span class=\"keycap\">TAB</span>. Eine Kommandozeile mit einer Liste " +"von\n" +" Startoptionen erscheint am unteren Rand des Bildschirms.\n" + +#. type: Plain text +#, fuzzy, no-wrap +#| msgid " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\"]]\n" +msgid "" +" [[!img doc/first_steps/welcome_screen/syslinux-with-options.png link=\"no\" alt=\"SYSLINUX with\n" +" a list of options starting with '/live/vmlinuz' at the bottom\"]]\n" +msgstr " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\"]]\n" + #. type: Plain text #, fuzzy, no-wrap -#| msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\"]]\n" -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" -msgstr " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\"]]\n" +#| msgid "Type `debug nosplash` to add these options to the command line." +msgid " Then type <span class=\"code\">edd=off</span> to add this option to the command line.\n" +msgstr "Geben Sie `debug nosplash` ein, um diese Optionen zur Kommandozeile hinzuzufügen." + +#. type: Bullet: ' 1. ' +#, fuzzy +#| msgid "To start Tails, press <span class=\"keycap\">Enter</span>." +msgid "Press <span class=\"keycap\">Enter</span> to start Tails." +msgstr "" +"Drücken Sie <span class=\"keycap\">Enter</span>, um Tails neu zu starten." + +#. type: Plain text +#, fuzzy, no-wrap +#| msgid " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n" +msgstr " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\"]]\n" #. type: Plain text #, fuzzy, no-wrap @@ -447,7 +506,7 @@ msgstr " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails #| "1. In <span class=\"application\">Tails Greeter</span>, select your preferred language in the drop-down\n" #| "list on the bottom left of the screen. Click <span class=\"button\">Login</span>.\n" msgid "" -"1. In <span class=\"application\">Tails Greeter</span>, select your language and\n" +"1. In the Welcome Screen, select your language and\n" "keyboard layout in the <span class=\"guilabel\">Language & Region</span> section.\n" "Click <span class=\"button\">Start Tails</span>.\n" msgstr "" @@ -464,6 +523,22 @@ msgstr "Nach 15–30 Sekunden erscheint der Desktop von Tails." msgid " [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Tails desktop\"]]\n" msgstr " [[!img install/inc/screenshots/desktop.png link=\"no\"]]\n" +#, fuzzy +#~| msgid "" +#~| " The following section applies if the <span class=\"guilabel\">Boot " +#~| "Tails</span> menu appears but not\n" +#~| " <span class=\"application\">Tails Greeter</span> when starting " +#~| "Tails.\n" +#~ msgid "" +#~ "One to two minutes after the <span class=\"application\">Boot Loader " +#~ "Menu</span>, another screen called <span class=\"application\">Tails " +#~ "Greeter</span> appears." +#~ msgstr "" +#~ " Der folgende Abschnitt trifft zu, wenn das Menü <span class=\"guilabel" +#~ "\">Boot Tails</span>, aber nicht\n" +#~ " der <span class=\"application\">Tails Greeter</span> beim Start von " +#~ "Tails erscheint.\n" + #~ msgid "" #~ "If the error message is <span class=\"code\">/bin/sh: can't access tty; " #~ "job control turned off</span> followed by <span class=\"code" diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.es.po b/wiki/src/install/inc/steps/restart_first_time.inline.es.po index f3af0a1357aac5fc6f9b32eb995613816f0fd5b0..423dcea76c6e7db883dd25deab8f0f87578b49dc 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.es.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-18 01:54+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2019-11-19 16:58+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -112,23 +112,17 @@ msgstr " [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png cl #. type: Plain text #, no-wrap msgid " [[!img install/inc/qrcodes/tails_boum_org_upgrade_win_back_1.png class=\"upgrade-windows qrcode\" link=\"no\" alt=\"\"]]\n" -msgstr "" -" [[!img install/inc/qrcodes/tails_boum_org_upgrade_win_back_1.png class" -"=\"upgrade-windows qrcode\" link=\"no\" alt=\"\"]]\n" +msgstr " [[!img install/inc/qrcodes/tails_boum_org_upgrade_win_back_1.png class=\"upgrade-windows qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Plain text #, no-wrap msgid " [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class=\"upgrade-mac qrcode\" link=\"no\" alt=\"\"]]\n" -msgstr "" -" [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class" -"=\"upgrade-mac qrcode\" link=\"no\" alt=\"\"]]\n" +msgstr " [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class=\"upgrade-mac qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Plain text #, no-wrap msgid " [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class=\"upgrade-linux qrcode\" link=\"no\" alt=\"\"]]\n" -msgstr "" -" [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class" -"=\"upgrade-linux qrcode\" link=\"no\" alt=\"\"]]\n" +msgstr " [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class=\"upgrade-linux qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Bullet: ' - ' msgid "" @@ -161,28 +155,17 @@ msgid "" " <span class=\"upgrade-mac\">`https://tails.boum.org/upgrade/mac?back=1`</span>\n" " <span class=\"upgrade-linux\">`https://tails.boum.org/upgrade/linux?back=1`</span>\n" msgstr "" -" <span class=\"install-clone\">`https://tails.boum.org/install/clone/" -"index.es.html?back=1`</span>\n" -" <span class=\"windows\">`https://tails.boum.org/install/win/usb/" -"index.es.html?back=1`</span>\n" -" <span class=\"mac\">`https://tails.boum.org/install/mac/usb/" -"index.es.html?back=1`</span>\n" -" <span class=\"mac-clone\">`https://tails.boum.org/install/mac/clone/" -"index.es.html?back=1`</span>\n" -" <span class=\"expert\">`https://tails.boum.org/install/expert/usb/" -"index.es.html?back=1`</span>\n" -" <span class=\"linux\">`https://tails.boum.org/install/linux/usb/" -"index.es.html?back=1`</span>\n" -" <span class=\"upgrade-clone\">`https://tails.boum.org/upgrade/clone/" -"index.es.html?back=1`</span>\n" -" <span class=\"upgrade-tails\">`https://tails.boum.org/upgrade/tails/" -"index.es.html?back=1`</span>\n" -" <span class=\"upgrade-windows\">`https://tails.boum.org/upgrade/win/" -"index.es.html?back=1`</span>\n" -" <span class=\"upgrade-mac\">`https://tails.boum.org/upgrade/mac/" -"index.es.html?back=1`</span>\n" -" <span class=\"upgrade-linux\">`https://tails.boum.org/upgrade/linux/" -"index.es.html?back=1`</span>\n" +" <span class=\"install-clone\">`https://tails.boum.org/install/clone/index.es.html?back=1`</span>\n" +" <span class=\"windows\">`https://tails.boum.org/install/win/usb/index.es.html?back=1`</span>\n" +" <span class=\"mac\">`https://tails.boum.org/install/mac/usb/index.es.html?back=1`</span>\n" +" <span class=\"mac-clone\">`https://tails.boum.org/install/mac/clone/index.es.html?back=1`</span>\n" +" <span class=\"expert\">`https://tails.boum.org/install/expert/usb/index.es.html?back=1`</span>\n" +" <span class=\"linux\">`https://tails.boum.org/install/linux/usb/index.es.html?back=1`</span>\n" +" <span class=\"upgrade-clone\">`https://tails.boum.org/upgrade/clone/index.es.html?back=1`</span>\n" +" <span class=\"upgrade-tails\">`https://tails.boum.org/upgrade/tails/index.es.html?back=1`</span>\n" +" <span class=\"upgrade-windows\">`https://tails.boum.org/upgrade/win/index.es.html?back=1`</span>\n" +" <span class=\"upgrade-mac\">`https://tails.boum.org/upgrade/mac/index.es.html?back=1`</span>\n" +" <span class=\"upgrade-linux\">`https://tails.boum.org/upgrade/linux/index.es.html?back=1`</span>\n" #. type: Plain text #, no-wrap @@ -191,11 +174,9 @@ msgid "" "<h1 id=\"start-other\" class=\"clone\">Restart on the other Tails</h1>\n" "<h1 id=\"start-tails\" class=\"windows linux mac expert\">Restart on Tails</h1>\n" msgstr "" -"<h1 id=\"start-intermediary\" class=\"upgrade-tails upgrade-os\">Reinicia en " -"el Tails intermedio</h1>\n" +"<h1 id=\"start-intermediary\" class=\"upgrade-tails upgrade-os\">Reinicia en el Tails intermedio</h1>\n" "<h1 id=\"start-other\" class=\"clone\">Reinicia en otro Tails</h1>\n" -"<h1 id=\"start-tails\" class=\"windows linux mac expert\">Reinicia en " -"Tails</h1>\n" +"<h1 id=\"start-tails\" class=\"windows linux mac expert\">Reinicia en Tails</h1>\n" #. type: Plain text #, no-wrap @@ -215,10 +196,7 @@ msgstr "[[!img install/inc/infography/restart-on-tails.png link=\"no\" class=\"w #. type: Plain text #, no-wrap msgid "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" class=\"clone upgrade-os\" alt=\"Computer restarted on USB stick on the left\"]]\n" -msgstr "" -"[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" class=\"" -"clone upgrade-os\" alt=\"Computadora reiniciada en la memoria USB de la " -"izquierda\"]]\n" +msgstr "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" class=\"clone upgrade-os\" alt=\"Computadora reiniciada en la memoria USB de la izquierda\"]]\n" #. type: Plain text #, no-wrap @@ -228,9 +206,7 @@ msgstr "[[!img install/inc/infography/restart-on-upgrade-usb.png link=\"no\" cla #. type: Plain text #, no-wrap msgid "<div class=\"windows linux expert install-clone upgrade-clone upgrade-tails upgrade-windows upgrade-linux\">\n" -msgstr "" -"<div class=\"windows linux expert install-clone upgrade-clone upgrade-tails " -"upgrade-windows upgrade-linux\">\n" +msgstr "<div class=\"windows linux expert install-clone upgrade-clone upgrade-tails upgrade-windows upgrade-linux\">\n" #. type: Plain text #, no-wrap @@ -248,19 +224,20 @@ msgid "[[!inline pages=\"install/inc/steps/mac_startup_disks.inline\" raw=\"yes\ msgstr "[[!inline pages=\"install/inc/steps/mac_startup_disks.inline\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text -#, no-wrap -msgid "<h2 id=\"greeter\">Tails Greeter</h2>\n" +#, fuzzy, no-wrap +#| msgid "<h2 id=\"greeter\">Tails Greeter</h2>\n" +msgid "<a id=\"greeter\"></a>\n" +msgstr "<h2 id=\"greeter\">Tails Greeter</h2>\n" + +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "<h2 id=\"greeter\">Tails Greeter</h2>\n" +msgid "<h2 id=\"welcome-screen\">Welcome Screen</h2>\n" msgstr "<h2 id=\"greeter\">Tails Greeter</h2>\n" #. type: Bullet: '1. ' -msgid "" -"One to two minutes after the <span class=\"application\">Boot Loader Menu</" -"span>, another screen called <span class=\"application\">Tails Greeter</" -"span> appears." +msgid "One to two minutes after the Boot Loader, the Welcome Screen appears." msgstr "" -"Uno o dos minutos después del <span class=\"application\">Menú de cargador " -"de arranque</span>, aparece otra pantalla titulada <span class=\"application" -"\">Tails Greeter</span>." #. type: Plain text #, no-wrap @@ -278,10 +255,16 @@ msgstr "" " gráficas|support/known_issues/graphics]].</p>\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| " <p>If the computer stops responding or displays other error messages before\n" +#| " getting to <span class=\"application\">Tails Greeter</span>, refer to\n" +#| " [[!toggle id=\"not_entirely\" text=\"the troubleshooting section about\n" +#| " Tails not starting entirely\"]].</p>\n" +#| " </div>\n" msgid "" " <p>If the computer stops responding or displays other error messages before\n" -" getting to <span class=\"application\">Tails Greeter</span>, refer to\n" +" getting to the Welcome Screen, refer to\n" " [[!toggle id=\"not_entirely\" text=\"the troubleshooting section about\n" " Tails not starting entirely\"]].</p>\n" " </div>\n" @@ -321,10 +304,13 @@ msgstr "" " ------------------------------\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| " The following section applies if the <span class=\"application\">Boot Loader Menu</span> appears but not\n" +#| " <span class=\"application\">Tails Greeter</span> when starting Tails.\n" msgid "" -" The following section applies if the <span class=\"application\">Boot Loader Menu</span> appears but not\n" -" <span class=\"application\">Tails Greeter</span> when starting Tails.\n" +" The following section applies if the Boot Loader appears but not\n" +" the Welcome Screen when starting Tails.\n" msgstr "" " La siguiente sección aplica si el <span class=\"application\">Menú de cargador de arranque</span> aparece, pero no aparece el\n" " <span class=\"application\">Tails Greeter</span> al arracar Tails.\n" @@ -334,9 +320,13 @@ msgid "Restart the computer on the first USB stick." msgstr "Reinicia la computadora en el primer dispositivo USB." #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| " 1. In the <span class=\"application\">Boot Loader Menu</span>, choose the\n" +#| " <span class=\"guilabel\">Troubleshooting Mode</span>\n" +#| " which might work better on some computers.\n" msgid "" -" 1. In the <span class=\"application\">Boot Loader Menu</span>, choose the\n" +" 1. In the Boot Loader, choose the\n" " <span class=\"guilabel\">Troubleshooting Mode</span>\n" " which might work better on some computers.\n" msgstr "" @@ -353,23 +343,41 @@ msgstr "" " 1. Si el <span class=\"guilabel\">Troubleshooting Mode</span> no funciona\n" " mejor, reinicia el computador de nuevo desde la primera memoria USB.\n" +#. type: Bullet: ' 1. ' +msgid "Depending on whether the Boot Loader is *GRUB* or *SYSLINUX*:" +msgstr "" + #. type: Plain text #, no-wrap -msgid "" -" 1. In the <span class=\"application\">Boot Loader Menu</span>, press\n" -" <span class=\"keycap\">TAB</span>. A command line with a list\n" -" of boot options appears at the bottom of the screen.\n" +msgid " If the Boot Loader is *GRUB*:\n" +msgstr "" + +#. type: Bullet: ' 1. ' +msgid "Press **e** when GRUB appears." msgstr "" -" 1. En el <span class=\"application\">Menú de cargador de arranque</span>, oprime\n" -" <span class=\"keycap\">TAB</span>. Una línea de comando con una lista\n" -" de opciones de arranque aparecerá abajo de la pantalla.\n" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" -msgstr " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Pantalla negra con el logo de Tails y una lista de opciones de arranque\"]]\n" +msgid " A new screen appears with more options.\n" +msgstr "" -#. type: Bullet: ' 1. ' +#. type: Plain text +#, fuzzy, no-wrap +#| msgid " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" +msgid "" +" [[!img doc/first_steps/welcome_screen/grub-with-options.png link=\"no\" alt=\"GRUB with a list of\n" +" options starting with 'setparams Tails'\"]]\n" +msgstr " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Pantalla negra con el logo de Tails y una lista de opciones de arranque\"]]\n" + +#. type: Bullet: ' 1. ' +msgid "" +"Navigate with the arrows of the keyboard to the end of the line that starts " +"with <span class=\"code\">linux</span>. The line is most likely wrapped and " +"displayed on several lines on the screen but it is a single configuration " +"line." +msgstr "" + +#. type: Bullet: ' 1. ' msgid "" "Press the <span class=\"keycap\">Backspace</span> key several times to " "remove the <span class=\"code\">quiet</span> option from the command line." @@ -378,30 +386,42 @@ msgstr "" "para quitar las <span class=\"code\">opciones de la linea de comando que no " "apliquen</span>." -#. type: Bullet: ' 1. ' +#. type: Bullet: ' 1. ' +#, fuzzy +#| msgid "Type `debug nosplash` to add these options to the command line." msgid "" -"If Tails previously failed to start and displayed the <span class=\"code" -"\">Probing EDD (edd=off to disable)...</span> error, then type `edd=off` to " -"add this option to the command line." +"Type <span class=\"code\">debug nosplash</span> to add these options to the " +"command line." msgstr "" -"Si Tails falló previamente al iniciar y mostró el error <span class=\"code" -"\">Probing EDD (edd=off to disable)...</span>, escribe `edd=off` para " -"agregar esta opción a la línea de comandos." +"Escribe `debug nosplash` para agregar estas opciones a la línea de comandos." -#. type: Bullet: ' 1. ' -msgid "Type `debug nosplash` to add these options to the command line." +#. type: Bullet: ' 1. ' +msgid "If Tails previously failed to start and displayed the following error:" msgstr "" -"Escribe `debug nosplash` para agregar estas opciones a la línea de comandos." -#. type: Bullet: ' 1. ' -msgid "To start Tails, press <span class=\"keycap\">Enter</span>." +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">Probing EDD (edd=off to disable)...</span>\n" msgstr "" -"Para arrancar Tails oprime la tecla <span class=\"keycap\">Enter / de " -"retorno</span>." -#. type: Bullet: ' 1. ' +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "Type `debug nosplash` to add these options to the command line." +msgid " Then type `edd=off` to add this option to the command line.\n" +msgstr "Escribe `debug nosplash` para agregar estas opciones a la línea de comandos." + +#. type: Bullet: ' 1. ' +msgid "Press **Ctrl+X** to start Tails." +msgstr "" + +#. type: Bullet: ' 1. ' +#, fuzzy +#| msgid "" +#| "Hopefully, error messages now appear when starting Tails. You can [[send " +#| "them to our help desk by email|support/talk]], for example by taking a " +#| "picture of the last screen and error messages." msgid "" -"Hopefully, error messages now appear when starting Tails. You can [[send " +"Hopefully, new error messages now appear when starting Tails. You can [[send " "them to our help desk by email|support/talk]], for example by taking a " "picture of the last screen and error messages." msgstr "" @@ -411,13 +431,60 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" -msgstr " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " If the Boot Loader is *SYSLINUX*:\n" +msgstr "" + +#. type: Bullet: ' 1. ' +#, fuzzy +#| msgid "" +#| " 1. In the <span class=\"application\">Boot Loader Menu</span>, press\n" +#| " <span class=\"keycap\">TAB</span>. A command line with a list\n" +#| " of boot options appears at the bottom of the screen.\n" +msgid "" +"Press <span class=\"keycap\">Tab</span>. A command line with a list of boot " +"options appears at the bottom of the screen." +msgstr "" +" 1. En el <span class=\"application\">Menú de cargador de arranque</span>, " +"oprime\n" +" <span class=\"keycap\">TAB</span>. Una línea de comando con una lista\n" +" de opciones de arranque aparecerá abajo de la pantalla.\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" +msgid "" +" [[!img doc/first_steps/welcome_screen/syslinux-with-options.png link=\"no\" alt=\"SYSLINUX with\n" +" a list of options starting with '/live/vmlinuz' at the bottom\"]]\n" +msgstr " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Pantalla negra con el logo de Tails y una lista de opciones de arranque\"]]\n" + +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "Type `debug nosplash` to add these options to the command line." +msgid " Then type <span class=\"code\">edd=off</span> to add this option to the command line.\n" +msgstr "Escribe `debug nosplash` para agregar estas opciones a la línea de comandos." + +#. type: Bullet: ' 1. ' +#, fuzzy +#| msgid "To start Tails, press <span class=\"keycap\">Enter</span>." +msgid "Press <span class=\"keycap\">Enter</span> to start Tails." +msgstr "" +"Para arrancar Tails oprime la tecla <span class=\"keycap\">Enter / de " +"retorno</span>." + +#. type: Plain text +#, fuzzy, no-wrap +#| msgid " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n" +msgstr " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" + +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "" +#| "1. In <span class=\"application\">Tails Greeter</span>, select your language and\n" +#| "keyboard layout in the <span class=\"guilabel\">Language & Region</span> section.\n" +#| "Click <span class=\"button\">Start Tails</span>.\n" msgid "" -"1. In <span class=\"application\">Tails Greeter</span>, select your language and\n" +"1. In the Welcome Screen, select your language and\n" "keyboard layout in the <span class=\"guilabel\">Language & Region</span> section.\n" "Click <span class=\"button\">Start Tails</span>.\n" msgstr "1. En el <span class=\"application\">Tails Greeter</span> elige tu idioma y la configuración de tu teclado en la sección <span class=\"guilabel\">Language & Region</span> y presiona <span class=\"button\">Start Tails</span>.\n" @@ -431,6 +498,24 @@ msgstr "Luego de 15–30 segundos, el escritorio de Tails aparecerá." msgid " [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Tails desktop\"]]\n" msgstr " [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"EscritorioTails\"]]\n" +#~ msgid "" +#~ "One to two minutes after the <span class=\"application\">Boot Loader " +#~ "Menu</span>, another screen called <span class=\"application\">Tails " +#~ "Greeter</span> appears." +#~ msgstr "" +#~ "Uno o dos minutos después del <span class=\"application\">Menú de " +#~ "cargador de arranque</span>, aparece otra pantalla titulada <span class=" +#~ "\"application\">Tails Greeter</span>." + +#~ msgid "" +#~ "If Tails previously failed to start and displayed the <span class=\"code" +#~ "\">Probing EDD (edd=off to disable)...</span> error, then type `edd=off` " +#~ "to add this option to the command line." +#~ msgstr "" +#~ "Si Tails falló previamente al iniciar y mostró el error <span class=\"code" +#~ "\">Probing EDD (edd=off to disable)...</span>, escribe `edd=off` para " +#~ "agregar esta opción a la línea de comandos." + #~ msgid "" #~ "If the error message is <span class=\"code\">/bin/sh: can't access tty; " #~ "job control turned off</span> followed by <span class=\"code" diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.fa.po b/wiki/src/install/inc/steps/restart_first_time.inline.fa.po index d778c249e90fc31005b42fd83edef2f21132837c..b11eb2c6df55f8ea56a46298c8af7cf10e25e8de 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.fa.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.fa.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-10-18 01:54+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-01-22 16:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -55,9 +55,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"step-image\">[[!img install/inc/infography/switch-context.png link=\"no\" alt=\"\"]]</div>\n" -msgstr "" -"<div class=\"step-image\">[[!img install/inc/infography/switch-context.png " -"link=\"no\" alt=\"\"]]</div>\n" +msgstr "<div class=\"step-image\">[[!img install/inc/infography/switch-context.png link=\"no\" alt=\"\"]]</div>\n" #. type: Plain text msgid "" @@ -204,14 +202,16 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<h2 id=\"greeter\">Tails Greeter</h2>\n" +msgid "<a id=\"greeter\"></a>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<h2 id=\"welcome-screen\">Welcome Screen</h2>\n" msgstr "" #. type: Bullet: '1. ' -msgid "" -"One to two minutes after the <span class=\"application\">Boot Loader Menu</" -"span>, another screen called <span class=\"application\">Tails Greeter</" -"span> appears." +msgid "One to two minutes after the Boot Loader, the Welcome Screen appears." msgstr "" #. type: Plain text @@ -228,7 +228,7 @@ msgstr "" #, no-wrap msgid "" " <p>If the computer stops responding or displays other error messages before\n" -" getting to <span class=\"application\">Tails Greeter</span>, refer to\n" +" getting to the Welcome Screen, refer to\n" " [[!toggle id=\"not_entirely\" text=\"the troubleshooting section about\n" " Tails not starting entirely\"]].</p>\n" " </div>\n" @@ -261,8 +261,8 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" The following section applies if the <span class=\"application\">Boot Loader Menu</span> appears but not\n" -" <span class=\"application\">Tails Greeter</span> when starting Tails.\n" +" The following section applies if the Boot Loader appears but not\n" +" the Welcome Screen when starting Tails.\n" msgstr "" #. type: Bullet: ' 1. ' @@ -272,7 +272,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" 1. In the <span class=\"application\">Boot Loader Menu</span>, choose the\n" +" 1. In the Boot Loader, choose the\n" " <span class=\"guilabel\">Troubleshooting Mode</span>\n" " which might work better on some computers.\n" msgstr "" @@ -284,56 +284,112 @@ msgid "" " better, restart the computer again on the first USB stick.\n" msgstr "" +#. type: Bullet: ' 1. ' +msgid "Depending on whether the Boot Loader is *GRUB* or *SYSLINUX*:" +msgstr "" + #. type: Plain text #, no-wrap -msgid "" -" 1. In the <span class=\"application\">Boot Loader Menu</span>, press\n" -" <span class=\"keycap\">TAB</span>. A command line with a list\n" -" of boot options appears at the bottom of the screen.\n" +msgid " If the Boot Loader is *GRUB*:\n" +msgstr "" + +#. type: Bullet: ' 1. ' +msgid "Press **e** when GRUB appears." msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" +msgid " A new screen appears with more options.\n" msgstr "" -#. type: Bullet: ' 1. ' +#. type: Plain text +#, no-wrap +msgid "" +" [[!img doc/first_steps/welcome_screen/grub-with-options.png link=\"no\" alt=\"GRUB with a list of\n" +" options starting with 'setparams Tails'\"]]\n" +msgstr "" + +#. type: Bullet: ' 1. ' +msgid "" +"Navigate with the arrows of the keyboard to the end of the line that starts " +"with <span class=\"code\">linux</span>. The line is most likely wrapped and " +"displayed on several lines on the screen but it is a single configuration " +"line." +msgstr "" + +#. type: Bullet: ' 1. ' msgid "" "Press the <span class=\"keycap\">Backspace</span> key several times to " "remove the <span class=\"code\">quiet</span> option from the command line." msgstr "" -#. type: Bullet: ' 1. ' +#. type: Bullet: ' 1. ' msgid "" -"If Tails previously failed to start and displayed the <span class=\"code" -"\">Probing EDD (edd=off to disable)...</span> error, then type `edd=off` to " -"add this option to the command line." +"Type <span class=\"code\">debug nosplash</span> to add these options to the " +"command line." msgstr "" -#. type: Bullet: ' 1. ' -msgid "Type `debug nosplash` to add these options to the command line." +#. type: Bullet: ' 1. ' +msgid "If Tails previously failed to start and displayed the following error:" msgstr "" -#. type: Bullet: ' 1. ' -msgid "To start Tails, press <span class=\"keycap\">Enter</span>." +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">Probing EDD (edd=off to disable)...</span>\n" msgstr "" -#. type: Bullet: ' 1. ' +#. type: Plain text +#, no-wrap +msgid " Then type `edd=off` to add this option to the command line.\n" +msgstr "" + +#. type: Bullet: ' 1. ' +msgid "Press **Ctrl+X** to start Tails." +msgstr "" + +#. type: Bullet: ' 1. ' msgid "" -"Hopefully, error messages now appear when starting Tails. You can [[send " +"Hopefully, new error messages now appear when starting Tails. You can [[send " "them to our help desk by email|support/talk]], for example by taking a " "picture of the last screen and error messages." msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " If the Boot Loader is *SYSLINUX*:\n" +msgstr "" + +#. type: Bullet: ' 1. ' +msgid "" +"Press <span class=\"keycap\">Tab</span>. A command line with a list of boot " +"options appears at the bottom of the screen." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" [[!img doc/first_steps/welcome_screen/syslinux-with-options.png link=\"no\" alt=\"SYSLINUX with\n" +" a list of options starting with '/live/vmlinuz' at the bottom\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Then type <span class=\"code\">edd=off</span> to add this option to the command line.\n" +msgstr "" + +#. type: Bullet: ' 1. ' +msgid "Press <span class=\"keycap\">Enter</span> to start Tails." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n" msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. In <span class=\"application\">Tails Greeter</span>, select your language and\n" +"1. In the Welcome Screen, select your language and\n" "keyboard layout in the <span class=\"guilabel\">Language & Region</span> section.\n" "Click <span class=\"button\">Start Tails</span>.\n" msgstr "" diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.fr.po b/wiki/src/install/inc/steps/restart_first_time.inline.fr.po index 5bbdc0195986426bcf1d7a9c5937b185d2f90221..05c09b2cd19515d6f171ec21057ce4300fa5aec2 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.fr.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-18 01:54+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-01-03 14:25+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -112,23 +112,17 @@ msgstr " [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png cl #. type: Plain text #, no-wrap msgid " [[!img install/inc/qrcodes/tails_boum_org_upgrade_win_back_1.png class=\"upgrade-windows qrcode\" link=\"no\" alt=\"\"]]\n" -msgstr "" -" [[!img install/inc/qrcodes/tails_boum_org_upgrade_win_back_1.png class" -"=\"upgrade-windows qrcode\" link=\"no\" alt=\"\"]]\n" +msgstr " [[!img install/inc/qrcodes/tails_boum_org_upgrade_win_back_1.png class=\"upgrade-windows qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Plain text #, no-wrap msgid " [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class=\"upgrade-mac qrcode\" link=\"no\" alt=\"\"]]\n" -msgstr "" -" [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class" -"=\"upgrade-mac qrcode\" link=\"no\" alt=\"\"]]\n" +msgstr " [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class=\"upgrade-mac qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Plain text #, no-wrap msgid " [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class=\"upgrade-linux qrcode\" link=\"no\" alt=\"\"]]\n" -msgstr "" -" [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class" -"=\"upgrade-linux qrcode\" link=\"no\" alt=\"\"]]\n" +msgstr " [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class=\"upgrade-linux qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Bullet: ' - ' msgid "" @@ -160,28 +154,17 @@ msgid "" " <span class=\"upgrade-mac\">`https://tails.boum.org/upgrade/mac?back=1`</span>\n" " <span class=\"upgrade-linux\">`https://tails.boum.org/upgrade/linux?back=1`</span>\n" msgstr "" -" <span class=\"install-clone\">`https://tails.boum.org/install/clone/" -"index.fr.html?back=1`</span>\n" -" <span class=\"windows\">`https://tails.boum.org/install/win/usb/" -"index.fr.html?back=1`</span>\n" -" <span class=\"mac\">`https://tails.boum.org/install/mac/usb/" -"index.fr.html?back=1`</span>\n" -" <span class=\"mac-clone\">`https://tails.boum.org/install/mac/clone/" -"index.fr.html?back=1`</span>\n" -" <span class=\"expert\">`https://tails.boum.org/install/expert/usb/" -"index.fr.html?back=1`</span>\n" -" <span class=\"linux\">`https://tails.boum.org/install/linux/usb/" -"index.fr.html?back=1`</span>\n" -" <span class=\"upgrade-clone\">`https://tails.boum.org/upgrade/clone/" -"index.fr.html?back=1`</span>\n" -" <span class=\"upgrade-tails\">`https://tails.boum.org/upgrade/tails/" -"index.fr.html?back=1`</span>\n" -" <span class=\"upgrade-windows\">`https://tails.boum.org/upgrade/win/" -"index.fr.html?back=1`</span>\n" -" <span class=\"upgrade-mac\">`https://tails.boum.org/upgrade/mac/" -"index.fr.html?back=1`</span>\n" -" <span class=\"upgrade-linux\">`https://tails.boum.org/upgrade/linux/" -"index.fr.html?back=1`</span>\n" +" <span class=\"install-clone\">`https://tails.boum.org/install/clone/index.fr.html?back=1`</span>\n" +" <span class=\"windows\">`https://tails.boum.org/install/win/usb/index.fr.html?back=1`</span>\n" +" <span class=\"mac\">`https://tails.boum.org/install/mac/usb/index.fr.html?back=1`</span>\n" +" <span class=\"mac-clone\">`https://tails.boum.org/install/mac/clone/index.fr.html?back=1`</span>\n" +" <span class=\"expert\">`https://tails.boum.org/install/expert/usb/index.fr.html?back=1`</span>\n" +" <span class=\"linux\">`https://tails.boum.org/install/linux/usb/index.fr.html?back=1`</span>\n" +" <span class=\"upgrade-clone\">`https://tails.boum.org/upgrade/clone/index.fr.html?back=1`</span>\n" +" <span class=\"upgrade-tails\">`https://tails.boum.org/upgrade/tails/index.fr.html?back=1`</span>\n" +" <span class=\"upgrade-windows\">`https://tails.boum.org/upgrade/win/index.fr.html?back=1`</span>\n" +" <span class=\"upgrade-mac\">`https://tails.boum.org/upgrade/mac/index.fr.html?back=1`</span>\n" +" <span class=\"upgrade-linux\">`https://tails.boum.org/upgrade/linux/index.fr.html?back=1`</span>\n" #. type: Plain text #, no-wrap @@ -190,11 +173,9 @@ msgid "" "<h1 id=\"start-other\" class=\"clone\">Restart on the other Tails</h1>\n" "<h1 id=\"start-tails\" class=\"windows linux mac expert\">Restart on Tails</h1>\n" msgstr "" -"<h1 id=\"start-intermediary\" class=\"upgrade-tails upgrade-os\">Redémarrer " -"sur le Tails intermédiaire</h1>\n" +"<h1 id=\"start-intermediary\" class=\"upgrade-tails upgrade-os\">Redémarrer sur le Tails intermédiaire</h1>\n" "<h1 id=\"start-other\" class=\"clone\">Redémarrer sur l'autre Tails</h1>\n" -"<h1 id=\"start-tails\" class=\"windows linux mac expert\">Redémarrer sous " -"Tails</h1>\n" +"<h1 id=\"start-tails\" class=\"windows linux mac expert\">Redémarrer sous Tails</h1>\n" #. type: Plain text #, no-wrap @@ -214,10 +195,7 @@ msgstr "[[!img install/inc/infography/restart-on-tails.png link=\"no\" class=\"w #. type: Plain text #, no-wrap msgid "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" class=\"clone upgrade-os\" alt=\"Computer restarted on USB stick on the left\"]]\n" -msgstr "" -"[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" class=\"" -"clone upgrade-os\" alt=\"Ordinateur redémarrant avec la clé USB sur la " -"gauche\"]]\n" +msgstr "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" class=\"clone upgrade-os\" alt=\"Ordinateur redémarrant avec la clé USB sur la gauche\"]]\n" #. type: Plain text #, no-wrap @@ -227,9 +205,7 @@ msgstr "[[!img install/inc/infography/restart-on-upgrade-usb.png link=\"no\" cla #. type: Plain text #, no-wrap msgid "<div class=\"windows linux expert install-clone upgrade-clone upgrade-tails upgrade-windows upgrade-linux\">\n" -msgstr "" -"<div class=\"windows linux expert install-clone upgrade-clone upgrade-tails " -"upgrade-windows upgrade-linux\">\n" +msgstr "<div class=\"windows linux expert install-clone upgrade-clone upgrade-tails upgrade-windows upgrade-linux\">\n" #. type: Plain text #, no-wrap @@ -247,19 +223,20 @@ msgid "[[!inline pages=\"install/inc/steps/mac_startup_disks.inline\" raw=\"yes\ msgstr "[[!inline pages=\"install/inc/steps/mac_startup_disks.inline.fr\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text -#, no-wrap -msgid "<h2 id=\"greeter\">Tails Greeter</h2>\n" +#, fuzzy, no-wrap +#| msgid "<h2 id=\"greeter\">Tails Greeter</h2>\n" +msgid "<a id=\"greeter\"></a>\n" +msgstr "<h2 id=\"greeter\">Tails Greeter</h2>\n" + +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "<h2 id=\"greeter\">Tails Greeter</h2>\n" +msgid "<h2 id=\"welcome-screen\">Welcome Screen</h2>\n" msgstr "<h2 id=\"greeter\">Tails Greeter</h2>\n" #. type: Bullet: '1. ' -msgid "" -"One to two minutes after the <span class=\"application\">Boot Loader Menu</" -"span>, another screen called <span class=\"application\">Tails Greeter</" -"span> appears." +msgid "One to two minutes after the Boot Loader, the Welcome Screen appears." msgstr "" -"Une à deux minutes après le <span class=\"application\">menu du chargeur " -"d’amorçage</span>, un autre écran appelé <span class=\"application\">Tails " -"Greeter</span> apparaît." #. type: Plain text #, no-wrap @@ -277,10 +254,16 @@ msgstr "" " graphiques|support/known_issues/graphics]].</p>\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| " <p>If the computer stops responding or displays other error messages before\n" +#| " getting to <span class=\"application\">Tails Greeter</span>, refer to\n" +#| " [[!toggle id=\"not_entirely\" text=\"the troubleshooting section about\n" +#| " Tails not starting entirely\"]].</p>\n" +#| " </div>\n" msgid "" " <p>If the computer stops responding or displays other error messages before\n" -" getting to <span class=\"application\">Tails Greeter</span>, refer to\n" +" getting to the Welcome Screen, refer to\n" " [[!toggle id=\"not_entirely\" text=\"the troubleshooting section about\n" " Tails not starting entirely\"]].</p>\n" " </div>\n" @@ -320,10 +303,13 @@ msgstr "" " -----------------------------\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| " The following section applies if the <span class=\"application\">Boot Loader Menu</span> appears but not\n" +#| " <span class=\"application\">Tails Greeter</span> when starting Tails.\n" msgid "" -" The following section applies if the <span class=\"application\">Boot Loader Menu</span> appears but not\n" -" <span class=\"application\">Tails Greeter</span> when starting Tails.\n" +" The following section applies if the Boot Loader appears but not\n" +" the Welcome Screen when starting Tails.\n" msgstr "" " La section suivante s'applique si le <span class=\"application\">menu du chargeur d’amorçage</span> apparaît mais pas le\n" " <span class=\"application\">Tails Greeter</span> quand Tails démarre.\n" @@ -333,9 +319,13 @@ msgid "Restart the computer on the first USB stick." msgstr "Redémarrer l'ordinateur sur la première clé USB." #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| " 1. In the <span class=\"application\">Boot Loader Menu</span>, choose the\n" +#| " <span class=\"guilabel\">Troubleshooting Mode</span>\n" +#| " which might work better on some computers.\n" msgid "" -" 1. In the <span class=\"application\">Boot Loader Menu</span>, choose the\n" +" 1. In the Boot Loader, choose the\n" " <span class=\"guilabel\">Troubleshooting Mode</span>\n" " which might work better on some computers.\n" msgstr "" @@ -351,23 +341,41 @@ msgstr "" " 1. Si le mode <span class=\"guilabel\">Troubleshooting Mode</span> ne marche pas\n" " mieux, redémarrer à nouveau l'ordinateur sur la première clé USB.\n" +#. type: Bullet: ' 1. ' +msgid "Depending on whether the Boot Loader is *GRUB* or *SYSLINUX*:" +msgstr "" + #. type: Plain text #, no-wrap -msgid "" -" 1. In the <span class=\"application\">Boot Loader Menu</span>, press\n" -" <span class=\"keycap\">TAB</span>. A command line with a list\n" -" of boot options appears at the bottom of the screen.\n" +msgid " If the Boot Loader is *GRUB*:\n" +msgstr "" + +#. type: Bullet: ' 1. ' +msgid "Press **e** when GRUB appears." msgstr "" -" 1. Dans le <span class=\"application\">menu du chargeur d’amorçage</span>, appuyer sur\n" -" <span class=\"keycap\">TAB</span>. Une ligne de commande avec une liste\n" -" d'options de démarrage apparaît en bas de l'écran.\n" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" -msgstr " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Écran noir avec le logo de Tails et la liste des options de démarrage\"]]\n" +msgid " A new screen appears with more options.\n" +msgstr "" -#. type: Bullet: ' 1. ' +#. type: Plain text +#, fuzzy, no-wrap +#| msgid " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" +msgid "" +" [[!img doc/first_steps/welcome_screen/grub-with-options.png link=\"no\" alt=\"GRUB with a list of\n" +" options starting with 'setparams Tails'\"]]\n" +msgstr " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Écran noir avec le logo de Tails et la liste des options de démarrage\"]]\n" + +#. type: Bullet: ' 1. ' +msgid "" +"Navigate with the arrows of the keyboard to the end of the line that starts " +"with <span class=\"code\">linux</span>. The line is most likely wrapped and " +"displayed on several lines on the screen but it is a single configuration " +"line." +msgstr "" + +#. type: Bullet: ' 1. ' msgid "" "Press the <span class=\"keycap\">Backspace</span> key several times to " "remove the <span class=\"code\">quiet</span> option from the command line." @@ -376,28 +384,42 @@ msgstr "" "fois pour enlever l'option <span class=\"code\">quiet</span> de la ligne de " "commande." -#. type: Bullet: ' 1. ' +#. type: Bullet: ' 1. ' +#, fuzzy +#| msgid "Type `debug nosplash` to add these options to the command line." msgid "" -"If Tails previously failed to start and displayed the <span class=\"code" -"\">Probing EDD (edd=off to disable)...</span> error, then type `edd=off` to " -"add this option to the command line." +"Type <span class=\"code\">debug nosplash</span> to add these options to the " +"command line." msgstr "" -"Si Tails a échoué précédemment lors du démarrage en affichant l'erreur <span " -"class=\"code\">Probing EDD (edd=off to disable)...</span>, alors taper " -"`edd=off` pour ajouter cette option à la ligne de commande." +"Taper `debug nosplash` pour ajouter ces options à la ligne de commande." -#. type: Bullet: ' 1. ' -msgid "Type `debug nosplash` to add these options to the command line." +#. type: Bullet: ' 1. ' +msgid "If Tails previously failed to start and displayed the following error:" msgstr "" -"Taper `debug nosplash` pour ajouter ces options à la ligne de commande." -#. type: Bullet: ' 1. ' -msgid "To start Tails, press <span class=\"keycap\">Enter</span>." -msgstr "Pour démarrer Tails, appuyer sur <span class=\"keycap\">Entrée</span>." +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">Probing EDD (edd=off to disable)...</span>\n" +msgstr "" -#. type: Bullet: ' 1. ' +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "Type `debug nosplash` to add these options to the command line." +msgid " Then type `edd=off` to add this option to the command line.\n" +msgstr "Taper `debug nosplash` pour ajouter ces options à la ligne de commande." + +#. type: Bullet: ' 1. ' +msgid "Press **Ctrl+X** to start Tails." +msgstr "" + +#. type: Bullet: ' 1. ' +#, fuzzy +#| msgid "" +#| "Hopefully, error messages now appear when starting Tails. You can [[send " +#| "them to our help desk by email|support/talk]], for example by taking a " +#| "picture of the last screen and error messages." msgid "" -"Hopefully, error messages now appear when starting Tails. You can [[send " +"Hopefully, new error messages now appear when starting Tails. You can [[send " "them to our help desk by email|support/talk]], for example by taking a " "picture of the last screen and error messages." msgstr "" @@ -408,13 +430,58 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" -msgstr " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter : 'Bienvenue dans Tails !'\"]]\n" +msgid " If the Boot Loader is *SYSLINUX*:\n" +msgstr "" + +#. type: Bullet: ' 1. ' +#, fuzzy +#| msgid "" +#| " 1. In the <span class=\"application\">Boot Loader Menu</span>, press\n" +#| " <span class=\"keycap\">TAB</span>. A command line with a list\n" +#| " of boot options appears at the bottom of the screen.\n" +msgid "" +"Press <span class=\"keycap\">Tab</span>. A command line with a list of boot " +"options appears at the bottom of the screen." +msgstr "" +" 1. Dans le <span class=\"application\">menu du chargeur d’amorçage</" +"span>, appuyer sur\n" +" <span class=\"keycap\">TAB</span>. Une ligne de commande avec une liste\n" +" d'options de démarrage apparaît en bas de l'écran.\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" msgid "" -"1. In <span class=\"application\">Tails Greeter</span>, select your language and\n" +" [[!img doc/first_steps/welcome_screen/syslinux-with-options.png link=\"no\" alt=\"SYSLINUX with\n" +" a list of options starting with '/live/vmlinuz' at the bottom\"]]\n" +msgstr " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Écran noir avec le logo de Tails et la liste des options de démarrage\"]]\n" + +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "Type `debug nosplash` to add these options to the command line." +msgid " Then type <span class=\"code\">edd=off</span> to add this option to the command line.\n" +msgstr "Taper `debug nosplash` pour ajouter ces options à la ligne de commande." + +#. type: Bullet: ' 1. ' +#, fuzzy +#| msgid "To start Tails, press <span class=\"keycap\">Enter</span>." +msgid "Press <span class=\"keycap\">Enter</span> to start Tails." +msgstr "Pour démarrer Tails, appuyer sur <span class=\"keycap\">Entrée</span>." + +#. type: Plain text +#, fuzzy, no-wrap +#| msgid " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n" +msgstr " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter : 'Bienvenue dans Tails !'\"]]\n" + +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "" +#| "1. In <span class=\"application\">Tails Greeter</span>, select your language and\n" +#| "keyboard layout in the <span class=\"guilabel\">Language & Region</span> section.\n" +#| "Click <span class=\"button\">Start Tails</span>.\n" +msgid "" +"1. In the Welcome Screen, select your language and\n" "keyboard layout in the <span class=\"guilabel\">Language & Region</span> section.\n" "Click <span class=\"button\">Start Tails</span>.\n" msgstr "" @@ -431,6 +498,24 @@ msgstr "Après 15–30 secondes, le bureau de Tails apparaît." msgid " [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Tails desktop\"]]\n" msgstr " [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Bureau Tails\"]]\n" +#~ msgid "" +#~ "One to two minutes after the <span class=\"application\">Boot Loader " +#~ "Menu</span>, another screen called <span class=\"application\">Tails " +#~ "Greeter</span> appears." +#~ msgstr "" +#~ "Une à deux minutes après le <span class=\"application\">menu du chargeur " +#~ "d’amorçage</span>, un autre écran appelé <span class=\"application" +#~ "\">Tails Greeter</span> apparaît." + +#~ msgid "" +#~ "If Tails previously failed to start and displayed the <span class=\"code" +#~ "\">Probing EDD (edd=off to disable)...</span> error, then type `edd=off` " +#~ "to add this option to the command line." +#~ msgstr "" +#~ "Si Tails a échoué précédemment lors du démarrage en affichant l'erreur " +#~ "<span class=\"code\">Probing EDD (edd=off to disable)...</span>, alors " +#~ "taper `edd=off` pour ajouter cette option à la ligne de commande." + #~ msgid "" #~ "If the error message is <span class=\"code\">/bin/sh: can't access tty; " #~ "job control turned off</span> followed by <span class=\"code" diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.id.po b/wiki/src/install/inc/steps/restart_first_time.inline.id.po index 8a7d83548b32aa4028ebc28b09b94d8f38284019..2435143f72e945b6eadc80398c151c5f96791999 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.id.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.id.po @@ -292,7 +292,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" msgstr "" #. type: Bullet: ' 1. ' @@ -325,7 +325,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.it.po b/wiki/src/install/inc/steps/restart_first_time.inline.it.po index 54c1b1808cc5cf25879b4c6375f099333f53c67c..7f2df0fb12f3f00b3b56d459021f5fb659b04510 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.it.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.it.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-10-18 01:54+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-01-17 12:26+0000\n" "Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -80,65 +80,47 @@ msgstr " [[!img install/inc/qrcodes/tails_boum_org_install_win_usb_back_1.png #. type: Plain text #, no-wrap msgid " [[!img install/inc/qrcodes/tails_boum_org_install_mac_usb_back_1.png class=\"mac qrcode\" link=\"no\" alt=\"\"]]\n" -msgstr "" -" [[!img install/inc/qrcodes/tails_boum_org_install_mac_usb_back_1.png " -"class=\"mac qrcode\" link=\"no\" alt=\"\"]]\n" +msgstr " [[!img install/inc/qrcodes/tails_boum_org_install_mac_usb_back_1.png class=\"mac qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Plain text #, no-wrap msgid " [[!img install/inc/qrcodes/tails_boum_org_install_mac_clone_back_1.png class=\"mac-clone qrcode\" link=\"no\" alt=\"\"]]\n" -msgstr "" -" [[!img install/inc/qrcodes/tails_boum_org_install_mac_clone_back_1.png " -"class=\"mac-clone qrcode\" link=\"no\" alt=\"\"]]\n" +msgstr " [[!img install/inc/qrcodes/tails_boum_org_install_mac_clone_back_1.png class=\"mac-clone qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Plain text #, no-wrap msgid " [[!img install/inc/qrcodes/tails_boum_org_install_expert_usb_back_1.png class=\"expert qrcode\" link=\"no\" alt=\"\"]]\n" -msgstr "" -" [[!img install/inc/qrcodes/tails_boum_org_install_expert_usb_back_1.png " -"class=\"expert qrcode\" link=\"no\" alt=\"\"]]\n" +msgstr " [[!img install/inc/qrcodes/tails_boum_org_install_expert_usb_back_1.png class=\"expert qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Plain text #, no-wrap msgid " [[!img install/inc/qrcodes/tails_boum_org_install_linux_usb_back_1.png class=\"linux qrcode\" link=\"no\" alt=\"\"]]\n" -msgstr "" -" [[!img install/inc/qrcodes/tails_boum_org_install_linux_usb_back_1.png " -"class=\"linux qrcode\" link=\"no\" alt=\"\"]]\n" +msgstr " [[!img install/inc/qrcodes/tails_boum_org_install_linux_usb_back_1.png class=\"linux qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Plain text #, no-wrap msgid " [[!img install/inc/qrcodes/tails_boum_org_upgrade_clone_back_1.png class=\"upgrade-clone qrcode\" link=\"no\" alt=\"\"]]\n" -msgstr "" -" [[!img install/inc/qrcodes/tails_boum_org_upgrade_clone_back_1.png class" -"=\"upgrade-clone qrcode\" link=\"no\" alt=\"\"]]\n" +msgstr " [[!img install/inc/qrcodes/tails_boum_org_upgrade_clone_back_1.png class=\"upgrade-clone qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Plain text #, no-wrap msgid " [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png class=\"upgrade-tails qrcode\" link=\"no\" alt=\"\"]]\n" -msgstr "" -" [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png class" -"=\"upgrade-tails qrcode\" link=\"no\" alt=\"\"]]\n" +msgstr " [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png class=\"upgrade-tails qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Plain text #, no-wrap msgid " [[!img install/inc/qrcodes/tails_boum_org_upgrade_win_back_1.png class=\"upgrade-windows qrcode\" link=\"no\" alt=\"\"]]\n" -msgstr "" -" [[!img install/inc/qrcodes/tails_boum_org_upgrade_win_back_1.png class" -"=\"upgrade-windows qrcode\" link=\"no\" alt=\"\"]]\n" +msgstr " [[!img install/inc/qrcodes/tails_boum_org_upgrade_win_back_1.png class=\"upgrade-windows qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Plain text #, no-wrap msgid " [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class=\"upgrade-mac qrcode\" link=\"no\" alt=\"\"]]\n" -msgstr "" -" [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class" -"=\"upgrade-mac qrcode\" link=\"no\" alt=\"\"]]\n" +msgstr " [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class=\"upgrade-mac qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Plain text #, no-wrap msgid " [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class=\"upgrade-linux qrcode\" link=\"no\" alt=\"\"]]\n" -msgstr "" -" [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class" -"=\"upgrade-linux qrcode\" link=\"no\" alt=\"\"]]\n" +msgstr " [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class=\"upgrade-linux qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Bullet: ' - ' msgid "" @@ -170,28 +152,17 @@ msgid "" " <span class=\"upgrade-mac\">`https://tails.boum.org/upgrade/mac?back=1`</span>\n" " <span class=\"upgrade-linux\">`https://tails.boum.org/upgrade/linux?back=1`</span>\n" msgstr "" -" <span class=\"install-clone\">`https://tails.boum.org/install/clone/" -"index.it.html?back=1`</span>\n" -" <span class=\"windows\">`https://tails.boum.org/install/win/usb/" -"index.it.html?back=1`</span>\n" -" <span class=\"mac\">`https://tails.boum.org/install/mac/usb/" -"index.it.html?back=1`</span>\n" -" <span class=\"mac-clone\">`https://tails.boum.org/install/mac/clone/" -"index.it.html?back=1`</span>\n" -" <span class=\"expert\">`https://tails.boum.org/install/expert/usb/" -"index.it.html?back=1`</span>\n" -" <span class=\"linux\">`https://tails.boum.org/install/linux/usb/" -"index.it.html?back=1`</span>\n" -" <span class=\"upgrade-clone\">`https://tails.boum.org/upgrade/clone/" -"index.it.html?back=1`</span>\n" -" <span class=\"upgrade-tails\">`https://tails.boum.org/upgrade/tails/" -"index.it.html?back=1`</span>\n" -" <span class=\"upgrade-windows\">`https://tails.boum.org/upgrade/win/" -"index.it.html?back=1`</span>\n" -" <span class=\"upgrade-mac\">`https://tails.boum.org/upgrade/mac/" -"index.it.html?back=1`</span>\n" -" <span class=\"upgrade-linux\">`https://tails.boum.org/upgrade/linux/" -"index.it.html?back=1`</span>\n" +" <span class=\"install-clone\">`https://tails.boum.org/install/clone/index.it.html?back=1`</span>\n" +" <span class=\"windows\">`https://tails.boum.org/install/win/usb/index.it.html?back=1`</span>\n" +" <span class=\"mac\">`https://tails.boum.org/install/mac/usb/index.it.html?back=1`</span>\n" +" <span class=\"mac-clone\">`https://tails.boum.org/install/mac/clone/index.it.html?back=1`</span>\n" +" <span class=\"expert\">`https://tails.boum.org/install/expert/usb/index.it.html?back=1`</span>\n" +" <span class=\"linux\">`https://tails.boum.org/install/linux/usb/index.it.html?back=1`</span>\n" +" <span class=\"upgrade-clone\">`https://tails.boum.org/upgrade/clone/index.it.html?back=1`</span>\n" +" <span class=\"upgrade-tails\">`https://tails.boum.org/upgrade/tails/index.it.html?back=1`</span>\n" +" <span class=\"upgrade-windows\">`https://tails.boum.org/upgrade/win/index.it.html?back=1`</span>\n" +" <span class=\"upgrade-mac\">`https://tails.boum.org/upgrade/mac/index.it.html?back=1`</span>\n" +" <span class=\"upgrade-linux\">`https://tails.boum.org/upgrade/linux/index.it.html?back=1`</span>\n" #. type: Plain text #, fuzzy, no-wrap @@ -241,16 +212,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"windows linux expert install-clone upgrade-clone upgrade-tails upgrade-windows upgrade-linux\">\n" -msgstr "" -"<div class=\"windows linux expert install-clone upgrade-clone upgrade-tails " -"upgrade-windows upgrade-linux\">\n" +msgstr "<div class=\"windows linux expert install-clone upgrade-clone upgrade-tails upgrade-windows upgrade-linux\">\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"install/inc/steps/pc_boot_menu.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"install/inc/steps/pc_boot_menu.inline.it\" raw=\"yes\" " -"sort=\"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/pc_boot_menu.inline.it\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -260,29 +227,21 @@ msgstr "<div class=\"mac mac-clone upgrade-mac\">\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"install/inc/steps/mac_startup_disks.inline\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/mac_startup_disks.inline.it\" raw=\"yes\" sort=\"age\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"greeter\"></a>\n" msgstr "" -"[[!inline pages=\"install/inc/steps/mac_startup_disks.inline.it\" raw=\"yes\"" -" sort=\"age\"]]\n" #. type: Plain text #, no-wrap -msgid "<h2 id=\"greeter\">Tails Greeter</h2>\n" +msgid "<h2 id=\"welcome-screen\">Welcome Screen</h2>\n" msgstr "" #. type: Bullet: '1. ' -#, fuzzy -#| msgid "" -#| " The following section applies if the <span class=\"guilabel\">Boot " -#| "Tails</span> menu appears but not\n" -#| " <span class=\"application\">Tails Greeter</span> when starting Tails.\n" -msgid "" -"One to two minutes after the <span class=\"application\">Boot Loader Menu</" -"span>, another screen called <span class=\"application\">Tails Greeter</" -"span> appears." +msgid "One to two minutes after the Boot Loader, the Welcome Screen appears." msgstr "" -" La seguente sessione si applica a quando il menù <span class=\"guilabel" -"\">Avvia Tails</span> compare, ma non il\n" -" <span class=\"application\">Tails Greeter</span> quando si avvia Tails.\n" #. type: Plain text #, no-wrap @@ -305,7 +264,7 @@ msgstr "" #| " </div>\n" msgid "" " <p>If the computer stops responding or displays other error messages before\n" -" getting to <span class=\"application\">Tails Greeter</span>, refer to\n" +" getting to the Welcome Screen, refer to\n" " [[!toggle id=\"not_entirely\" text=\"the troubleshooting section about\n" " Tails not starting entirely\"]].</p>\n" " </div>\n" @@ -351,8 +310,8 @@ msgstr "" #| " The following section applies if the <span class=\"guilabel\">Boot Tails</span> menu appears but not\n" #| " <span class=\"application\">Tails Greeter</span> when starting Tails.\n" msgid "" -" The following section applies if the <span class=\"application\">Boot Loader Menu</span> appears but not\n" -" <span class=\"application\">Tails Greeter</span> when starting Tails.\n" +" The following section applies if the Boot Loader appears but not\n" +" the Welcome Screen when starting Tails.\n" msgstr "" " La seguente sessione si applica a quando il menù <span class=\"guilabel\">Avvia Tails</span> compare, ma non il\n" " <span class=\"application\">Tails Greeter</span> quando si avvia Tails.\n" @@ -367,7 +326,7 @@ msgstr "Riavvia il computer sulla prima chiave USB." #| " 1. In the <span class=\"guilabel\">Boot Tails</span> menu, choose the <span class=\"guilabel\">failsafe</span>\n" #| " mode which might work better on some computers.\n" msgid "" -" 1. In the <span class=\"application\">Boot Loader Menu</span>, choose the\n" +" 1. In the Boot Loader, choose the\n" " <span class=\"guilabel\">Troubleshooting Mode</span>\n" " which might work better on some computers.\n" msgstr "" @@ -386,27 +345,41 @@ msgstr "" " 1. Se la modalità <span class=\"guilabel\">failsafe</span> non funziona\n" " meglio, riavvia il computer di nuovo sulla prima chiave USB.\n" +#. type: Bullet: ' 1. ' +msgid "Depending on whether the Boot Loader is *GRUB* or *SYSLINUX*:" +msgstr "" + #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| " 1. In the <span class=\"guilabel\">Boot Tails</span> menu, press\n" -#| " <span class=\"keycap\">TAB</span>. A command line with a list\n" -#| " of boot options appears at the bottom of the screen.\n" -msgid "" -" 1. In the <span class=\"application\">Boot Loader Menu</span>, press\n" -" <span class=\"keycap\">TAB</span>. A command line with a list\n" -" of boot options appears at the bottom of the screen.\n" +#, no-wrap +msgid " If the Boot Loader is *GRUB*:\n" +msgstr "" + +#. type: Bullet: ' 1. ' +msgid "Press **e** when GRUB appears." msgstr "" -" 1. Nel menù <span class=\"guilabel\">Avvia Tails</span>, premi\n" -" <span class=\"keycap\">TAB</span>. Una linea di comando con una\n" -" lista di opzioni compare sul fondo dello schermo.\n" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" +msgid " A new screen appears with more options.\n" msgstr "" -#. type: Bullet: ' 1. ' +#. type: Plain text +#, fuzzy, no-wrap +#| msgid " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\"]]\n" +msgid "" +" [[!img doc/first_steps/welcome_screen/grub-with-options.png link=\"no\" alt=\"GRUB with a list of\n" +" options starting with 'setparams Tails'\"]]\n" +msgstr " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\"]]\n" + +#. type: Bullet: ' 1. ' +msgid "" +"Navigate with the arrows of the keyboard to the end of the line that starts " +"with <span class=\"code\">linux</span>. The line is most likely wrapped and " +"displayed on several lines on the screen but it is a single configuration " +"line." +msgstr "" + +#. type: Bullet: ' 1. ' msgid "" "Press the <span class=\"keycap\">Backspace</span> key several times to " "remove the <span class=\"code\">quiet</span> option from the command line." @@ -414,30 +387,42 @@ msgstr "" "Premi il tasto <span class=\"keycap\">Backspace</span> molte volte per " "rimuovere l'opzione <span class=\"code\">quiet</span> dalla linea di comando." -#. type: Bullet: ' 1. ' +#. type: Bullet: ' 1. ' +#, fuzzy +#| msgid "Type `debug nosplash` to add these options to the command line." msgid "" -"If Tails previously failed to start and displayed the <span class=\"code" -"\">Probing EDD (edd=off to disable)...</span> error, then type `edd=off` to " -"add this option to the command line." +"Type <span class=\"code\">debug nosplash</span> to add these options to the " +"command line." +msgstr "" +"Digita 'debug nosplash' per aggiungere queste opzioni alla riga di comando." + +#. type: Bullet: ' 1. ' +msgid "If Tails previously failed to start and displayed the following error:" msgstr "" -#. type: Bullet: ' 1. ' -msgid "Type `debug nosplash` to add these options to the command line." +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">Probing EDD (edd=off to disable)...</span>\n" msgstr "" -"Digita 'debug nosplash' per aggiungere queste opzioni alla riga di comando." -#. type: Bullet: ' 1. ' -msgid "To start Tails, press <span class=\"keycap\">Enter</span>." -msgstr "Per avviare Tails, premi <span class=\"keycap\">Invio</span>." +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "Type `debug nosplash` to add these options to the command line." +msgid " Then type `edd=off` to add this option to the command line.\n" +msgstr "Digita 'debug nosplash' per aggiungere queste opzioni alla riga di comando." -#. type: Bullet: ' 1. ' +#. type: Bullet: ' 1. ' +msgid "Press **Ctrl+X** to start Tails." +msgstr "" + +#. type: Bullet: ' 1. ' #, fuzzy #| msgid "" #| "Hopefully, error messages now appear when starting Tails. You can [[send " #| "them to our support team by email|support/talk]], for example by taking a " #| "picture of the last screen and error messages." msgid "" -"Hopefully, error messages now appear when starting Tails. You can [[send " +"Hopefully, new error messages now appear when starting Tails. You can [[send " "them to our help desk by email|support/talk]], for example by taking a " "picture of the last screen and error messages." msgstr "" @@ -445,11 +430,49 @@ msgstr "" "[[inviarli al nostro team di supporto via email|support/talk]], per esempio " "facendo una foto all'ultima schermata e messaggio d'errore." +#. type: Plain text +#, no-wrap +msgid " If the Boot Loader is *SYSLINUX*:\n" +msgstr "" + +#. type: Bullet: ' 1. ' +#, fuzzy +#| msgid "" +#| " 1. In the <span class=\"guilabel\">Boot Tails</span> menu, press\n" +#| " <span class=\"keycap\">TAB</span>. A command line with a list\n" +#| " of boot options appears at the bottom of the screen.\n" +msgid "" +"Press <span class=\"keycap\">Tab</span>. A command line with a list of boot " +"options appears at the bottom of the screen." +msgstr "" +" 1. Nel menù <span class=\"guilabel\">Avvia Tails</span>, premi\n" +" <span class=\"keycap\">TAB</span>. Una linea di comando con una\n" +" lista di opzioni compare sul fondo dello schermo.\n" + +#. type: Plain text +#, no-wrap +msgid "" +" [[!img doc/first_steps/welcome_screen/syslinux-with-options.png link=\"no\" alt=\"SYSLINUX with\n" +" a list of options starting with '/live/vmlinuz' at the bottom\"]]\n" +msgstr "" + +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "Type `debug nosplash` to add these options to the command line." +msgid " Then type <span class=\"code\">edd=off</span> to add this option to the command line.\n" +msgstr "Digita 'debug nosplash' per aggiungere queste opzioni alla riga di comando." + +#. type: Bullet: ' 1. ' +#, fuzzy +#| msgid "To start Tails, press <span class=\"keycap\">Enter</span>." +msgid "Press <span class=\"keycap\">Enter</span> to start Tails." +msgstr "Per avviare Tails, premi <span class=\"keycap\">Invio</span>." + #. type: Plain text #, fuzzy, no-wrap -#| msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\"]]\n" -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" -msgstr " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\"]]\n" +#| msgid " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n" +msgstr " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\"]]\n" #. type: Plain text #, fuzzy, no-wrap @@ -457,7 +480,7 @@ msgstr " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails #| "1. In <span class=\"application\">Tails Greeter</span>, select your preferred language in the drop-down\n" #| "list on the bottom left of the screen. Click <span class=\"button\">Login</span>.\n" msgid "" -"1. In <span class=\"application\">Tails Greeter</span>, select your language and\n" +"1. In the Welcome Screen, select your language and\n" "keyboard layout in the <span class=\"guilabel\">Language & Region</span> section.\n" "Click <span class=\"button\">Start Tails</span>.\n" msgstr "" @@ -471,9 +494,23 @@ msgstr "Dopo 15–30 secondi, ti apparirà il Desktop di Tails." #. type: Plain text #, no-wrap msgid " [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Tails desktop\"]]\n" -msgstr "" -" [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Desktop di " -"Tails\"]]\n" +msgstr " [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Desktop di Tails\"]]\n" + +#, fuzzy +#~| msgid "" +#~| " The following section applies if the <span class=\"guilabel\">Boot " +#~| "Tails</span> menu appears but not\n" +#~| " <span class=\"application\">Tails Greeter</span> when starting " +#~| "Tails.\n" +#~ msgid "" +#~ "One to two minutes after the <span class=\"application\">Boot Loader " +#~ "Menu</span>, another screen called <span class=\"application\">Tails " +#~ "Greeter</span> appears." +#~ msgstr "" +#~ " La seguente sessione si applica a quando il menù <span class=\"guilabel" +#~ "\">Avvia Tails</span> compare, ma non il\n" +#~ " <span class=\"application\">Tails Greeter</span> quando si avvia " +#~ "Tails.\n" #~ msgid "" #~ "If the error message is <span class=\"code\">/bin/sh: can't access tty; " diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.mdwn b/wiki/src/install/inc/steps/restart_first_time.inline.mdwn index c6d62c68e79413bdd3990ab5c63a1f54f22e8e83..5e33a438c0d3eb46b142714d9ab624d4e3546dd7 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.mdwn +++ b/wiki/src/install/inc/steps/restart_first_time.inline.mdwn @@ -67,9 +67,11 @@ the rest of the instructions afterwards, we recommend you either: [[!inline pages="install/inc/steps/mac_startup_disks.inline" raw="yes" sort="age"]] </div> -<h2 id="greeter">Tails Greeter</h2> +<a id="greeter"></a> -1. One to two minutes after the <span class="application">Boot Loader Menu</span>, another screen called <span class="application">Tails Greeter</span> appears. +<h2 id="welcome-screen">Welcome Screen</h2> + +1. One to two minutes after the Boot Loader, the Welcome Screen appears. <div class="note"> <p>If the computer display the error message @@ -78,7 +80,7 @@ the rest of the instructions afterwards, we recommend you either: cards|support/known_issues/graphics]].</p> <p>If the computer stops responding or displays other error messages before - getting to <span class="application">Tails Greeter</span>, refer to + getting to the Welcome Screen, refer to [[!toggle id="not_entirely" text="the troubleshooting section about Tails not starting entirely"]].</p> </div> @@ -92,44 +94,84 @@ the rest of the instructions afterwards, we recommend you either: Tails does not start entirely ----------------------------- - The following section applies if the <span class="application">Boot Loader Menu</span> appears but not - <span class="application">Tails Greeter</span> when starting Tails. + The following section applies if the Boot Loader appears but not + the Welcome Screen when starting Tails. 1. Restart the computer on the first USB stick. - 1. In the <span class="application">Boot Loader Menu</span>, choose the + 1. In the Boot Loader, choose the <span class="guilabel">Troubleshooting Mode</span> which might work better on some computers. 1. If the <span class="guilabel">Troubleshooting Mode</span> does not work better, restart the computer again on the first USB stick. - 1. In the <span class="application">Boot Loader Menu</span>, press - <span class="keycap">TAB</span>. A command line with a list - of boot options appears at the bottom of the screen. + 1. Depending on whether the Boot Loader is *GRUB* or *SYSLINUX*: + + If the Boot Loader is *GRUB*: + + 1. Press **e** when GRUB appears. + + A new screen appears with more options. + + [[!img doc/first_steps/welcome_screen/grub-with-options.png link="no" alt="GRUB with a list of + options starting with 'setparams Tails'"]] + + 1. Navigate with the arrows of the keyboard to the end of the line that + starts with <span class="code">linux</span>. The line is most likely + wrapped and displayed on several lines on the screen but it is a + single configuration line. + + 1. Press the <span class="keycap">Backspace</span> key several times to + remove the <span class="code">quiet</span> option from the command line. + + 1. Type <span class="code">debug nosplash</span> to add these options to the command line. + + 1. If Tails previously failed to start and displayed the + following error: + + <p class="pre">Probing EDD (edd=off to disable)...</span> + + Then type `edd=off` to add this option to the command line. + + 1. Press **Ctrl+X** to start Tails. + + 1. Hopefully, new error messages now appear when starting Tails. You can + [[send them to our help desk by email|support/talk]], for example by taking a + picture of the last screen and error messages. + + If the Boot Loader is *SYSLINUX*: + + 1. Press + <span class="keycap">Tab</span>. A command line with a list + of boot options appears at the bottom of the screen. + + [[!img doc/first_steps/welcome_screen/syslinux-with-options.png link="no" alt="SYSLINUX with + a list of options starting with '/live/vmlinuz' at the bottom"]] + + 1. Press the <span class="keycap">Backspace</span> key several times to + remove the <span class="code">quiet</span> option from the command line. - [[!img doc/first_steps/startup_options/boot-menu-with-options.png link="no" alt="Black screen with Tails artwork and list of boot options"]] + 1. Type <span class="code">debug nosplash</span> to add these options to the command line. - 1. Press the <span class="keycap">Backspace</span> key several times to - remove the <span class="code">quiet</span> option from the command line. + 1. If Tails previously failed to start and displayed the + following error: - 1. If Tails previously failed to start and displayed the <span - class="code">Probing EDD (edd=off to disable)...</span> error, - then type `edd=off` to add this option to the command line. + <p class="pre">Probing EDD (edd=off to disable)...</span> - 1. Type `debug nosplash` to add these options to the command line. + Then type <span class="code">edd=off</span> to add this option to the command line. - 1. To start Tails, press <span class="keycap">Enter</span>. + 1. Press <span class="keycap">Enter</span> to start Tails. - 1. Hopefully, error messages now appear when starting Tails. You can - [[send them to our help desk by email|support/talk]], for example by taking a - picture of the last screen and error messages. + 1. Hopefully, new error messages now appear when starting Tails. You can + [[send them to our help desk by email|support/talk]], for example by taking a + picture of the last screen and error messages. """]] - [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link="no" alt="Tails Greeter: 'Welcome to Tails!'"]] + [[!img doc/first_steps/welcome_screen/welcome-screen.png link="no" alt="Welcome to Tails!"]] -1. In <span class="application">Tails Greeter</span>, select your language and +1. In the Welcome Screen, select your language and keyboard layout in the <span class="guilabel">Language & Region</span> section. Click <span class="button">Start Tails</span>. diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.pl.po b/wiki/src/install/inc/steps/restart_first_time.inline.pl.po index 2b60f8f58523f69a3cf05aa3d0bc6f0f3badd489..4aa15cdc278bbc4251ccfdcb06e3bdbd319ddfe3 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.pl.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.pl.po @@ -293,7 +293,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" msgstr "" #. type: Bullet: ' 1. ' @@ -326,7 +326,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.pt.po b/wiki/src/install/inc/steps/restart_first_time.inline.pt.po index 66482acfaa25e743289b01e5d68a9e0635e0e31c..20b0ee8c77dce98cf4bfa0dc827136e8b9a30b7f 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.pt.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-18 01:54+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2018-02-21 10:55+0000\n" "Last-Translator: Tails translators <amnesia@boum.org\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -205,14 +205,16 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<h2 id=\"greeter\">Tails Greeter</h2>\n" +msgid "<a id=\"greeter\"></a>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<h2 id=\"welcome-screen\">Welcome Screen</h2>\n" msgstr "" #. type: Bullet: '1. ' -msgid "" -"One to two minutes after the <span class=\"application\">Boot Loader Menu</" -"span>, another screen called <span class=\"application\">Tails Greeter</" -"span> appears." +msgid "One to two minutes after the Boot Loader, the Welcome Screen appears." msgstr "" #. type: Plain text @@ -229,7 +231,7 @@ msgstr "" #, no-wrap msgid "" " <p>If the computer stops responding or displays other error messages before\n" -" getting to <span class=\"application\">Tails Greeter</span>, refer to\n" +" getting to the Welcome Screen, refer to\n" " [[!toggle id=\"not_entirely\" text=\"the troubleshooting section about\n" " Tails not starting entirely\"]].</p>\n" " </div>\n" @@ -262,8 +264,8 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" The following section applies if the <span class=\"application\">Boot Loader Menu</span> appears but not\n" -" <span class=\"application\">Tails Greeter</span> when starting Tails.\n" +" The following section applies if the Boot Loader appears but not\n" +" the Welcome Screen when starting Tails.\n" msgstr "" #. type: Bullet: ' 1. ' @@ -273,7 +275,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" 1. In the <span class=\"application\">Boot Loader Menu</span>, choose the\n" +" 1. In the Boot Loader, choose the\n" " <span class=\"guilabel\">Troubleshooting Mode</span>\n" " which might work better on some computers.\n" msgstr "" @@ -285,56 +287,112 @@ msgid "" " better, restart the computer again on the first USB stick.\n" msgstr "" +#. type: Bullet: ' 1. ' +msgid "Depending on whether the Boot Loader is *GRUB* or *SYSLINUX*:" +msgstr "" + #. type: Plain text #, no-wrap -msgid "" -" 1. In the <span class=\"application\">Boot Loader Menu</span>, press\n" -" <span class=\"keycap\">TAB</span>. A command line with a list\n" -" of boot options appears at the bottom of the screen.\n" +msgid " If the Boot Loader is *GRUB*:\n" +msgstr "" + +#. type: Bullet: ' 1. ' +msgid "Press **e** when GRUB appears." msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" +msgid " A new screen appears with more options.\n" msgstr "" -#. type: Bullet: ' 1. ' +#. type: Plain text +#, no-wrap +msgid "" +" [[!img doc/first_steps/welcome_screen/grub-with-options.png link=\"no\" alt=\"GRUB with a list of\n" +" options starting with 'setparams Tails'\"]]\n" +msgstr "" + +#. type: Bullet: ' 1. ' +msgid "" +"Navigate with the arrows of the keyboard to the end of the line that starts " +"with <span class=\"code\">linux</span>. The line is most likely wrapped and " +"displayed on several lines on the screen but it is a single configuration " +"line." +msgstr "" + +#. type: Bullet: ' 1. ' msgid "" "Press the <span class=\"keycap\">Backspace</span> key several times to " "remove the <span class=\"code\">quiet</span> option from the command line." msgstr "" -#. type: Bullet: ' 1. ' +#. type: Bullet: ' 1. ' msgid "" -"If Tails previously failed to start and displayed the <span class=\"code" -"\">Probing EDD (edd=off to disable)...</span> error, then type `edd=off` to " -"add this option to the command line." +"Type <span class=\"code\">debug nosplash</span> to add these options to the " +"command line." msgstr "" -#. type: Bullet: ' 1. ' -msgid "Type `debug nosplash` to add these options to the command line." +#. type: Bullet: ' 1. ' +msgid "If Tails previously failed to start and displayed the following error:" msgstr "" -#. type: Bullet: ' 1. ' -msgid "To start Tails, press <span class=\"keycap\">Enter</span>." +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">Probing EDD (edd=off to disable)...</span>\n" msgstr "" -#. type: Bullet: ' 1. ' +#. type: Plain text +#, no-wrap +msgid " Then type `edd=off` to add this option to the command line.\n" +msgstr "" + +#. type: Bullet: ' 1. ' +msgid "Press **Ctrl+X** to start Tails." +msgstr "" + +#. type: Bullet: ' 1. ' msgid "" -"Hopefully, error messages now appear when starting Tails. You can [[send " +"Hopefully, new error messages now appear when starting Tails. You can [[send " "them to our help desk by email|support/talk]], for example by taking a " "picture of the last screen and error messages." msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " If the Boot Loader is *SYSLINUX*:\n" +msgstr "" + +#. type: Bullet: ' 1. ' +msgid "" +"Press <span class=\"keycap\">Tab</span>. A command line with a list of boot " +"options appears at the bottom of the screen." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" [[!img doc/first_steps/welcome_screen/syslinux-with-options.png link=\"no\" alt=\"SYSLINUX with\n" +" a list of options starting with '/live/vmlinuz' at the bottom\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Then type <span class=\"code\">edd=off</span> to add this option to the command line.\n" +msgstr "" + +#. type: Bullet: ' 1. ' +msgid "Press <span class=\"keycap\">Enter</span> to start Tails." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n" msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. In <span class=\"application\">Tails Greeter</span>, select your language and\n" +"1. In the Welcome Screen, select your language and\n" "keyboard layout in the <span class=\"guilabel\">Language & Region</span> section.\n" "Click <span class=\"button\">Start Tails</span>.\n" msgstr "" diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.ru.po b/wiki/src/install/inc/steps/restart_first_time.inline.ru.po index c314933e02b4a6b69bc178eff0b2bce69846b782..518fc2ba869285b0167c0254f971a89ee830c766 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.ru.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.ru.po @@ -293,7 +293,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" msgstr "" #. type: Bullet: ' 1. ' @@ -326,7 +326,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.sr_Latn.po b/wiki/src/install/inc/steps/restart_first_time.inline.sr_Latn.po index ec0a8f29a0ff0b9b379da6b41bccee67af92308a..4c05493570fcbc0ef7bfa48d1da10183424df39e 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.sr_Latn.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.sr_Latn.po @@ -293,7 +293,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" msgstr "" #. type: Bullet: ' 1. ' @@ -326,7 +326,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.tr.po b/wiki/src/install/inc/steps/restart_first_time.inline.tr.po index be0edc46a99ac09bc5ccb0ce94972c4757cf1138..2eec2b27ea0c7eb0c7d6455e383ad2adf0d2734b 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.tr.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.tr.po @@ -292,7 +292,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" msgstr "" #. type: Bullet: ' 1. ' @@ -325,7 +325,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.zh.po b/wiki/src/install/inc/steps/restart_first_time.inline.zh.po index ec40d70262f8dcae35408b4d09e3beb3ad92c139..802f555a2648b9e872b0a22cf2e8aa2cbe6524e4 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.zh.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.zh.po @@ -292,7 +292,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" msgstr "" #. type: Bullet: ' 1. ' @@ -325,7 +325,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.zh_TW.po b/wiki/src/install/inc/steps/restart_first_time.inline.zh_TW.po index 9fc971288375ff0512cb92ee4f4508e724be9cdb..2d0c34bd1982cc8db692b0283c0732a15d9ca8e4 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.zh_TW.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.zh_TW.po @@ -312,7 +312,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/boot-menu-with-options.png link=\"no\" alt=\"Black screen with Tails artwork and list of boot options\"]]\n" msgstr "" #. type: Bullet: ' 1. ' @@ -352,7 +352,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/install/inc/steps/restart_second_time.inline.de.po b/wiki/src/install/inc/steps/restart_second_time.inline.de.po index 73b5211535edb73c13fced79a033c430d94c4f1a..dbb6cbb2885756d333cdd157b61324ee0228c3f2 100644 --- a/wiki/src/install/inc/steps/restart_second_time.inline.de.po +++ b/wiki/src/install/inc/steps/restart_second_time.inline.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-11-07 16:30+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2016-06-05 10:54-0000\n" "Last-Translator: Tails translators <tails@boum.org>\n" "Language-Team: \n" @@ -50,32 +50,23 @@ msgstr " [[!inline pages=\"install/inc/steps/mac_startup_disks.inline.de\" raw #| "In the <span class=\"guilabel\">Boot Tails</span> menu, choose <span " #| "class=\"guilabel\">Live</span> and press <span class=\"keycap\">Enter</" #| "span>." -msgid "" -"The <span class=\"application\">Boot Loader Menu</span> appears and Tails " -"starts automatically after 4 seconds." +msgid "The Boot Loader appears and Tails starts automatically after 4 seconds." msgstr "" "Wählen Sie im Menü <span class=\"guilabel\">Boot Tails</span> die Option " "<span class=\"guilabel\">Live</span> aus und drücken Sie <span class=\"keycap" "\">Enter</span>." -#. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black screen with Tails artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" -msgstr "" - #. type: Bullet: '1. ' -msgid "" -"After 30–60 seconds, <span class=\"application\">Tails Greeter</span> " -"appears." -msgstr "" -"Nach 30–60 Sekunden erscheint der <span class=\"application\">Tails " -"Greeter</span>." +#, fuzzy +#| msgid "After 15–30 seconds, the Tails desktop appears." +msgid "After 30–60 seconds, the Welcome Screen appears." +msgstr "Nach 15–30 Sekunden erscheint der Desktop von Tails." #. type: Plain text #, fuzzy, no-wrap #| msgid "In <span class=\"application\">Tails Greeter</span>, select your preferred language in the drop-down list on the bottom left of the screen. Click <span class=\"button\">Login</span>." msgid "" -"1. In <span class=\"application\">Tails Greeter</span>, select your language and\n" +"1. In the Welcome Screen, select your language and\n" "keyboard layout in the <span class=\"guilabel\">Language & Region</span> section.\n" "Click <span class=\"button\">Start Tails</span>.\n" msgstr "Wählen Sie im <span class=\"application\">Tails Greeter</span> in der Dropdown-Liste im unteren linken Bereich des Bildschirms Ihre bevorzugte Sprache aus. Klicken Sie auf <span class=\"button\">Anmelden</span>." @@ -83,3 +74,10 @@ msgstr "Wählen Sie im <span class=\"application\">Tails Greeter</span> in der D #. type: Bullet: '1. ' msgid "After 15–30 seconds, the Tails desktop appears." msgstr "Nach 15–30 Sekunden erscheint der Desktop von Tails." + +#~ msgid "" +#~ "After 30–60 seconds, <span class=\"application\">Tails Greeter</" +#~ "span> appears." +#~ msgstr "" +#~ "Nach 30–60 Sekunden erscheint der <span class=\"application\">Tails " +#~ "Greeter</span>." diff --git a/wiki/src/install/inc/steps/restart_second_time.inline.es.po b/wiki/src/install/inc/steps/restart_second_time.inline.es.po index 729d6d469a3664d3d41c1a8197d10ab87e17b518..8fedfa529e4df336692e65895ce8289e2c69507b 100644 --- a/wiki/src/install/inc/steps/restart_second_time.inline.es.po +++ b/wiki/src/install/inc/steps/restart_second_time.inline.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-11-07 16:30+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-10-24 10:11+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -30,10 +30,7 @@ msgstr "Apaga la computadora." #. type: Plain text #, no-wrap msgid " <div class=\"step-image\">[[!img install/inc/infography/restart-on-new-tails.png link=\"no\" alt=\"USB stick unplugged on the left and computer restarted on USB stick on the right\"]]</div>\n" -msgstr "" -" <div class=\"step-image\">[[!img install/inc/infography/restart-on-new-" -"tails.png link=\"no\" alt=\"Memoria USB desconectada a la izquierda y " -"computadora reiniciada en la memoria USB a la derecha\"]]</div>\n" +msgstr " <div class=\"step-image\">[[!img install/inc/infography/restart-on-new-tails.png link=\"no\" alt=\"Memoria USB desconectada a la izquierda y computadora reiniciada en la memoria USB a la derecha\"]]</div>\n" #. type: Bullet: '1. ' msgid "Unplug the other USB stick and leave the new USB stick plugged in." @@ -46,35 +43,32 @@ msgstr "Enciende la computadora." #. type: Plain text #, no-wrap msgid " [[!inline pages=\"install/inc/steps/mac_startup_disks.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -" [[!inline pages=\"install/inc/steps/mac_startup_disks.inline.es\" raw=\"" -"yes\" sort=\"age\"]]\n" +msgstr " [[!inline pages=\"install/inc/steps/mac_startup_disks.inline.es\" raw=\"yes\" sort=\"age\"]]\n" #. type: Bullet: '1. ' -msgid "" -"The <span class=\"application\">Boot Loader Menu</span> appears and Tails " -"starts automatically after 4 seconds." +#, fuzzy +#| msgid "" +#| "The <span class=\"application\">Boot Loader Menu</span> appears and Tails " +#| "starts automatically after 4 seconds." +msgid "The Boot Loader appears and Tails starts automatically after 4 seconds." msgstr "" "Aparece el <span class=\"application\">Menú de Gestor de Arranque</span>, y " "Tails arranca automáticamente luego de 4 segundos." -#. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black screen with Tails artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" -msgstr " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Pantalla negra con Tails artwork. Menú Boot Loader con dos opciones 'Tails' y 'Tails (Troubleshooting Mode)'.\"]]\n" - #. type: Bullet: '1. ' -msgid "" -"After 30–60 seconds, <span class=\"application\">Tails Greeter</span> " -"appears." -msgstr "" -"Después de 30–60 segundos, aparece <span class=\"application\">Tails " -"Greeter</span>." +#, fuzzy +#| msgid "After 15–30 seconds, the Tails desktop appears." +msgid "After 30–60 seconds, the Welcome Screen appears." +msgstr "Luego de 15–30 segundos, el escritorio de Tails aparecerá." #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "1. In <span class=\"application\">Tails Greeter</span>, select your language and\n" +#| "keyboard layout in the <span class=\"guilabel\">Language & Region</span> section.\n" +#| "Click <span class=\"button\">Start Tails</span>.\n" msgid "" -"1. In <span class=\"application\">Tails Greeter</span>, select your language and\n" +"1. In the Welcome Screen, select your language and\n" "keyboard layout in the <span class=\"guilabel\">Language & Region</span> section.\n" "Click <span class=\"button\">Start Tails</span>.\n" msgstr "1. En el <span class=\"application\">Tails Greeter</span> elige tu idioma y la configuración de tu teclado en la sección <span class=\"guilabel\">Language & Region</span> y presiona <span class=\"button\">Start Tails</span>.\n" @@ -82,3 +76,13 @@ msgstr "1. En el <span class=\"application\">Tails Greeter</span> elige tu idiom #. type: Bullet: '1. ' msgid "After 15–30 seconds, the Tails desktop appears." msgstr "Luego de 15–30 segundos, el escritorio de Tails aparecerá." + +#~ msgid " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black screen with Tails artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +#~ msgstr " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Pantalla negra con Tails artwork. Menú Boot Loader con dos opciones 'Tails' y 'Tails (Troubleshooting Mode)'.\"]]\n" + +#~ msgid "" +#~ "After 30–60 seconds, <span class=\"application\">Tails Greeter</" +#~ "span> appears." +#~ msgstr "" +#~ "Después de 30–60 segundos, aparece <span class=\"application" +#~ "\">Tails Greeter</span>." diff --git a/wiki/src/install/inc/steps/restart_second_time.inline.fa.po b/wiki/src/install/inc/steps/restart_second_time.inline.fa.po index 3b29e212aab103f6b9d18f611d797946f2cc35ef..5f68bac639f1a086b1132c737fb389d0be900a98 100644 --- a/wiki/src/install/inc/steps/restart_second_time.inline.fa.po +++ b/wiki/src/install/inc/steps/restart_second_time.inline.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-11-07 16:30+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+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" @@ -44,26 +44,17 @@ msgid " [[!inline pages=\"install/inc/steps/mac_startup_disks.inline\" raw=\"y msgstr "" #. type: Bullet: '1. ' -msgid "" -"The <span class=\"application\">Boot Loader Menu</span> appears and Tails " -"starts automatically after 4 seconds." -msgstr "" - -#. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black screen with Tails artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +msgid "The Boot Loader appears and Tails starts automatically after 4 seconds." msgstr "" #. type: Bullet: '1. ' -msgid "" -"After 30–60 seconds, <span class=\"application\">Tails Greeter</span> " -"appears." +msgid "After 30–60 seconds, the Welcome Screen appears." msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. In <span class=\"application\">Tails Greeter</span>, select your language and\n" +"1. In the Welcome Screen, select your language and\n" "keyboard layout in the <span class=\"guilabel\">Language & Region</span> section.\n" "Click <span class=\"button\">Start Tails</span>.\n" msgstr "" diff --git a/wiki/src/install/inc/steps/restart_second_time.inline.fr.po b/wiki/src/install/inc/steps/restart_second_time.inline.fr.po index 09e27816850046539bc485925bf45976d972c3b2..a48ac3c1906900b185d59aaeee99448ea0e8681c 100644 --- a/wiki/src/install/inc/steps/restart_second_time.inline.fr.po +++ b/wiki/src/install/inc/steps/restart_second_time.inline.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2018-11-07 16:30+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-01-09 11:42+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -44,30 +44,29 @@ msgid " [[!inline pages=\"install/inc/steps/mac_startup_disks.inline\" raw=\"y msgstr " [[!inline pages=\"install/inc/steps/mac_startup_disks.inline.fr\" raw=\"yes\" sort=\"age\"]]\n" #. type: Bullet: '1. ' -msgid "" -"The <span class=\"application\">Boot Loader Menu</span> appears and Tails " -"starts automatically after 4 seconds." +#, fuzzy +#| msgid "" +#| "The <span class=\"application\">Boot Loader Menu</span> appears and Tails " +#| "starts automatically after 4 seconds." +msgid "The Boot Loader appears and Tails starts automatically after 4 seconds." msgstr "" "Le <span class=\"application\">menu du chargeur d’amorçage</span> apparaît " "et Tails démarre automatiquement après 4 secondes." -#. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black screen with Tails artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" -msgstr " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Écran noir avec le dessin de Tails. Menu du chargeur d’amorçage avec deux options 'Tails' et 'Tails (Troubleshooting Mode)'.\"]]\n" - #. type: Bullet: '1. ' -msgid "" -"After 30–60 seconds, <span class=\"application\">Tails Greeter</span> " -"appears." -msgstr "" -"Après 30–60 secondes, le <span class=\"application\">Tails Greeter</" -"span> apparaît." +#, fuzzy +#| msgid "After 15–30 seconds, the Tails desktop appears." +msgid "After 30–60 seconds, the Welcome Screen appears." +msgstr "Après 15–30 secondes, le bureau de Tails apparaît." #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "1. In <span class=\"application\">Tails Greeter</span>, select your language and\n" +#| "keyboard layout in the <span class=\"guilabel\">Language & Region</span> section.\n" +#| "Click <span class=\"button\">Start Tails</span>.\n" msgid "" -"1. In <span class=\"application\">Tails Greeter</span>, select your language and\n" +"1. In the Welcome Screen, select your language and\n" "keyboard layout in the <span class=\"guilabel\">Language & Region</span> section.\n" "Click <span class=\"button\">Start Tails</span>.\n" msgstr "" @@ -78,3 +77,13 @@ msgstr "" #. type: Bullet: '1. ' msgid "After 15–30 seconds, the Tails desktop appears." msgstr "Après 15–30 secondes, le bureau de Tails apparaît." + +#~ msgid " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black screen with Tails artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +#~ msgstr " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Écran noir avec le dessin de Tails. Menu du chargeur d’amorçage avec deux options 'Tails' et 'Tails (Troubleshooting Mode)'.\"]]\n" + +#~ msgid "" +#~ "After 30–60 seconds, <span class=\"application\">Tails Greeter</" +#~ "span> appears." +#~ msgstr "" +#~ "Après 30–60 secondes, le <span class=\"application\">Tails Greeter</" +#~ "span> apparaît." diff --git a/wiki/src/install/inc/steps/restart_second_time.inline.it.po b/wiki/src/install/inc/steps/restart_second_time.inline.it.po index 5c05a6d618064dbdaeb80390d27530e3bfc25ca6..c7e085fa66507abcf37a484c8b68ac6ccb311b1f 100644 --- a/wiki/src/install/inc/steps/restart_second_time.inline.it.po +++ b/wiki/src/install/inc/steps/restart_second_time.inline.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-11-07 16:30+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2017-02-09 21:01+0100\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -49,31 +49,22 @@ msgstr " [[!inline pages=\"install/inc/steps/mac_startup_disks.inline.it\" raw #| "In the <span class=\"guilabel\">Boot Tails</span> menu, choose <span " #| "class=\"guilabel\">Live</span> and press <span class=\"keycap\">Enter</" #| "span>." -msgid "" -"The <span class=\"application\">Boot Loader Menu</span> appears and Tails " -"starts automatically after 4 seconds." +msgid "The Boot Loader appears and Tails starts automatically after 4 seconds." msgstr "" "Nel menù di <span class=\"guilabel\">Avvio Tails</span>, scegli <span class=" "\"guilabel\">Live</span> e premi <span class=\"keycap\">Invio</span>." -#. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black screen with Tails artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" -msgstr "" - #. type: Bullet: '1. ' -msgid "" -"After 30–60 seconds, <span class=\"application\">Tails Greeter</span> " -"appears." -msgstr "" -"Dopo 30–60 secondi, <span class=\"application\">Tails Greeter</span> " -"appare." +#, fuzzy +#| msgid "After 15–30 seconds, the Tails desktop appears." +msgid "After 30–60 seconds, the Welcome Screen appears." +msgstr "Dopo 15–30 secondi, ti apparirà il Desktop di Tails." #. type: Plain text #, fuzzy, no-wrap #| msgid "In <span class=\"application\">Tails Greeter</span>, select your preferred language in the drop-down list on the bottom left of the screen. Click <span class=\"button\">Login</span>." msgid "" -"1. In <span class=\"application\">Tails Greeter</span>, select your language and\n" +"1. In the Welcome Screen, select your language and\n" "keyboard layout in the <span class=\"guilabel\">Language & Region</span> section.\n" "Click <span class=\"button\">Start Tails</span>.\n" msgstr "In <span class=\"application\">Tails Greeter</span>, seleziona la tua lingua preferita nella lista a cascata in basso a sinistra sullo schermo. Clicca su <span class=\"button\">Login</span>." @@ -81,3 +72,10 @@ msgstr "In <span class=\"application\">Tails Greeter</span>, seleziona la tua li #. type: Bullet: '1. ' msgid "After 15–30 seconds, the Tails desktop appears." msgstr "Dopo 15–30 secondi, ti apparirà il Desktop di Tails." + +#~ msgid "" +#~ "After 30–60 seconds, <span class=\"application\">Tails Greeter</" +#~ "span> appears." +#~ msgstr "" +#~ "Dopo 30–60 secondi, <span class=\"application\">Tails Greeter</" +#~ "span> appare." diff --git a/wiki/src/install/inc/steps/restart_second_time.inline.mdwn b/wiki/src/install/inc/steps/restart_second_time.inline.mdwn index 22ec1a23869168be3a804cd8cbf4735f8b4bf938..60133a9462ad007f33746b9f2b7ef220c11fd1f7 100644 --- a/wiki/src/install/inc/steps/restart_second_time.inline.mdwn +++ b/wiki/src/install/inc/steps/restart_second_time.inline.mdwn @@ -10,14 +10,12 @@ [[!inline pages="install/inc/steps/mac_startup_disks.inline" raw="yes" sort="age"]] -1. The <span class="application">Boot Loader Menu</span> appears and +1. The Boot Loader appears and Tails starts automatically after 4 seconds. - [[!img install/inc/screenshots/boot_loader_menu.png link="no" alt="Black screen with Tails artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'."]] +1. After 30–60 seconds, the Welcome Screen appears. -1. After 30–60 seconds, <span class="application">Tails Greeter</span> appears. - -1. In <span class="application">Tails Greeter</span>, select your language and +1. In the Welcome Screen, select your language and keyboard layout in the <span class="guilabel">Language & Region</span> section. Click <span class="button">Start Tails</span>. diff --git a/wiki/src/install/inc/steps/restart_second_time.inline.pt.po b/wiki/src/install/inc/steps/restart_second_time.inline.pt.po index 4a68ed2b7233f46ea85183e36c31913581746dee..e83a7c369c094d02ddba446219286e5d3422babc 100644 --- a/wiki/src/install/inc/steps/restart_second_time.inline.pt.po +++ b/wiki/src/install/inc/steps/restart_second_time.inline.pt.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: 2018-11-07 16:30+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-10-24 10:16+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -43,31 +43,22 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[!inline pages=\"install/inc/steps/mac_startup_disks.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -" [[!inline pages=\"install/inc/steps/mac_startup_disks.inline.pt\" raw=\"" -"yes\" sort=\"age\"]]\n" +msgstr " [[!inline pages=\"install/inc/steps/mac_startup_disks.inline.pt\" raw=\"yes\" sort=\"age\"]]\n" #. type: Bullet: '1. ' -msgid "" -"The <span class=\"application\">Boot Loader Menu</span> appears and Tails " -"starts automatically after 4 seconds." -msgstr "" - -#. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/boot_loader_menu.png link=\"no\" alt=\"Black screen with Tails artwork. Boot Loader Menu with two options 'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n" +msgid "The Boot Loader appears and Tails starts automatically after 4 seconds." msgstr "" #. type: Bullet: '1. ' -msgid "" -"After 30–60 seconds, <span class=\"application\">Tails Greeter</span> " -"appears." -msgstr "" +#, fuzzy +#| msgid "After 15–30 seconds, the Tails desktop appears." +msgid "After 30–60 seconds, the Welcome Screen appears." +msgstr "Após 15–30 segundos, a área de trabalho do Tails aparece." #. type: Plain text #, no-wrap msgid "" -"1. In <span class=\"application\">Tails Greeter</span>, select your language and\n" +"1. In the Welcome Screen, select your language and\n" "keyboard layout in the <span class=\"guilabel\">Language & Region</span> section.\n" "Click <span class=\"button\">Start Tails</span>.\n" msgstr "" diff --git a/wiki/src/install/v2/Tails/amd64/stable/latest.json b/wiki/src/install/v2/Tails/amd64/stable/latest.json index 1c25bb8cd2f50f2fc69a3cc0b3ee20a893c99ecf..9a3442f683de0a2f2697099891d8204a2b924029 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": "676fb78a34fe2d75e84ed51fb695c286c15652f1d90fc8cfd0729a846e00d5ab", - "size": 1161822208, - "url": "http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.4.1/tails-amd64-4.4.1.img" + "sha256": "b992d32826d572d80ddad5a7506e86daed1726661b52ba5a88513eae1e2cda65", + "size": 1177550848, + "url": "http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.5/tails-amd64-4.5.img" } ], "type": "img" @@ -17,15 +17,15 @@ { "target-files": [ { - "sha256": "2809f0a1a2e7e911324c77b4a77e4c21a966a50ea9d8db9b0d1a6541fc8c4ca2", - "size": 1151539200, - "url": "http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.4.1/tails-amd64-4.4.1.iso" + "sha256": "eddd88ab6726dbaf62a9ec1bf552e2a90d01b0ea539d7aaae4ad4772473d51ea", + "size": 1167990784, + "url": "http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.5/tails-amd64-4.5.iso" } ], "type": "iso" } ], - "version": "4.4.1" + "version": "4.5" } ], "product-name": "Tails" diff --git a/wiki/src/local.css b/wiki/src/local.css index 44e137d90ded87190f0e5df1594853464a3df4c8..5fcffd23ca206d87eb3b960578c9e94888855bba 100644 --- a/wiki/src/local.css +++ b/wiki/src/local.css @@ -1105,10 +1105,7 @@ div.icon h2 { span.application { font-style: italic; } span.button { font-weight: bold; } -span.code { - font-family: "Source Code Pro Regular", "Courier", monospace; -} -span.command { +span.code, span.command { font-family: "Source Code Pro Regular", "Courier", monospace; font-size: 1.071em; /* 14×1.071=15px */ border: 1px solid #E0E0DF; diff --git a/wiki/src/news/achievements_in_2019.de.po b/wiki/src/news/achievements_in_2019.de.po index 6cc912122c6b8be9dd19479b076e883f23d8b10f..a38442a44bb92d322e3d3d64f8ab85fea48c08af 100644 --- a/wiki/src/news/achievements_in_2019.de.po +++ b/wiki/src/news/achievements_in_2019.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-11-22 08:30+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,9 +39,8 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"On October 7, we started our [[yearly donation " -"campaign|news/2019-fundraiser]]. Today, we summarize what we achieved with " -"your help in 2019." +"On October 7, we started our [[yearly donation campaign|news/2019-" +"fundraiser]]. Today, we summarize what we achieved with your help in 2019." msgstr "" #. type: Plain text @@ -85,10 +84,9 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"We explained better how to [[troubleshoot failing " -"Wi-Fi|install/win/usb#wi-fi]], an issue unfortunately quite common, " -"especially on Mac, and documented which Wi-Fi USB adapters work well in " -"Tails." +"We explained better how to [[troubleshoot failing Wi-Fi|install/win/usb#wi-" +"fi]], an issue unfortunately quite common, especially on Mac, and documented " +"which Wi-Fi USB adapters work well in Tails." msgstr "" #. type: Bullet: ' - ' @@ -123,7 +121,7 @@ msgstr "" #. type: Plain text msgid "" -"We also improved a lot the usability of *Tails Greeter* for non-English " +"We also improved a lot the usability of the Welcome Screen for non-English " "users in [[Tails 4.0|version_4.0#greeter]]." msgstr "" @@ -172,10 +170,9 @@ msgstr "" #. type: Bullet: '- ' msgid "" "We removed less popular software and localization packages, which you can " -"now install yourself using the [[Additional " -"Software|doc/first_steps/additional_software]] feature. Optimizations like " -"these made the USB image of Tails 4.0 47 MB smaller than Tails 3.6, which " -"was the bigger release ever." +"now install yourself using the [[Additional Software|doc/first_steps/" +"additional_software]] feature. Optimizations like these made the USB image " +"of Tails 4.0 47 MB smaller than Tails 3.6, which was the bigger release ever." msgstr "" #. type: Bullet: '- ' @@ -195,11 +192,15 @@ msgid "[GNOME](https://gitlab.gnome.org/GNOME/gtk/merge_requests/263)" msgstr "" #. type: Bullet: ' - ' -msgid "[Debian](https://tracker.debian.org/news/1062740/accepted-apparmor-2133-5-source-into-unstable/)" +msgid "" +"[Debian](https://tracker.debian.org/news/1062740/accepted-apparmor-2133-5-" +"source-into-unstable/)" msgstr "" #. type: Bullet: ' - ' -msgid "[OnionShare](https://tracker.debian.org/news/1036041/accepted-onionshare-20-1-source-all-into-unstable/)" +msgid "" +"[OnionShare](https://tracker.debian.org/news/1036041/accepted-" +"onionshare-20-1-source-all-into-unstable/)" msgstr "" #. type: Bullet: ' - ' @@ -207,7 +208,9 @@ msgid "[KeePassXC](https://github.com/keepassxreboot/keepassxc/pull/2593)" msgstr "" #. type: Bullet: ' - ' -msgid "[torsocks](https://tracker.debian.org/news/1037418/accepted-torsocks-230-2-source-amd64-into-unstable/)" +msgid "" +"[torsocks](https://tracker.debian.org/news/1037418/accepted-torsocks-230-2-" +"source-amd64-into-unstable/)" msgstr "" #. type: Bullet: ' - ' @@ -216,8 +219,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"We had to temper several [[!wikipedia Denial-of-service_attack " -"desc=\"distributed denial-of-service (DDoS)\"]] attacks targeting our " +"We had to temper several [[!wikipedia Denial-of-service_attack desc=" +"\"distributed denial-of-service (DDoS)\"]] attacks targeting our " "infrastructure." msgstr "" @@ -227,8 +230,8 @@ msgid "" "fine people of boum.org. Thank you! As they were reducing their activities, " "we had to migrate our services. Our website is now self-hosted and our " "mailing-lists are taken care of by 2 experienced and trusted autonomous " -"server projects: [autistici.org](https://autistici.org) and " -"[puscii.nl](https://puscii.nl)." +"server projects: [autistici.org](https://autistici.org) and [puscii.nl]" +"(https://puscii.nl)." msgstr "" #. type: Title = @@ -296,7 +299,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate/?r=2019-achievements\">Donate</a></div>\n" +msgid "<div class=\"donate-button\"><a href=\"https://tails.boum.org/donate/?r=2019-achievements\">Donate</a></div>\n" msgstr "" diff --git a/wiki/src/news/achievements_in_2019.es.po b/wiki/src/news/achievements_in_2019.es.po index 61463b08b4c24ae12a38a9990d98ae5de22665df..f86a5e8709e1aac640a46a31298cd9c0b012e9c6 100644 --- a/wiki/src/news/achievements_in_2019.es.po +++ b/wiki/src/news/achievements_in_2019.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-11-16 12:11+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,9 +39,8 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"On October 7, we started our [[yearly donation " -"campaign|news/2019-fundraiser]]. Today, we summarize what we achieved with " -"your help in 2019." +"On October 7, we started our [[yearly donation campaign|news/2019-" +"fundraiser]]. Today, we summarize what we achieved with your help in 2019." msgstr "" #. type: Plain text @@ -85,10 +84,9 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"We explained better how to [[troubleshoot failing " -"Wi-Fi|install/win/usb#wi-fi]], an issue unfortunately quite common, " -"especially on Mac, and documented which Wi-Fi USB adapters work well in " -"Tails." +"We explained better how to [[troubleshoot failing Wi-Fi|install/win/usb#wi-" +"fi]], an issue unfortunately quite common, especially on Mac, and documented " +"which Wi-Fi USB adapters work well in Tails." msgstr "" #. type: Bullet: ' - ' @@ -123,7 +121,7 @@ msgstr "" #. type: Plain text msgid "" -"We also improved a lot the usability of *Tails Greeter* for non-English " +"We also improved a lot the usability of the Welcome Screen for non-English " "users in [[Tails 4.0|version_4.0#greeter]]." msgstr "" @@ -172,10 +170,9 @@ msgstr "" #. type: Bullet: '- ' msgid "" "We removed less popular software and localization packages, which you can " -"now install yourself using the [[Additional " -"Software|doc/first_steps/additional_software]] feature. Optimizations like " -"these made the USB image of Tails 4.0 47 MB smaller than Tails 3.6, which " -"was the bigger release ever." +"now install yourself using the [[Additional Software|doc/first_steps/" +"additional_software]] feature. Optimizations like these made the USB image " +"of Tails 4.0 47 MB smaller than Tails 3.6, which was the bigger release ever." msgstr "" #. type: Bullet: '- ' @@ -195,11 +192,15 @@ msgid "[GNOME](https://gitlab.gnome.org/GNOME/gtk/merge_requests/263)" msgstr "" #. type: Bullet: ' - ' -msgid "[Debian](https://tracker.debian.org/news/1062740/accepted-apparmor-2133-5-source-into-unstable/)" +msgid "" +"[Debian](https://tracker.debian.org/news/1062740/accepted-apparmor-2133-5-" +"source-into-unstable/)" msgstr "" #. type: Bullet: ' - ' -msgid "[OnionShare](https://tracker.debian.org/news/1036041/accepted-onionshare-20-1-source-all-into-unstable/)" +msgid "" +"[OnionShare](https://tracker.debian.org/news/1036041/accepted-" +"onionshare-20-1-source-all-into-unstable/)" msgstr "" #. type: Bullet: ' - ' @@ -207,7 +208,9 @@ msgid "[KeePassXC](https://github.com/keepassxreboot/keepassxc/pull/2593)" msgstr "" #. type: Bullet: ' - ' -msgid "[torsocks](https://tracker.debian.org/news/1037418/accepted-torsocks-230-2-source-amd64-into-unstable/)" +msgid "" +"[torsocks](https://tracker.debian.org/news/1037418/accepted-torsocks-230-2-" +"source-amd64-into-unstable/)" msgstr "" #. type: Bullet: ' - ' @@ -216,8 +219,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"We had to temper several [[!wikipedia Denial-of-service_attack " -"desc=\"distributed denial-of-service (DDoS)\"]] attacks targeting our " +"We had to temper several [[!wikipedia Denial-of-service_attack desc=" +"\"distributed denial-of-service (DDoS)\"]] attacks targeting our " "infrastructure." msgstr "" @@ -227,8 +230,8 @@ msgid "" "fine people of boum.org. Thank you! As they were reducing their activities, " "we had to migrate our services. Our website is now self-hosted and our " "mailing-lists are taken care of by 2 experienced and trusted autonomous " -"server projects: [autistici.org](https://autistici.org) and " -"[puscii.nl](https://puscii.nl)." +"server projects: [autistici.org](https://autistici.org) and [puscii.nl]" +"(https://puscii.nl)." msgstr "" #. type: Title = @@ -296,7 +299,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate/?r=2019-achievements\">Donate</a></div>\n" +msgid "<div class=\"donate-button\"><a href=\"https://tails.boum.org/donate/?r=2019-achievements\">Donate</a></div>\n" msgstr "" diff --git a/wiki/src/news/achievements_in_2019.fa.po b/wiki/src/news/achievements_in_2019.fa.po index 6c267872f46531be6414c54430ea6c2b3288a8ae..abd03c020edf0b85251229b694d0800167c494d2 100644 --- a/wiki/src/news/achievements_in_2019.fa.po +++ b/wiki/src/news/achievements_in_2019.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-01-22 14:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,9 +39,8 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"On October 7, we started our [[yearly donation " -"campaign|news/2019-fundraiser]]. Today, we summarize what we achieved with " -"your help in 2019." +"On October 7, we started our [[yearly donation campaign|news/2019-" +"fundraiser]]. Today, we summarize what we achieved with your help in 2019." msgstr "" #. type: Plain text @@ -85,10 +84,9 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"We explained better how to [[troubleshoot failing " -"Wi-Fi|install/win/usb#wi-fi]], an issue unfortunately quite common, " -"especially on Mac, and documented which Wi-Fi USB adapters work well in " -"Tails." +"We explained better how to [[troubleshoot failing Wi-Fi|install/win/usb#wi-" +"fi]], an issue unfortunately quite common, especially on Mac, and documented " +"which Wi-Fi USB adapters work well in Tails." msgstr "" #. type: Bullet: ' - ' @@ -123,7 +121,7 @@ msgstr "" #. type: Plain text msgid "" -"We also improved a lot the usability of *Tails Greeter* for non-English " +"We also improved a lot the usability of the Welcome Screen for non-English " "users in [[Tails 4.0|version_4.0#greeter]]." msgstr "" @@ -172,10 +170,9 @@ msgstr "" #. type: Bullet: '- ' msgid "" "We removed less popular software and localization packages, which you can " -"now install yourself using the [[Additional " -"Software|doc/first_steps/additional_software]] feature. Optimizations like " -"these made the USB image of Tails 4.0 47 MB smaller than Tails 3.6, which " -"was the bigger release ever." +"now install yourself using the [[Additional Software|doc/first_steps/" +"additional_software]] feature. Optimizations like these made the USB image " +"of Tails 4.0 47 MB smaller than Tails 3.6, which was the bigger release ever." msgstr "" #. type: Bullet: '- ' @@ -195,11 +192,15 @@ msgid "[GNOME](https://gitlab.gnome.org/GNOME/gtk/merge_requests/263)" msgstr "" #. type: Bullet: ' - ' -msgid "[Debian](https://tracker.debian.org/news/1062740/accepted-apparmor-2133-5-source-into-unstable/)" +msgid "" +"[Debian](https://tracker.debian.org/news/1062740/accepted-apparmor-2133-5-" +"source-into-unstable/)" msgstr "" #. type: Bullet: ' - ' -msgid "[OnionShare](https://tracker.debian.org/news/1036041/accepted-onionshare-20-1-source-all-into-unstable/)" +msgid "" +"[OnionShare](https://tracker.debian.org/news/1036041/accepted-" +"onionshare-20-1-source-all-into-unstable/)" msgstr "" #. type: Bullet: ' - ' @@ -207,7 +208,9 @@ msgid "[KeePassXC](https://github.com/keepassxreboot/keepassxc/pull/2593)" msgstr "" #. type: Bullet: ' - ' -msgid "[torsocks](https://tracker.debian.org/news/1037418/accepted-torsocks-230-2-source-amd64-into-unstable/)" +msgid "" +"[torsocks](https://tracker.debian.org/news/1037418/accepted-torsocks-230-2-" +"source-amd64-into-unstable/)" msgstr "" #. type: Bullet: ' - ' @@ -216,8 +219,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"We had to temper several [[!wikipedia Denial-of-service_attack " -"desc=\"distributed denial-of-service (DDoS)\"]] attacks targeting our " +"We had to temper several [[!wikipedia Denial-of-service_attack desc=" +"\"distributed denial-of-service (DDoS)\"]] attacks targeting our " "infrastructure." msgstr "" @@ -227,8 +230,8 @@ msgid "" "fine people of boum.org. Thank you! As they were reducing their activities, " "we had to migrate our services. Our website is now self-hosted and our " "mailing-lists are taken care of by 2 experienced and trusted autonomous " -"server projects: [autistici.org](https://autistici.org) and " -"[puscii.nl](https://puscii.nl)." +"server projects: [autistici.org](https://autistici.org) and [puscii.nl]" +"(https://puscii.nl)." msgstr "" #. type: Title = @@ -296,7 +299,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate/?r=2019-achievements\">Donate</a></div>\n" +msgid "<div class=\"donate-button\"><a href=\"https://tails.boum.org/donate/?r=2019-achievements\">Donate</a></div>\n" msgstr "" diff --git a/wiki/src/news/achievements_in_2019.fr.po b/wiki/src/news/achievements_in_2019.fr.po index e1b0d7cafbfb26fd8923814f12b82e04cfe4c851..589680afb6da4b97afd90a802c75e5615d8277a2 100644 --- a/wiki/src/news/achievements_in_2019.fr.po +++ b/wiki/src/news/achievements_in_2019.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-04-05 23:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,13 +39,12 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"On October 7, we started our [[yearly donation " -"campaign|news/2019-fundraiser]]. Today, we summarize what we achieved with " -"your help in 2019." +"On October 7, we started our [[yearly donation campaign|news/2019-" +"fundraiser]]. Today, we summarize what we achieved with your help in 2019." msgstr "" -"Le 7 octobre, nous avons commencé notre [[campagne de dons annuelle|news/" -"2019-fundraiser]]. Aujourd'hui, nous résumons ce que nous avons réalisé avec " -"votre aide en 2019." +"Le 7 octobre, nous avons commencé notre [[campagne de dons annuelle|" +"news/2019-fundraiser]]. Aujourd'hui, nous résumons ce que nous avons réalisé " +"avec votre aide en 2019." #. type: Plain text msgid "" @@ -58,8 +57,7 @@ msgstr "" #. type: Title = #, no-wrap msgid "Easier adoption by new users\n" -msgstr "" -"Appropriation plus facile pour les nouvelles personnes utilisant Tails\n" +msgstr "Appropriation plus facile pour les nouvelles personnes utilisant Tails\n" #. type: Plain text msgid "" @@ -99,10 +97,9 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"We explained better how to [[troubleshoot failing " -"Wi-Fi|install/win/usb#wi-fi]], an issue unfortunately quite common, " -"especially on Mac, and documented which Wi-Fi USB adapters work well in " -"Tails." +"We explained better how to [[troubleshoot failing Wi-Fi|install/win/usb#wi-" +"fi]], an issue unfortunately quite common, especially on Mac, and documented " +"which Wi-Fi USB adapters work well in Tails." msgstr "" "Nous avons mieux expliqué comment [[corriger les problèmes de Wi-Fi|install/" "win/usb#wi-fi]], un problème malheureusement très courant, notamment sur " @@ -146,8 +143,12 @@ msgid "" msgstr "" #. type: Plain text +#, fuzzy +#| msgid "" +#| "We also improved a lot the usability of *Tails Greeter* for non-English " +#| "users in [[Tails 4.0|version_4.0#greeter]]." msgid "" -"We also improved a lot the usability of *Tails Greeter* for non-English " +"We also improved a lot the usability of the Welcome Screen for non-English " "users in [[Tails 4.0|version_4.0#greeter]]." msgstr "" "Nous avons également amélioré l'ergonomie du *Tails Greeter* pour les " @@ -183,10 +184,8 @@ msgid "" " KeePassXC, OnionShare 1.3.2, fixes Electrum, updates to Debian 10 and\n" " GNOME 3.30, starts faster and uses less memory.\n" msgstr "" -" Tails 4.0 est notre plus importante version de ces dernières années. Tails " -"4.0 ajoute\n" -" KeePassXC, OnionShare 1.3.2, corrige Electrum, met à jour vers Debian 10 " -"et\n" +" Tails 4.0 est notre plus importante version de ces dernières années. Tails 4.0 ajoute\n" +" KeePassXC, OnionShare 1.3.2, corrige Electrum, met à jour vers Debian 10 et\n" " GNOME 3.30, démarre plus vite et utilise moins de mémoire.\n" #. type: Bullet: '- ' @@ -211,10 +210,9 @@ msgstr "" #. type: Bullet: '- ' msgid "" "We removed less popular software and localization packages, which you can " -"now install yourself using the [[Additional " -"Software|doc/first_steps/additional_software]] feature. Optimizations like " -"these made the USB image of Tails 4.0 47 MB smaller than Tails 3.6, which " -"was the bigger release ever." +"now install yourself using the [[Additional Software|doc/first_steps/" +"additional_software]] feature. Optimizations like these made the USB image " +"of Tails 4.0 47 MB smaller than Tails 3.6, which was the bigger release ever." msgstr "" "Nous avons enlevé les logiciels et les paquets de langues les moins " "populaires, que vous pouvez maintenant installer vous-mêmes avec la fonction " @@ -239,26 +237,32 @@ msgid "[GNOME](https://gitlab.gnome.org/GNOME/gtk/merge_requests/263)" msgstr "[GNOME](https://gitlab.gnome.org/GNOME/gtk/merge_requests/263)" #. type: Bullet: ' - ' -msgid "[Debian](https://tracker.debian.org/news/1062740/accepted-apparmor-2133-5-source-into-unstable/)" +msgid "" +"[Debian](https://tracker.debian.org/news/1062740/accepted-apparmor-2133-5-" +"source-into-unstable/)" msgstr "" -"[Debian](https://tracker.debian.org/news/1062740/" -"accepted-apparmor-2133-5-source-into-unstable/)" +"[Debian](https://tracker.debian.org/news/1062740/accepted-apparmor-2133-5-" +"source-into-unstable/)" #. type: Bullet: ' - ' -msgid "[OnionShare](https://tracker.debian.org/news/1036041/accepted-onionshare-20-1-source-all-into-unstable/)" +msgid "" +"[OnionShare](https://tracker.debian.org/news/1036041/accepted-" +"onionshare-20-1-source-all-into-unstable/)" msgstr "" -"[OnionShare](https://tracker.debian.org/news/1036041/" -"accepted-onionshare-20-1-source-all-into-unstable/)" +"[OnionShare](https://tracker.debian.org/news/1036041/accepted-" +"onionshare-20-1-source-all-into-unstable/)" #. type: Bullet: ' - ' msgid "[KeePassXC](https://github.com/keepassxreboot/keepassxc/pull/2593)" msgstr "[KeePassXC](https://github.com/keepassxreboot/keepassxc/pull/2593)" #. type: Bullet: ' - ' -msgid "[torsocks](https://tracker.debian.org/news/1037418/accepted-torsocks-230-2-source-amd64-into-unstable/)" +msgid "" +"[torsocks](https://tracker.debian.org/news/1037418/accepted-torsocks-230-2-" +"source-amd64-into-unstable/)" msgstr "" -"[torsocks](https://tracker.debian.org/news/1037418/" -"accepted-torsocks-230-2-source-amd64-into-unstable/)" +"[torsocks](https://tracker.debian.org/news/1037418/accepted-torsocks-230-2-" +"source-amd64-into-unstable/)" #. type: Bullet: ' - ' msgid "[ikiwiki](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911356)" @@ -266,13 +270,13 @@ msgstr "[ikiwiki](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911356)" #. type: Bullet: '- ' msgid "" -"We had to temper several [[!wikipedia Denial-of-service_attack " -"desc=\"distributed denial-of-service (DDoS)\"]] attacks targeting our " +"We had to temper several [[!wikipedia Denial-of-service_attack desc=" +"\"distributed denial-of-service (DDoS)\"]] attacks targeting our " "infrastructure." msgstr "" "Nous avons dû faire face à plusieurs attaques [[!wikipedia_fr " -"Attaque_par_déni_de_service desc=\"par déni de service distribué (" -"distributed denial-of-service – DDoS)\"]] visant notre infrastructure." +"Attaque_par_déni_de_service desc=\"par déni de service distribué " +"(distributed denial-of-service – DDoS)\"]] visant notre infrastructure." #. type: Bullet: '- ' msgid "" @@ -280,8 +284,8 @@ msgid "" "fine people of boum.org. Thank you! As they were reducing their activities, " "we had to migrate our services. Our website is now self-hosted and our " "mailing-lists are taken care of by 2 experienced and trusted autonomous " -"server projects: [autistici.org](https://autistici.org) and " -"[puscii.nl](https://puscii.nl)." +"server projects: [autistici.org](https://autistici.org) and [puscii.nl]" +"(https://puscii.nl)." msgstr "" "Pendant 9 ans, nous avons compté sur les services d'hébergement fournis par " "les merveilleuses personnes de boum.org. Merci ! Comme elles réduisent leurs " @@ -374,9 +378,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate/?r=2019-achievements\">Donate</a></div>\n" -msgstr "" -"<div class=\"donate-button\"><a href=\"https://tails.boum.org/donate/?r=2019-" -"achievements\">Faire un don</a></div>\n" +msgid "<div class=\"donate-button\"><a href=\"https://tails.boum.org/donate/?r=2019-achievements\">Donate</a></div>\n" +msgstr "<div class=\"donate-button\"><a href=\"https://tails.boum.org/donate/?r=2019-achievements\">Faire un don</a></div>\n" diff --git a/wiki/src/news/achievements_in_2019.it.po b/wiki/src/news/achievements_in_2019.it.po index 6fa01a202bc0404adb60213612a440709aab7acf..260042aa012dca488736f1643875496625f0ea50 100644 --- a/wiki/src/news/achievements_in_2019.it.po +++ b/wiki/src/news/achievements_in_2019.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-11-22 08:51+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,9 +39,8 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"On October 7, we started our [[yearly donation " -"campaign|news/2019-fundraiser]]. Today, we summarize what we achieved with " -"your help in 2019." +"On October 7, we started our [[yearly donation campaign|news/2019-" +"fundraiser]]. Today, we summarize what we achieved with your help in 2019." msgstr "" #. type: Plain text @@ -85,10 +84,9 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"We explained better how to [[troubleshoot failing " -"Wi-Fi|install/win/usb#wi-fi]], an issue unfortunately quite common, " -"especially on Mac, and documented which Wi-Fi USB adapters work well in " -"Tails." +"We explained better how to [[troubleshoot failing Wi-Fi|install/win/usb#wi-" +"fi]], an issue unfortunately quite common, especially on Mac, and documented " +"which Wi-Fi USB adapters work well in Tails." msgstr "" #. type: Bullet: ' - ' @@ -123,7 +121,7 @@ msgstr "" #. type: Plain text msgid "" -"We also improved a lot the usability of *Tails Greeter* for non-English " +"We also improved a lot the usability of the Welcome Screen for non-English " "users in [[Tails 4.0|version_4.0#greeter]]." msgstr "" @@ -172,10 +170,9 @@ msgstr "" #. type: Bullet: '- ' msgid "" "We removed less popular software and localization packages, which you can " -"now install yourself using the [[Additional " -"Software|doc/first_steps/additional_software]] feature. Optimizations like " -"these made the USB image of Tails 4.0 47 MB smaller than Tails 3.6, which " -"was the bigger release ever." +"now install yourself using the [[Additional Software|doc/first_steps/" +"additional_software]] feature. Optimizations like these made the USB image " +"of Tails 4.0 47 MB smaller than Tails 3.6, which was the bigger release ever." msgstr "" #. type: Bullet: '- ' @@ -195,11 +192,15 @@ msgid "[GNOME](https://gitlab.gnome.org/GNOME/gtk/merge_requests/263)" msgstr "" #. type: Bullet: ' - ' -msgid "[Debian](https://tracker.debian.org/news/1062740/accepted-apparmor-2133-5-source-into-unstable/)" +msgid "" +"[Debian](https://tracker.debian.org/news/1062740/accepted-apparmor-2133-5-" +"source-into-unstable/)" msgstr "" #. type: Bullet: ' - ' -msgid "[OnionShare](https://tracker.debian.org/news/1036041/accepted-onionshare-20-1-source-all-into-unstable/)" +msgid "" +"[OnionShare](https://tracker.debian.org/news/1036041/accepted-" +"onionshare-20-1-source-all-into-unstable/)" msgstr "" #. type: Bullet: ' - ' @@ -207,7 +208,9 @@ msgid "[KeePassXC](https://github.com/keepassxreboot/keepassxc/pull/2593)" msgstr "" #. type: Bullet: ' - ' -msgid "[torsocks](https://tracker.debian.org/news/1037418/accepted-torsocks-230-2-source-amd64-into-unstable/)" +msgid "" +"[torsocks](https://tracker.debian.org/news/1037418/accepted-torsocks-230-2-" +"source-amd64-into-unstable/)" msgstr "" #. type: Bullet: ' - ' @@ -216,8 +219,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"We had to temper several [[!wikipedia Denial-of-service_attack " -"desc=\"distributed denial-of-service (DDoS)\"]] attacks targeting our " +"We had to temper several [[!wikipedia Denial-of-service_attack desc=" +"\"distributed denial-of-service (DDoS)\"]] attacks targeting our " "infrastructure." msgstr "" @@ -227,8 +230,8 @@ msgid "" "fine people of boum.org. Thank you! As they were reducing their activities, " "we had to migrate our services. Our website is now self-hosted and our " "mailing-lists are taken care of by 2 experienced and trusted autonomous " -"server projects: [autistici.org](https://autistici.org) and " -"[puscii.nl](https://puscii.nl)." +"server projects: [autistici.org](https://autistici.org) and [puscii.nl]" +"(https://puscii.nl)." msgstr "" #. type: Title = @@ -296,7 +299,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate/?r=2019-achievements\">Donate</a></div>\n" +msgid "<div class=\"donate-button\"><a href=\"https://tails.boum.org/donate/?r=2019-achievements\">Donate</a></div>\n" msgstr "" diff --git a/wiki/src/news/achievements_in_2019.mdwn b/wiki/src/news/achievements_in_2019.mdwn index ae5a13b704f725fbccb6400ec98cc6d855fe1d41..a84e93ac8ac6fe3343f38e1a8d891e8fb4470a13 100644 --- a/wiki/src/news/achievements_in_2019.mdwn +++ b/wiki/src/news/achievements_in_2019.mdwn @@ -49,7 +49,7 @@ we built a [[translation platform|https://translate.tails.boum.org/]] for our we Since then, people started translations in Arabic, Catalan, Traditional and Simplified Chinese, Polish, Russian, Serbian, and Turkish. -We also improved a lot the usability of *Tails Greeter* for non-English +We also improved a lot the usability of the Welcome Screen for non-English users in [[Tails 4.0|version_4.0#greeter]]. diff --git a/wiki/src/news/achievements_in_2019.pt.po b/wiki/src/news/achievements_in_2019.pt.po index 6f1ab3ad8f4ef7744f3ed4942e9698424e265d2f..dcdacbdb1d92ff5d85524742ccb6dcacbe58f188 100644 --- a/wiki/src/news/achievements_in_2019.pt.po +++ b/wiki/src/news/achievements_in_2019.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-03-20 07:36+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,9 +39,8 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"On October 7, we started our [[yearly donation " -"campaign|news/2019-fundraiser]]. Today, we summarize what we achieved with " -"your help in 2019." +"On October 7, we started our [[yearly donation campaign|news/2019-" +"fundraiser]]. Today, we summarize what we achieved with your help in 2019." msgstr "" #. type: Plain text @@ -85,10 +84,9 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"We explained better how to [[troubleshoot failing " -"Wi-Fi|install/win/usb#wi-fi]], an issue unfortunately quite common, " -"especially on Mac, and documented which Wi-Fi USB adapters work well in " -"Tails." +"We explained better how to [[troubleshoot failing Wi-Fi|install/win/usb#wi-" +"fi]], an issue unfortunately quite common, especially on Mac, and documented " +"which Wi-Fi USB adapters work well in Tails." msgstr "" #. type: Bullet: ' - ' @@ -123,7 +121,7 @@ msgstr "" #. type: Plain text msgid "" -"We also improved a lot the usability of *Tails Greeter* for non-English " +"We also improved a lot the usability of the Welcome Screen for non-English " "users in [[Tails 4.0|version_4.0#greeter]]." msgstr "" @@ -172,10 +170,9 @@ msgstr "" #. type: Bullet: '- ' msgid "" "We removed less popular software and localization packages, which you can " -"now install yourself using the [[Additional " -"Software|doc/first_steps/additional_software]] feature. Optimizations like " -"these made the USB image of Tails 4.0 47 MB smaller than Tails 3.6, which " -"was the bigger release ever." +"now install yourself using the [[Additional Software|doc/first_steps/" +"additional_software]] feature. Optimizations like these made the USB image " +"of Tails 4.0 47 MB smaller than Tails 3.6, which was the bigger release ever." msgstr "" #. type: Bullet: '- ' @@ -195,11 +192,15 @@ msgid "[GNOME](https://gitlab.gnome.org/GNOME/gtk/merge_requests/263)" msgstr "" #. type: Bullet: ' - ' -msgid "[Debian](https://tracker.debian.org/news/1062740/accepted-apparmor-2133-5-source-into-unstable/)" +msgid "" +"[Debian](https://tracker.debian.org/news/1062740/accepted-apparmor-2133-5-" +"source-into-unstable/)" msgstr "" #. type: Bullet: ' - ' -msgid "[OnionShare](https://tracker.debian.org/news/1036041/accepted-onionshare-20-1-source-all-into-unstable/)" +msgid "" +"[OnionShare](https://tracker.debian.org/news/1036041/accepted-" +"onionshare-20-1-source-all-into-unstable/)" msgstr "" #. type: Bullet: ' - ' @@ -207,7 +208,9 @@ msgid "[KeePassXC](https://github.com/keepassxreboot/keepassxc/pull/2593)" msgstr "" #. type: Bullet: ' - ' -msgid "[torsocks](https://tracker.debian.org/news/1037418/accepted-torsocks-230-2-source-amd64-into-unstable/)" +msgid "" +"[torsocks](https://tracker.debian.org/news/1037418/accepted-torsocks-230-2-" +"source-amd64-into-unstable/)" msgstr "" #. type: Bullet: ' - ' @@ -216,8 +219,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"We had to temper several [[!wikipedia Denial-of-service_attack " -"desc=\"distributed denial-of-service (DDoS)\"]] attacks targeting our " +"We had to temper several [[!wikipedia Denial-of-service_attack desc=" +"\"distributed denial-of-service (DDoS)\"]] attacks targeting our " "infrastructure." msgstr "" @@ -227,8 +230,8 @@ msgid "" "fine people of boum.org. Thank you! As they were reducing their activities, " "we had to migrate our services. Our website is now self-hosted and our " "mailing-lists are taken care of by 2 experienced and trusted autonomous " -"server projects: [autistici.org](https://autistici.org) and " -"[puscii.nl](https://puscii.nl)." +"server projects: [autistici.org](https://autistici.org) and [puscii.nl]" +"(https://puscii.nl)." msgstr "" #. type: Title = @@ -296,7 +299,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate/?r=2019-achievements\">Donate</a></div>\n" +msgid "<div class=\"donate-button\"><a href=\"https://tails.boum.org/donate/?r=2019-achievements\">Donate</a></div>\n" msgstr "" diff --git a/wiki/src/news/celebrating_10_years.de.po b/wiki/src/news/celebrating_10_years.de.po index 4779f5a47d613e660b30cfc883210a3a06fef434..390bbf2f0bb9bc3cce5ae08e1b3b903e89e1a5c7 100644 --- a/wiki/src/news/celebrating_10_years.de.po +++ b/wiki/src/news/celebrating_10_years.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-03 10:46+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-03-07 11:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -211,7 +211,7 @@ msgid "**Persistence**" msgstr "" #. type: Bullet: '- ' -msgid "**Tails Greeter**, our welcome screen" +msgid "**Welcome Screen**" msgstr "" #. type: Bullet: '- ' @@ -403,7 +403,7 @@ msgstr "" #. type: Plain text msgid "" "- The [[installation instructions|install]] (2016) - The [[verification " -"extension|install/download]] (2016) - The new [[Tails Greeter|news/" +"extension|install/download]] (2016) - The new [[Welcome Screen|news/" "version_3.0#greeter]] (2017) - The shift to [[USB images and Etcher|news/" "version_3.12#usb-images]] (2019)" msgstr "" diff --git a/wiki/src/news/celebrating_10_years.es.po b/wiki/src/news/celebrating_10_years.es.po index 1a469688c31acb443a724c646475bec99f1d7bf4..fbd9a973bb26de93aa52c246c4138817540990a2 100644 --- a/wiki/src/news/celebrating_10_years.es.po +++ b/wiki/src/news/celebrating_10_years.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-03 10:46+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-12-22 21:03+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -211,7 +211,7 @@ msgid "**Persistence**" msgstr "" #. type: Bullet: '- ' -msgid "**Tails Greeter**, our welcome screen" +msgid "**Welcome Screen**" msgstr "" #. type: Bullet: '- ' @@ -403,7 +403,7 @@ msgstr "" #. type: Plain text msgid "" "- The [[installation instructions|install]] (2016) - The [[verification " -"extension|install/download]] (2016) - The new [[Tails Greeter|news/" +"extension|install/download]] (2016) - The new [[Welcome Screen|news/" "version_3.0#greeter]] (2017) - The shift to [[USB images and Etcher|news/" "version_3.12#usb-images]] (2019)" msgstr "" diff --git a/wiki/src/news/celebrating_10_years.fa.po b/wiki/src/news/celebrating_10_years.fa.po index f75f7773f1dbf067f225a9be16609f39283f7b52..ace165cc20875748009726224a34226722c0fb13 100644 --- a/wiki/src/news/celebrating_10_years.fa.po +++ b/wiki/src/news/celebrating_10_years.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-03 10:46+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-01-22 14:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -211,7 +211,7 @@ msgid "**Persistence**" msgstr "" #. type: Bullet: '- ' -msgid "**Tails Greeter**, our welcome screen" +msgid "**Welcome Screen**" msgstr "" #. type: Bullet: '- ' @@ -403,7 +403,7 @@ msgstr "" #. type: Plain text msgid "" "- The [[installation instructions|install]] (2016) - The [[verification " -"extension|install/download]] (2016) - The new [[Tails Greeter|news/" +"extension|install/download]] (2016) - The new [[Welcome Screen|news/" "version_3.0#greeter]] (2017) - The shift to [[USB images and Etcher|news/" "version_3.12#usb-images]] (2019)" msgstr "" diff --git a/wiki/src/news/celebrating_10_years.fr.po b/wiki/src/news/celebrating_10_years.fr.po index fc41f95838de67513d8cd2cda6edf68d0d0690e2..cb9dfd73db98f7e4099837bf389a7c6ed947e82b 100644 --- a/wiki/src/news/celebrating_10_years.fr.po +++ b/wiki/src/news/celebrating_10_years.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-03 10:46+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-03-27 15:36+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -138,8 +138,8 @@ msgid "" "paved the way to what is Tails today:" msgstr "" "Quand nous avons commencé le projet *amnesia* en 2009, d'autres projets " -"avant nous ont construit la route qui fait de Tails ce qu'il est aujourd'hui " -":" +"avant nous ont construit la route qui fait de Tails ce qu'il est " +"aujourd'hui :" #. type: Bullet: '- ' msgid "" @@ -167,16 +167,15 @@ msgid "" "2007 and based on Gentoo, pushed the concept of live operating systems a bit " "further by focusing on security, online anonymity, and the use of Tor." msgstr "" -"[ELE](https://web.archive.org/web/20050422130010/" -"http://www.northernsecurity.net:80/download/ele/), né en 2005 et basé sur " -"Damn Small Linux, [Anonym.OS](https://web.archive.org/web/20060212030338/" -"http://theory.kaos.to:80/projects.html), né en 2006 et basé sur OpenBSD et " -"[Incognito](https://web.archive.org/web/20071213084719/" -"http://www.browseanonymouslyanywhere.com/incognito/" -"index.php?option=com_content&task=view&id=28&Itemid=41), né en 2007 et basé " -"sur Gentoo, ont poussés le concept de système d'exploitation live un peu " -"plus loin en se concentrant sur la sécurité, l'anonymat en ligne et " -"l'utilisation de Tor." +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." +"net:80/download/ele/), né en 2005 et basé sur Damn Small Linux, [Anonym.OS]" +"(https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/" +"projects.html), né en 2006 et basé sur OpenBSD et [Incognito](https://web." +"archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/" +"incognito/index.php?option=com_content&task=view&id=28&Itemid=41), né en " +"2007 et basé sur Gentoo, ont poussés le concept de système d'exploitation " +"live un peu plus loin en se concentrant sur la sécurité, l'anonymat en ligne " +"et l'utilisation de Tor." #. type: Plain text #, no-wrap @@ -191,17 +190,13 @@ msgid "" " Project](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement).\n" msgstr "" " *Incognito*\n" -" a été le premier système d'exploitation live à inclure un ensemble " -"complet\n" -" d'applications configurées par défaut pour fonctionner avec Tor (" -"navigateur, client de\n" +" a été le premier système d'exploitation live à inclure un ensemble complet\n" +" d'applications configurées par défaut pour fonctionner avec Tor (navigateur, client de\n" " messagerie électronique, client IRC, etc.), offrant un dossier *Home*\n" " persistant et permettant même d'héberger des services onion.\n" -" *Incognito* a aussi été le premier système d'exploitation live à recevoir " -"une\n" +" *Incognito* a aussi été le premier système d'exploitation live à recevoir une\n" " [reconnaissance officielle du projet\n" -" Tor](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-" -"agreement).\n" +" Tor](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement).\n" #. type: Plain text #, no-wrap @@ -230,11 +225,11 @@ msgid "" "renamed *T(A)ILS*, *The Amnesic Incognito Live System*, to act the fusion " "between *amnesia* and *Incognito*." msgstr "" -"En mars 2010, *Incognito* a été déclaré abandonné et *amnesia* son \"[" -"successeur spirituel](https://web.archive.org/web/20100728224716/" -"http://www.anonymityanywhere.com:80/incognito)\". Plusieurs semaines plus " -"tard, *amnesia* sera renommé *T(A)ILS*, *The Amnesic Incognito Live System*, " -"pour confirmer la fusion entre *amnesia* et *Incognito*." +"En mars 2010, *Incognito* a été déclaré abandonné et *amnesia* son " +"\"[successeur spirituel](https://web.archive.org/web/20100728224716/http://" +"www.anonymityanywhere.com:80/incognito)\". Plusieurs semaines plus tard, " +"*amnesia* sera renommé *T(A)ILS*, *The Amnesic Incognito Live System*, pour " +"confirmer la fusion entre *amnesia* et *Incognito*." #. type: Plain text #, no-wrap @@ -271,8 +266,7 @@ msgstr "[[!img amnesia-0.2.png link=\"no\" alt=\"\"]]\n" #. type: Title = #, no-wrap msgid "2011-2014: core features, Tails 1.0, and public recognition\n" -msgstr "" -"2011-2014 : fonctions essentielles, Tails 1.0 et reconnaissance publique\n" +msgstr "2011-2014 : fonctions essentielles, Tails 1.0 et reconnaissance publique\n" #. type: Plain text msgid "" @@ -287,16 +281,16 @@ msgid "" "**Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc=" "\"Fedora Live USB Creator\"]]" msgstr "" -"**L'installeur Tails**, dérivé de [[!wikipedia_fr Fedora_Media_Writer desc=\"" -"Fedora Media Writer\"]]" +"**L'installeur Tails**, dérivé de [[!wikipedia_fr Fedora_Media_Writer desc=" +"\"Fedora Media Writer\"]]" #. type: Bullet: '- ' msgid "**Persistence**" msgstr "**Persistance**" #. type: Bullet: '- ' -msgid "**Tails Greeter**, our welcome screen" -msgstr "**Tails Greeter**, notre écran de bienvenue" +msgid "**Welcome Screen**" +msgstr "" #. type: Bullet: '- ' msgid "**Automatic upgades**" @@ -343,10 +337,10 @@ msgid "" msgstr "" "En juin 2013, Edward Snowden révelait des milliers de documents classifiés " "sur les programmes de surveillance de la NSA. Tails a été mentionné par des " -"scientifiques célèbres [Bruce Schneier](https://www.theguardian.com/world/" -"2013/sep/05/nsa-how-to-remain-secure-surveillance) et [Micah " -"Lee](https://freedom.press/news/encryption-works-how-to-protect-your-privacy-" -"and-your-sources-in-the-age-of-nsa-surveillance/) comme l'un des outils de " +"scientifiques célèbres [Bruce Schneier](https://www.theguardian.com/" +"world/2013/sep/05/nsa-how-to-remain-secure-surveillance) et [Micah Lee]" +"(https://freedom.press/news/encryption-works-how-to-protect-your-privacy-and-" +"your-sources-in-the-age-of-nsa-surveillance/) comme l'un des outils de " "protection contre la surveillance de la NSA." #. type: Plain text @@ -356,9 +350,9 @@ msgid "" "innovation-prize-winners-announced-at-rightscon). According to Access Now:" msgstr "" "En mars 2014, nous avons reçu notre première récompense, le [Access " -"Innovation Prize for Endpoint Security](https://www.accessnow.org/blog/2014/" -"03/11/2014-access-innovation-prize-winners-announced-at-rightscon). D'après " -"Access Now :" +"Innovation Prize for Endpoint Security](https://www.accessnow.org/" +"blog/2014/03/11/2014-access-innovation-prize-winners-announced-at-" +"rightscon). D'après Access Now :" #. type: Plain text #, no-wrap @@ -415,16 +409,12 @@ msgstr "<p style=\"max-width: 800px;\">\n" #. type: Plain text #, no-wrap msgid "[[!img snowden-1.jpg size=\"380x\" alt=\"Snowden plugging an SD card in a laptop with a blue Tails USB stick\"]]\n" -msgstr "" -"[[!img snowden-1.jpg size=\"380x\" alt=\"Snowden branchant une carte SD dans " -"un portable avec une clé USB Tails bleue\"]]\n" +msgstr "[[!img snowden-1.jpg size=\"380x\" alt=\"Snowden branchant une carte SD dans un portable avec une clé USB Tails bleue\"]]\n" #. type: Plain text #, no-wrap msgid "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden showing NSA documents on Tails to Ewen MacAskill\"]]\n" -msgstr "" -"[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden montrant des documents de " -"la NSA sur Tails à Ewen MacAskill\"]]\n" +msgstr "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden montrant des documents de la NSA sur Tails à Ewen MacAskill\"]]\n" #. type: Plain text #, no-wrap @@ -432,8 +422,7 @@ msgid "" "<em>Images from <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em>\n" "</p>\n" msgstr "" -"<em>Images de <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> par " -"Laura Poitras, 37ème et 41ème minutes.</em>\n" +"<em>Images de <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> par Laura Poitras, 37ème et 41ème minutes.</em>\n" "</p>\n" #. type: Plain text @@ -450,12 +439,12 @@ msgstr "" "Plusieurs semaines plus tard, la version 1.0 de Tails a fait la couverture " "de [The Verge](https://www.theverge.com/2014/4/29/5664884/this-is-the-most-" "secure-computer-you-ll-ever-own), [CNET](https://www.cnet.com/news/anonymous-" -"os-reportedly-favored-by-nsa-whistle-blower-edward-snowden-reaches-version-1-" -"0/), [Boing Boing](https://boingboing.net/2014/04/30/tails-snowdens-favorite-" -"ano.html) et de plein d'autres. En décembre, [Der " -"Spiegel](https://www.spiegel.de/media/media-35535.pdf) a publié des " -"présentations internes à la NSA qui classent Tails comme ayant un « impact " -"catastrophique » et étant la « priorité absolue » :" +"os-reportedly-favored-by-nsa-whistle-blower-edward-snowden-reaches-" +"version-1-0/), [Boing Boing](https://boingboing.net/2014/04/30/tails-" +"snowdens-favorite-ano.html) et de plein d'autres. En décembre, [Der Spiegel]" +"(https://www.spiegel.de/media/media-35535.pdf) a publié des présentations " +"internes à la NSA qui classent Tails comme ayant un « impact catastrophique " +"» et étant la « priorité absolue » :" #. type: Plain text #, no-wrap @@ -466,10 +455,8 @@ msgid "" "insight to target communications, presence)'\"]]\n" msgstr "" "[[!img nsa.png link=\"https://www.spiegel.de/media/media-35535.pdf\"\n" -"alt=\"Tor, TrueCrypt, Tails sont classés comme 'Risque d'utilisation : cible " -"actuelle\n" -"la plus prioritaire' et 'Impact: catastrophique (perte quasi totale/manque " -"de\n" +"alt=\"Tor, TrueCrypt, Tails sont classés comme 'Risque d'utilisation : cible actuelle\n" +"la plus prioritaire' et 'Impact: catastrophique (perte quasi totale/manque de\n" "visibilité pour cibler les communications, la présence)'\"]]\n" #. type: Plain text @@ -531,18 +518,15 @@ msgstr "" "systématiquement appuyés sur des pratiques de conception centrées sur les " "personnes utilisant Tails pour nous assurer que tous les changements majeurs " "que nous faisons rendent Tails plus facile à utiliser. Nous avons réalisé " -"dix sessions de tests d'utilisabilité, en utilisant des [prototypes " -"papiers](https://simplysecure.org/blog/formative-testing), en faisant des [[" -"enquêtes quantitatives|blueprint/veracrypt]], et en catégorisant mieux notre " -"public en utilisant des [[personas|contribute/personas]]." +"dix sessions de tests d'utilisabilité, en utilisant des [prototypes papiers]" +"(https://simplysecure.org/blog/formative-testing), en faisant des [[enquêtes " +"quantitatives|blueprint/veracrypt]], et en catégorisant mieux notre public " +"en utilisant des [[personas|contribute/personas]]." #. type: Plain text #, no-wrap msgid "[[<img src=\"https://git.tails.boum.org/ux/plain/personas/personas-small.png\" id=\"picture\" class=\"img-responsive\" alt=\"Our 3 personas: Riou, Cris, and Kim\">|contribute/personas]]\n" -msgstr "" -"[[<img src=\"https://git.tails.boum.org/ux/plain/personas/personas-small." -"png\" id=\"picture\" class=\"img-responsive\" alt=\"Nos trois personas : " -"Riou, Cris et Kim\">|contribute/personas]]\n" +msgstr "[[<img src=\"https://git.tails.boum.org/ux/plain/personas/personas-small.png\" id=\"picture\" class=\"img-responsive\" alt=\"Nos trois personas : Riou, Cris et Kim\">|contribute/personas]]\n" #. type: Plain text msgid "" @@ -553,9 +537,15 @@ msgstr "" "avons réalisés depuis 2015 pour rendre Tails plus facile à installer :" #. type: Plain text +#, fuzzy +#| msgid "" +#| "- The [[installation instructions|install]] (2016) - The [[verification " +#| "extension|install/download]] (2016) - The new [[Tails Greeter|news/" +#| "version_3.0#greeter]] (2017) - The shift to [[USB images and Etcher|news/" +#| "version_3.12#usb-images]] (2019)" msgid "" "- The [[installation instructions|install]] (2016) - The [[verification " -"extension|install/download]] (2016) - The new [[Tails Greeter|news/" +"extension|install/download]] (2016) - The new [[Welcome Screen|news/" "version_3.0#greeter]] (2017) - The shift to [[USB images and Etcher|news/" "version_3.12#usb-images]] (2019)" msgstr "" @@ -583,9 +573,9 @@ msgid "" "Images of Tails are [built automatically](https://nightly.tails.boum.org/) " "every time we develop a change for an upcoming release." msgstr "" -"Les images binaires de Tails sont [construites " -"automatiquement](https://nightly.tails.boum.org/) à chaque fois que nous " -"développons une modification pour une prochaine version." +"Les images binaires de Tails sont [construites automatiquement](https://" +"nightly.tails.boum.org/) à chaque fois que nous développons une modification " +"pour une prochaine version." #. type: Bullet: '- ' msgid "" @@ -620,8 +610,7 @@ msgid "" "</video>\n" msgstr "" "<video controls=\"true\" width=\"880\" height=\"352\">\n" -" <source src=\"https://tails.boum.org/news/celebrating_10_years/test-suite." -"mp4\" type=\"video/mp4\" />\n" +" <source src=\"https://tails.boum.org/news/celebrating_10_years/test-suite.mp4\" type=\"video/mp4\" />\n" "</video>\n" #. type: Plain text @@ -795,3 +784,6 @@ msgstr "" #. type: Plain text msgid "Thank you!" msgstr "Merci !" + +#~ msgid "**Tails Greeter**, our welcome screen" +#~ msgstr "**Tails Greeter**, notre écran de bienvenue" diff --git a/wiki/src/news/celebrating_10_years.it.po b/wiki/src/news/celebrating_10_years.it.po index 28e4bc312b84cf90f3b63fae431dbd9ea27e209f..d84274e317a54a412ef2d7ab8352e2e7fd0017a4 100644 --- a/wiki/src/news/celebrating_10_years.it.po +++ b/wiki/src/news/celebrating_10_years.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-03 10:46+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-01-11 13:25+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -211,7 +211,7 @@ msgid "**Persistence**" msgstr "" #. type: Bullet: '- ' -msgid "**Tails Greeter**, our welcome screen" +msgid "**Welcome Screen**" msgstr "" #. type: Bullet: '- ' @@ -403,7 +403,7 @@ msgstr "" #. type: Plain text msgid "" "- The [[installation instructions|install]] (2016) - The [[verification " -"extension|install/download]] (2016) - The new [[Tails Greeter|news/" +"extension|install/download]] (2016) - The new [[Welcome Screen|news/" "version_3.0#greeter]] (2017) - The shift to [[USB images and Etcher|news/" "version_3.12#usb-images]] (2019)" msgstr "" diff --git a/wiki/src/news/celebrating_10_years.mdwn b/wiki/src/news/celebrating_10_years.mdwn index b8f3f5cd3517508e68269c273c9812d4a26b682d..495ed71e5a572e62d4102bc178336b49169c803a 100644 --- a/wiki/src/news/celebrating_10_years.mdwn +++ b/wiki/src/news/celebrating_10_years.mdwn @@ -108,7 +108,7 @@ that make Tails today: - **Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc="Fedora Live USB Creator"]] - **Persistence** -- **Tails Greeter**, our welcome screen +- **Welcome Screen** - **Automatic upgades** - **MAC Spoofing** - **MAT (Metadata Anonymization Toolkit)**, which was developed by @@ -217,7 +217,7 @@ make Tails easier to install: - The [[installation instructions|install]] (2016) - The [[verification extension|install/download]] (2016) -- The new [[Tails Greeter|news/version_3.0#greeter]] (2017) +- The new [[Welcome Screen|news/version_3.0#greeter]] (2017) - The shift to [[USB images and Etcher|news/version_3.12#usb-images]] (2019) ### Continuous integration diff --git a/wiki/src/news/celebrating_10_years.pt.po b/wiki/src/news/celebrating_10_years.pt.po index fa4561f7c9823c7500cc1b87654ae13d75746d4c..4f1a74b404b779e745eeba926b8405155eec6686 100644 --- a/wiki/src/news/celebrating_10_years.pt.po +++ b/wiki/src/news/celebrating_10_years.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-03 10:46+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-03-20 07:36+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -211,7 +211,7 @@ msgid "**Persistence**" msgstr "" #. type: Bullet: '- ' -msgid "**Tails Greeter**, our welcome screen" +msgid "**Welcome Screen**" msgstr "" #. type: Bullet: '- ' @@ -403,7 +403,7 @@ msgstr "" #. type: Plain text msgid "" "- The [[installation instructions|install]] (2016) - The [[verification " -"extension|install/download]] (2016) - The new [[Tails Greeter|news/" +"extension|install/download]] (2016) - The new [[Welcome Screen|news/" "version_3.0#greeter]] (2017) - The shift to [[USB images and Etcher|news/" "version_3.12#usb-images]] (2019)" msgstr "" diff --git a/wiki/src/news/report_2014_03.mdwn b/wiki/src/news/report_2014_03.mdwn index 28af77d641d644b689f6c8dc7feeecc8c3a72ff6..35e60c07b6f25abc5e3cb1f85b0e022c987bd53c 100644 --- a/wiki/src/news/report_2014_03.mdwn +++ b/wiki/src/news/report_2014_03.mdwn @@ -98,7 +98,7 @@ Documentation and website c0cd62c46f8ef1d4682c1a72b80ed45b21083578 desc="documented"]]. - The documentation for MAC spoofing was - [[completed|doc/first_steps/startup_options/mac_spoofing]]. + [[completed|doc/first_steps/welcome_screen/mac_spoofing]]. Translation =========== diff --git a/wiki/src/news/report_2015_12.mdwn b/wiki/src/news/report_2015_12.mdwn index c4f6303ea57a53aa32e1a9b1ea1032d526f2ea9c..90b04975d0122413dbf2efbdfe5be3a4c906cfd5 100644 --- a/wiki/src/news/report_2015_12.mdwn +++ b/wiki/src/news/report_2015_12.mdwn @@ -21,7 +21,7 @@ Code For details, see each release announcement. Notable changes include: -* 1.7: You can now start Tails in [[offline mode|doc/first_steps/startup_options#additional]] +* 1.7: You can now start Tails in [[offline mode|doc/first_steps/welcome_screen#additional]] to disable all networking for additional security. Doing so can be useful when working on sensitive documents. diff --git a/wiki/src/news/report_2018_01.mdwn b/wiki/src/news/report_2018_01.mdwn index f3e280997ffc8db7e3179b76905a161de1993499..3c3aa9608d623e83efdacb2d6fa51665d37986bf 100644 --- a/wiki/src/news/report_2018_01.mdwn +++ b/wiki/src/news/report_2018_01.mdwn @@ -17,7 +17,7 @@ Releases The following changes were introduced in Tails 3.5: - Tor redesigned *Tor Launcher*, the application to configure a [[Tor - bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. + bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. - Fix printing to a PDF in *Tor Browser*. ([[!tails_ticket 13403]] and [[!tails_ticket 15024]]) diff --git a/wiki/src/news/report_2018_03.mdwn b/wiki/src/news/report_2018_03.mdwn index dd04d55d5de043350873916ae90afd4c620f8f32..3b1973fcbc5483bc880bd7418ed3018a8ee47dc6 100644 --- a/wiki/src/news/report_2018_03.mdwn +++ b/wiki/src/news/report_2018_03.mdwn @@ -24,7 +24,7 @@ The following changes were introduced in Tails 3.6: - You can now lock your screen by clicking on the *Lock* button in the system menu. - - If you set up an [[administration password|doc/first_steps/startup_options/administration_password]] + - If you set up an [[administration password|doc/first_steps/welcome_screen/administration_password]] when starting Tails, you can unlock your screen with your administration password. - Otherwise, you can set up a password to unlock your screen when locking your diff --git a/wiki/src/news/report_2019_03.mdwn b/wiki/src/news/report_2019_03.mdwn index f627e8e2b3b075889dc172fc8fa8a84f43ad55ae..f8b11a49b598a36e2a8cb20d2b5fdebe22778cb0 100644 --- a/wiki/src/news/report_2019_03.mdwn +++ b/wiki/src/news/report_2019_03.mdwn @@ -27,7 +27,7 @@ The following changes were introduced in Tails 3.13: saved in the persistent storage. ([[!tails_ticket 15957]]) - Fix the localization of *Tor Launcher*, the application to configure a [[Tor - bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. + bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!tails_ticket 16338]]) - Fix accessibility when opening *Tor Browser* from a desktop notification. diff --git a/wiki/src/news/spoof-mac.ar.po b/wiki/src/news/spoof-mac.ar.po index 50ebb34ddb5ec25d049b8cd30f1705186eb99fa9..140d529006b27c3f105a6d0bbbe07b5251a206c1 100644 --- a/wiki/src/news/spoof-mac.ar.po +++ b/wiki/src/news/spoof-mac.ar.po @@ -100,7 +100,7 @@ msgstr "" #. type: Plain text msgid "" "MAC spoofing is enabled by default in this test ISO. You can change this " -"with a [[startup option|doc/first_steps/startup_options#greeter]]. The " +"with a [[startup option|doc/first_steps/welcome_screen]]. The " "(preliminary) MAC spoofing documentation tries to explain situations where " "it actually may be a bad idea to keep this option enabled. However, as this " "is just a test version we of course urge you to not use it for anything " @@ -116,7 +116,7 @@ msgstr "" msgid "" "For any MAC spoofing-related issues you experience using this test ISO, " "please include the output from the following commands when reporting it to " -"us (note: it requires setting an [[doc/first_steps/startup_options/" +"us (note: it requires setting an [[doc/first_steps/welcome_screen/" "administration_password]]):" msgstr "" diff --git a/wiki/src/news/spoof-mac.ca.po b/wiki/src/news/spoof-mac.ca.po index 913ba9a613b2f5842f305322bb7ba520796aab44..a92d324bea982f8b3830d6617109bf54094db689 100644 --- a/wiki/src/news/spoof-mac.ca.po +++ b/wiki/src/news/spoof-mac.ca.po @@ -99,7 +99,7 @@ msgstr "" #. type: Plain text msgid "" "MAC spoofing is enabled by default in this test ISO. You can change this " -"with a [[startup option|doc/first_steps/startup_options#greeter]]. The " +"with a [[startup option|doc/first_steps/welcome_screen]]. The " "(preliminary) MAC spoofing documentation tries to explain situations where " "it actually may be a bad idea to keep this option enabled. However, as this " "is just a test version we of course urge you to not use it for anything " @@ -115,7 +115,7 @@ msgstr "" msgid "" "For any MAC spoofing-related issues you experience using this test ISO, " "please include the output from the following commands when reporting it to " -"us (note: it requires setting an [[doc/first_steps/startup_options/" +"us (note: it requires setting an [[doc/first_steps/welcome_screen/" "administration_password]]):" msgstr "" diff --git a/wiki/src/news/spoof-mac.de.po b/wiki/src/news/spoof-mac.de.po index a9af6b6e186e316edfb202850716733cb4061960..a13d45ae2186b62905df195303200a57fa640d30 100644 --- a/wiki/src/news/spoof-mac.de.po +++ b/wiki/src/news/spoof-mac.de.po @@ -99,7 +99,7 @@ msgstr "" #. type: Plain text msgid "" "MAC spoofing is enabled by default in this test ISO. You can change this " -"with a [[startup option|doc/first_steps/startup_options#greeter]]. The " +"with a [[startup option|doc/first_steps/welcome_screen]]. The " "(preliminary) MAC spoofing documentation tries to explain situations where " "it actually may be a bad idea to keep this option enabled. However, as this " "is just a test version we of course urge you to not use it for anything " @@ -115,7 +115,7 @@ msgstr "" msgid "" "For any MAC spoofing-related issues you experience using this test ISO, " "please include the output from the following commands when reporting it to " -"us (note: it requires setting an [[doc/first_steps/startup_options/" +"us (note: it requires setting an [[doc/first_steps/welcome_screen/" "administration_password]]):" msgstr "" diff --git a/wiki/src/news/spoof-mac.es.po b/wiki/src/news/spoof-mac.es.po index 34ff55d857f31ae5a310396ed9a8217b8d99020b..beb2d331f9b10271c6feec3a4508122f34722137 100644 --- a/wiki/src/news/spoof-mac.es.po +++ b/wiki/src/news/spoof-mac.es.po @@ -98,7 +98,7 @@ msgstr "" #. type: Plain text msgid "" "MAC spoofing is enabled by default in this test ISO. You can change this " -"with a [[startup option|doc/first_steps/startup_options#greeter]]. The " +"with a [[startup option|doc/first_steps/welcome_screen]]. The " "(preliminary) MAC spoofing documentation tries to explain situations where " "it actually may be a bad idea to keep this option enabled. However, as this " "is just a test version we of course urge you to not use it for anything " @@ -114,7 +114,7 @@ msgstr "" msgid "" "For any MAC spoofing-related issues you experience using this test ISO, " "please include the output from the following commands when reporting it to " -"us (note: it requires setting an [[doc/first_steps/startup_options/" +"us (note: it requires setting an [[doc/first_steps/welcome_screen/" "administration_password]]):" msgstr "" diff --git a/wiki/src/news/spoof-mac.fa.po b/wiki/src/news/spoof-mac.fa.po index 3f63304d829c8491dcf3b64421d70aca03cc03a1..207233269c698dbe06dee1ae558cfd2fa4d14988 100644 --- a/wiki/src/news/spoof-mac.fa.po +++ b/wiki/src/news/spoof-mac.fa.po @@ -122,7 +122,7 @@ msgstr "چگونه آدرس مک را در تیلز جا بزنیم" #. type: Plain text msgid "" "MAC spoofing is enabled by default in this test ISO. You can change this " -"with a [[startup option|doc/first_steps/startup_options#greeter]]. The " +"with a [[startup option|doc/first_steps/welcome_screen]]. The " "(preliminary) MAC spoofing documentation tries to explain situations where " "it actually may be a bad idea to keep this option enabled. However, as this " "is just a test version we of course urge you to not use it for anything " @@ -130,7 +130,7 @@ msgid "" msgstr "" "جا زدن (ابتدایی) آدرس مک در این ایزوی آزمایشی به طور پیشفرض فعال شده است. " "میتوانید این وضعیت را با تغییر [[تنظیمات آغاز|doc/first_steps/" -"startup_options#greeter]] عوض کنید. مستندسازی جا زدن توضیح میدهد که چه " +"welcome_screen]] عوض کنید. مستندسازی جا زدن توضیح میدهد که چه " "مواقعی ممکن است این کار ایدهٔ خوبی نباشد. البته این هنوز یک ویرایش آزمایشی " "است و از شما درخواست میکنیم از آن برای هیچ کار مهمی استفاده نکرده و در صورت " "امکان هر دو حالت فعال و غیرفعال آن را امتحان کنید." @@ -144,12 +144,12 @@ msgstr "چه چیزی را امتحان کنیم" msgid "" "For any MAC spoofing-related issues you experience using this test ISO, " "please include the output from the following commands when reporting it to " -"us (note: it requires setting an [[doc/first_steps/startup_options/" +"us (note: it requires setting an [[doc/first_steps/welcome_screen/" "administration_password]]):" msgstr "" "در صورت بروز هر گونه مشکلی در رابطه با جا زدن آدرس مک هنگام استفاده از ایزوی " "آزمایشی، لطفاً خروجی دستورهای مرتبط را هنگام گزارش دادن مساله به ما ذکر کنید. " -"(نکته: این کار مستلزم ایجاد یک [[doc/first_steps/startup_options/" +"(نکته: این کار مستلزم ایجاد یک [[doc/first_steps/welcome_screen/" "administration_password]] است):" #. type: Plain text diff --git a/wiki/src/news/spoof-mac.fr.po b/wiki/src/news/spoof-mac.fr.po index 126ccd5c8ae9907a3d85416d908ef8ec51a413c0..3f57b626a7012728de5d420e541eab3ebc1b5143 100644 --- a/wiki/src/news/spoof-mac.fr.po +++ b/wiki/src/news/spoof-mac.fr.po @@ -124,7 +124,7 @@ msgstr "Comment utiliser l'usurpation d'adresse MAC dans Tails" #. type: Plain text msgid "" "MAC spoofing is enabled by default in this test ISO. You can change this " -"with a [[startup option|doc/first_steps/startup_options#greeter]]. The " +"with a [[startup option|doc/first_steps/welcome_screen]]. The " "(preliminary) MAC spoofing documentation tries to explain situations where " "it actually may be a bad idea to keep this option enabled. However, as this " "is just a test version we of course urge you to not use it for anything " @@ -132,7 +132,7 @@ msgid "" msgstr "" "L'usurpation d'adresse MAC est activée par défaut dans cette image de test. " "Vous pouvez changer cela avec une [[option de démarrage|doc/first_steps/" -"startup_options#greeter]]. La documentation (préliminaire) sur l'usurpation " +"welcome_screen]]. La documentation (préliminaire) sur l'usurpation " "d'adresse MAC essaye d'expliquer les situations dans lesquelles il est peut " "s'avérer une bonne idée de garder cette option activée. Cela dit, s'agissant " "uniquement d'une version de test nous vous pressons de ne pas l'utiliser " @@ -148,14 +148,14 @@ msgstr "Que tester" msgid "" "For any MAC spoofing-related issues you experience using this test ISO, " "please include the output from the following commands when reporting it to " -"us (note: it requires setting an [[doc/first_steps/startup_options/" +"us (note: it requires setting an [[doc/first_steps/welcome_screen/" "administration_password]]):" msgstr "" "Pour chaque problème d'usurpation d'adresse MAC que vous rencontrerez en " "utilisant cette ISO de test, veuillez inclure les résultats des commandes " "suivantes quand vous nous le signalerez (note : cela requière la " "configuration d'un [[mot de passe d'administration|doc/first_steps/" -"startup_options/administration_password]]) :" +"welcome_screen/administration_password]]) :" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/spoof-mac.id.po b/wiki/src/news/spoof-mac.id.po index b8b958f3a08a788ce64986432051f47ffc920323..9885afbd96d63e69470de9aa07eb3d9e6f90b312 100644 --- a/wiki/src/news/spoof-mac.id.po +++ b/wiki/src/news/spoof-mac.id.po @@ -99,7 +99,7 @@ msgstr "" #. type: Plain text msgid "" "MAC spoofing is enabled by default in this test ISO. You can change this " -"with a [[startup option|doc/first_steps/startup_options#greeter]]. The " +"with a [[startup option|doc/first_steps/welcome_screen]]. The " "(preliminary) MAC spoofing documentation tries to explain situations where " "it actually may be a bad idea to keep this option enabled. However, as this " "is just a test version we of course urge you to not use it for anything " @@ -115,7 +115,7 @@ msgstr "" msgid "" "For any MAC spoofing-related issues you experience using this test ISO, " "please include the output from the following commands when reporting it to " -"us (note: it requires setting an [[doc/first_steps/startup_options/" +"us (note: it requires setting an [[doc/first_steps/welcome_screen/" "administration_password]]):" msgstr "" diff --git a/wiki/src/news/spoof-mac.it.po b/wiki/src/news/spoof-mac.it.po index f4c0b3bb3b1ba5f4db2783c7dceadbe57a499006..5b7a0188f567bf7ba3f01a910253afa2b024dde5 100644 --- a/wiki/src/news/spoof-mac.it.po +++ b/wiki/src/news/spoof-mac.it.po @@ -98,7 +98,7 @@ msgstr "" #. type: Plain text msgid "" "MAC spoofing is enabled by default in this test ISO. You can change this " -"with a [[startup option|doc/first_steps/startup_options#greeter]]. The " +"with a [[startup option|doc/first_steps/welcome_screen]]. The " "(preliminary) MAC spoofing documentation tries to explain situations where " "it actually may be a bad idea to keep this option enabled. However, as this " "is just a test version we of course urge you to not use it for anything " @@ -114,7 +114,7 @@ msgstr "" msgid "" "For any MAC spoofing-related issues you experience using this test ISO, " "please include the output from the following commands when reporting it to " -"us (note: it requires setting an [[doc/first_steps/startup_options/" +"us (note: it requires setting an [[doc/first_steps/welcome_screen/" "administration_password]]):" msgstr "" diff --git a/wiki/src/news/spoof-mac.mdwn b/wiki/src/news/spoof-mac.mdwn index 9976f6ac161db856d4da61d4cc3a0ed11b78c9c8..cdde66c0db4dbb06dae35b3fed8eee1e1c97cd25 100644 --- a/wiki/src/news/spoof-mac.mdwn +++ b/wiki/src/news/spoof-mac.mdwn @@ -43,7 +43,7 @@ OpenPGP key MAC spoofing is enabled by default in this test ISO. You can change this with a -[[startup option|doc/first_steps/startup_options#greeter]]. The +[[startup option|doc/first_steps/welcome_screen]]. The (preliminary) MAC spoofing documentation tries to explain situations where it actually may be a bad idea to keep this option enabled. However, as this is just a test version we of course urge you @@ -55,7 +55,7 @@ enable and disable the option. For any MAC spoofing-related issues you experience using this test ISO, please include the output from the following commands when reporting it to us (note: it requires setting an -[[doc/first_steps/startup_options/administration_password]]): +[[doc/first_steps/welcome_screen/administration_password]]): sudo grep spoof-mac /var/log/syslog sudo grep unblock-network /var/log/syslog diff --git a/wiki/src/news/spoof-mac.pl.po b/wiki/src/news/spoof-mac.pl.po index 7b6275ce6b12e4e77d7c99984b1b5179383a83e9..7480e1d7bc43edcd90ac16c29198ab97e59d31cd 100644 --- a/wiki/src/news/spoof-mac.pl.po +++ b/wiki/src/news/spoof-mac.pl.po @@ -100,7 +100,7 @@ msgstr "" #. type: Plain text msgid "" "MAC spoofing is enabled by default in this test ISO. You can change this " -"with a [[startup option|doc/first_steps/startup_options#greeter]]. The " +"with a [[startup option|doc/first_steps/welcome_screen]]. The " "(preliminary) MAC spoofing documentation tries to explain situations where " "it actually may be a bad idea to keep this option enabled. However, as this " "is just a test version we of course urge you to not use it for anything " @@ -116,7 +116,7 @@ msgstr "" msgid "" "For any MAC spoofing-related issues you experience using this test ISO, " "please include the output from the following commands when reporting it to " -"us (note: it requires setting an [[doc/first_steps/startup_options/" +"us (note: it requires setting an [[doc/first_steps/welcome_screen/" "administration_password]]):" msgstr "" diff --git a/wiki/src/news/spoof-mac.pt.po b/wiki/src/news/spoof-mac.pt.po index e91ae0d860c913f08f07181cab2ffe0a21bb05a5..646ebb5661b1b9aad129a8c9fd966daca0968fb4 100644 --- a/wiki/src/news/spoof-mac.pt.po +++ b/wiki/src/news/spoof-mac.pt.po @@ -100,7 +100,7 @@ msgstr "" #. type: Plain text msgid "" "MAC spoofing is enabled by default in this test ISO. You can change this " -"with a [[startup option|doc/first_steps/startup_options#greeter]]. The " +"with a [[startup option|doc/first_steps/welcome_screen]]. The " "(preliminary) MAC spoofing documentation tries to explain situations where " "it actually may be a bad idea to keep this option enabled. However, as this " "is just a test version we of course urge you to not use it for anything " @@ -116,7 +116,7 @@ msgstr "" msgid "" "For any MAC spoofing-related issues you experience using this test ISO, " "please include the output from the following commands when reporting it to " -"us (note: it requires setting an [[doc/first_steps/startup_options/" +"us (note: it requires setting an [[doc/first_steps/welcome_screen/" "administration_password]]):" msgstr "" diff --git a/wiki/src/news/spoof-mac.ru.po b/wiki/src/news/spoof-mac.ru.po index c9941d725a83588dc4992f240b9684cca08fdb03..f2e907ffb195c9b91f000b2775147c62ed3cf5fd 100644 --- a/wiki/src/news/spoof-mac.ru.po +++ b/wiki/src/news/spoof-mac.ru.po @@ -100,7 +100,7 @@ msgstr "" #. type: Plain text msgid "" "MAC spoofing is enabled by default in this test ISO. You can change this " -"with a [[startup option|doc/first_steps/startup_options#greeter]]. The " +"with a [[startup option|doc/first_steps/welcome_screen]]. The " "(preliminary) MAC spoofing documentation tries to explain situations where " "it actually may be a bad idea to keep this option enabled. However, as this " "is just a test version we of course urge you to not use it for anything " @@ -116,7 +116,7 @@ msgstr "" msgid "" "For any MAC spoofing-related issues you experience using this test ISO, " "please include the output from the following commands when reporting it to " -"us (note: it requires setting an [[doc/first_steps/startup_options/" +"us (note: it requires setting an [[doc/first_steps/welcome_screen/" "administration_password]]):" msgstr "" diff --git a/wiki/src/news/spoof-mac.sr_Latn.po b/wiki/src/news/spoof-mac.sr_Latn.po index 8bfd8084fa1318b93b4329d2c89e426544d27af6..86ae999b4fadd01c0b77c1f4161c563d671a0d58 100644 --- a/wiki/src/news/spoof-mac.sr_Latn.po +++ b/wiki/src/news/spoof-mac.sr_Latn.po @@ -97,7 +97,7 @@ msgstr "" #. type: Plain text msgid "" "MAC spoofing is enabled by default in this test ISO. You can change this " -"with a [[startup option|doc/first_steps/startup_options#greeter]]. The " +"with a [[startup option|doc/first_steps/welcome_screen]]. The " "(preliminary) MAC spoofing documentation tries to explain situations where " "it actually may be a bad idea to keep this option enabled. However, as this " "is just a test version we of course urge you to not use it for anything " @@ -113,7 +113,7 @@ msgstr "" msgid "" "For any MAC spoofing-related issues you experience using this test ISO, " "please include the output from the following commands when reporting it to " -"us (note: it requires setting an [[doc/first_steps/startup_options/" +"us (note: it requires setting an [[doc/first_steps/welcome_screen/" "administration_password]]):" msgstr "" diff --git a/wiki/src/news/spoof-mac.tr.po b/wiki/src/news/spoof-mac.tr.po index 0ec84cb4acf706b352db75a647e96a6610d2c1bc..ea9ba057dd99eb4b2bab70b011dcb0aca383e8e7 100644 --- a/wiki/src/news/spoof-mac.tr.po +++ b/wiki/src/news/spoof-mac.tr.po @@ -99,7 +99,7 @@ msgstr "" #. type: Plain text msgid "" "MAC spoofing is enabled by default in this test ISO. You can change this " -"with a [[startup option|doc/first_steps/startup_options#greeter]]. The " +"with a [[startup option|doc/first_steps/welcome_screen]]. The " "(preliminary) MAC spoofing documentation tries to explain situations where " "it actually may be a bad idea to keep this option enabled. However, as this " "is just a test version we of course urge you to not use it for anything " @@ -115,7 +115,7 @@ msgstr "" msgid "" "For any MAC spoofing-related issues you experience using this test ISO, " "please include the output from the following commands when reporting it to " -"us (note: it requires setting an [[doc/first_steps/startup_options/" +"us (note: it requires setting an [[doc/first_steps/welcome_screen/" "administration_password]]):" msgstr "" diff --git a/wiki/src/news/spoof-mac.zh.po b/wiki/src/news/spoof-mac.zh.po index c2ae67f1bc9a18b231530ce7b3f8c93d2aa010f3..041a59e2b76ed60cbdf311e80fec2a72a2b728c2 100644 --- a/wiki/src/news/spoof-mac.zh.po +++ b/wiki/src/news/spoof-mac.zh.po @@ -99,7 +99,7 @@ msgstr "" #. type: Plain text msgid "" "MAC spoofing is enabled by default in this test ISO. You can change this " -"with a [[startup option|doc/first_steps/startup_options#greeter]]. The " +"with a [[startup option|doc/first_steps/welcome_screen]]. The " "(preliminary) MAC spoofing documentation tries to explain situations where " "it actually may be a bad idea to keep this option enabled. However, as this " "is just a test version we of course urge you to not use it for anything " @@ -115,7 +115,7 @@ msgstr "" msgid "" "For any MAC spoofing-related issues you experience using this test ISO, " "please include the output from the following commands when reporting it to " -"us (note: it requires setting an [[doc/first_steps/startup_options/" +"us (note: it requires setting an [[doc/first_steps/welcome_screen/" "administration_password]]):" msgstr "" diff --git a/wiki/src/news/spoof-mac.zh_TW.po b/wiki/src/news/spoof-mac.zh_TW.po index 17dc3cf60c66a01f836d97ebae484cc81316f937..fd9ce7e375addb94977a1e97e04a23943bb07e31 100644 --- a/wiki/src/news/spoof-mac.zh_TW.po +++ b/wiki/src/news/spoof-mac.zh_TW.po @@ -99,7 +99,7 @@ msgstr "" #. type: Plain text msgid "" "MAC spoofing is enabled by default in this test ISO. You can change this " -"with a [[startup option|doc/first_steps/startup_options#greeter]]. The " +"with a [[startup option|doc/first_steps/welcome_screen]]. The " "(preliminary) MAC spoofing documentation tries to explain situations where " "it actually may be a bad idea to keep this option enabled. However, as this " "is just a test version we of course urge you to not use it for anything " @@ -115,7 +115,7 @@ msgstr "" msgid "" "For any MAC spoofing-related issues you experience using this test ISO, " "please include the output from the following commands when reporting it to " -"us (note: it requires setting an [[doc/first_steps/startup_options/" +"us (note: it requires setting an [[doc/first_steps/welcome_screen/" "administration_password]]):" msgstr "" diff --git a/wiki/src/news/test_0.22.1-rc1.mdwn b/wiki/src/news/test_0.22.1-rc1.mdwn index e0a92011d086e51cb6467809f77bf07526f21e32..77dbe8df391daf62c98093f0c10679f7d54ae833 100644 --- a/wiki/src/news/test_0.22.1-rc1.mdwn +++ b/wiki/src/news/test_0.22.1-rc1.mdwn @@ -45,7 +45,7 @@ These steps allow you to automatically upgrade a device installed with <span class="application">Tails Installer</span> from Tails 0.22 to Tails 0.22.1~rc1. 1. Start Tails 0.22 and [[set an administration - password|doc/first_steps/startup_options/administration_password]]. + password|doc/first_steps/welcome_screen/administration_password]]. 2. Run this command in a <span class="application">Root Terminal</span> to select the "alpha" upgrade channel: diff --git a/wiki/src/news/test_0.23-rc1.html b/wiki/src/news/test_0.23-rc1.html index c7cb49109d755c6d3e604b60d03e901304bdc53d..207462c792aabe2279b2bfb34b519866d350d0ca 100644 --- a/wiki/src/news/test_0.23-rc1.html +++ b/wiki/src/news/test_0.23-rc1.html @@ -69,7 +69,7 @@ us|doc/first_steps/bug_reporting]]! Bonus points if you check that it is not a <li> <p> Start Tails 0.22.1 and [[set an administration - password|doc/first_steps/startup_options/administration_password]]. + password|doc/first_steps/welcome_screen/administration_password]]. </p> </li> <li> diff --git a/wiki/src/news/test_1.0-rc1.mdwn b/wiki/src/news/test_1.0-rc1.mdwn index 61cd2c8b63c062386d662badb98cada71ff2f7ce..f49da9101b15b01cd2e34a1206fc269e87910e65 100644 --- a/wiki/src/news/test_1.0-rc1.mdwn +++ b/wiki/src/news/test_1.0-rc1.mdwn @@ -43,7 +43,7 @@ These steps allow you to automatically upgrade a device installed with <span class="application">Tails Installer</span> from Tails 0.23 to Tails 1.0~rc1. 1. Start Tails 0.23 and [[set an administration - password|doc/first_steps/startup_options/administration_password]]. + password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Root Terminal</span> to select the "alpha" upgrade channel diff --git a/wiki/src/news/test_1.1-rc1.mdwn b/wiki/src/news/test_1.1-rc1.mdwn index 6c3d0e84ef9e54823acccd3bc0cbb356afd1e39e..5561956c5d94f7c842c557dbeb0327c44baad368 100644 --- a/wiki/src/news/test_1.1-rc1.mdwn +++ b/wiki/src/news/test_1.1-rc1.mdwn @@ -119,7 +119,7 @@ class="application">Tails Installer</span> from Tails 1.0.1, Tails device that you want to upgrade. 2. [[Set an administration - password|doc/first_steps/startup_options/administration_password]]. + password|doc/first_steps/welcome_screen/administration_password]]. 3. Run this command in a <span class="application">Root Terminal</span> to install the latest version of <span diff --git a/wiki/src/news/test_1.2-rc1.mdwn b/wiki/src/news/test_1.2-rc1.mdwn index a0c2754393a2f16932adf39c27e2f42cb5ebddff..44edafd167543f2cc81355351a12ba12e4d36903 100644 --- a/wiki/src/news/test_1.2-rc1.mdwn +++ b/wiki/src/news/test_1.2-rc1.mdwn @@ -45,7 +45,7 @@ These steps allow you to automatically upgrade a device installed with <span class="application">Tails Installer</span> from Tails 1.1.2 to Tails 1.2~rc1. 1. Start Tails 1.1.2 from a USB stick or SD card, and - [[set an administration password|doc/first_steps/startup_options/administration_password]]. + [[set an administration password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Root Terminal</span> to select the "alpha" upgrade channel diff --git a/wiki/src/news/test_1.3-rc1.mdwn b/wiki/src/news/test_1.3-rc1.mdwn index abc37654b11c2f680dca5ddb2d905e15635f681d..3a4a9f9b5140fdb6e066b96cf8eed5a882587c42 100644 --- a/wiki/src/news/test_1.3-rc1.mdwn +++ b/wiki/src/news/test_1.3-rc1.mdwn @@ -46,7 +46,7 @@ class="application">Tails Installer</span> from Tails 1.2.3 to Tails 1.3~rc1. 1. Start Tails 1.2.3 from a USB stick or SD card (installed by the Tails Installer), and - [[set an administration password|doc/first_steps/startup_options/administration_password]]. + [[set an administration password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Root Terminal</span> to select the "alpha" upgrade channel diff --git a/wiki/src/news/test_1.4-rc1.mdwn b/wiki/src/news/test_1.4-rc1.mdwn index 053a39c7524dd2d9e0cfb34d60a111ab041000c4..59e7e272ab667e50a386244d19cca4c7bcdc8b16 100644 --- a/wiki/src/news/test_1.4-rc1.mdwn +++ b/wiki/src/news/test_1.4-rc1.mdwn @@ -46,7 +46,7 @@ class="application">Tails Installer</span> from Tails 1.3.2 to Tails 1.4~rc1. 1. Start Tails 1.3.2 from a USB stick or SD card (installed by the Tails Installer), and - [[set an administration password|doc/first_steps/startup_options/administration_password]]. + [[set an administration password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Root Terminal</span> to select the "alpha" upgrade channel diff --git a/wiki/src/news/test_1.5-rc1.mdwn b/wiki/src/news/test_1.5-rc1.mdwn index 9fd5815f947685042aae98379540baed77b10056..ef5885bd890e6f2be6a1c9176905ea710e08299a 100644 --- a/wiki/src/news/test_1.5-rc1.mdwn +++ b/wiki/src/news/test_1.5-rc1.mdwn @@ -53,7 +53,7 @@ class="application">Tails Installer</span> from Tails 1.4.1 to Tails 1.5~rc1. 1. Start Tails 1.4.1 from a USB stick or SD card (installed by the Tails Installer), and - [[set an administration password|doc/first_steps/startup_options/administration_password]]. + [[set an administration password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Root Terminal</span> to select the "alpha" upgrade channel diff --git a/wiki/src/news/test_1.7-rc1.mdwn b/wiki/src/news/test_1.7-rc1.mdwn index f1bb615a619051616f98aecc9f5fc4958766bd01..1e32bc528f2e762712eecfed1d6a48ccba5c0c59 100644 --- a/wiki/src/news/test_1.7-rc1.mdwn +++ b/wiki/src/news/test_1.7-rc1.mdwn @@ -46,7 +46,7 @@ class="application">Tails Installer</span> from Tails 1.6 to Tails 1.7~rc1. 1. Start Tails 1.6 from a USB stick or SD card (installed by the Tails Installer), and - [[set an administration password|doc/first_steps/startup_options/administration_password]]. + [[set an administration password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Root Terminal</span> to select the "alpha" upgrade channel diff --git a/wiki/src/news/test_2.10-rc1.mdwn b/wiki/src/news/test_2.10-rc1.mdwn index ac98d7324b4f2b24e978521ffde1972543a4fba1..f846563a8549fdc05349c5ba70f1304cb342e3de 100644 --- a/wiki/src/news/test_2.10-rc1.mdwn +++ b/wiki/src/news/test_2.10-rc1.mdwn @@ -45,7 +45,7 @@ Upgrade from 2.9.1 ------------------ 1. Start Tails 2.9.1 on a USB stick installed using *Tails Installer* and - [[set an administration password|doc/first_steps/startup_options/administration_password]]. + [[set an administration password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Root Terminal</span> to select the "alpha" upgrade channel diff --git a/wiki/src/news/test_2.12-rc1.mdwn b/wiki/src/news/test_2.12-rc1.mdwn index 8ff2f9644e30cd92e6a5ddac574bf83bb805da82..0800c61a586c22eca631523f0582b66d0244b12e 100644 --- a/wiki/src/news/test_2.12-rc1.mdwn +++ b/wiki/src/news/test_2.12-rc1.mdwn @@ -38,7 +38,7 @@ Upgrade from 2.10 or 2.11 ------------------------- 1. Start Tails 2.10 or 2.11 on a USB stick installed using *Tails Installer* and - [[set an administration password|doc/first_steps/startup_options/administration_password]]. + [[set an administration password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Root Terminal</span> to select the "alpha" upgrade channel diff --git a/wiki/src/news/test_2.2-rc1.mdwn b/wiki/src/news/test_2.2-rc1.mdwn index 2b1942b36fce9360b087a2ad918e73144a0bd717..0a16dd4c05f9909727cb9e6ad6c0cfe2e6ccc9f2 100644 --- a/wiki/src/news/test_2.2-rc1.mdwn +++ b/wiki/src/news/test_2.2-rc1.mdwn @@ -39,7 +39,7 @@ Upgrade from 2.0.1 ------------------ 1. Start Tails 2.0.1 on a USB stick installed using *Tails Installer* and - [[set an administration password|doc/first_steps/startup_options/administration_password]]. + [[set an administration password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Root Terminal</span> to select the "alpha" upgrade channel diff --git a/wiki/src/news/test_2.4-rc1.mdwn b/wiki/src/news/test_2.4-rc1.mdwn index 948c7794d0a69dd5cbb07391e2252737f7551261..25eaa09a6e63d002e8af9a7a74522a89e9b5ef98 100644 --- a/wiki/src/news/test_2.4-rc1.mdwn +++ b/wiki/src/news/test_2.4-rc1.mdwn @@ -47,7 +47,7 @@ Upgrade from 2.3 ------------------ 1. Start Tails 2.3 on a USB stick installed using *Tails Installer* and - [[set an administration password|doc/first_steps/startup_options/administration_password]]. + [[set an administration password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Root Terminal</span> to select the "alpha" upgrade channel diff --git a/wiki/src/news/test_2.6-rc1.mdwn b/wiki/src/news/test_2.6-rc1.mdwn index e8dd2ab23d145ebb47dab158bce5a1d1bdba58d6..50c13f44b4497b3d7103b1f5a2eb68c5438df6a2 100644 --- a/wiki/src/news/test_2.6-rc1.mdwn +++ b/wiki/src/news/test_2.6-rc1.mdwn @@ -44,7 +44,7 @@ Upgrade from 2.5 ---------------- 1. Start Tails 2.5 on a USB stick installed using *Tails Installer* and - [[set an administration password|doc/first_steps/startup_options/administration_password]]. + [[set an administration password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Root Terminal</span> to select the "alpha" upgrade channel diff --git a/wiki/src/news/test_3.0-beta4.mdwn b/wiki/src/news/test_3.0-beta4.mdwn index 7cbbd5d94dda677fc0d383630cd9ec29faa3193e..b6e72ed8d4e2946903407fd77f07c9cbbed31ba5 100644 --- a/wiki/src/news/test_3.0-beta4.mdwn +++ b/wiki/src/news/test_3.0-beta4.mdwn @@ -74,7 +74,7 @@ Known issues in 3.0~beta4 * The graphical interface fails to start on some Intel graphics adapters. If this happens to you: 1. Add the `xorg-driver=intel` option in the - [[boot menu|doc/first_steps/startup_options#boot_menu]]. + [[boot menu|doc/advanced_topics/boot_options]]. 2. If this fixes the problem, report to to <tails-testers@boum.org> the output of the following commands: diff --git a/wiki/src/news/test_3.0-rc1.mdwn b/wiki/src/news/test_3.0-rc1.mdwn index a612569a0a90ed8466ad07843ca8b8b3d9e7db78..dda7a93e65011990ba0668ec220684550d372b63 100644 --- a/wiki/src/news/test_3.0-rc1.mdwn +++ b/wiki/src/news/test_3.0-rc1.mdwn @@ -73,7 +73,7 @@ Known issues in 3.0~rc1 * The graphical interface fails to start on some Intel graphics adapters. If this happens to you: 1. Add the `xorg-driver=intel` option in the - [[boot menu|doc/first_steps/startup_options#boot_menu]]. + [[boot menu|doc/advanced_topics/boot_options]]. 2. If this fixes the problem, report to to <tails-testers@boum.org> the output of the following commands: diff --git a/wiki/src/news/test_3.12-rc1.mdwn b/wiki/src/news/test_3.12-rc1.mdwn index f9e4bfccd7a46f726b9bbff57bac645b90acd7c7..8c30e88f00f0343158ca7c9881542fbaf97da862 100644 --- a/wiki/src/news/test_3.12-rc1.mdwn +++ b/wiki/src/news/test_3.12-rc1.mdwn @@ -65,7 +65,7 @@ Upgrade from 3.11 ----------------- 1. Start Tails 3.11 on a USB stick installed using *Tails Installer* and - [[set an administration password|doc/first_steps/startup_options/administration_password]]. + [[set an administration password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Terminal</span> to select the "alpha" upgrade channel and start the upgrade: diff --git a/wiki/src/news/test_3.2-rc1.mdwn b/wiki/src/news/test_3.2-rc1.mdwn index 5dc203abf932f5c9c3e1f061e713c81bdf2089ca..e0672dafcd3bacee2676c8459f28493013654174 100644 --- a/wiki/src/news/test_3.2-rc1.mdwn +++ b/wiki/src/news/test_3.2-rc1.mdwn @@ -59,7 +59,7 @@ Upgrade from 3.1 ---------------- 1. Start Tails 3.1 on a USB stick installed using *Tails Installer* and - [[set an administration password|doc/first_steps/startup_options/administration_password]]. + [[set an administration password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Terminal</span> to select the "alpha" upgrade channel diff --git a/wiki/src/news/test_3.6~rc1.mdwn b/wiki/src/news/test_3.6~rc1.mdwn index 63f92576b1a8779a8554b4f6cc029f5d5fedb810..3bae1da6b4f3b31953506a687a08c532d8e2f6f6 100644 --- a/wiki/src/news/test_3.6~rc1.mdwn +++ b/wiki/src/news/test_3.6~rc1.mdwn @@ -57,7 +57,7 @@ Upgrade from 3.5 ---------------- 1. Start Tails 3.5 on a USB stick installed using *Tails Installer* and - [[set an administration password|doc/first_steps/startup_options/administration_password]]. + [[set an administration password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Terminal</span> to select the "alpha" upgrade channel diff --git a/wiki/src/news/test_3.9-rc1.mdwn b/wiki/src/news/test_3.9-rc1.mdwn index 12ce2bd802f7cc0ec8a61b420f86c1c335dffb34..c0b7e8474725d7a48baaa3fbcf37429049698ef9 100644 --- a/wiki/src/news/test_3.9-rc1.mdwn +++ b/wiki/src/news/test_3.9-rc1.mdwn @@ -75,7 +75,7 @@ Upgrade from 3.8 ---------------- 1. Start Tails 3.8 on a USB stick installed using *Tails Installer* and - [[set an administration password|doc/first_steps/startup_options/administration_password]]. + [[set an administration password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Terminal</span> to select the "alpha" upgrade channel and start the upgrade: diff --git a/wiki/src/news/test_incremental_upgrades.mdwn b/wiki/src/news/test_incremental_upgrades.mdwn index e0f5e4e78bb6e5a5ea90f82ef5003d5734b10282..cb24228598808d7cd8ee8964176c96297340517a 100644 --- a/wiki/src/news/test_incremental_upgrades.mdwn +++ b/wiki/src/news/test_incremental_upgrades.mdwn @@ -37,7 +37,7 @@ These steps allow you to incrementally upgrade from Tails 0.22~rc1 to Tails 0.22. 1. Start Tails 0.22~rc1 and [[set an administration - password|doc/first_steps/startup_options/administration_password]]. + password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Root Terminal</span> to correct the firewall: diff --git a/wiki/src/news/version_0.11.mdwn b/wiki/src/news/version_0.11.mdwn index 11a63921e7b47ab65c3e480e8b4011f76234123a..81632650e145a90916d891604607e4caecba7aed 100644 --- a/wiki/src/news/version_0.11.mdwn +++ b/wiki/src/news/version_0.11.mdwn @@ -21,7 +21,7 @@ Notable user-visible changes include: full sudo access is disabled per default, but can be enabled by setting this password. See [[the - documentation|doc/first_steps/startup_options#tails_greeter]] + documentation|doc/first_steps/welcome_screen]] for details. * Tails USB installer. This graphical user interface mostly obsoletes diff --git a/wiki/src/news/version_0.12.mdwn b/wiki/src/news/version_0.12.mdwn index 3d55d7bf179e6180662a8101642d02970f169cfe..5b7fe816133d133bc3814eef48afeee01d7ddf61 100644 --- a/wiki/src/news/version_0.12.mdwn +++ b/wiki/src/news/version_0.12.mdwn @@ -43,7 +43,7 @@ Notable user-visible changes include: for reason. Users of cryptkeeper are encouraged to migrate built-in [[doc/first_steps/persistence]] with the following one-time migration procedure: - 1. set an [[doc/first_steps/startup_options/administration_password]] + 1. set an [[doc/first_steps/welcome_screen/administration_password]] when booting Tails 2. temporarily install cryptkeeper via `sudo apt-get update; sudo apt-get install --yes cryptkeeper` diff --git a/wiki/src/news/version_0.15.mdwn b/wiki/src/news/version_0.15.mdwn index 02697287255c5cff3d4d62dee24116150a8409c0..20e2d1443a2fac56bf62ac0d86f75978c58922e4 100644 --- a/wiki/src/news/version_0.15.mdwn +++ b/wiki/src/news/version_0.15.mdwn @@ -20,7 +20,7 @@ Notable user-visible changes include: * Major new features - [[Persistence for browser bookmarks|doc/first_steps/persistence/configure]]. - - Support for [[obfsproxy bridges|doc/first_steps/startup_options/bridge_mode]]. + - Support for [[obfsproxy bridges|doc/first_steps/welcome_screen/bridge_mode]]. * Minor improvements - Add the Hangul (Korean) Input Method Engine for SCIM. diff --git a/wiki/src/news/version_0.23.mdwn b/wiki/src/news/version_0.23.mdwn index e41da1c0e95bedb8f86616bf4d5f1fd233ffc000..f5e8df434fa42fdd22fa52e39d5496b24f17d5dd 100644 --- a/wiki/src/news/version_0.23.mdwn +++ b/wiki/src/news/version_0.23.mdwn @@ -19,10 +19,10 @@ Notable user-visible changes include: 24.4.0esr + Iceweasel patches + Torbrowser patches). * Major new features - - [[Spoof the network interfaces' MAC address|doc/first_steps/startup_options/mac_spoofing]] + - [[Spoof the network interfaces' MAC address|doc/first_steps/welcome_screen/mac_spoofing]] by default. It can be disabled in Tails Greeter. - Rework the way to - [[configure how Tor connects to the network|doc/first_steps/startup_options#additional]] + [[configure how Tor connects to the network|doc/first_steps/welcome_screen#additional]] by using bridges, proxies and restrictive firewalls. This option can be set from Tails Greeter, and replaces the old experimental "bridge mode" feature. diff --git a/wiki/src/news/version_1.0.mdwn b/wiki/src/news/version_1.0.mdwn index be5c7c827ab58c66be0ebd1436f45b39beba083e..ff38eae084ea42df4eb09cde0bd48db0c6980803 100644 --- a/wiki/src/news/version_1.0.mdwn +++ b/wiki/src/news/version_1.0.mdwn @@ -28,10 +28,10 @@ are essential both in terms of security and usability: - USB installer - [[automatic upgrades|doc/upgrade]] - [[persistence|doc/first_steps/persistence]] - - [[support for Tor bridges|doc/first_steps/startup_options/bridge_mode]] and + - [[support for Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] and other [[special Tor - configuration|doc/first_steps/startup_options#additional]] - - [[MAC address spoofing|doc/first_steps/startup_options/mac_spoofing]] + configuration|doc/first_steps/welcome_screen#additional]] + - [[MAC address spoofing|doc/first_steps/welcome_screen/mac_spoofing]] - [[extensive and translated documentation|doc]] - and [[many more...|doc/about/features]] diff --git a/wiki/src/news/version_1.1.mdwn b/wiki/src/news/version_1.1.mdwn index 1498f75bf8cb074b89680aaf57e921e0289b7875..5f72a461ae3fc0abb6366977a822edec14dcb12d 100644 --- a/wiki/src/news/version_1.1.mdwn +++ b/wiki/src/news/version_1.1.mdwn @@ -114,7 +114,7 @@ class="application">Tails Installer</span> from Tails 1.0.1, Tails device that you want to upgrade. 2. [[Set an administration - password|doc/first_steps/startup_options/administration_password]]. + password|doc/first_steps/welcome_screen/administration_password]]. 3. Run this command in a <span class="application">Root Terminal</span> to install the latest version of <span @@ -139,7 +139,7 @@ Tails 1.1. 1. Start Tails 1.1~rc1 from the device you want to upgrade. 2. [[Set an administration - password|doc/first_steps/startup_options/administration_password]]. + password|doc/first_steps/welcome_screen/administration_password]]. 3. Run this command in a <span class="application">Terminal</span> to apply the automatic upgrade: diff --git a/wiki/src/news/version_1.2.1.mdwn b/wiki/src/news/version_1.2.1.mdwn index 92436ea2a9346ced35a8dc82729668b90d0a13ed..37c5949135b9739be40dc4dde3a06e6727a0a80a 100644 --- a/wiki/src/news/version_1.2.1.mdwn +++ b/wiki/src/news/version_1.2.1.mdwn @@ -57,7 +57,7 @@ USB stick or SD card installation to Tails 1.2.1, then please follow these steps to benefit from the updated GnuPG configuration: 1. Boot Tails with - [[an administration password|doc/first_steps/startup_options/administration_password]] set. + [[an administration password|doc/first_steps/welcome_screen/administration_password]] set. 1. Run this command in a <span class="application">Root Terminal</span>: diff --git a/wiki/src/news/version_1.2.2.mdwn b/wiki/src/news/version_1.2.2.mdwn index e99bfcfa7856e4ddbfbd24c109b41a1e46e5af9b..8a4bec6abdcf3c7c2b34343d19fe571bb5ef4c30 100644 --- a/wiki/src/news/version_1.2.2.mdwn +++ b/wiki/src/news/version_1.2.2.mdwn @@ -58,7 +58,7 @@ USB stick or SD card installation to Tails 1.2.1 or 1.2.2, then please follow these steps to benefit from the updated GnuPG configuration: 1. Boot Tails with - [[an administration password|doc/first_steps/startup_options/administration_password]] set. + [[an administration password|doc/first_steps/welcome_screen/administration_password]] set. 1. Run this command in a <span class="application">Root Terminal</span>: diff --git a/wiki/src/news/version_1.7.mdwn b/wiki/src/news/version_1.7.mdwn index 222ad6b81bdd2df030b65fb32b554d5a1821e26f..a106e4b60adf739543c4f1a02f45069747cc90ba 100644 --- a/wiki/src/news/version_1.7.mdwn +++ b/wiki/src/news/version_1.7.mdwn @@ -13,7 +13,7 @@ upgrade as soon as possible. ## New features -- You can now start Tails in [[offline mode|doc/first_steps/startup_options#additional]] +- You can now start Tails in [[offline mode|doc/first_steps/welcome_screen#additional]] to disable all networking for additional security. Doing so can be useful when working on sensitive documents. diff --git a/wiki/src/news/version_1.8.mdwn b/wiki/src/news/version_1.8.mdwn index 654a3050a40068f414ebd32430005c44d4f136f9..fcebb1a45ec2e8c947118b1dd10529cf77efcb89 100644 --- a/wiki/src/news/version_1.8.mdwn +++ b/wiki/src/news/version_1.8.mdwn @@ -45,11 +45,11 @@ upgrade as soon as possible. Expect the upgrade to take around an hour *after* the download is finished. See [[!tails_ticket 10757]] for details. -* The [[doc/first_steps/startup_options/bridge_mode]] fails if the +* The [[doc/first_steps/welcome_screen/bridge_mode]] fails if the system clock is incorrect. To prevent this problem, correct the system clock *before* connecting to the network. To do so: - 1. [[Set up an administration password|doc/first_steps/startup_options/administration_password]] + 1. [[Set up an administration password|doc/first_steps/welcome_screen/administration_password]] when starting Tails. 1. Right-click on the system clock in the top navigation bar and diff --git a/wiki/src/news/version_3.0.ar.po b/wiki/src/news/version_3.0.ar.po index 59eb8395334eb405d9086e192153d336fe595988..f8419ce7eaf7d988dd07a75acb7ea53574683265 100644 --- a/wiki/src/news/version_3.0.ar.po +++ b/wiki/src/news/version_3.0.ar.po @@ -372,7 +372,7 @@ msgstr "" msgid "" "Start the operating system you want to use *Tails Installer* on.<br /> If " "you want to use *Tails Installer* in Tails 3.0, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.0.ca.po b/wiki/src/news/version_3.0.ca.po index fb626b904d6793ef68a547e0bbc1bf6e1ed4b5a6..9e1fa39a65dc917458c0b6b4c6648c6f270e72d5 100644 --- a/wiki/src/news/version_3.0.ca.po +++ b/wiki/src/news/version_3.0.ca.po @@ -371,7 +371,7 @@ msgstr "" msgid "" "Start the operating system you want to use *Tails Installer* on.<br /> If " "you want to use *Tails Installer* in Tails 3.0, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.0.de.po b/wiki/src/news/version_3.0.de.po index 57afc6b0b61e894e801b37ead35a3f1ed1ae571e..1eb865f3c47bf9f372b73e03d02bc71481101663 100644 --- a/wiki/src/news/version_3.0.de.po +++ b/wiki/src/news/version_3.0.de.po @@ -373,7 +373,7 @@ msgstr "" msgid "" "Start the operating system you want to use *Tails Installer* on.<br /> If " "you want to use *Tails Installer* in Tails 3.0, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.0.es.po b/wiki/src/news/version_3.0.es.po index 018bc098a76771f14efe954bf8342d0731b3fdb7..339ea57ef7fb271afa03550f0ae48b64868b8294 100644 --- a/wiki/src/news/version_3.0.es.po +++ b/wiki/src/news/version_3.0.es.po @@ -374,7 +374,7 @@ msgstr "" msgid "" "Start the operating system you want to use *Tails Installer* on.<br /> If " "you want to use *Tails Installer* in Tails 3.0, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.0.fa.po b/wiki/src/news/version_3.0.fa.po index 5909344d5957f883a6df45790837aa78e98124cd..82d40020925ca12f9daaad9ccae9d51a0010ea49 100644 --- a/wiki/src/news/version_3.0.fa.po +++ b/wiki/src/news/version_3.0.fa.po @@ -369,7 +369,7 @@ msgstr "" msgid "" "Start the operating system you want to use *Tails Installer* on.<br /> If " "you want to use *Tails Installer* in Tails 3.0, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.0.fr.po b/wiki/src/news/version_3.0.fr.po index 800bccdf8b9be71c94115d70494397b5326ac0c2..f4d896637acccfd5f957165e7020469cc0446f6e 100644 --- a/wiki/src/news/version_3.0.fr.po +++ b/wiki/src/news/version_3.0.fr.po @@ -479,12 +479,12 @@ msgstr "" msgid "" "Start the operating system you want to use *Tails Installer* on.<br /> If " "you want to use *Tails Installer* in Tails 3.0, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" "Démarrez le système d'exploitation que vous voulez utiliser avec " "l'*Installeur de Tails*.<br /> Si vous voulez utiliser l'*Installeur de " "Tails* dans Tails 3.0, [[définissez un mot de passe d'administration|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.0.id.po b/wiki/src/news/version_3.0.id.po index 20c99a4cb78c636a826e5a15a8dd04b194780178..5359b118db4b45a5a6e6da6bc775708d2cff9277 100644 --- a/wiki/src/news/version_3.0.id.po +++ b/wiki/src/news/version_3.0.id.po @@ -371,7 +371,7 @@ msgstr "" msgid "" "Start the operating system you want to use *Tails Installer* on.<br /> If " "you want to use *Tails Installer* in Tails 3.0, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.0.it.po b/wiki/src/news/version_3.0.it.po index 47685d58d5c49bb8521baac9c120ba6cef8f1906..9b76abe281ad82a18fbc2e7c0dbf72c2079fa7a1 100644 --- a/wiki/src/news/version_3.0.it.po +++ b/wiki/src/news/version_3.0.it.po @@ -514,7 +514,7 @@ msgstr "" msgid "" "Start the operating system you want to use *Tails Installer* on.<br /> If " "you want to use *Tails Installer* in Tails 3.0, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.0.mdwn b/wiki/src/news/version_3.0.mdwn index 4622c14837c549970f7d339360e2a453377c9a57..4e16b0136e73cce9fe5897d41e2b1b256660c9f3 100644 --- a/wiki/src/news/version_3.0.mdwn +++ b/wiki/src/news/version_3.0.mdwn @@ -177,7 +177,7 @@ For more details, read our [[!tails_gitweb debian/changelog desc="changelog"]]. 1. Start the operating system you want to use *Tails Installer* on.<br /> If you want to use *Tails Installer* in Tails 3.0, - [[set up an administration password|doc/first_steps/startup_options/administration_password]]. + [[set up an administration password|doc/first_steps/welcome_screen/administration_password]]. 2. Choose <span class="menuchoice"> diff --git a/wiki/src/news/version_3.0.pl.po b/wiki/src/news/version_3.0.pl.po index 59fb799416113abb7c2f71325aa7e5121eabbbbe..94fd8747e8f717b49cff7e1e1adb23491acd0d6c 100644 --- a/wiki/src/news/version_3.0.pl.po +++ b/wiki/src/news/version_3.0.pl.po @@ -372,7 +372,7 @@ msgstr "" msgid "" "Start the operating system you want to use *Tails Installer* on.<br /> If " "you want to use *Tails Installer* in Tails 3.0, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.0.pt.po b/wiki/src/news/version_3.0.pt.po index 3e663a5caff971d79d947d7c94473561092e2955..7c01d012de48ab10d4b9357c10370a0ed95edad4 100644 --- a/wiki/src/news/version_3.0.pt.po +++ b/wiki/src/news/version_3.0.pt.po @@ -375,7 +375,7 @@ msgstr "" msgid "" "Start the operating system you want to use *Tails Installer* on.<br /> If " "you want to use *Tails Installer* in Tails 3.0, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.0.ru.po b/wiki/src/news/version_3.0.ru.po index 1b544e327f8bde71f6cfb5f52401e45e077016f3..d9615c76cd474be0c650c2b7f337aaf88e1f5d42 100644 --- a/wiki/src/news/version_3.0.ru.po +++ b/wiki/src/news/version_3.0.ru.po @@ -372,7 +372,7 @@ msgstr "" msgid "" "Start the operating system you want to use *Tails Installer* on.<br /> If " "you want to use *Tails Installer* in Tails 3.0, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.0.sr_Latn.po b/wiki/src/news/version_3.0.sr_Latn.po index a60065e8405d6cb35e90896614ad0822a0ff88f6..d105e313d0c69b5c59dc9251d46481baff0fa1e5 100644 --- a/wiki/src/news/version_3.0.sr_Latn.po +++ b/wiki/src/news/version_3.0.sr_Latn.po @@ -372,7 +372,7 @@ msgstr "" msgid "" "Start the operating system you want to use *Tails Installer* on.<br /> If " "you want to use *Tails Installer* in Tails 3.0, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.0.tr.po b/wiki/src/news/version_3.0.tr.po index 05249a82371eb088ae3c5ffb2453145dbbfa7261..b46b4f5e8a57520c436cbf00d23fcb67d6c6df34 100644 --- a/wiki/src/news/version_3.0.tr.po +++ b/wiki/src/news/version_3.0.tr.po @@ -371,7 +371,7 @@ msgstr "" msgid "" "Start the operating system you want to use *Tails Installer* on.<br /> If " "you want to use *Tails Installer* in Tails 3.0, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.0.zh.po b/wiki/src/news/version_3.0.zh.po index 56e2e883fb04750e38ea756c79cacd874eb5ee73..b8ec0bb188cdf48e781dc01ee88291382eb5203e 100644 --- a/wiki/src/news/version_3.0.zh.po +++ b/wiki/src/news/version_3.0.zh.po @@ -371,7 +371,7 @@ msgstr "" msgid "" "Start the operating system you want to use *Tails Installer* on.<br /> If " "you want to use *Tails Installer* in Tails 3.0, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.0.zh_TW.po b/wiki/src/news/version_3.0.zh_TW.po index 96dca08fd8803d68ac0315ae5637d9bf8922163d..3fa79e7734aa71723b2c8e7e70cc7602cd4e21f9 100644 --- a/wiki/src/news/version_3.0.zh_TW.po +++ b/wiki/src/news/version_3.0.zh_TW.po @@ -370,7 +370,7 @@ msgstr "" msgid "" "Start the operating system you want to use *Tails Installer* on.<br /> If " "you want to use *Tails Installer* in Tails 3.0, [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.11.ar.po b/wiki/src/news/version_3.11.ar.po index ca8104eff6e1f8321e497f53c4eac2d72ae05243..d513d0844b3d62fc3bb3c063c33b629487e39679 100644 --- a/wiki/src/news/version_3.11.ar.po +++ b/wiki/src/news/version_3.11.ar.po @@ -155,14 +155,14 @@ msgstr "" #, no-wrap msgid "" " To fix this issue, add `nomodeset` to the [[startup\n" -" options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " If this workaround doesn't work, add `nomodeset xorg-driver=vesa` to\n" -" the [[startup options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" the [[startup options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.11.ca.po b/wiki/src/news/version_3.11.ca.po index 56a7c6442fcb83f84d0d4b66a32c97a32b3a7c9d..4677fbb450ededb7dfe6fcba3d145e037ecc3755 100644 --- a/wiki/src/news/version_3.11.ca.po +++ b/wiki/src/news/version_3.11.ca.po @@ -154,14 +154,14 @@ msgstr "" #, no-wrap msgid "" " To fix this issue, add `nomodeset` to the [[startup\n" -" options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " If this workaround doesn't work, add `nomodeset xorg-driver=vesa` to\n" -" the [[startup options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" the [[startup options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.11.de.po b/wiki/src/news/version_3.11.de.po index fc5565637d8f472cf768f4e864f529b6b1c4f08f..de1133d650141f54b01b10dacf840443acfc729d 100644 --- a/wiki/src/news/version_3.11.de.po +++ b/wiki/src/news/version_3.11.de.po @@ -156,14 +156,14 @@ msgstr "" #, no-wrap msgid "" " To fix this issue, add `nomodeset` to the [[startup\n" -" options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " If this workaround doesn't work, add `nomodeset xorg-driver=vesa` to\n" -" the [[startup options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" the [[startup options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.11.es.po b/wiki/src/news/version_3.11.es.po index 86efbe8b2fc1bd7618cdf60c828d165debf39dbd..dc5825cedeae88f596c2c6f64ebd6be5e6d2f6f1 100644 --- a/wiki/src/news/version_3.11.es.po +++ b/wiki/src/news/version_3.11.es.po @@ -156,14 +156,14 @@ msgstr "" #, no-wrap msgid "" " To fix this issue, add `nomodeset` to the [[startup\n" -" options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " If this workaround doesn't work, add `nomodeset xorg-driver=vesa` to\n" -" the [[startup options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" the [[startup options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.11.fa.po b/wiki/src/news/version_3.11.fa.po index b7525f4502c7d92722d2ec02794f986961f10186..cf474c32a66b7ea559de8e7b285d615c7d2f78bc 100644 --- a/wiki/src/news/version_3.11.fa.po +++ b/wiki/src/news/version_3.11.fa.po @@ -154,14 +154,14 @@ msgstr "" #, no-wrap msgid "" " To fix this issue, add `nomodeset` to the [[startup\n" -" options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " If this workaround doesn't work, add `nomodeset xorg-driver=vesa` to\n" -" the [[startup options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" the [[startup options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.11.fr.po b/wiki/src/news/version_3.11.fr.po index a16aa49397dac36332d7ceaf84026cd67b0a2a45..bc3d83620eff46e7198d76cf4be067d489b6bd4c 100644 --- a/wiki/src/news/version_3.11.fr.po +++ b/wiki/src/news/version_3.11.fr.po @@ -175,19 +175,19 @@ msgstr "" #, no-wrap msgid "" " To fix this issue, add `nomodeset` to the [[startup\n" -" options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" options|doc/advanced_topics/boot_options]].\n" msgstr "" " Pour corriger ce problème, ajoutez `nomodeset` aux [[options\n" -" de démarrage|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" de démarrage|doc/advanced_topics/boot_options]].\n" #. type: Plain text #, no-wrap msgid "" " If this workaround doesn't work, add `nomodeset xorg-driver=vesa` to\n" -" the [[startup options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" the [[startup options|doc/advanced_topics/boot_options]].\n" msgstr "" " Si cette solution ne marche pas, ajoutez `nomodeset xorg-driver=vesa` aux\n" -" [[options de démarrage|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" [[options de démarrage|doc/advanced_topics/boot_options]].\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.11.id.po b/wiki/src/news/version_3.11.id.po index f6dbe93d767b80ed62b7ce933a1a53a3d520cc2e..cc932758da9825efbb575da09bc02fef4db7d009 100644 --- a/wiki/src/news/version_3.11.id.po +++ b/wiki/src/news/version_3.11.id.po @@ -154,14 +154,14 @@ msgstr "" #, no-wrap msgid "" " To fix this issue, add `nomodeset` to the [[startup\n" -" options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " If this workaround doesn't work, add `nomodeset xorg-driver=vesa` to\n" -" the [[startup options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" the [[startup options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.11.it.po b/wiki/src/news/version_3.11.it.po index 21556d0db4ee511d7097684c2c5a073a6c6099e1..7cbd2b1c081467d4c720f5474aa4c0873873024a 100644 --- a/wiki/src/news/version_3.11.it.po +++ b/wiki/src/news/version_3.11.it.po @@ -156,14 +156,14 @@ msgstr "" #, no-wrap msgid "" " To fix this issue, add `nomodeset` to the [[startup\n" -" options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " If this workaround doesn't work, add `nomodeset xorg-driver=vesa` to\n" -" the [[startup options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" the [[startup options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.11.mdwn b/wiki/src/news/version_3.11.mdwn index 18275bbd2d0c7b0a76c8ab15e111bede27e03b45..89f79d33fd2a6a3c0f037f6ecfcb1458d10dadb7 100644 --- a/wiki/src/news/version_3.11.mdwn +++ b/wiki/src/news/version_3.11.mdwn @@ -54,10 +54,10 @@ For more details, read our [[!tails_gitweb debian/changelog desc="changelog"]]. graphics cards. To fix this issue, add `nomodeset` to the [[startup - options|doc/first_steps/startup_options/#boot_loader_menu]]. + options|doc/advanced_topics/boot_options]]. If this workaround doesn't work, add `nomodeset xorg-driver=vesa` to - the [[startup options|doc/first_steps/startup_options/#boot_loader_menu]]. + the [[startup options|doc/advanced_topics/boot_options]]. If this workaround doesn't work, please report to <tails-support-private@boum.org>: diff --git a/wiki/src/news/version_3.11.pl.po b/wiki/src/news/version_3.11.pl.po index b4c14b131e3cc9a7ef1009fee8d038c3b33d7055..2e4d25bbc8a26d1e6425fe204a6d798e8d15b33c 100644 --- a/wiki/src/news/version_3.11.pl.po +++ b/wiki/src/news/version_3.11.pl.po @@ -155,14 +155,14 @@ msgstr "" #, no-wrap msgid "" " To fix this issue, add `nomodeset` to the [[startup\n" -" options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " If this workaround doesn't work, add `nomodeset xorg-driver=vesa` to\n" -" the [[startup options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" the [[startup options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.11.pt.po b/wiki/src/news/version_3.11.pt.po index 54a121c647796770f6df3d5b7211385ba0233cb5..20d363d547aa67e68edc1c4573bd97f7e154c7fd 100644 --- a/wiki/src/news/version_3.11.pt.po +++ b/wiki/src/news/version_3.11.pt.po @@ -156,14 +156,14 @@ msgstr "" #, no-wrap msgid "" " To fix this issue, add `nomodeset` to the [[startup\n" -" options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " If this workaround doesn't work, add `nomodeset xorg-driver=vesa` to\n" -" the [[startup options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" the [[startup options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.11.ru.po b/wiki/src/news/version_3.11.ru.po index b9c87ad9f5b70dcb36ace6c0bcffdcaa97bec6e2..714ea21aaedcc3dd4c09d0dd6bd0e2639d57e9f7 100644 --- a/wiki/src/news/version_3.11.ru.po +++ b/wiki/src/news/version_3.11.ru.po @@ -155,14 +155,14 @@ msgstr "" #, no-wrap msgid "" " To fix this issue, add `nomodeset` to the [[startup\n" -" options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " If this workaround doesn't work, add `nomodeset xorg-driver=vesa` to\n" -" the [[startup options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" the [[startup options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.11.sr_Latn.po b/wiki/src/news/version_3.11.sr_Latn.po index 34a7b2ad8fd4c4183ad547703cc57a300a8e7368..0e448625b52dbcc3fbe80b046828ed80dc7518da 100644 --- a/wiki/src/news/version_3.11.sr_Latn.po +++ b/wiki/src/news/version_3.11.sr_Latn.po @@ -155,14 +155,14 @@ msgstr "" #, no-wrap msgid "" " To fix this issue, add `nomodeset` to the [[startup\n" -" options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " If this workaround doesn't work, add `nomodeset xorg-driver=vesa` to\n" -" the [[startup options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" the [[startup options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.11.tr.po b/wiki/src/news/version_3.11.tr.po index 3d439a4974842bf6f0ac6f842e69d64b4b8d0775..5ab09407b1ae9269a9f6afe18f8d7c490b91a0a2 100644 --- a/wiki/src/news/version_3.11.tr.po +++ b/wiki/src/news/version_3.11.tr.po @@ -154,14 +154,14 @@ msgstr "" #, no-wrap msgid "" " To fix this issue, add `nomodeset` to the [[startup\n" -" options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " If this workaround doesn't work, add `nomodeset xorg-driver=vesa` to\n" -" the [[startup options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" the [[startup options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.11.zh.po b/wiki/src/news/version_3.11.zh.po index 88b42689e2f225cd13ea3b0ef1538d88478e5477..b78c446516a056c9ebceef3710a43ebdaa8791d2 100644 --- a/wiki/src/news/version_3.11.zh.po +++ b/wiki/src/news/version_3.11.zh.po @@ -154,14 +154,14 @@ msgstr "" #, no-wrap msgid "" " To fix this issue, add `nomodeset` to the [[startup\n" -" options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " If this workaround doesn't work, add `nomodeset xorg-driver=vesa` to\n" -" the [[startup options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" the [[startup options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.11.zh_TW.po b/wiki/src/news/version_3.11.zh_TW.po index d5b71aa1e88683a56ff56630895a34fa288eac60..21e19800adb2bf9f10863e4f60148d44927627df 100644 --- a/wiki/src/news/version_3.11.zh_TW.po +++ b/wiki/src/news/version_3.11.zh_TW.po @@ -154,14 +154,14 @@ msgstr "" #, no-wrap msgid "" " To fix this issue, add `nomodeset` to the [[startup\n" -" options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " If this workaround doesn't work, add `nomodeset xorg-driver=vesa` to\n" -" the [[startup options|doc/first_steps/startup_options/#boot_loader_menu]].\n" +" the [[startup options|doc/advanced_topics/boot_options]].\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.12.1.ar.po b/wiki/src/news/version_3.12.1.ar.po index df13f3610e22e2b051158cde67d21b85ec95a6bd..7a757eebc708d0bb0e125230ad9ed7cbc07c9c74 100644 --- a/wiki/src/news/version_3.12.1.ar.po +++ b/wiki/src/news/version_3.12.1.ar.po @@ -122,7 +122,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.1.ca.po b/wiki/src/news/version_3.12.1.ca.po index 912aaa683e8a1f532042875e4aa9b7d5a74f9fe8..f1a0281589d3792766a0672a48cbc0274f491629 100644 --- a/wiki/src/news/version_3.12.1.ca.po +++ b/wiki/src/news/version_3.12.1.ca.po @@ -121,7 +121,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.1.de.po b/wiki/src/news/version_3.12.1.de.po index 69a78b8a46cc8a4b2af27ec252a2873a77059107..58937d300de56f5ed087b37ba49016fa9fc8fce7 100644 --- a/wiki/src/news/version_3.12.1.de.po +++ b/wiki/src/news/version_3.12.1.de.po @@ -123,7 +123,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.1.es.po b/wiki/src/news/version_3.12.1.es.po index a87e8ffa42da4c109ae9f2b8b581ad3f73b649f1..d3f2a577ba30d0179470f51c5c8d77dca87ebca7 100644 --- a/wiki/src/news/version_3.12.1.es.po +++ b/wiki/src/news/version_3.12.1.es.po @@ -121,7 +121,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.1.fa.po b/wiki/src/news/version_3.12.1.fa.po index 48d62d78a132aa66298fea16c8fb3f031aee73da..c96dc28bf869d6941cd1b7e6028bbafb8bb7c530 100644 --- a/wiki/src/news/version_3.12.1.fa.po +++ b/wiki/src/news/version_3.12.1.fa.po @@ -121,7 +121,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.1.fr.po b/wiki/src/news/version_3.12.1.fr.po index 8dc188e904c7aab62e38d37da96e28cbd4bb5ff0..3cfd15045309bf30e8877b5bed1055705dbb46ec 100644 --- a/wiki/src/news/version_3.12.1.fr.po +++ b/wiki/src/news/version_3.12.1.fr.po @@ -139,10 +139,10 @@ msgstr "Réinstallez votre clé USB en utilisant la même méthode d'installatio #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" "Démarrez Tails une première fois et [[définissez un mot de passe d'administration|doc/first_steps/" -"startup_options/administration_password]]." +"welcome_screen/administration_password]]." #. type: Bullet: '1. ' msgid "" diff --git a/wiki/src/news/version_3.12.1.id.po b/wiki/src/news/version_3.12.1.id.po index 71be87bb5968c9a79273e5818f948cc4c3481bf6..fc7a2d12b9ac0b04d920188563576b0bcf6392ad 100644 --- a/wiki/src/news/version_3.12.1.id.po +++ b/wiki/src/news/version_3.12.1.id.po @@ -121,7 +121,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.1.it.po b/wiki/src/news/version_3.12.1.it.po index adf00470de462f2d4c0a39f318ffbec30c8cb996..1310a539ceed24406501b3716412f090e78afe57 100644 --- a/wiki/src/news/version_3.12.1.it.po +++ b/wiki/src/news/version_3.12.1.it.po @@ -121,7 +121,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.1.mdwn b/wiki/src/news/version_3.12.1.mdwn index 6a461310b3a08e7a007c4e392d33d72abe1d62f9..7e6156bef1e1e50b3765cfd0d52546424a2eb93b 100644 --- a/wiki/src/news/version_3.12.1.mdwn +++ b/wiki/src/news/version_3.12.1.mdwn @@ -45,7 +45,7 @@ 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]]. + password|doc/first_steps/welcome_screen/administration_password]]. 1. Choose <span class="menuchoice"> <span class="guimenu">Applications</span> ▸ diff --git a/wiki/src/news/version_3.12.1.pl.po b/wiki/src/news/version_3.12.1.pl.po index e8c521c8332526b2c5fd65188ca070cd7954cafb..8b87d41fc308cdcdd0464c2c38ebdd0d69f36134 100644 --- a/wiki/src/news/version_3.12.1.pl.po +++ b/wiki/src/news/version_3.12.1.pl.po @@ -122,7 +122,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.1.pt.po b/wiki/src/news/version_3.12.1.pt.po index 30a3e98483be799254771a357a20c5de3df94816..809e7a7aa8fcd270cb4398287e0bfd629f8ba418 100644 --- a/wiki/src/news/version_3.12.1.pt.po +++ b/wiki/src/news/version_3.12.1.pt.po @@ -121,7 +121,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.1.ru.po b/wiki/src/news/version_3.12.1.ru.po index 19f35ae954a5612d3f4cfe8e7df2c625da3cba0b..e3003beec39ed792adac764ade61bc829896b3f7 100644 --- a/wiki/src/news/version_3.12.1.ru.po +++ b/wiki/src/news/version_3.12.1.ru.po @@ -122,7 +122,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.1.sr_Latn.po b/wiki/src/news/version_3.12.1.sr_Latn.po index 6bad6850329415dd2ee466105775993a7bc3c231..88216a6a1a89f9ea318a162f9df9ea71b5fd3ef2 100644 --- a/wiki/src/news/version_3.12.1.sr_Latn.po +++ b/wiki/src/news/version_3.12.1.sr_Latn.po @@ -122,7 +122,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.1.tr.po b/wiki/src/news/version_3.12.1.tr.po index 4a74b4cd96d3ddd171f76b4c0efaf89a562e93ae..7924764800735bfd89dd67766e1eea0fb2266ad3 100644 --- a/wiki/src/news/version_3.12.1.tr.po +++ b/wiki/src/news/version_3.12.1.tr.po @@ -121,7 +121,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.1.zh.po b/wiki/src/news/version_3.12.1.zh.po index f84ec42b49c631e78ceedcca3a9b3ef3c3f82f93..cd3b839e4973eb2b9100574f8743212ee40da59e 100644 --- a/wiki/src/news/version_3.12.1.zh.po +++ b/wiki/src/news/version_3.12.1.zh.po @@ -121,7 +121,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.1.zh_TW.po b/wiki/src/news/version_3.12.1.zh_TW.po index ebc84451f9bf99e7ec357bcfef47ce8b243f4ae7..b2019f537dcbca54e4cb3e5e7f36bdc1d1404fe7 100644 --- a/wiki/src/news/version_3.12.1.zh_TW.po +++ b/wiki/src/news/version_3.12.1.zh_TW.po @@ -121,7 +121,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.ar.po b/wiki/src/news/version_3.12.ar.po index 03be32177e4cada6b8b667819ed2904da7640ff1..f2dffcbe309d5874fd8d03a75e8b3adc72e0ba48 100644 --- a/wiki/src/news/version_3.12.ar.po +++ b/wiki/src/news/version_3.12.ar.po @@ -225,7 +225,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.ca.po b/wiki/src/news/version_3.12.ca.po index 774a762281ff1491e9d96fcec8dfe32f2d3c9b1f..98081c55b75747e4446690d34bb216f16c473360 100644 --- a/wiki/src/news/version_3.12.ca.po +++ b/wiki/src/news/version_3.12.ca.po @@ -224,7 +224,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.de.po b/wiki/src/news/version_3.12.de.po index eca7ae5af8e74edad1a585dc1fed1a881f9a5bcc..f626719c0d4bea021a50c76896cf567345e208aa 100644 --- a/wiki/src/news/version_3.12.de.po +++ b/wiki/src/news/version_3.12.de.po @@ -227,7 +227,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.es.po b/wiki/src/news/version_3.12.es.po index 45cb4b7724ee99ce3af53f61b1717afba4488af7..b552c8cc2b5745295972985e8da378da84da62df 100644 --- a/wiki/src/news/version_3.12.es.po +++ b/wiki/src/news/version_3.12.es.po @@ -227,7 +227,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.fa.po b/wiki/src/news/version_3.12.fa.po index 9fb7130c385b3b421ffe92efc3fc68901b05cbf9..5ab3762d7846ebb37e88d64537e8d924ce03e3ea 100644 --- a/wiki/src/news/version_3.12.fa.po +++ b/wiki/src/news/version_3.12.fa.po @@ -225,7 +225,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.fr.po b/wiki/src/news/version_3.12.fr.po index 5865d4374c3261bde98aba9acc581069265c2b6d..4465897b67c3ce4500e494d6b246c206421b95b2 100644 --- a/wiki/src/news/version_3.12.fr.po +++ b/wiki/src/news/version_3.12.fr.po @@ -273,10 +273,10 @@ msgstr "Réinstallez votre clé USB en utilisant la même méthode d'installatio #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" "Démarrez Tails une première fois et [[définissez un mot de passe " -"d'administration|doc/first_steps/startup_options/administration_password]]." +"d'administration|doc/first_steps/welcome_screen/administration_password]]." #. type: Bullet: '1. ' msgid "" diff --git a/wiki/src/news/version_3.12.id.po b/wiki/src/news/version_3.12.id.po index 9142c788ecc6ce69f500280daab6a82a2ebfc1a4..e849a8ff473c0517e925c0ad193b519d4831c082 100644 --- a/wiki/src/news/version_3.12.id.po +++ b/wiki/src/news/version_3.12.id.po @@ -224,7 +224,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.it.po b/wiki/src/news/version_3.12.it.po index 8cc778169dcef35bfd5b7b1d4ab58555e0cc7cba..1d6bf0eda2b920d09f325d70783d9fc6a3d15115 100644 --- a/wiki/src/news/version_3.12.it.po +++ b/wiki/src/news/version_3.12.it.po @@ -227,7 +227,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.mdwn b/wiki/src/news/version_3.12.mdwn index d5e3febc71d9493dc237614ac1427d2d379f513d..a7074f4e15e7921768f9c142ed513e96d03f3705 100644 --- a/wiki/src/news/version_3.12.mdwn +++ b/wiki/src/news/version_3.12.mdwn @@ -96,7 +96,7 @@ 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]]. + password|doc/first_steps/welcome_screen/administration_password]]. 1. Choose <span class="menuchoice"> <span class="guimenu">Applications</span> ▸ diff --git a/wiki/src/news/version_3.12.pl.po b/wiki/src/news/version_3.12.pl.po index 535e4851b2521fccfffe051e1e229a5d79f602e9..1f95b11dc434a470d6858ba9bc6b66c0f76d53fa 100644 --- a/wiki/src/news/version_3.12.pl.po +++ b/wiki/src/news/version_3.12.pl.po @@ -225,7 +225,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.pt.po b/wiki/src/news/version_3.12.pt.po index 0cd721ae5c0889e016529b14bff302ae939f894f..0ca082e30edf949aa874b423305bccff3485f0f6 100644 --- a/wiki/src/news/version_3.12.pt.po +++ b/wiki/src/news/version_3.12.pt.po @@ -227,7 +227,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.ru.po b/wiki/src/news/version_3.12.ru.po index 90d0134891da2cc8523c3b61d96b14e22b40493c..74a6a7c7745253e466e27c319d846b86ce6aec5f 100644 --- a/wiki/src/news/version_3.12.ru.po +++ b/wiki/src/news/version_3.12.ru.po @@ -225,7 +225,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.sr_Latn.po b/wiki/src/news/version_3.12.sr_Latn.po index ef4bb234047fefebe80cccc9b7d7d03e8d9c580b..ce2140f67dce4d53d0af93d4e29aeeba7e7a57f4 100644 --- a/wiki/src/news/version_3.12.sr_Latn.po +++ b/wiki/src/news/version_3.12.sr_Latn.po @@ -225,7 +225,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.tr.po b/wiki/src/news/version_3.12.tr.po index 8d29cd8b889532eeeae5cee33f0e54caa84eed14..7fb46e777003dc8f09bab11056edc6651bab83a6 100644 --- a/wiki/src/news/version_3.12.tr.po +++ b/wiki/src/news/version_3.12.tr.po @@ -224,7 +224,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.zh.po b/wiki/src/news/version_3.12.zh.po index 99b50258fcff1218e05a03a25420922af1c390f0..9c60b27c8cee30b6a3c97a8da838a4ed2d624e95 100644 --- a/wiki/src/news/version_3.12.zh.po +++ b/wiki/src/news/version_3.12.zh.po @@ -224,7 +224,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.12.zh_TW.po b/wiki/src/news/version_3.12.zh_TW.po index 5b6b9d1e45dc0574c18769b0897c0e00a62a5d1e..40217701a2541c242f42d9a37c255ca3b15d458b 100644 --- a/wiki/src/news/version_3.12.zh_TW.po +++ b/wiki/src/news/version_3.12.zh_TW.po @@ -224,7 +224,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.1.ar.po b/wiki/src/news/version_3.13.1.ar.po index 832664a5755cd23354eaa498f4f7ab5d2bc749fb..c22115b2b0bc7ad349163ea207fa34fdf1c0890e 100644 --- a/wiki/src/news/version_3.13.1.ar.po +++ b/wiki/src/news/version_3.13.1.ar.po @@ -132,7 +132,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.1.ca.po b/wiki/src/news/version_3.13.1.ca.po index 8ccac69b0a6585f9e9ae2779b496a4cd707e12e7..091378ba1da0789e8a89d282e76885a0512c92b1 100644 --- a/wiki/src/news/version_3.13.1.ca.po +++ b/wiki/src/news/version_3.13.1.ca.po @@ -131,7 +131,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.1.de.po b/wiki/src/news/version_3.13.1.de.po index 855a104b3bb5d4edca99df9418a4834a0355d2e6..29745d7b3ef2b4922c4132b079355432a55edbcf 100644 --- a/wiki/src/news/version_3.13.1.de.po +++ b/wiki/src/news/version_3.13.1.de.po @@ -141,7 +141,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.1.es.po b/wiki/src/news/version_3.13.1.es.po index f27de19d27caaa3db4e140fcc4aaaa72f5cab47c..b4bc0db12acb225580c017a27778e90af3aaa347 100644 --- a/wiki/src/news/version_3.13.1.es.po +++ b/wiki/src/news/version_3.13.1.es.po @@ -141,7 +141,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.1.fa.po b/wiki/src/news/version_3.13.1.fa.po index bce4d6bf9c24ea0dfdbb322bd80e2dfd37be63c1..9361e379c0318b61bd3c910811c7ca0a34246e62 100644 --- a/wiki/src/news/version_3.13.1.fa.po +++ b/wiki/src/news/version_3.13.1.fa.po @@ -137,7 +137,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.1.fr.po b/wiki/src/news/version_3.13.1.fr.po index 09ec734352c533136f39b1b0ede95d1ce457c375..24d79867ebcfae2fab15d3786fdbad6663557503 100644 --- a/wiki/src/news/version_3.13.1.fr.po +++ b/wiki/src/news/version_3.13.1.fr.po @@ -146,10 +146,10 @@ msgstr "Réinstallez votre clé USB en utilisant la même méthode d'installatio #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" "Démarrez Tails une première fois et [[définissez un mot de passe " -"d'administration|doc/first_steps/startup_options/administration_password]]." +"d'administration|doc/first_steps/welcome_screen/administration_password]]." #. type: Bullet: '1. ' msgid "" diff --git a/wiki/src/news/version_3.13.1.id.po b/wiki/src/news/version_3.13.1.id.po index c27f6685d43b9fbded952c5668acd999cc2a1331..27c6d1f7e4198445f1761ceff28bfeb6d5c31448 100644 --- a/wiki/src/news/version_3.13.1.id.po +++ b/wiki/src/news/version_3.13.1.id.po @@ -131,7 +131,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.1.it.po b/wiki/src/news/version_3.13.1.it.po index 5c4d772c58fc192d1c1607013b92cfc5d81ec9b6..780b8c6cb60c0f6be2509a15400074e770929b49 100644 --- a/wiki/src/news/version_3.13.1.it.po +++ b/wiki/src/news/version_3.13.1.it.po @@ -141,7 +141,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.1.mdwn b/wiki/src/news/version_3.13.1.mdwn index 817df097609f9582fd09e37191f8616d4f9b7edc..5c7a389c301539ce1d4cd4e4c40983ccb984771c 100644 --- a/wiki/src/news/version_3.13.1.mdwn +++ b/wiki/src/news/version_3.13.1.mdwn @@ -46,7 +46,7 @@ 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]]. + password|doc/first_steps/welcome_screen/administration_password]]. 1. Choose <span class="menuchoice"> <span class="guimenu">Applications</span> ▸ diff --git a/wiki/src/news/version_3.13.1.pl.po b/wiki/src/news/version_3.13.1.pl.po index d0c15be59dac8cff2f8cf6ffc98c1031ae5ab576..cdf8050ff88992d28143d6c24915b99a4bc99258 100644 --- a/wiki/src/news/version_3.13.1.pl.po +++ b/wiki/src/news/version_3.13.1.pl.po @@ -132,7 +132,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.1.pt.po b/wiki/src/news/version_3.13.1.pt.po index 8099602ff20249d8cdc83722ded518f75d44e4f0..f56ff8c76b1a5e053817ab1c8ce2bdc5802b4811 100644 --- a/wiki/src/news/version_3.13.1.pt.po +++ b/wiki/src/news/version_3.13.1.pt.po @@ -141,7 +141,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.1.ru.po b/wiki/src/news/version_3.13.1.ru.po index 193d1e68981ac21effa34f368a669619bb68c1ee..3bb2dd7a71546f6fbf00a33663a477e2186bf4dc 100644 --- a/wiki/src/news/version_3.13.1.ru.po +++ b/wiki/src/news/version_3.13.1.ru.po @@ -132,7 +132,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.1.sr_Latn.po b/wiki/src/news/version_3.13.1.sr_Latn.po index d7b4a0ce46c6fdc08700eb18c2785ffb7dfb95a9..3f62a0a09f69683050319a53c109d20e0132f202 100644 --- a/wiki/src/news/version_3.13.1.sr_Latn.po +++ b/wiki/src/news/version_3.13.1.sr_Latn.po @@ -132,7 +132,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.1.tr.po b/wiki/src/news/version_3.13.1.tr.po index ac75290dc72222e937d657389d99fa2e2880b232..6437701b7560a541122e08cb26f96d861b5d2c91 100644 --- a/wiki/src/news/version_3.13.1.tr.po +++ b/wiki/src/news/version_3.13.1.tr.po @@ -131,7 +131,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.1.zh.po b/wiki/src/news/version_3.13.1.zh.po index bf153bd0acf45097aad2c05fd6e385ac7ba52b4b..2d8b91b13eb76527dfcfdb26f39ae3733730b79f 100644 --- a/wiki/src/news/version_3.13.1.zh.po +++ b/wiki/src/news/version_3.13.1.zh.po @@ -131,7 +131,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.1.zh_TW.po b/wiki/src/news/version_3.13.1.zh_TW.po index 698857163e38cc0d392c1cb5166673eb4a40e46f..b0fd8ef061e87d969ea7124fe27ef020c3543277 100644 --- a/wiki/src/news/version_3.13.1.zh_TW.po +++ b/wiki/src/news/version_3.13.1.zh_TW.po @@ -131,7 +131,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.2.ar.po b/wiki/src/news/version_3.13.2.ar.po index 65c2495248bc61a96dbd2cffd784d6d176004b4a..91526febb67049aa17c4f3a8cd78f8a2aead678b 100644 --- a/wiki/src/news/version_3.13.2.ar.po +++ b/wiki/src/news/version_3.13.2.ar.po @@ -470,7 +470,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.2.ca.po b/wiki/src/news/version_3.13.2.ca.po index 3bf68d9721e0176905ee2d94c8a397dc11706548..644474991c689f63263d5d07325cb5ad6dc468d9 100644 --- a/wiki/src/news/version_3.13.2.ca.po +++ b/wiki/src/news/version_3.13.2.ca.po @@ -469,7 +469,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.2.de.po b/wiki/src/news/version_3.13.2.de.po index 292aae314152d0c795cbd1c24395058b6a7e3a00..7d3b761762a6dd294bbb89ce0ea15b83782ccccc 100644 --- a/wiki/src/news/version_3.13.2.de.po +++ b/wiki/src/news/version_3.13.2.de.po @@ -471,7 +471,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.2.es.po b/wiki/src/news/version_3.13.2.es.po index c69e3248c1b172f80fa3cb3523dc48cd37e5e0f2..f52eb2f01d5ee9e8561733db798ace1de8303b7d 100644 --- a/wiki/src/news/version_3.13.2.es.po +++ b/wiki/src/news/version_3.13.2.es.po @@ -471,7 +471,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.2.fa.po b/wiki/src/news/version_3.13.2.fa.po index 1b758becceffb70d54ba253bb3bcbe1f3dd27881..eb3084dbace4348e716f72ec792d55e21b553435 100644 --- a/wiki/src/news/version_3.13.2.fa.po +++ b/wiki/src/news/version_3.13.2.fa.po @@ -469,7 +469,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.2.fr.po b/wiki/src/news/version_3.13.2.fr.po index 1331e627203d93e519df76af5a58f810c3a81487..ca9e9b60aff46c40cf86e64b7733dcc277b79853 100644 --- a/wiki/src/news/version_3.13.2.fr.po +++ b/wiki/src/news/version_3.13.2.fr.po @@ -546,10 +546,10 @@ msgstr "Réinstallez votre clé USB en utilisant la même méthode d'installatio #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" "Démarrez Tails une première fois et [[définissez un mot de passe " -"d'administration|doc/first_steps/startup_options/administration_password]]." +"d'administration|doc/first_steps/welcome_screen/administration_password]]." #. type: Bullet: '1. ' msgid "" diff --git a/wiki/src/news/version_3.13.2.id.po b/wiki/src/news/version_3.13.2.id.po index a99c18ff6d09ea02302d92ff3d41d6d1758ba21a..007850787ea698ea76ffa83e47a282a9afad2455 100644 --- a/wiki/src/news/version_3.13.2.id.po +++ b/wiki/src/news/version_3.13.2.id.po @@ -469,7 +469,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.2.it.po b/wiki/src/news/version_3.13.2.it.po index bc6838e0a90721903b8747e077bef0db9a11dfb8..5713db3f571a8df45eb7c0d43b9054ce5aa8c0d5 100644 --- a/wiki/src/news/version_3.13.2.it.po +++ b/wiki/src/news/version_3.13.2.it.po @@ -471,7 +471,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.2.mdwn b/wiki/src/news/version_3.13.2.mdwn index 70be70aa7d2d6d0a7e0c22f969b2b4efd253dcd8..2498caf586ab7e0b2703579225fcdc715d3db74d 100644 --- a/wiki/src/news/version_3.13.2.mdwn +++ b/wiki/src/news/version_3.13.2.mdwn @@ -189,7 +189,7 @@ 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]]. + password|doc/first_steps/welcome_screen/administration_password]]. 1. Choose <span class="menuchoice"> <span class="guimenu">Applications</span> ▸ diff --git a/wiki/src/news/version_3.13.2.pl.po b/wiki/src/news/version_3.13.2.pl.po index ac7e4348a2e6d7b65fa57d6da10d7de47d4d8710..45accb58f4d51b432dda283a48706dd6b3007505 100644 --- a/wiki/src/news/version_3.13.2.pl.po +++ b/wiki/src/news/version_3.13.2.pl.po @@ -470,7 +470,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.2.pt.po b/wiki/src/news/version_3.13.2.pt.po index 650cf46ab4f98db3a7e1700a71516c3ef42c2ded..122aa5a5fa6ccbf42253c23bcc52b186a3056616 100644 --- a/wiki/src/news/version_3.13.2.pt.po +++ b/wiki/src/news/version_3.13.2.pt.po @@ -471,7 +471,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.2.ru.po b/wiki/src/news/version_3.13.2.ru.po index abceb1ea8e9d0adc2d788fb53dce70fcd975c2a8..d625c664060887e51292ca323de13c42f271c7d8 100644 --- a/wiki/src/news/version_3.13.2.ru.po +++ b/wiki/src/news/version_3.13.2.ru.po @@ -470,7 +470,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.2.sr_Latn.po b/wiki/src/news/version_3.13.2.sr_Latn.po index b209f02d315d3a0cdf0837bce031a46fc5e31c12..87e4d4a0779f46012bb1d29f9bf75161c701b2dd 100644 --- a/wiki/src/news/version_3.13.2.sr_Latn.po +++ b/wiki/src/news/version_3.13.2.sr_Latn.po @@ -470,7 +470,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.2.tr.po b/wiki/src/news/version_3.13.2.tr.po index 3fa19ca859a155606648dd105a02077debf81703..d7a8bd6e893a4a892a21826d1d02df6fdd54fbf7 100644 --- a/wiki/src/news/version_3.13.2.tr.po +++ b/wiki/src/news/version_3.13.2.tr.po @@ -469,7 +469,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.2.zh.po b/wiki/src/news/version_3.13.2.zh.po index f4883dcb6cb7bb08a4655dbaf2d6da1eda919483..e215fe9d8d899e238e2d8c968a3215246c4528eb 100644 --- a/wiki/src/news/version_3.13.2.zh.po +++ b/wiki/src/news/version_3.13.2.zh.po @@ -469,7 +469,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.2.zh_TW.po b/wiki/src/news/version_3.13.2.zh_TW.po index 0de4d5ebb6378fe55019b712a434f7faa9c58bae..f9b63609240cef5b634b23ddc3b3f01edd90832a 100644 --- a/wiki/src/news/version_3.13.2.zh_TW.po +++ b/wiki/src/news/version_3.13.2.zh_TW.po @@ -469,7 +469,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.ar.po b/wiki/src/news/version_3.13.ar.po index be576c552f372e90149b46b569537d2976c145df..189a0b84e25018901b94891e79376ef7f3d3bbac 100644 --- a/wiki/src/news/version_3.13.ar.po +++ b/wiki/src/news/version_3.13.ar.po @@ -128,7 +128,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Fix the localization of *Tor Launcher*, the application to configure a [[Tor " -"bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. ([[!" +"bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!" "tails_ticket 16338]])" msgstr "" @@ -202,7 +202,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.ca.po b/wiki/src/news/version_3.13.ca.po index c8822c38410329c27fedb3514b646eabbdf69043..8e3435786b5a87a46096e179c064dd0942aca8b8 100644 --- a/wiki/src/news/version_3.13.ca.po +++ b/wiki/src/news/version_3.13.ca.po @@ -127,7 +127,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Fix the localization of *Tor Launcher*, the application to configure a [[Tor " -"bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. ([[!" +"bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!" "tails_ticket 16338]])" msgstr "" @@ -201,7 +201,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.de.po b/wiki/src/news/version_3.13.de.po index aa149b8c0db1c5ff3b0a10024f85596ae21db300..1a68b6e626477cf69c9db21ea2726de6b3a84f8e 100644 --- a/wiki/src/news/version_3.13.de.po +++ b/wiki/src/news/version_3.13.de.po @@ -127,7 +127,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Fix the localization of *Tor Launcher*, the application to configure a [[Tor " -"bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. ([[!" +"bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!" "tails_ticket 16338]])" msgstr "" @@ -205,7 +205,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.es.po b/wiki/src/news/version_3.13.es.po index 803f0f072a5c410ba6f07ccc16bc0f8b0f8595a1..446b31494cd5f721e56a66506c1003a39d73e543 100644 --- a/wiki/src/news/version_3.13.es.po +++ b/wiki/src/news/version_3.13.es.po @@ -130,7 +130,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Fix the localization of *Tor Launcher*, the application to configure a [[Tor " -"bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. ([[!" +"bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!" "tails_ticket 16338]])" msgstr "" @@ -208,7 +208,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.fa.po b/wiki/src/news/version_3.13.fa.po index c1f6c1a6b5c1a8f300ff785790bf4f8c786400b6..3264d8a4011ef5800113b95933092fc67a3c1bd3 100644 --- a/wiki/src/news/version_3.13.fa.po +++ b/wiki/src/news/version_3.13.fa.po @@ -127,7 +127,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Fix the localization of *Tor Launcher*, the application to configure a [[Tor " -"bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. ([[!" +"bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!" "tails_ticket 16338]])" msgstr "" @@ -201,7 +201,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.fr.po b/wiki/src/news/version_3.13.fr.po index 3a120f55002e5dde59edbdafee96fd0f0dcf4456..4a864fbeeafe644e2e5cb8f73f374e244155be79 100644 --- a/wiki/src/news/version_3.13.fr.po +++ b/wiki/src/news/version_3.13.fr.po @@ -143,11 +143,11 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Fix the localization of *Tor Launcher*, the application to configure a [[Tor " -"bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. ([[!" +"bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!" "tails_ticket 16338]])" msgstr "" "Correction de la régionalisation du *Tor Launcher*, l'application pour configurer " -"un [[bridge Tor|doc/first_steps/startup_options/bridge_mode]] ou un proxy local. " +"un [[bridge Tor|doc/first_steps/welcome_screen/bridge_mode]] ou un proxy local. " "([[!tails_ticket 16338]])" #. type: Bullet: '- ' @@ -234,10 +234,10 @@ msgstr "Réinstallez votre clé USB en utilisant la même méthode d'installatio #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" "Démarrez Tails une première fois et [[définissez un mot de passe d'administration|" -"doc/first_steps/startup_options/administration_password]]." +"doc/first_steps/welcome_screen/administration_password]]." #. type: Bullet: '1. ' msgid "" diff --git a/wiki/src/news/version_3.13.id.po b/wiki/src/news/version_3.13.id.po index 8691e06b8a54d4bd67445825e4a9013246ce515b..8c6600417b58281c545fe7597485a52d78aef5bb 100644 --- a/wiki/src/news/version_3.13.id.po +++ b/wiki/src/news/version_3.13.id.po @@ -127,7 +127,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Fix the localization of *Tor Launcher*, the application to configure a [[Tor " -"bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. ([[!" +"bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!" "tails_ticket 16338]])" msgstr "" @@ -201,7 +201,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.it.po b/wiki/src/news/version_3.13.it.po index b50bef985c3f0f3b221457fefcfa011523aad96c..854bc5bd92043413a24d62288127532a987e80f2 100644 --- a/wiki/src/news/version_3.13.it.po +++ b/wiki/src/news/version_3.13.it.po @@ -127,7 +127,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Fix the localization of *Tor Launcher*, the application to configure a [[Tor " -"bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. ([[!" +"bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!" "tails_ticket 16338]])" msgstr "" @@ -205,7 +205,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.mdwn b/wiki/src/news/version_3.13.mdwn index 9816de334c50a740deb58da3cd829e623914d61b..bc88cda26750ca182c9e13d94f0f72f74aea6ef5 100644 --- a/wiki/src/news/version_3.13.mdwn +++ b/wiki/src/news/version_3.13.mdwn @@ -46,7 +46,7 @@ vulnerabilities|security/Numerous_security_holes_in_3.12.1]]. You should upgrade saved in the persistent storage. ([[!tails_ticket 15957]]) - Fix the localization of *Tor Launcher*, the application to configure a [[Tor - bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. + bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!tails_ticket 16338]]) - Fix accessibility when opening *Tor Browser* from a desktop notification. @@ -82,7 +82,7 @@ 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]]. + password|doc/first_steps/welcome_screen/administration_password]]. 1. Choose <span class="menuchoice"> <span class="guimenu">Applications</span> ▸ diff --git a/wiki/src/news/version_3.13.pl.po b/wiki/src/news/version_3.13.pl.po index 26b831701813da45e8c1dbb174898efa8d0a9b80..59df55cacc837b225bdda40a431f7ce670ed68fa 100644 --- a/wiki/src/news/version_3.13.pl.po +++ b/wiki/src/news/version_3.13.pl.po @@ -128,7 +128,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Fix the localization of *Tor Launcher*, the application to configure a [[Tor " -"bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. ([[!" +"bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!" "tails_ticket 16338]])" msgstr "" @@ -202,7 +202,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.pt.po b/wiki/src/news/version_3.13.pt.po index 620ae14fd45e8bc04f3fdbd248212aeaea7a15c9..95d0ec3b5b217f09dc3fb4507685069b29a82726 100644 --- a/wiki/src/news/version_3.13.pt.po +++ b/wiki/src/news/version_3.13.pt.po @@ -127,7 +127,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Fix the localization of *Tor Launcher*, the application to configure a [[Tor " -"bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. ([[!" +"bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!" "tails_ticket 16338]])" msgstr "" @@ -205,7 +205,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.ru.po b/wiki/src/news/version_3.13.ru.po index a65dc2867179a892f6216194c840874678b67fee..339fac886c70e9714c4c47c1db696cc9aee3bf65 100644 --- a/wiki/src/news/version_3.13.ru.po +++ b/wiki/src/news/version_3.13.ru.po @@ -128,7 +128,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Fix the localization of *Tor Launcher*, the application to configure a [[Tor " -"bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. ([[!" +"bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!" "tails_ticket 16338]])" msgstr "" @@ -202,7 +202,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.sr_Latn.po b/wiki/src/news/version_3.13.sr_Latn.po index 831667a258b9243ad835c0f96f94624990594f70..d05849c5c4e37f320557feb0c795d3dad20657c7 100644 --- a/wiki/src/news/version_3.13.sr_Latn.po +++ b/wiki/src/news/version_3.13.sr_Latn.po @@ -128,7 +128,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Fix the localization of *Tor Launcher*, the application to configure a [[Tor " -"bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. ([[!" +"bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!" "tails_ticket 16338]])" msgstr "" @@ -202,7 +202,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.tr.po b/wiki/src/news/version_3.13.tr.po index f7efd13203c2babc79ab693c0f29a1f66f0c66d1..4f8bf069c3dc909b6eaa0b81dbd2093944854cb7 100644 --- a/wiki/src/news/version_3.13.tr.po +++ b/wiki/src/news/version_3.13.tr.po @@ -127,7 +127,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Fix the localization of *Tor Launcher*, the application to configure a [[Tor " -"bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. ([[!" +"bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!" "tails_ticket 16338]])" msgstr "" @@ -201,7 +201,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.zh.po b/wiki/src/news/version_3.13.zh.po index 304926eaddfbf5512650f948e54362d68de161be..778557c9375eab30b35e94d3014b70a32ec36c62 100644 --- a/wiki/src/news/version_3.13.zh.po +++ b/wiki/src/news/version_3.13.zh.po @@ -127,7 +127,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Fix the localization of *Tor Launcher*, the application to configure a [[Tor " -"bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. ([[!" +"bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!" "tails_ticket 16338]])" msgstr "" @@ -201,7 +201,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.13.zh_TW.po b/wiki/src/news/version_3.13.zh_TW.po index 68be297fc9ab6b4321ccd29f1e9f6bfbe3e7fee8..e8cac5b7aaea0d4cf71b64456a4c43c01aeacb94 100644 --- a/wiki/src/news/version_3.13.zh_TW.po +++ b/wiki/src/news/version_3.13.zh_TW.po @@ -127,7 +127,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Fix the localization of *Tor Launcher*, the application to configure a [[Tor " -"bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. ([[!" +"bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. ([[!" "tails_ticket 16338]])" msgstr "" @@ -201,7 +201,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.1.ar.po b/wiki/src/news/version_3.14.1.ar.po index 8f4fb7b62f693e0e1bb1eae9bf03645b2dc94094..2477474b1050f95489461a687580126297664e93 100644 --- a/wiki/src/news/version_3.14.1.ar.po +++ b/wiki/src/news/version_3.14.1.ar.po @@ -221,7 +221,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.1.ca.po b/wiki/src/news/version_3.14.1.ca.po index e795061020d745c987bfb2f5c667517732f5baed..bb640ec8c7f2ad720b3e8823da6dee76978f8412 100644 --- a/wiki/src/news/version_3.14.1.ca.po +++ b/wiki/src/news/version_3.14.1.ca.po @@ -220,7 +220,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.1.de.po b/wiki/src/news/version_3.14.1.de.po index 150bf86cc87d694fd25fcd87f9fc12eb01fa0a6d..bf8e9c0f34787d6240d0e3240d66b7fbd71fa1b5 100644 --- a/wiki/src/news/version_3.14.1.de.po +++ b/wiki/src/news/version_3.14.1.de.po @@ -222,7 +222,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.1.es.po b/wiki/src/news/version_3.14.1.es.po index ed8161c42f5f9a765cea4d79c7ed9e3b4672a8f1..8356f4645fdb1bc2a7664cc02257e384988988a3 100644 --- a/wiki/src/news/version_3.14.1.es.po +++ b/wiki/src/news/version_3.14.1.es.po @@ -224,7 +224,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.1.fa.po b/wiki/src/news/version_3.14.1.fa.po index 8eb152208c058c8773330ae07bd275ff1dbbab4e..107283b7449b28bb9e8ab796a21f93273c549f57 100644 --- a/wiki/src/news/version_3.14.1.fa.po +++ b/wiki/src/news/version_3.14.1.fa.po @@ -220,7 +220,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.1.fr.po b/wiki/src/news/version_3.14.1.fr.po index 0842b5d10923088bbcf71f180fed26be1ca73af8..1f8d2bc5d5c5ff731697599660094203168d522e 100644 --- a/wiki/src/news/version_3.14.1.fr.po +++ b/wiki/src/news/version_3.14.1.fr.po @@ -259,10 +259,10 @@ msgstr "Réinstallez votre clé USB en utilisant la même méthode d'installatio #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" "Démarrez Tails une première fois et [[définissez un mot de passe " -"d'administration|doc/first_steps/startup_options/administration_password]]." +"d'administration|doc/first_steps/welcome_screen/administration_password]]." #. type: Bullet: '1. ' msgid "" diff --git a/wiki/src/news/version_3.14.1.id.po b/wiki/src/news/version_3.14.1.id.po index b1c066d42c888fb88b44a2d57eac6a862ea160d9..dfc287ae5df93a88d75cfd7dc503ab7f2ca67765 100644 --- a/wiki/src/news/version_3.14.1.id.po +++ b/wiki/src/news/version_3.14.1.id.po @@ -220,7 +220,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.1.it.po b/wiki/src/news/version_3.14.1.it.po index 39109ccf2320b065587601d43b73d970c40887fb..17b8a0c2c976a412a6f4b377edc68d681fd538df 100644 --- a/wiki/src/news/version_3.14.1.it.po +++ b/wiki/src/news/version_3.14.1.it.po @@ -224,7 +224,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.1.mdwn b/wiki/src/news/version_3.14.1.mdwn index 544e430e2ddb49e98fc701195c8a2eaa580d7eac..ac065298e7897c3f3e311abe3a2ef6cdbc05e1fd 100644 --- a/wiki/src/news/version_3.14.1.mdwn +++ b/wiki/src/news/version_3.14.1.mdwn @@ -91,7 +91,7 @@ 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]]. + password|doc/first_steps/welcome_screen/administration_password]]. 1. Choose <span class="menuchoice"> <span class="guimenu">Applications</span> ▸ diff --git a/wiki/src/news/version_3.14.1.pl.po b/wiki/src/news/version_3.14.1.pl.po index efd538719cb5800ae685a1306de1b13373f0c6d6..30520ce990ca9964b82682e2551433d03f3bcf79 100644 --- a/wiki/src/news/version_3.14.1.pl.po +++ b/wiki/src/news/version_3.14.1.pl.po @@ -221,7 +221,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.1.pt.po b/wiki/src/news/version_3.14.1.pt.po index 39bce3bc3d99343404308b89ca38f3d295e7b137..39c54a51d41a687bce119c991d7cb3d793983a92 100644 --- a/wiki/src/news/version_3.14.1.pt.po +++ b/wiki/src/news/version_3.14.1.pt.po @@ -224,7 +224,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.1.ru.po b/wiki/src/news/version_3.14.1.ru.po index f3c976ae44bec3d84e665022980c6c021f065e4d..1ab0507764410989a63e67273ede413f8621be52 100644 --- a/wiki/src/news/version_3.14.1.ru.po +++ b/wiki/src/news/version_3.14.1.ru.po @@ -221,7 +221,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.1.sr_Latn.po b/wiki/src/news/version_3.14.1.sr_Latn.po index 6b5505fd1f3ea0c8d6edf3ede8793d141aee61f2..95bdeedbeb69818ac3331e4cea0c3ec05c7e0735 100644 --- a/wiki/src/news/version_3.14.1.sr_Latn.po +++ b/wiki/src/news/version_3.14.1.sr_Latn.po @@ -221,7 +221,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.1.tr.po b/wiki/src/news/version_3.14.1.tr.po index 732ba384182ca665c2c50b948bc76f1490afc4c6..9e3a1c8aa29fcaf800944f1ac37002d901d25d9b 100644 --- a/wiki/src/news/version_3.14.1.tr.po +++ b/wiki/src/news/version_3.14.1.tr.po @@ -220,7 +220,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.1.zh.po b/wiki/src/news/version_3.14.1.zh.po index ca43f827db0141547efc02d59ff4fe7e1b3700a1..f8356d8b238c438664145a54919b2cb9ae696ab5 100644 --- a/wiki/src/news/version_3.14.1.zh.po +++ b/wiki/src/news/version_3.14.1.zh.po @@ -220,7 +220,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.1.zh_TW.po b/wiki/src/news/version_3.14.1.zh_TW.po index 5c8bf8df9749e676d08fddb18a9358c33165d0ae..0eb549a1cc54e1e9191e691138b85f90c071341c 100644 --- a/wiki/src/news/version_3.14.1.zh_TW.po +++ b/wiki/src/news/version_3.14.1.zh_TW.po @@ -220,7 +220,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.2.ar.po b/wiki/src/news/version_3.14.2.ar.po index 66ac3f7ef97bea0dcca0961cb129c2c47c1cd30e..cad4b7cf7543a3d327fb468f18f2c2287b02e0a5 100644 --- a/wiki/src/news/version_3.14.2.ar.po +++ b/wiki/src/news/version_3.14.2.ar.po @@ -119,7 +119,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.2.ca.po b/wiki/src/news/version_3.14.2.ca.po index 7272fc49066d1b5a2b39bfcd66222f1765c9b175..50ac580961fbbf73e52b358d001b81520c52c3b8 100644 --- a/wiki/src/news/version_3.14.2.ca.po +++ b/wiki/src/news/version_3.14.2.ca.po @@ -118,7 +118,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.2.de.po b/wiki/src/news/version_3.14.2.de.po index 9c02a66b33beb128beba84c96cff8df8df6e905d..231cdb7780c478ba601a6ae19c4d0644e9c0f920 100644 --- a/wiki/src/news/version_3.14.2.de.po +++ b/wiki/src/news/version_3.14.2.de.po @@ -125,7 +125,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.2.es.po b/wiki/src/news/version_3.14.2.es.po index b959b161a85d508b3797ed5a04fac4b40adf3657..a0ceaabe486dd29d7215b9c592dee69e8d7a5daf 100644 --- a/wiki/src/news/version_3.14.2.es.po +++ b/wiki/src/news/version_3.14.2.es.po @@ -125,7 +125,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.2.fa.po b/wiki/src/news/version_3.14.2.fa.po index 9e86a47bc9ed9e99c97e58db8a6a0eb0a08464aa..aea3eab9c2c753db5b6ff489a530248b8a3af9ae 100644 --- a/wiki/src/news/version_3.14.2.fa.po +++ b/wiki/src/news/version_3.14.2.fa.po @@ -123,7 +123,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.2.fr.po b/wiki/src/news/version_3.14.2.fr.po index 9debc1581ee7df42999a49ba97fe41c542cf811a..c4a85e0ee1b395275b6b2213c679694e08478e74 100644 --- a/wiki/src/news/version_3.14.2.fr.po +++ b/wiki/src/news/version_3.14.2.fr.po @@ -137,10 +137,10 @@ msgstr "Réinstallez votre clé USB en utilisant la même méthode d'installatio #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" "Démarrez Tails une première fois et [[définissez un mot de passe " -"d'administration|doc/first_steps/startup_options/administration_password]]." +"d'administration|doc/first_steps/welcome_screen/administration_password]]." #. type: Bullet: '1. ' msgid "" diff --git a/wiki/src/news/version_3.14.2.id.po b/wiki/src/news/version_3.14.2.id.po index 437622513f76b713b743d2ab604aed009fd939c6..5134558bb826898e3311618dcf669192b86694d1 100644 --- a/wiki/src/news/version_3.14.2.id.po +++ b/wiki/src/news/version_3.14.2.id.po @@ -118,7 +118,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.2.it.po b/wiki/src/news/version_3.14.2.it.po index c08d48cc922ce2cb7dfd28bd6fdaeb15f94ac3f4..f9fc362fd2e783eb43aa85d9704199a73c052c55 100644 --- a/wiki/src/news/version_3.14.2.it.po +++ b/wiki/src/news/version_3.14.2.it.po @@ -125,7 +125,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.2.mdwn b/wiki/src/news/version_3.14.2.mdwn index d6a3364e26961cc9d89dcad418f3b564a1f092b7..aba2cdfa3f89a782644f953dc29d4e9f576b4f61 100644 --- a/wiki/src/news/version_3.14.2.mdwn +++ b/wiki/src/news/version_3.14.2.mdwn @@ -41,7 +41,7 @@ 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]]. + password|doc/first_steps/welcome_screen/administration_password]]. 1. Choose <span class="menuchoice"> <span class="guimenu">Applications</span> ▸ diff --git a/wiki/src/news/version_3.14.2.pl.po b/wiki/src/news/version_3.14.2.pl.po index 0f7514058d41422781f8b188b107145922dc0a20..608feddb48a2331aa6349cce97aaaae054c92934 100644 --- a/wiki/src/news/version_3.14.2.pl.po +++ b/wiki/src/news/version_3.14.2.pl.po @@ -119,7 +119,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.2.pt.po b/wiki/src/news/version_3.14.2.pt.po index 5b45361eab324fcf1492609c3b1b0ba6ed84c152..413d7eebc8eb052d4ecc1e6248a69ebfe33f5c33 100644 --- a/wiki/src/news/version_3.14.2.pt.po +++ b/wiki/src/news/version_3.14.2.pt.po @@ -125,7 +125,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"password|doc/first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.2.ru.po b/wiki/src/news/version_3.14.2.ru.po index 70c7c31fd9d46b1d3f08deba0b384696e4e57e94..26ce363ab15d080f15ab7e7de673e2f28925f3f2 100644 --- a/wiki/src/news/version_3.14.2.ru.po +++ b/wiki/src/news/version_3.14.2.ru.po @@ -119,7 +119,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.2.sr_Latn.po b/wiki/src/news/version_3.14.2.sr_Latn.po index 9a1954b409bc332e47868a4ecfd2ffd86e56d5c5..02746ec40b2929e004b43c758c9fd38d31896062 100644 --- a/wiki/src/news/version_3.14.2.sr_Latn.po +++ b/wiki/src/news/version_3.14.2.sr_Latn.po @@ -119,7 +119,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.2.tr.po b/wiki/src/news/version_3.14.2.tr.po index 10e77dfb63a3d7159f80d1a42ad3e6082a700cc2..4a5db9c2a8855befb141c8285710c27d19810121 100644 --- a/wiki/src/news/version_3.14.2.tr.po +++ b/wiki/src/news/version_3.14.2.tr.po @@ -118,7 +118,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.2.zh.po b/wiki/src/news/version_3.14.2.zh.po index 1b7d339da10fdd76180a3fc0c03e2d7655ef2dec..fdcf3819421aacd98bd53f5ff331b9919cf71e4e 100644 --- a/wiki/src/news/version_3.14.2.zh.po +++ b/wiki/src/news/version_3.14.2.zh.po @@ -118,7 +118,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.2.zh_TW.po b/wiki/src/news/version_3.14.2.zh_TW.po index f9ecdca438885fa2b7fcba2a2c67e0ea499202d4..117410c703adaa4c5618792e385c30b9ec64200a 100644 --- a/wiki/src/news/version_3.14.2.zh_TW.po +++ b/wiki/src/news/version_3.14.2.zh_TW.po @@ -118,7 +118,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.ar.po b/wiki/src/news/version_3.14.ar.po index cdb9e12c26f8c1bb33fba05e4adced083b9fe84a..bbda7d13df312e587823d9abac86bacf1c88acff 100644 --- a/wiki/src/news/version_3.14.ar.po +++ b/wiki/src/news/version_3.14.ar.po @@ -215,7 +215,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.ca.po b/wiki/src/news/version_3.14.ca.po index b2284f030f8f587a7429c8caf1f7e1020788c6d5..ab706b53404213618845817fc24195a82af84039 100644 --- a/wiki/src/news/version_3.14.ca.po +++ b/wiki/src/news/version_3.14.ca.po @@ -214,7 +214,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.de.po b/wiki/src/news/version_3.14.de.po index 54c8480c41b4c2b78551880a3d4ca71e8bb0854e..25ffd22e169fb6251a6b2230dd6256830716f43d 100644 --- a/wiki/src/news/version_3.14.de.po +++ b/wiki/src/news/version_3.14.de.po @@ -216,7 +216,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.es.po b/wiki/src/news/version_3.14.es.po index 69d6ddb923c0b4dc09b18f56b009db27a73d8bbd..2d6ca163c218b344db1eec1af0ad5116050147a8 100644 --- a/wiki/src/news/version_3.14.es.po +++ b/wiki/src/news/version_3.14.es.po @@ -216,7 +216,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.fa.po b/wiki/src/news/version_3.14.fa.po index 0bc3955a6d294268fea75624644fd588bb35e610..37b3fdbd8287eb2b53a88de09b4127d49142656d 100644 --- a/wiki/src/news/version_3.14.fa.po +++ b/wiki/src/news/version_3.14.fa.po @@ -214,7 +214,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.fr.po b/wiki/src/news/version_3.14.fr.po index 57e346c6b23abf64b7c40c1aaa105cc0b085106d..12b6439907b616fd4bc34519d9499b3cec8162aa 100644 --- a/wiki/src/news/version_3.14.fr.po +++ b/wiki/src/news/version_3.14.fr.po @@ -265,10 +265,10 @@ msgstr "Réinstallez votre clé USB en utilisant la même méthode d'installatio #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" "Démarrez Tails une première fois et [[définissez un mot de passe " -"d'administration|doc/first_steps/startup_options/administration_password]]." +"d'administration|doc/first_steps/welcome_screen/administration_password]]." #. type: Bullet: '1. ' msgid "" diff --git a/wiki/src/news/version_3.14.id.po b/wiki/src/news/version_3.14.id.po index ea88242a0ef3dc48dff5fcd5997a0125db780625..ce1bdc46e905c01544b89ce50d68b2b236356ca9 100644 --- a/wiki/src/news/version_3.14.id.po +++ b/wiki/src/news/version_3.14.id.po @@ -214,7 +214,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.it.po b/wiki/src/news/version_3.14.it.po index 70a510facf6afde604cb7c82970d801588760fc3..ba71189167f1520f45a1074c49f08438c46c0cbd 100644 --- a/wiki/src/news/version_3.14.it.po +++ b/wiki/src/news/version_3.14.it.po @@ -216,7 +216,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.mdwn b/wiki/src/news/version_3.14.mdwn index f6b34584adc7e51a33abe14fa63bd104cca51f85..69916407ca45824bb3648c4b206b9ec5e1ee705e 100644 --- a/wiki/src/news/version_3.14.mdwn +++ b/wiki/src/news/version_3.14.mdwn @@ -92,7 +92,7 @@ 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]]. + password|doc/first_steps/welcome_screen/administration_password]]. 1. Choose <span class="menuchoice"> <span class="guimenu">Applications</span> ▸ diff --git a/wiki/src/news/version_3.14.pl.po b/wiki/src/news/version_3.14.pl.po index 46a3ad3ca7fe5788b786bb5a521a368263b50a11..e2279a0dd986adf81d3b69873572c1714c09aa67 100644 --- a/wiki/src/news/version_3.14.pl.po +++ b/wiki/src/news/version_3.14.pl.po @@ -215,7 +215,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.pt.po b/wiki/src/news/version_3.14.pt.po index 86713c372349a91940fd3e22f1df0b628166956f..d0d760c7b58ebf2a39f08404b88323e0f7c06b7b 100644 --- a/wiki/src/news/version_3.14.pt.po +++ b/wiki/src/news/version_3.14.pt.po @@ -216,7 +216,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.ru.po b/wiki/src/news/version_3.14.ru.po index 101981bd69fd02a2830bb4344708f547cae7f0a9..402c63dff51a13ef715a9dc1946b0f2f2982ede7 100644 --- a/wiki/src/news/version_3.14.ru.po +++ b/wiki/src/news/version_3.14.ru.po @@ -215,7 +215,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.sr_Latn.po b/wiki/src/news/version_3.14.sr_Latn.po index bfb486ef744818bac51278da391ce8b34495c0fc..af1f4b0267c259ea5dddabcca503a4f8aaad9be5 100644 --- a/wiki/src/news/version_3.14.sr_Latn.po +++ b/wiki/src/news/version_3.14.sr_Latn.po @@ -215,7 +215,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.tr.po b/wiki/src/news/version_3.14.tr.po index 1a420d3f0671c109448cc6e7961779d3a9275fa7..90208180c1d125377a09de01e9ef5b6f2d5d2511 100644 --- a/wiki/src/news/version_3.14.tr.po +++ b/wiki/src/news/version_3.14.tr.po @@ -214,7 +214,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.zh.po b/wiki/src/news/version_3.14.zh.po index 1cddb94c8094b107ee2c766da3c071cfd634cf82..80640a6f6aac43d21a8f850e790322c0eac14a72 100644 --- a/wiki/src/news/version_3.14.zh.po +++ b/wiki/src/news/version_3.14.zh.po @@ -214,7 +214,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.14.zh_TW.po b/wiki/src/news/version_3.14.zh_TW.po index 94da406d8c75a6a1b66bb9d36bd088a46ffce5c8..d801460baa316b5e82adf98cac542eb3b745a8bf 100644 --- a/wiki/src/news/version_3.14.zh_TW.po +++ b/wiki/src/news/version_3.14.zh_TW.po @@ -214,7 +214,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Start Tails for the first time and [[set up an administration password|doc/" -"first_steps/startup_options/administration_password]]." +"first_steps/welcome_screen/administration_password]]." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/news/version_3.5.ar.po b/wiki/src/news/version_3.5.ar.po index 19521cbe496a03e9105a8f2727c944085951182d..b3124ceb3cc6a1b8e10b82bfed88f00cf64a1930 100644 --- a/wiki/src/news/version_3.5.ar.po +++ b/wiki/src/news/version_3.5.ar.po @@ -64,7 +64,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Tor redesigned *Tor Launcher*, the application to configure a [[Tor bridge|" -"doc/first_steps/startup_options/bridge_mode]] or a local proxy." +"doc/first_steps/welcome_screen/bridge_mode]] or a local proxy." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.5.ca.po b/wiki/src/news/version_3.5.ca.po index 47237e5386b69cb127242cea67d40c76088e5afc..88e1776d887a31a030b87fa34a09f5fd7f0a0953 100644 --- a/wiki/src/news/version_3.5.ca.po +++ b/wiki/src/news/version_3.5.ca.po @@ -63,7 +63,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Tor redesigned *Tor Launcher*, the application to configure a [[Tor bridge|" -"doc/first_steps/startup_options/bridge_mode]] or a local proxy." +"doc/first_steps/welcome_screen/bridge_mode]] or a local proxy." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.5.de.po b/wiki/src/news/version_3.5.de.po index 7631631e44d483a754fd240cad443e9ec9f79785..08abad6803b154cd797289905533f464089c62b7 100644 --- a/wiki/src/news/version_3.5.de.po +++ b/wiki/src/news/version_3.5.de.po @@ -62,7 +62,7 @@ msgstr "Neue Funktionen" #. type: Bullet: '- ' msgid "" "Tor redesigned *Tor Launcher*, the application to configure a [[Tor bridge|" -"doc/first_steps/startup_options/bridge_mode]] or a local proxy." +"doc/first_steps/welcome_screen/bridge_mode]] or a local proxy." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.5.es.po b/wiki/src/news/version_3.5.es.po index 54017a08c5c6bc39eedee2e32cd01f92228f45d6..87b19e2cc08ee0d9e89120bcb0ae5904aacd175e 100644 --- a/wiki/src/news/version_3.5.es.po +++ b/wiki/src/news/version_3.5.es.po @@ -66,7 +66,7 @@ msgstr "Nuevas funcionalidades" #. type: Bullet: '- ' msgid "" "Tor redesigned *Tor Launcher*, the application to configure a [[Tor bridge|" -"doc/first_steps/startup_options/bridge_mode]] or a local proxy." +"doc/first_steps/welcome_screen/bridge_mode]] or a local proxy." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.5.fa.po b/wiki/src/news/version_3.5.fa.po index a477eee4035eb938b3fcc32cac27c8b888b1191a..1321456c3e2bb90eeb933dd7c31182d80a06463b 100644 --- a/wiki/src/news/version_3.5.fa.po +++ b/wiki/src/news/version_3.5.fa.po @@ -60,7 +60,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Tor redesigned *Tor Launcher*, the application to configure a [[Tor bridge|" -"doc/first_steps/startup_options/bridge_mode]] or a local proxy." +"doc/first_steps/welcome_screen/bridge_mode]] or a local proxy." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.5.fr.po b/wiki/src/news/version_3.5.fr.po index 93ae2db539093deca58a5ecab87f4b360d5b75cd..56d4614dbcda37a78f6811047c2ec8805a9893b8 100644 --- a/wiki/src/news/version_3.5.fr.po +++ b/wiki/src/news/version_3.5.fr.po @@ -66,10 +66,10 @@ msgstr "Nouvelles fonctionnalités" #. type: Bullet: '- ' msgid "" "Tor redesigned *Tor Launcher*, the application to configure a [[Tor bridge|" -"doc/first_steps/startup_options/bridge_mode]] or a local proxy." +"doc/first_steps/welcome_screen/bridge_mode]] or a local proxy." msgstr "" "Tor a remanié le *Tor Launcher*, l'application pour configurer un [[bridge " -"Tor|doc/first_steps/startup_options/bridge_mode]] ou un proxy local." +"Tor|doc/first_steps/welcome_screen/bridge_mode]] ou un proxy local." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.5.id.po b/wiki/src/news/version_3.5.id.po index 36896507dc2e973599e2e48af750502550b66d20..4f87ac7bc8f64d130becea44568e1c9dc393781d 100644 --- a/wiki/src/news/version_3.5.id.po +++ b/wiki/src/news/version_3.5.id.po @@ -63,7 +63,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Tor redesigned *Tor Launcher*, the application to configure a [[Tor bridge|" -"doc/first_steps/startup_options/bridge_mode]] or a local proxy." +"doc/first_steps/welcome_screen/bridge_mode]] or a local proxy." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.5.it.po b/wiki/src/news/version_3.5.it.po index 975f82dffe90e3867281eb1dcc9d5bc86bb5d94b..142a51436b3a28574e192851935abcd6f7a43786 100644 --- a/wiki/src/news/version_3.5.it.po +++ b/wiki/src/news/version_3.5.it.po @@ -62,7 +62,7 @@ msgstr "Nuove funzionalità" #. type: Bullet: '- ' msgid "" "Tor redesigned *Tor Launcher*, the application to configure a [[Tor bridge|" -"doc/first_steps/startup_options/bridge_mode]] or a local proxy." +"doc/first_steps/welcome_screen/bridge_mode]] or a local proxy." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.5.mdwn b/wiki/src/news/version_3.5.mdwn index 3a3c3d828a737a91bf5da1746af73b950959ecc0..fca5bf8b27013f9e6aa66926739f96d7e2ccb93a 100644 --- a/wiki/src/news/version_3.5.mdwn +++ b/wiki/src/news/version_3.5.mdwn @@ -14,7 +14,7 @@ upgrade as soon as possible. ## New features - Tor redesigned *Tor Launcher*, the application to configure a [[Tor - bridge|doc/first_steps/startup_options/bridge_mode]] or a local proxy. + bridge|doc/first_steps/welcome_screen/bridge_mode]] or a local proxy. [[!img tor-launcher.png link="no"]] diff --git a/wiki/src/news/version_3.5.pl.po b/wiki/src/news/version_3.5.pl.po index d677465edb7ace859713386855d79cd35f52a895..1d4567cd519317ccca006bc9452d3564eac5e67c 100644 --- a/wiki/src/news/version_3.5.pl.po +++ b/wiki/src/news/version_3.5.pl.po @@ -64,7 +64,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Tor redesigned *Tor Launcher*, the application to configure a [[Tor bridge|" -"doc/first_steps/startup_options/bridge_mode]] or a local proxy." +"doc/first_steps/welcome_screen/bridge_mode]] or a local proxy." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.5.pt.po b/wiki/src/news/version_3.5.pt.po index ced2f09ac379092b3ccdbf6e2b0c592a4296befa..26e16ea61d70028a3c48b6afaf285e1202893d52 100644 --- a/wiki/src/news/version_3.5.pt.po +++ b/wiki/src/news/version_3.5.pt.po @@ -64,7 +64,7 @@ msgstr "Novos recursos" #. type: Bullet: '- ' msgid "" "Tor redesigned *Tor Launcher*, the application to configure a [[Tor bridge|" -"doc/first_steps/startup_options/bridge_mode]] or a local proxy." +"doc/first_steps/welcome_screen/bridge_mode]] or a local proxy." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.5.ru.po b/wiki/src/news/version_3.5.ru.po index a58cf82b564fc05ad6253a48659a676829750bc1..aafb7bbef8eca725bc6b91bcc21f2142a00dd67c 100644 --- a/wiki/src/news/version_3.5.ru.po +++ b/wiki/src/news/version_3.5.ru.po @@ -64,7 +64,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Tor redesigned *Tor Launcher*, the application to configure a [[Tor bridge|" -"doc/first_steps/startup_options/bridge_mode]] or a local proxy." +"doc/first_steps/welcome_screen/bridge_mode]] or a local proxy." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.5.sr_Latn.po b/wiki/src/news/version_3.5.sr_Latn.po index 12fc171fa73fad41798e9246238c2e4fd0ed3079..239fbbc6b03d5596aced7d15db51984789f4394d 100644 --- a/wiki/src/news/version_3.5.sr_Latn.po +++ b/wiki/src/news/version_3.5.sr_Latn.po @@ -64,7 +64,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Tor redesigned *Tor Launcher*, the application to configure a [[Tor bridge|" -"doc/first_steps/startup_options/bridge_mode]] or a local proxy." +"doc/first_steps/welcome_screen/bridge_mode]] or a local proxy." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.5.tr.po b/wiki/src/news/version_3.5.tr.po index 63e1bee48ecf8cabe14611663db42e7ba0a80990..9f5e93498187767d063b9da624a9450895d3ef42 100644 --- a/wiki/src/news/version_3.5.tr.po +++ b/wiki/src/news/version_3.5.tr.po @@ -63,7 +63,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Tor redesigned *Tor Launcher*, the application to configure a [[Tor bridge|" -"doc/first_steps/startup_options/bridge_mode]] or a local proxy." +"doc/first_steps/welcome_screen/bridge_mode]] or a local proxy." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.5.zh.po b/wiki/src/news/version_3.5.zh.po index d412d5e3be04a44ef5cd1e6266e3e3edbea6e9f8..097a3cdc7202479561d52f32f1171e6422f9de72 100644 --- a/wiki/src/news/version_3.5.zh.po +++ b/wiki/src/news/version_3.5.zh.po @@ -63,7 +63,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Tor redesigned *Tor Launcher*, the application to configure a [[Tor bridge|" -"doc/first_steps/startup_options/bridge_mode]] or a local proxy." +"doc/first_steps/welcome_screen/bridge_mode]] or a local proxy." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.5.zh_TW.po b/wiki/src/news/version_3.5.zh_TW.po index 36e8bd789e12ac83ac5a3a378ca59e5376c71055..45654922882ed9bec1ca581cc563700c06306754 100644 --- a/wiki/src/news/version_3.5.zh_TW.po +++ b/wiki/src/news/version_3.5.zh_TW.po @@ -62,7 +62,7 @@ msgstr "新功能" #. type: Bullet: '- ' msgid "" "Tor redesigned *Tor Launcher*, the application to configure a [[Tor bridge|" -"doc/first_steps/startup_options/bridge_mode]] or a local proxy." +"doc/first_steps/welcome_screen/bridge_mode]] or a local proxy." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.6.ar.po b/wiki/src/news/version_3.6.ar.po index 6565d737eeec5a5fde1147fad577e8962754b4f7..5889a2aec92e34e8116275c36b32c3b66f72f883 100644 --- a/wiki/src/news/version_3.6.ar.po +++ b/wiki/src/news/version_3.6.ar.po @@ -75,7 +75,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"If you set up an [[administration password|doc/first_steps/startup_options/" +"If you set up an [[administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/news/version_3.6.ca.po b/wiki/src/news/version_3.6.ca.po index f017e84713708699e170a2d637455b6dac5cf479..79bf0d37ef31877d3de1d2a123c8ff8505ec0a13 100644 --- a/wiki/src/news/version_3.6.ca.po +++ b/wiki/src/news/version_3.6.ca.po @@ -74,7 +74,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"If you set up an [[administration password|doc/first_steps/startup_options/" +"If you set up an [[administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/news/version_3.6.de.po b/wiki/src/news/version_3.6.de.po index e98f8dfdf7ec6cc3f95c07870666a259378c8c82..eef975aace656ce734cdfbcedea7b7bfc7d2050f 100644 --- a/wiki/src/news/version_3.6.de.po +++ b/wiki/src/news/version_3.6.de.po @@ -73,7 +73,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"If you set up an [[administration password|doc/first_steps/startup_options/" +"If you set up an [[administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/news/version_3.6.es.po b/wiki/src/news/version_3.6.es.po index 4b3df56c57f792bc98a46d1e8525af9c2d0bf6ef..4807142908303aebbca13f4bfb9a9c233ee0e3b0 100644 --- a/wiki/src/news/version_3.6.es.po +++ b/wiki/src/news/version_3.6.es.po @@ -77,12 +77,12 @@ msgstr " [[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/sys #. type: Bullet: ' - ' msgid "" -"If you set up an [[administration password|doc/first_steps/startup_options/" +"If you set up an [[administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" "Si has configurado una [[contraseña de administración|doc/first_steps/" -"startup_options/administration_password]] al arrancar Tails, puedes " +"welcome_screen/administration_password]] al arrancar Tails, puedes " "desbloquear tu pantalla con la misma contraseña." #. type: Bullet: ' - ' diff --git a/wiki/src/news/version_3.6.fa.po b/wiki/src/news/version_3.6.fa.po index 089ecceceea4fb749109be06555a55609c3f8ad4..420c88744d3c4f752766fd8abdc47a4eb5130a8f 100644 --- a/wiki/src/news/version_3.6.fa.po +++ b/wiki/src/news/version_3.6.fa.po @@ -73,7 +73,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"If you set up an [[administration password|doc/first_steps/startup_options/" +"If you set up an [[administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/news/version_3.6.fr.po b/wiki/src/news/version_3.6.fr.po index 0ab70a327615bd83d2d3f19811ee44a5ddba9008..89e6d3a0dc6659fa8fe298dc7fe25850969a02c7 100644 --- a/wiki/src/news/version_3.6.fr.po +++ b/wiki/src/news/version_3.6.fr.po @@ -81,12 +81,12 @@ msgstr " [[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/sys #. type: Bullet: ' - ' msgid "" -"If you set up an [[administration password|doc/first_steps/startup_options/" +"If you set up an [[administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" "Si vous définissez un [[mot de passe d'administration|doc/first_steps/" -"startup_options/administration_password]] au démarrage de Tails, vous pouvez " +"welcome_screen/administration_password]] au démarrage de Tails, vous pouvez " "déverrouiller votre écran avec ce mot de passe." #. type: Bullet: ' - ' diff --git a/wiki/src/news/version_3.6.id.po b/wiki/src/news/version_3.6.id.po index 859461df5a348690b6851465569c6bd5fc584bb3..9ca7e6432adf356f6401ab6d9fffee37000fde8d 100644 --- a/wiki/src/news/version_3.6.id.po +++ b/wiki/src/news/version_3.6.id.po @@ -74,7 +74,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"If you set up an [[administration password|doc/first_steps/startup_options/" +"If you set up an [[administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/news/version_3.6.it.po b/wiki/src/news/version_3.6.it.po index f14ff4d5c4c4afaac53f12f8e28f29bfbf51750a..ebb480c00ed9ca40e4f7f5ee3ef01978952363d2 100644 --- a/wiki/src/news/version_3.6.it.po +++ b/wiki/src/news/version_3.6.it.po @@ -74,7 +74,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"If you set up an [[administration password|doc/first_steps/startup_options/" +"If you set up an [[administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/news/version_3.6.mdwn b/wiki/src/news/version_3.6.mdwn index cd9b310a1265e8147cad8ee937f3323cfe354888..51244d4cfd9098a28abb222f6e277539ea686e8e 100644 --- a/wiki/src/news/version_3.6.mdwn +++ b/wiki/src/news/version_3.6.mdwn @@ -19,7 +19,7 @@ upgrade as soon as possible. [[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/system.png link=no alt=""]] - - If you set up an [[administration password|doc/first_steps/startup_options/administration_password]] + - If you set up an [[administration password|doc/first_steps/welcome_screen/administration_password]] when starting Tails, you can unlock your screen with your administration password. diff --git a/wiki/src/news/version_3.6.pl.po b/wiki/src/news/version_3.6.pl.po index da0b26022de04a0b2879d6e3efd9ec679fc4d5fe..18a9f12046d9fb89732e261ad338e4801b7067f2 100644 --- a/wiki/src/news/version_3.6.pl.po +++ b/wiki/src/news/version_3.6.pl.po @@ -75,7 +75,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"If you set up an [[administration password|doc/first_steps/startup_options/" +"If you set up an [[administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/news/version_3.6.pt.po b/wiki/src/news/version_3.6.pt.po index db39a8572ca26240a1523d7b474cbdfec1a74771..73391d832cffd530537fc7dbdd46e5b0945f154d 100644 --- a/wiki/src/news/version_3.6.pt.po +++ b/wiki/src/news/version_3.6.pt.po @@ -87,11 +87,11 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"If you set up an [[administration password|doc/first_steps/startup_options/" +"If you set up an [[administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" -"Se você definir uma [[senha de administrador|doc/first_steps/startup_options/" +"Se você definir uma [[senha de administrador|doc/first_steps/welcome_screen/" "administration_password]] ao iniciar o Tails você poderá desbloquear a tela " "com sua senha de administrador." diff --git a/wiki/src/news/version_3.6.ru.po b/wiki/src/news/version_3.6.ru.po index 78ea888be5dfaa48e5ee890f6b630ab7251d6752..4b305f96f25ba1ec6a3fc5b35649186921a06b06 100644 --- a/wiki/src/news/version_3.6.ru.po +++ b/wiki/src/news/version_3.6.ru.po @@ -75,7 +75,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"If you set up an [[administration password|doc/first_steps/startup_options/" +"If you set up an [[administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/news/version_3.6.sr_Latn.po b/wiki/src/news/version_3.6.sr_Latn.po index bba81e16ca050e9ab41407558aeafe95cdcc25e6..9bdba7c5ad85268a0be737047bfa4b46d756d43e 100644 --- a/wiki/src/news/version_3.6.sr_Latn.po +++ b/wiki/src/news/version_3.6.sr_Latn.po @@ -75,7 +75,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"If you set up an [[administration password|doc/first_steps/startup_options/" +"If you set up an [[administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/news/version_3.6.tr.po b/wiki/src/news/version_3.6.tr.po index 530aa9adc304b904f645d869e665d7f457e8b7cb..32a7471d888c7ec80015cee6b3c3bb373d0e41a2 100644 --- a/wiki/src/news/version_3.6.tr.po +++ b/wiki/src/news/version_3.6.tr.po @@ -74,7 +74,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"If you set up an [[administration password|doc/first_steps/startup_options/" +"If you set up an [[administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/news/version_3.6.zh.po b/wiki/src/news/version_3.6.zh.po index ec38ff6d903e3be75f4e764320147886a9b7ceb5..02e912138b0a19e5ddfee776287297328925828e 100644 --- a/wiki/src/news/version_3.6.zh.po +++ b/wiki/src/news/version_3.6.zh.po @@ -74,7 +74,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"If you set up an [[administration password|doc/first_steps/startup_options/" +"If you set up an [[administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/news/version_3.6.zh_TW.po b/wiki/src/news/version_3.6.zh_TW.po index a129867bc5166b58723ebd9881b0c302b581a686..b45ad652d94a0226088284c5e20b93d138431ec2 100644 --- a/wiki/src/news/version_3.6.zh_TW.po +++ b/wiki/src/news/version_3.6.zh_TW.po @@ -73,7 +73,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"If you set up an [[administration password|doc/first_steps/startup_options/" +"If you set up an [[administration password|doc/first_steps/welcome_screen/" "administration_password]] when starting Tails, you can unlock your screen " "with your administration password." msgstr "" diff --git a/wiki/src/news/version_4.0.de.po b/wiki/src/news/version_4.0.de.po index 57959fcc9be2586a489166cac2bcae0caf864dc6..8b3c0e9dee775acfb2dcf50fcc00acde1046cdb5 100644 --- a/wiki/src/news/version_4.0.de.po +++ b/wiki/src/news/version_4.0.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-11-22 08:30+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -246,13 +246,13 @@ msgstr "" #. type: Title ## #, no-wrap -msgid "Usability improvements to *Tails Greeter*" +msgid "Usability improvements to the Welcome Screen" msgstr "" #. type: Plain text msgid "" -"We improved various aspects of the usability of *Tails Greeter*, especially " -"for non-English users:" +"We improved various aspects of the usability of the Welcome Screen, " +"especially for non-English users:" msgstr "" #. type: Bullet: '- ' @@ -376,8 +376,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Lesen Sie für mehr Details unser [[!tails_gitweb debian/changelog desc=\"" -"Änderungsprotokoll\"]]." +"Lesen Sie für mehr Details unser [[!tails_gitweb debian/changelog desc=" +"\"Änderungsprotokoll\"]]." #. type: Plain text msgid "" diff --git a/wiki/src/news/version_4.0.es.po b/wiki/src/news/version_4.0.es.po index 1bc5d4c4cda5759b7372e4f3aeb8e89aa83e494a..27f0ade32e0a48e4b371ac6fe4f90a9e898997d8 100644 --- a/wiki/src/news/version_4.0.es.po +++ b/wiki/src/news/version_4.0.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2019-11-14 18:20+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -246,13 +246,13 @@ msgstr "" #. type: Title ## #, no-wrap -msgid "Usability improvements to *Tails Greeter*" +msgid "Usability improvements to the Welcome Screen" msgstr "" #. type: Plain text msgid "" -"We improved various aspects of the usability of *Tails Greeter*, especially " -"for non-English users:" +"We improved various aspects of the usability of the Welcome Screen, " +"especially for non-English users:" msgstr "" #. type: Bullet: '- ' @@ -376,8 +376,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Para más detalles, lee nuestro [[!tails_gitweb debian/changelog desc=\"" -"changelog\"]]." +"Para más detalles, lee nuestro [[!tails_gitweb debian/changelog desc=" +"\"changelog\"]]." #. type: Plain text msgid "" diff --git a/wiki/src/news/version_4.0.fa.po b/wiki/src/news/version_4.0.fa.po index 95e114a135b2454b916f7c300863e936e5f19f8e..83794c9797d9f8aa78d3714c08bb83759668a110 100644 --- a/wiki/src/news/version_4.0.fa.po +++ b/wiki/src/news/version_4.0.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-01-22 14:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -246,13 +246,13 @@ msgstr "" #. type: Title ## #, no-wrap -msgid "Usability improvements to *Tails Greeter*" +msgid "Usability improvements to the Welcome Screen" msgstr "" #. type: Plain text msgid "" -"We improved various aspects of the usability of *Tails Greeter*, especially " -"for non-English users:" +"We improved various aspects of the usability of the Welcome Screen, " +"especially for non-English users:" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/news/version_4.0.fr.po b/wiki/src/news/version_4.0.fr.po index edb4d1767812b2dd7c4c5631276e2fe0a9aa77fd..6b60c80715fe787993eccd356bac6de91c4451b2 100644 --- a/wiki/src/news/version_4.0.fr.po +++ b/wiki/src/news/version_4.0.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-02-12 11:27+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -127,10 +127,8 @@ msgid "" " on the size of its window. Letter boxing replaces the yellow warning that\n" " was displayed until now when maximizing Tor Browser.\n" msgstr "" -" Le letter boxing empêche les sites web de vous identifier en se basant " -"sur la taille de leurs\n" -" fenêtres lors de votre navigation. Le letter boxing remplace " -"l'avertissement jaune qui\n" +" Le letter boxing empêche les sites web de vous identifier en se basant sur la taille de leurs\n" +" fenêtres lors de votre navigation. Le letter boxing remplace l'avertissement jaune qui\n" " était affiché jusqu'à présent lorsque le Navigateur Tor était maximisé.\n" #. type: Bullet: ' - ' @@ -263,13 +261,13 @@ msgstr "<a id=\"greeter\"></a>\n" #. type: Title ## #, no-wrap -msgid "Usability improvements to *Tails Greeter*" +msgid "Usability improvements to the Welcome Screen" msgstr "" #. type: Plain text msgid "" -"We improved various aspects of the usability of *Tails Greeter*, especially " -"for non-English users:" +"We improved various aspects of the usability of the Welcome Screen, " +"especially for non-English users:" msgstr "" #. type: Bullet: '- ' @@ -395,8 +393,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus de détails, lisez notre [[!tails_gitweb debian/changelog desc=\"" -"liste des changements\"]]." +"Pour plus de détails, lisez notre [[!tails_gitweb debian/changelog desc=" +"\"liste des changements\"]]." #. type: Plain text msgid "" diff --git a/wiki/src/news/version_4.0.it.po b/wiki/src/news/version_4.0.it.po index caf80cb6bd216d1ed2b6bf22b475a0b33a57b8b4..87a00d134975cb16efe424c2a2ec348c37013b04 100644 --- a/wiki/src/news/version_4.0.it.po +++ b/wiki/src/news/version_4.0.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-02-14 10:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -246,13 +246,13 @@ msgstr "" #. type: Title ## #, no-wrap -msgid "Usability improvements to *Tails Greeter*" +msgid "Usability improvements to the Welcome Screen" msgstr "" #. type: Plain text msgid "" -"We improved various aspects of the usability of *Tails Greeter*, especially " -"for non-English users:" +"We improved various aspects of the usability of the Welcome Screen, " +"especially for non-English users:" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/news/version_4.0.mdwn b/wiki/src/news/version_4.0.mdwn index 5d2154746d0fe864eeaa9a06699c7596ee6ed248..acbad1ce0de28a05405c23c164bd31f0eccd60e7 100644 --- a/wiki/src/news/version_4.0.mdwn +++ b/wiki/src/news/version_4.0.mdwn @@ -98,9 +98,9 @@ upgrade as soon as possible. <a id="greeter"></a> -## Usability improvements to *Tails Greeter* +## Usability improvements to the Welcome Screen -We improved various aspects of the usability of *Tails Greeter*, +We improved various aspects of the usability of the Welcome Screen, especially for non-English users: - To make it easier to select a language, we curated the list of diff --git a/wiki/src/news/version_4.0.pt.po b/wiki/src/news/version_4.0.pt.po index bcbdcbfcb9bae970cdac030a25d49398f1e26379..6ee2bd64e50190cfb0eecbd1dd5888f71aa50cb6 100644 --- a/wiki/src/news/version_4.0.pt.po +++ b/wiki/src/news/version_4.0.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-31 13:06+0000\n" +"POT-Creation-Date: 2020-03-25 05:24+0000\n" "PO-Revision-Date: 2020-03-20 07:37+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -246,13 +246,13 @@ msgstr "" #. type: Title ## #, no-wrap -msgid "Usability improvements to *Tails Greeter*" +msgid "Usability improvements to the Welcome Screen" msgstr "" #. type: Plain text msgid "" -"We improved various aspects of the usability of *Tails Greeter*, especially " -"for non-English users:" +"We improved various aspects of the usability of the Welcome Screen, " +"especially for non-English users:" msgstr "" #. type: Bullet: '- ' @@ -376,8 +376,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Para mais detalhes, leia nosso [[!tails_gitweb debian/changelog desc=\"" -"changelog\"]]." +"Para mais detalhes, leia nosso [[!tails_gitweb debian/changelog desc=" +"\"changelog\"]]." #. type: Plain text msgid "" diff --git a/wiki/src/news/version_4.1.ar.po b/wiki/src/news/version_4.1.ar.po index 559301228e821b4e533dddd2fa3a5ad2ba34e928..185b65a959104499f55f7a1c279329a8dc31ce4c 100644 --- a/wiki/src/news/version_4.1.ar.po +++ b/wiki/src/news/version_4.1.ar.po @@ -121,7 +121,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/news/version_4.1.ca.po b/wiki/src/news/version_4.1.ca.po index d1683ba60cd5f5ba2264c96df77dcecd5254becd..5c0c2ea5af38a07b1085db88192280692b6b1d08 100644 --- a/wiki/src/news/version_4.1.ca.po +++ b/wiki/src/news/version_4.1.ca.po @@ -120,7 +120,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/news/version_4.1.de.po b/wiki/src/news/version_4.1.de.po index 07677e7fc6d95afdd50646bd6bbb7a2d192e5be3..7d19eda3fe1aacc91c40c343b21df3fc6a91ec60 100644 --- a/wiki/src/news/version_4.1.de.po +++ b/wiki/src/news/version_4.1.de.po @@ -120,7 +120,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/news/version_4.1.es.po b/wiki/src/news/version_4.1.es.po index 819a48e7feaf72fb835396b7c04a59b5ce58c75d..c50973558975a08554ba2d8a351ed14676b98fae 100644 --- a/wiki/src/news/version_4.1.es.po +++ b/wiki/src/news/version_4.1.es.po @@ -120,7 +120,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/news/version_4.1.fa.po b/wiki/src/news/version_4.1.fa.po index ea91f6f38e92356186e58d9259e19c087bba74f4..eb7957daf0f2b39d15e7c26a980b7391e38b63a2 100644 --- a/wiki/src/news/version_4.1.fa.po +++ b/wiki/src/news/version_4.1.fa.po @@ -120,7 +120,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/news/version_4.1.fr.po b/wiki/src/news/version_4.1.fr.po index 0eb88873776205c1a0fce0973b3a499afd15bd02..80c87d55858d749f413fe2a30a699afad7d3c97a 100644 --- a/wiki/src/news/version_4.1.fr.po +++ b/wiki/src/news/version_4.1.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-02-09 15:36+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-03-31 09:35+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -59,9 +59,9 @@ msgid "" "zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " "default OpenPGP keyserver." msgstr "" -"Utilise <https://keys.openpgp.org/>, aussi disponible sur " -"<http://zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, " -"comme serveur de clés OpenPGP par défaut." +"Utilise <https://keys.openpgp.org/>, aussi disponible sur <http://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, comme " +"serveur de clés OpenPGP par défaut." #. type: Plain text #, no-wrap @@ -137,8 +137,9 @@ msgstr "" "Greeter*. ([[!tails_ticket 17177]])" #. type: Plain text -#, no-wrap -msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" #. type: Bullet: '- ' @@ -146,8 +147,8 @@ msgid "" "Fix the display of the troubleshooting error when GDM fails to start. ([[!" "tails_ticket 17200]])" msgstr "" -"Corrige l'affichage de l'erreur de dépannage lorsque GDM ne démarre pas. ([[" -"!tails_ticket 17200]])" +"Corrige l'affichage de l'erreur de dépannage lorsque GDM ne démarre pas. ([[!" +"tails_ticket 17200]])" #. type: Plain text #, no-wrap @@ -169,8 +170,8 @@ msgid "" "- Make the installation of additional software more reliable. ([[!" "tails_ticket 17203]])" msgstr "" -"- Rend l'installation des logiciels additionnels plus fiable. ([[" -"!tails_ticket 17203]])" +"- Rend l'installation des logiciels additionnels plus fiable. ([[!" +"tails_ticket 17203]])" #. type: Plain text msgid "" diff --git a/wiki/src/news/version_4.1.id.po b/wiki/src/news/version_4.1.id.po index 11397a86ec99bab8b5a7f6a80df291857f07dce6..24fe962c5789096409d4f4682aa90740ce856a1f 100644 --- a/wiki/src/news/version_4.1.id.po +++ b/wiki/src/news/version_4.1.id.po @@ -120,7 +120,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/news/version_4.1.it.po b/wiki/src/news/version_4.1.it.po index b8226057735acb2bd24f0135555b4fb35bd6c061..d480db6567a312ef77e92ac4862e24c6e80787c1 100644 --- a/wiki/src/news/version_4.1.it.po +++ b/wiki/src/news/version_4.1.it.po @@ -120,7 +120,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/news/version_4.1.mdwn b/wiki/src/news/version_4.1.mdwn index 40693ada3e26c41537a0d7ed96f74ae6cb4c3dad..3f21b41c436e2457c3730f36ccaf93d05c8ed3ba 100644 --- a/wiki/src/news/version_4.1.mdwn +++ b/wiki/src/news/version_4.1.mdwn @@ -43,7 +43,7 @@ vulnerabilities|security/Numerous_security_holes_in_4.0]]. You should upgrade as - Add back the **Show Passphrase** check box in *Tails Greeter*. ([[!tails_ticket 17177]]) - [[!img doc/first_steps/startup_options/persistence.png link="no" alt=""]] + [[!img doc/first_steps/welcome_screen/persistence.png link="no" alt=""]] - Fix the display of the troubleshooting error when GDM fails to start. ([[!tails_ticket 17200]]) diff --git a/wiki/src/news/version_4.1.pl.po b/wiki/src/news/version_4.1.pl.po index 91070edaff313cce50650bc7037726fca1e9b897..b16fa70c74a6b4f5bb748208426f0cc0c7505b6a 100644 --- a/wiki/src/news/version_4.1.pl.po +++ b/wiki/src/news/version_4.1.pl.po @@ -121,7 +121,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/news/version_4.1.pt.po b/wiki/src/news/version_4.1.pt.po index d712bb45f91c647198984084bddf989376321263..c76d7801c8580cf992946a414c7d4c81e3120efa 100644 --- a/wiki/src/news/version_4.1.pt.po +++ b/wiki/src/news/version_4.1.pt.po @@ -120,7 +120,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/news/version_4.1.ru.po b/wiki/src/news/version_4.1.ru.po index 34fc5da98b2006e86f4f52b64ebcb31a3472eb79..780150110c1339cc8e408e8f9240a7e97c4f3529 100644 --- a/wiki/src/news/version_4.1.ru.po +++ b/wiki/src/news/version_4.1.ru.po @@ -121,7 +121,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/news/version_4.1.sr_Latn.po b/wiki/src/news/version_4.1.sr_Latn.po index 44a4f1a1c969c113cc7238d62edbabd56604f88e..823d8b2711ba77dd6c9418004c3c667c16aadb77 100644 --- a/wiki/src/news/version_4.1.sr_Latn.po +++ b/wiki/src/news/version_4.1.sr_Latn.po @@ -121,7 +121,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/news/version_4.1.tr.po b/wiki/src/news/version_4.1.tr.po index a1757ac32def5886c47d153b13055a7a4058e239..77b945f9410d00776226c6fca380beeec0afa7c3 100644 --- a/wiki/src/news/version_4.1.tr.po +++ b/wiki/src/news/version_4.1.tr.po @@ -120,7 +120,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/news/version_4.1.zh.po b/wiki/src/news/version_4.1.zh.po index db6902daf44f86bad53a6fedfcdba8d51b835b1b..0c7dbf83188d5a7f3ba90a6050ca8d03dec58cc4 100644 --- a/wiki/src/news/version_4.1.zh.po +++ b/wiki/src/news/version_4.1.zh.po @@ -120,7 +120,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/news/version_4.1.zh_TW.po b/wiki/src/news/version_4.1.zh_TW.po index ed0808b76a5b3a823e0bee281db1eb1966c22f6d..955f169e3b171c499255b8192717574ac5eb9f15 100644 --- a/wiki/src/news/version_4.1.zh_TW.po +++ b/wiki/src/news/version_4.1.zh_TW.po @@ -120,7 +120,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/news/version_4.5.de.po b/wiki/src/news/version_4.5.de.po new file mode 100644 index 0000000000000000000000000000000000000000..445e4f161854359b0750d293682bc0887df9b3af --- /dev/null +++ b/wiki/src/news/version_4.5.de.po @@ -0,0 +1,208 @@ +# 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: 2020-04-07 17:09+0200\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 title=\"Tails 4.5 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Apr 2020 12:34:56 +0000\"]]\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 fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_4.4.1]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=2]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Secure Boot" +msgstr "" + +#. type: Plain text +msgid "Tails now starts on computers with Secure Boot enabled." +msgstr "" + +#. type: Plain text +msgid "If your Mac displays the following error:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<pre>Security settings do not allow this Mac to use an external startup disk.</pre>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>Then you have to [[change the settings of the <em>Startup Security\n" +"Utility</em>|install/mac/usb#startup-security]] of your Mac to authorize\n" +"starting from Tails.</p>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and updates" +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Tor Browser* to [9.0.9](https://blog.torproject.org/new-release-" +"tor-browser-909)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This update fixes several [[!mfsa 2020-13 desc=\"vulnerabilities\"]] in\n" +" *Firefox*, including [[!mfsa 2020-11 desc=\"some critical ones\"]].\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Mozilla is aware of targeted attacks in the wild abusing this\n" +" vulnerability.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Plain text +msgid "None specific to this release." +msgstr "" + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.5" +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 Tails 4.2 or later to 4.5." +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|doc/upgrade/#manual]]." +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 download " +"Tails 4.5 directly:" +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 4.6 is [[scheduled|contribute/calendar]] for May 5." +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=4.5\">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_4.5.es.po b/wiki/src/news/version_4.5.es.po new file mode 100644 index 0000000000000000000000000000000000000000..445e4f161854359b0750d293682bc0887df9b3af --- /dev/null +++ b/wiki/src/news/version_4.5.es.po @@ -0,0 +1,208 @@ +# 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: 2020-04-07 17:09+0200\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 title=\"Tails 4.5 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Apr 2020 12:34:56 +0000\"]]\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 fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_4.4.1]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=2]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Secure Boot" +msgstr "" + +#. type: Plain text +msgid "Tails now starts on computers with Secure Boot enabled." +msgstr "" + +#. type: Plain text +msgid "If your Mac displays the following error:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<pre>Security settings do not allow this Mac to use an external startup disk.</pre>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>Then you have to [[change the settings of the <em>Startup Security\n" +"Utility</em>|install/mac/usb#startup-security]] of your Mac to authorize\n" +"starting from Tails.</p>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and updates" +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Tor Browser* to [9.0.9](https://blog.torproject.org/new-release-" +"tor-browser-909)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This update fixes several [[!mfsa 2020-13 desc=\"vulnerabilities\"]] in\n" +" *Firefox*, including [[!mfsa 2020-11 desc=\"some critical ones\"]].\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Mozilla is aware of targeted attacks in the wild abusing this\n" +" vulnerability.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Plain text +msgid "None specific to this release." +msgstr "" + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.5" +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 Tails 4.2 or later to 4.5." +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|doc/upgrade/#manual]]." +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 download " +"Tails 4.5 directly:" +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 4.6 is [[scheduled|contribute/calendar]] for May 5." +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=4.5\">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_4.5.fa.po b/wiki/src/news/version_4.5.fa.po new file mode 100644 index 0000000000000000000000000000000000000000..445e4f161854359b0750d293682bc0887df9b3af --- /dev/null +++ b/wiki/src/news/version_4.5.fa.po @@ -0,0 +1,208 @@ +# 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: 2020-04-07 17:09+0200\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 title=\"Tails 4.5 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Apr 2020 12:34:56 +0000\"]]\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 fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_4.4.1]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=2]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Secure Boot" +msgstr "" + +#. type: Plain text +msgid "Tails now starts on computers with Secure Boot enabled." +msgstr "" + +#. type: Plain text +msgid "If your Mac displays the following error:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<pre>Security settings do not allow this Mac to use an external startup disk.</pre>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>Then you have to [[change the settings of the <em>Startup Security\n" +"Utility</em>|install/mac/usb#startup-security]] of your Mac to authorize\n" +"starting from Tails.</p>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and updates" +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Tor Browser* to [9.0.9](https://blog.torproject.org/new-release-" +"tor-browser-909)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This update fixes several [[!mfsa 2020-13 desc=\"vulnerabilities\"]] in\n" +" *Firefox*, including [[!mfsa 2020-11 desc=\"some critical ones\"]].\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Mozilla is aware of targeted attacks in the wild abusing this\n" +" vulnerability.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Plain text +msgid "None specific to this release." +msgstr "" + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.5" +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 Tails 4.2 or later to 4.5." +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|doc/upgrade/#manual]]." +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 download " +"Tails 4.5 directly:" +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 4.6 is [[scheduled|contribute/calendar]] for May 5." +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=4.5\">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_4.5.fr.po b/wiki/src/news/version_4.5.fr.po new file mode 100644 index 0000000000000000000000000000000000000000..445e4f161854359b0750d293682bc0887df9b3af --- /dev/null +++ b/wiki/src/news/version_4.5.fr.po @@ -0,0 +1,208 @@ +# 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: 2020-04-07 17:09+0200\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 title=\"Tails 4.5 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Apr 2020 12:34:56 +0000\"]]\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 fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_4.4.1]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=2]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Secure Boot" +msgstr "" + +#. type: Plain text +msgid "Tails now starts on computers with Secure Boot enabled." +msgstr "" + +#. type: Plain text +msgid "If your Mac displays the following error:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<pre>Security settings do not allow this Mac to use an external startup disk.</pre>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>Then you have to [[change the settings of the <em>Startup Security\n" +"Utility</em>|install/mac/usb#startup-security]] of your Mac to authorize\n" +"starting from Tails.</p>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and updates" +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Tor Browser* to [9.0.9](https://blog.torproject.org/new-release-" +"tor-browser-909)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This update fixes several [[!mfsa 2020-13 desc=\"vulnerabilities\"]] in\n" +" *Firefox*, including [[!mfsa 2020-11 desc=\"some critical ones\"]].\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Mozilla is aware of targeted attacks in the wild abusing this\n" +" vulnerability.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Plain text +msgid "None specific to this release." +msgstr "" + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.5" +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 Tails 4.2 or later to 4.5." +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|doc/upgrade/#manual]]." +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 download " +"Tails 4.5 directly:" +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 4.6 is [[scheduled|contribute/calendar]] for May 5." +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=4.5\">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_4.5.it.po b/wiki/src/news/version_4.5.it.po new file mode 100644 index 0000000000000000000000000000000000000000..445e4f161854359b0750d293682bc0887df9b3af --- /dev/null +++ b/wiki/src/news/version_4.5.it.po @@ -0,0 +1,208 @@ +# 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: 2020-04-07 17:09+0200\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 title=\"Tails 4.5 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Apr 2020 12:34:56 +0000\"]]\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 fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_4.4.1]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=2]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Secure Boot" +msgstr "" + +#. type: Plain text +msgid "Tails now starts on computers with Secure Boot enabled." +msgstr "" + +#. type: Plain text +msgid "If your Mac displays the following error:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<pre>Security settings do not allow this Mac to use an external startup disk.</pre>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>Then you have to [[change the settings of the <em>Startup Security\n" +"Utility</em>|install/mac/usb#startup-security]] of your Mac to authorize\n" +"starting from Tails.</p>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and updates" +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Tor Browser* to [9.0.9](https://blog.torproject.org/new-release-" +"tor-browser-909)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This update fixes several [[!mfsa 2020-13 desc=\"vulnerabilities\"]] in\n" +" *Firefox*, including [[!mfsa 2020-11 desc=\"some critical ones\"]].\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Mozilla is aware of targeted attacks in the wild abusing this\n" +" vulnerability.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Plain text +msgid "None specific to this release." +msgstr "" + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.5" +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 Tails 4.2 or later to 4.5." +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|doc/upgrade/#manual]]." +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 download " +"Tails 4.5 directly:" +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 4.6 is [[scheduled|contribute/calendar]] for May 5." +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=4.5\">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_4.5.mdwn b/wiki/src/news/version_4.5.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..12b4dde0f46a1e2a4f4c8207302cb79831a3c501 --- /dev/null +++ b/wiki/src/news/version_4.5.mdwn @@ -0,0 +1,78 @@ +[[!meta title="Tails 4.5 is out"]] +[[!meta date="Tue, 07 Apr 2020 12:34:56 +0000"]] +[[!pagetemplate template="news.tmpl"]] +[[!tag announce]] + +This release fixes [[many security +vulnerabilities|security/Numerous_security_holes_in_4.4.1]]. You should upgrade as soon as possible. + +[[!toc levels=2]] + +# New features + +## Secure Boot + +Tails now starts on computers with Secure Boot enabled. + +If your Mac displays the following error: + +<pre>Security settings do not allow this Mac to use an external startup disk.</pre> + +<p>Then you have to [[change the settings of the <em>Startup Security +Utility</em>|install/mac/usb#startup-security]] of your Mac to authorize +starting from Tails.</p> + +# Changes and updates + +- Update *Tor Browser* to [9.0.9](https://blog.torproject.org/new-release-tor-browser-909). + + This update fixes several [[!mfsa 2020-13 desc="vulnerabilities"]] in + *Firefox*, including [[!mfsa 2020-11 desc="some critical ones"]]. + + Mozilla is aware of targeted attacks in the wild abusing this + vulnerability. + +<a id="known-issues"></a> + +# Known issues + +None specific to this release. + +See the list of [[long-standing issues|support/known_issues]]. + +# Get Tails 4.5 + +## To upgrade your Tails USB stick and keep your persistent storage + +- Automatic upgrades are available from Tails 4.2 or later to 4.5. + +- If you cannot do an automatic upgrade or if Tails fails to start after an + automatic upgrade, please try to do a [[manual upgrade|doc/upgrade/#manual]]. + +## 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 download +Tails 4.5 directly: + + - [[For USB sticks (USB image)|install/download]] + - [[For DVDs and virtual machines (ISO image)|install/download-iso]] + +# What's coming up? + +Tails 4.6 is [[scheduled|contribute/calendar]] for May 5. + +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=4.5">donating</a> is only one of +them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/version_4.5.pt.po b/wiki/src/news/version_4.5.pt.po new file mode 100644 index 0000000000000000000000000000000000000000..445e4f161854359b0750d293682bc0887df9b3af --- /dev/null +++ b/wiki/src/news/version_4.5.pt.po @@ -0,0 +1,208 @@ +# 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: 2020-04-07 17:09+0200\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 title=\"Tails 4.5 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Apr 2020 12:34:56 +0000\"]]\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 fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_4.4.1]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=2]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Secure Boot" +msgstr "" + +#. type: Plain text +msgid "Tails now starts on computers with Secure Boot enabled." +msgstr "" + +#. type: Plain text +msgid "If your Mac displays the following error:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<pre>Security settings do not allow this Mac to use an external startup disk.</pre>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>Then you have to [[change the settings of the <em>Startup Security\n" +"Utility</em>|install/mac/usb#startup-security]] of your Mac to authorize\n" +"starting from Tails.</p>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and updates" +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Tor Browser* to [9.0.9](https://blog.torproject.org/new-release-" +"tor-browser-909)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This update fixes several [[!mfsa 2020-13 desc=\"vulnerabilities\"]] in\n" +" *Firefox*, including [[!mfsa 2020-11 desc=\"some critical ones\"]].\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Mozilla is aware of targeted attacks in the wild abusing this\n" +" vulnerability.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: Plain text +msgid "None specific to this release." +msgstr "" + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.5" +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 Tails 4.2 or later to 4.5." +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|doc/upgrade/#manual]]." +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 download " +"Tails 4.5 directly:" +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 4.6 is [[scheduled|contribute/calendar]] for May 5." +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=4.5\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/windows_camouflage_jessie.fa.po b/wiki/src/news/windows_camouflage_jessie.fa.po index 48cf7f4f045fd45010a36f62be811e25e3aa4053..589706443e857fa5d048bca6aa40954115d8a023 100644 --- a/wiki/src/news/windows_camouflage_jessie.fa.po +++ b/wiki/src/news/windows_camouflage_jessie.fa.po @@ -66,7 +66,7 @@ msgstr "استتار ویندوزی چیست؟" #| "Tails documentation reads \"if you are using a computer in public you may " #| "want to avoid attracting unwanted attention by changing the way Tails " #| "looks into something that resembles Microsoft Windows 8.\" This is what " -#| "we call the \"[[Windows camouflage|doc/first_steps/startup_options/" +#| "we call the \"[[Windows camouflage|doc/first_steps/welcome_screen/" #| "windows_camouflage]]\"." msgid "" "Tails documentation reads \"if you are using a computer in public you may " @@ -77,7 +77,7 @@ msgstr "" "در مستندات تیلز آمده «اگر در محیطی عمومی از یک رایانه استفاده میکنید " "میتوانید با تغییر ظاهر تیلز به چیزی مشابه ویندوز ۸ از جلب توجه ناخواسته " "جلوگیری کنید.» ما به این میگوییم «[[استتار ویندوزی|doc/first_steps/" -"startup_options/windows_camouflage]]»." +"welcome_screen/windows_camouflage]]»." #. type: Title # #, no-wrap diff --git a/wiki/src/security/Numerous_security_holes_in_4.4.1.mdwn b/wiki/src/security/Numerous_security_holes_in_4.4.1.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..efee0b20e66fd50d66d6373e124b89226288408f --- /dev/null +++ b/wiki/src/security/Numerous_security_holes_in_4.4.1.mdwn @@ -0,0 +1,12 @@ +[[!meta date="Sun, 05 Apr 2020 15:15:15 +0000"]] +[[!meta title="Numerous security holes in Tails 4.4.1"]] + +[[!tag security/fixed]] + +[[Tails_4.5|news/version_4.5]] fixes many security issues that affect +Tails 4.4.1. You should [[upgrade to Tails 4.5|news/version_4.5]] as +soon as possible. + + - Tor Browser: [[!mfsa 2020-11]], [[!mfsa 2020-13]] + - BlueZ: [[!debsa2020 4647]] + - GnuTLS: [[!debsa2020 4652]] diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.ar.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.ar.po index c60474b2f0b0a91c0c9fdba8ead254f07ccff1c3..729b51de6883840b797c10ce1e9564d495dcfb74 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.ar.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.ar.po @@ -120,7 +120,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set an administration password|doc/first_steps/startup_options/" +"[[Set an administration password|doc/first_steps/welcome_screen/" "administration_password]]." msgstr "" diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.ca.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.ca.po index 22f7a94cd41ff3d460c544ddf500f1e3d1fa5662..e1d5b1fa6069133d3575385fdb2d27a56a5442cb 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.ca.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.ca.po @@ -118,7 +118,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set an administration password|doc/first_steps/startup_options/" +"[[Set an administration password|doc/first_steps/welcome_screen/" "administration_password]]." msgstr "" diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.de.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.de.po index 3803f432b7731cfac36eb56ebc60c6f9dd219a44..28f6e8245552180b65cc275cc51952d7da07f756 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.de.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.de.po @@ -118,7 +118,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set an administration password|doc/first_steps/startup_options/" +"[[Set an administration password|doc/first_steps/welcome_screen/" "administration_password]]." msgstr "" diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.es.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.es.po index cbdaab3d2762a52d0f6118719764264a207e4560..6412d9acacd591497c1529f323300211effa34a1 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.es.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.es.po @@ -117,7 +117,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set an administration password|doc/first_steps/startup_options/" +"[[Set an administration password|doc/first_steps/welcome_screen/" "administration_password]]." msgstr "" diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.fa.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.fa.po index 69a7312c16aa1ff2036a5e9541b2081c64019724..1aef47af12abc0339a11a334755fe46102fef801 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.fa.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.fa.po @@ -140,10 +140,10 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set an administration password|doc/first_steps/startup_options/" +"[[Set an administration password|doc/first_steps/welcome_screen/" "administration_password]]." msgstr "" -"[[یک گذرواژهٔ مدیریتی بسازید|doc/first_steps/startup_options/" +"[[یک گذرواژهٔ مدیریتی بسازید|doc/first_steps/welcome_screen/" "administration_password]]." #. type: Bullet: '1. ' diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.fr.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.fr.po index e528559b03932eca24f226b715eadb2fb248ff6e..509dc636869e09cb0bfd787013f8731167cb1b7b 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.fr.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.fr.po @@ -119,7 +119,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set an administration password|doc/first_steps/startup_options/" +"[[Set an administration password|doc/first_steps/welcome_screen/" "administration_password]]." msgstr "" diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.id.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.id.po index 1e3d7b0694d86e95e604194dd6aa43f143df920a..c7859c82bbcd44d1dd6fc088565aef8db142dab9 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.id.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.id.po @@ -118,7 +118,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set an administration password|doc/first_steps/startup_options/" +"[[Set an administration password|doc/first_steps/welcome_screen/" "administration_password]]." msgstr "" diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.it.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.it.po index 80c044174af33556a4fde88c1ef638701e219a18..9259258be36a35db948cf605e6ebecda497558bd 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.it.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.it.po @@ -117,7 +117,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set an administration password|doc/first_steps/startup_options/" +"[[Set an administration password|doc/first_steps/welcome_screen/" "administration_password]]." msgstr "" diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.mdwn b/wiki/src/security/Security_hole_in_I2P_0.9.13.mdwn index b6ce85d459c9b323f3a422dffb56c62bf1e7c735..a4a0e959b18f5d8bd9a1a49f43b69fb697e68d9c 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.mdwn +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.mdwn @@ -49,7 +49,7 @@ Do not start I2P in Tails 1.1 and earlier. You can protect yourself further by removing the `i2p` package every time you start Tails: 1. [[Set an administration - password|doc/first_steps/startup_options/administration_password]]. + password|doc/first_steps/welcome_screen/administration_password]]. 1. Run this command in a <span class="application">Root Terminal</span>: diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.pl.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.pl.po index e1f50ebfe5b4129a76a18a6b8d9698e9a01ef200..3893a3970bdb56564662a59153131dae3f50c612 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.pl.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.pl.po @@ -119,7 +119,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set an administration password|doc/first_steps/startup_options/" +"[[Set an administration password|doc/first_steps/welcome_screen/" "administration_password]]." msgstr "" diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.pt.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.pt.po index ce50ea895dcf76a7a884f351a0d22e6fa34068bb..2d66e1954aa9fe25f8402cb9031b145c941282dc 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.pt.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.pt.po @@ -119,7 +119,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set an administration password|doc/first_steps/startup_options/" +"[[Set an administration password|doc/first_steps/welcome_screen/" "administration_password]]." msgstr "" diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.ru.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.ru.po index ba84b55866c8e398356beaca8fbe05dd3c8fc826..085f22188044c98f262171ed7db61bbb91167294 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.ru.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.ru.po @@ -119,7 +119,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set an administration password|doc/first_steps/startup_options/" +"[[Set an administration password|doc/first_steps/welcome_screen/" "administration_password]]." msgstr "" diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.sr_Latn.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.sr_Latn.po index 5c7c7335adc226ef1b48b0f5f13241ea6a3813cb..3c13421d0b92c5aa1fa99d20974e3f11e8d5eb68 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.sr_Latn.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.sr_Latn.po @@ -119,7 +119,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set an administration password|doc/first_steps/startup_options/" +"[[Set an administration password|doc/first_steps/welcome_screen/" "administration_password]]." msgstr "" diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.tr.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.tr.po index 17b0dbfe3132b2b8b6d41cea71f95249f056e5cd..67250f79ff15bc8763af417fa9ff37b47322470e 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.tr.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.tr.po @@ -118,7 +118,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set an administration password|doc/first_steps/startup_options/" +"[[Set an administration password|doc/first_steps/welcome_screen/" "administration_password]]." msgstr "" diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.zh.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.zh.po index 123be04dff52eea48dbd47f72b484ea4a9975e39..1d67ad01c9b44ee879eb1bf69602c133ce5e6da4 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.zh.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.zh.po @@ -118,7 +118,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set an administration password|doc/first_steps/startup_options/" +"[[Set an administration password|doc/first_steps/welcome_screen/" "administration_password]]." msgstr "" diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.zh_TW.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.zh_TW.po index 6353888c47e81447f6ac8288dd216c0bd1995c0c..a942c84bdc1c65fe8ba9045352f7b370cfe6c6d7 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.zh_TW.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.zh_TW.po @@ -118,7 +118,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[[Set an administration password|doc/first_steps/startup_options/" +"[[Set an administration password|doc/first_steps/welcome_screen/" "administration_password]]." msgstr "" diff --git a/wiki/src/support/faq.ar.po b/wiki/src/support/faq.ar.po index cb5b6468fd2885bf8b76f989c72838490f54dc97..17eb5a014e625689ebadf49ac41c238933b15ab6 100644 --- a/wiki/src/support/faq.ar.po +++ b/wiki/src/support/faq.ar.po @@ -809,7 +809,7 @@ msgstr "" #. type: Plain text msgid "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] can also be " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] can also be " "useful to bypass the limitations imposed by your ISP." msgstr "" diff --git a/wiki/src/support/faq.ca.po b/wiki/src/support/faq.ca.po index 515b876c4ad3a7b7441db350f6896e999e218787..66a7fe870501c38ecbaee10bc904c72c2ee623a1 100644 --- a/wiki/src/support/faq.ca.po +++ b/wiki/src/support/faq.ca.po @@ -807,7 +807,7 @@ msgstr "" #. type: Plain text msgid "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] can also be " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] can also be " "useful to bypass the limitations imposed by your ISP." msgstr "" diff --git a/wiki/src/support/faq.de.po b/wiki/src/support/faq.de.po index 15a718aba1b36e69f0b0df70c8a74d3a73f11666..43ab55bbd9e283096f57c0843b737fc6feee5690 100644 --- a/wiki/src/support/faq.de.po +++ b/wiki/src/support/faq.de.po @@ -817,7 +817,7 @@ msgstr "" #. type: Plain text msgid "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] can also be " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] can also be " "useful to bypass the limitations imposed by your ISP." msgstr "" diff --git a/wiki/src/support/faq.es.po b/wiki/src/support/faq.es.po index 34162d5fda14f6edd4e477ac8845c05f3e32f702..aaec86e84ecff3035c4c42ca12cd2a5149a6c4b2 100644 --- a/wiki/src/support/faq.es.po +++ b/wiki/src/support/faq.es.po @@ -1018,10 +1018,10 @@ msgstr "" #. type: Plain text msgid "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] can also be " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] can also be " "useful to bypass the limitations imposed by your ISP." msgstr "" -"[[Los puentes (bridges) de Tor|doc/first_steps/startup_options/bridge_mode]] " +"[[Los puentes (bridges) de Tor|doc/first_steps/welcome_screen/bridge_mode]] " "pueden ser útiles para superar las limitaciones impuestas por tu proveedor " "de Internet." diff --git a/wiki/src/support/faq.fa.po b/wiki/src/support/faq.fa.po index af03b373efd80df2b2db994855957733c576700e..708a26cafeb36b92039cb1dd13574cdb6af0dcb2 100644 --- a/wiki/src/support/faq.fa.po +++ b/wiki/src/support/faq.fa.po @@ -1051,10 +1051,10 @@ msgstr "" #. type: Plain text msgid "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] can also be " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] can also be " "useful to bypass the limitations imposed by your ISP." msgstr "" -"[[پلهای تور|doc/first_steps/startup_options/bridge_mode]] نیز میتوانند برای " +"[[پلهای تور|doc/first_steps/welcome_screen/bridge_mode]] نیز میتوانند برای " "عبور از محدودیتهای ارایهدهندهٔ خدمات اینترنتیتان سودمند باشند." #. type: Plain text diff --git a/wiki/src/support/faq.fr.po b/wiki/src/support/faq.fr.po index 4e20ca5b33fbbe73a1dbd767c97efaf273817756..f5b104b47a93a912a1662bc1d184f58fc9229304 100644 --- a/wiki/src/support/faq.fr.po +++ b/wiki/src/support/faq.fr.po @@ -1027,10 +1027,10 @@ msgstr "" #. type: Plain text msgid "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] can also be " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] can also be " "useful to bypass the limitations imposed by your ISP." msgstr "" -"[[Les bridges Tor|doc/first_steps/startup_options/bridge_mode]] peuvent " +"[[Les bridges Tor|doc/first_steps/welcome_screen/bridge_mode]] peuvent " "également être utiles pour contourner les limitations imposées par votre FAI." #. type: Plain text @@ -1975,11 +1975,11 @@ msgstr "" #~ msgstr "Tails change-t-il l'adresse MAC de mes interfaces réseau ?\n" #~ msgid "" -#~ "Starting from Tails 0.23, [[MAC spoofing|doc/first_steps/startup_options/" +#~ "Starting from Tails 0.23, [[MAC spoofing|doc/first_steps/welcome_screen/" #~ "mac_spoofing]] is enabled by default on all interfaces." #~ msgstr "" #~ "Depuis Tails 0.23, [[l'usurpation d'adresse MAC|doc/first_steps/" -#~ "startup_options/mac_spoofing]] est activée par défaut pour toutes les " +#~ "welcome_screen/mac_spoofing]] est activée par défaut pour toutes les " #~ "interfaces." #~ msgid "" diff --git a/wiki/src/support/faq.id.po b/wiki/src/support/faq.id.po index 6ff4a3ef33516e4c47fc901c5633034e81fedac9..3b4f4e54e192c4a32cd4f6206a63a8999e44b8c1 100644 --- a/wiki/src/support/faq.id.po +++ b/wiki/src/support/faq.id.po @@ -807,7 +807,7 @@ msgstr "" #. type: Plain text msgid "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] can also be " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] can also be " "useful to bypass the limitations imposed by your ISP." msgstr "" diff --git a/wiki/src/support/faq.it.po b/wiki/src/support/faq.it.po index 028a6ad550292f4999853e26c59799a559cf1eef..2051350eb6428a9c142b7a25a11efef4893fbe1a 100644 --- a/wiki/src/support/faq.it.po +++ b/wiki/src/support/faq.it.po @@ -987,10 +987,10 @@ msgstr "" #. type: Plain text msgid "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] can also be " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] can also be " "useful to bypass the limitations imposed by your ISP." msgstr "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] può anche essere " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] può anche essere " "utile per ignorare le limitazioni imposte dal tuo ISP." #. type: Plain text diff --git a/wiki/src/support/faq.mdwn b/wiki/src/support/faq.mdwn index d9cda86fe6ad228784661a3e5c53d4e469c48990..122258133b1fbb44af47632dea33f9c4d50ced44 100644 --- a/wiki/src/support/faq.mdwn +++ b/wiki/src/support/faq.mdwn @@ -396,7 +396,7 @@ In some situations, you might be forced to use a VPN to connect to the Internet, for example by your ISP. This is currently not possible using Tails. See [[!tails_ticket 5858]]. -[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] can also be useful +[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] can also be useful to bypass the limitations imposed by your ISP. ### Connecting to a VPN using Tor (VPN after Tor) diff --git a/wiki/src/support/faq.pl.po b/wiki/src/support/faq.pl.po index 714e714f42d9716b36680b30dd205f344f9332a9..b81c6073ab891247be145918dc89e6f3d07ccc79 100644 --- a/wiki/src/support/faq.pl.po +++ b/wiki/src/support/faq.pl.po @@ -808,7 +808,7 @@ msgstr "" #. type: Plain text msgid "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] can also be " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] can also be " "useful to bypass the limitations imposed by your ISP." msgstr "" diff --git a/wiki/src/support/faq.pt.po b/wiki/src/support/faq.pt.po index 88ac5bc15b347a57d288f1f04216b582c5b498e6..bf728440d7aaa76da833314cb3d6a2d9f6cf5acb 100644 --- a/wiki/src/support/faq.pt.po +++ b/wiki/src/support/faq.pt.po @@ -1024,10 +1024,10 @@ msgstr "" #. type: Plain text msgid "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] can also be " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] can also be " "useful to bypass the limitations imposed by your ISP." msgstr "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] também podem ser " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] também podem ser " "úteis para evitar as limitações impostas pelo seu provedor de serviços de " "Internet." diff --git a/wiki/src/support/faq.ru.po b/wiki/src/support/faq.ru.po index b013cee8e72a4daafdb772a7a9f2b9c6a038f59f..6120d4e8dc77c638d72a7c88e8daa4d564b3cb09 100644 --- a/wiki/src/support/faq.ru.po +++ b/wiki/src/support/faq.ru.po @@ -808,7 +808,7 @@ msgstr "" #. type: Plain text msgid "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] can also be " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] can also be " "useful to bypass the limitations imposed by your ISP." msgstr "" diff --git a/wiki/src/support/faq.sr_Latn.po b/wiki/src/support/faq.sr_Latn.po index cc10d1c137239d6bb1ee11bb22d5a960f362b9c3..ad8ef0bb63c6fe2dfe507fdeefec33636b3238f7 100644 --- a/wiki/src/support/faq.sr_Latn.po +++ b/wiki/src/support/faq.sr_Latn.po @@ -808,7 +808,7 @@ msgstr "" #. type: Plain text msgid "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] can also be " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] can also be " "useful to bypass the limitations imposed by your ISP." msgstr "" diff --git a/wiki/src/support/faq.tr.po b/wiki/src/support/faq.tr.po index f794376efb130d0e31100daf9489ee23f0a3a034..17e9daf72d5ef9a8be7345e0572dd17e9fcfb8f3 100644 --- a/wiki/src/support/faq.tr.po +++ b/wiki/src/support/faq.tr.po @@ -807,7 +807,7 @@ msgstr "" #. type: Plain text msgid "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] can also be " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] can also be " "useful to bypass the limitations imposed by your ISP." msgstr "" diff --git a/wiki/src/support/faq.zh.po b/wiki/src/support/faq.zh.po index 2e89eccc682bc711a0c80f85b679d96b2baa484b..f2abb8490acabdd413d11f11f2b4ad7c95b0eae5 100644 --- a/wiki/src/support/faq.zh.po +++ b/wiki/src/support/faq.zh.po @@ -810,7 +810,7 @@ msgstr "" #. type: Plain text msgid "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] can also be " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] can also be " "useful to bypass the limitations imposed by your ISP." msgstr "" diff --git a/wiki/src/support/faq.zh_TW.po b/wiki/src/support/faq.zh_TW.po index 3120e59338b669e99a70c2b3af5543e0a3789308..213c93741399981d841397b03809fee9859c1530 100644 --- a/wiki/src/support/faq.zh_TW.po +++ b/wiki/src/support/faq.zh_TW.po @@ -806,7 +806,7 @@ msgstr "" #. type: Plain text msgid "" -"[[Tor bridges|doc/first_steps/startup_options/bridge_mode]] can also be " +"[[Tor bridges|doc/first_steps/welcome_screen/bridge_mode]] can also be " "useful to bypass the limitations imposed by your ISP." msgstr "" diff --git a/wiki/src/support/known_issues.ar.po b/wiki/src/support/known_issues.ar.po index b2fa2fb241803282c1ac577a182eb7f29a35482f..6a715b9c6ed3b79eb38b81a1b5e78cde9b949714 100644 --- a/wiki/src/support/known_issues.ar.po +++ b/wiki/src/support/known_issues.ar.po @@ -231,7 +231,7 @@ msgstr "" #, no-wrap msgid "" " To start Tails successfully, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -260,7 +260,7 @@ msgstr "" #, no-wrap msgid "" " If Tails fails to start, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -276,7 +276,7 @@ msgstr "" #, no-wrap msgid "" " To make the display work properly, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -337,7 +337,7 @@ msgstr "" #. type: Plain text msgid "" "To start Tails successfully, [[add the following boot option when starting " -"Tails|doc/first_steps/startup_options/#boot_loader_menu]]:" +"Tails|doc/advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -779,7 +779,7 @@ msgstr "" #. type: Plain text msgid "" "If you experience this problem, you can try to [[disable MAC address " -"spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes fixes " +"spoofing|doc/first_steps/welcome_screen/mac_spoofing]] that sometimes fixes " "it." msgstr "" @@ -806,7 +806,7 @@ msgstr "" #. type: Plain text msgid "" "You can to [[add the following boot options when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]] until you find a combination " +"advanced_topics/boot_options]] until you find a combination " "that works for you. The exact combination of options that works depends on " "the computer:" msgstr "" @@ -892,7 +892,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this issue, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1334,7 +1334,7 @@ msgid "" "<ul>\n" "<li>The <span class=\"guimenu\">Applications</span> menu might stop\n" "working.</li>\n" -"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]]\n" +"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/welcome_screen/bridge_mode]]\n" "might be impossible and <span class=\"application\">Tor Launcher</span>\n" "might get stuck on <span class=\"guilabel\">Loading Network\n" "Consensus</span>.</li>\n" @@ -1371,7 +1371,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this problem, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1426,7 +1426,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "[[Add the following boot option when starting Tails|doc/first_steps/" -"startup_options/#boot_loader_menu]]:" +"welcome_screen/#boot-loader]]:" msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues.ca.po b/wiki/src/support/known_issues.ca.po index b8a9d8b21b044e5c60e7c34203cfd9aff461fbec..a83a3a168f95ec56b89e6a5086b1f460018b1d36 100644 --- a/wiki/src/support/known_issues.ca.po +++ b/wiki/src/support/known_issues.ca.po @@ -230,7 +230,7 @@ msgstr "" #, no-wrap msgid "" " To start Tails successfully, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -259,7 +259,7 @@ msgstr "" #, no-wrap msgid "" " If Tails fails to start, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -275,7 +275,7 @@ msgstr "" #, no-wrap msgid "" " To make the display work properly, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -336,7 +336,7 @@ msgstr "" #. type: Plain text msgid "" "To start Tails successfully, [[add the following boot option when starting " -"Tails|doc/first_steps/startup_options/#boot_loader_menu]]:" +"Tails|doc/advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -778,7 +778,7 @@ msgstr "" #. type: Plain text msgid "" "If you experience this problem, you can try to [[disable MAC address " -"spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes fixes " +"spoofing|doc/first_steps/welcome_screen/mac_spoofing]] that sometimes fixes " "it." msgstr "" @@ -805,7 +805,7 @@ msgstr "" #. type: Plain text msgid "" "You can to [[add the following boot options when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]] until you find a combination " +"advanced_topics/boot_options]] until you find a combination " "that works for you. The exact combination of options that works depends on " "the computer:" msgstr "" @@ -891,7 +891,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this issue, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1333,7 +1333,7 @@ msgid "" "<ul>\n" "<li>The <span class=\"guimenu\">Applications</span> menu might stop\n" "working.</li>\n" -"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]]\n" +"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/welcome_screen/bridge_mode]]\n" "might be impossible and <span class=\"application\">Tor Launcher</span>\n" "might get stuck on <span class=\"guilabel\">Loading Network\n" "Consensus</span>.</li>\n" @@ -1370,7 +1370,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this problem, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1425,7 +1425,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "[[Add the following boot option when starting Tails|doc/first_steps/" -"startup_options/#boot_loader_menu]]:" +"welcome_screen/#boot-loader]]:" msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues.de.po b/wiki/src/support/known_issues.de.po index 3cfae1703ea84edfd4c793817fab62e04967153a..efbbc213a8b0d54ec11d0cfd29b24f5857f9755b 100644 --- a/wiki/src/support/known_issues.de.po +++ b/wiki/src/support/known_issues.de.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: 2020-04-01 22:42+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2019-10-24 10:20+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -230,7 +230,7 @@ msgstr "" #, no-wrap msgid "" " To start Tails successfully, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -259,7 +259,7 @@ msgstr "" #, no-wrap msgid "" " If Tails fails to start, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -275,7 +275,7 @@ msgstr "" #, no-wrap msgid "" " To make the display work properly, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -337,7 +337,7 @@ msgstr "" #. type: Plain text msgid "" "To start Tails successfully, [[add the following boot option when starting " -"Tails|doc/first_steps/startup_options/#boot_loader_menu]]:" +"Tails|doc/advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -660,7 +660,7 @@ msgid "" msgstr "" #. type: Plain text -msgid "Goes back continuously to Boot Loader Menu on Tails installed on DVD." +msgid "Goes back continuously to Boot Loader on Tails installed on DVD." msgstr "" #. type: Title ### @@ -781,7 +781,7 @@ msgstr "" #. type: Plain text msgid "" "If you experience this problem, you can try to [[disable MAC address " -"spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes fixes " +"spoofing|doc/first_steps/welcome_screen/mac_spoofing]] that sometimes fixes " "it." msgstr "" @@ -808,9 +808,8 @@ msgstr "" #. type: Plain text msgid "" "You can to [[add the following boot options when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]] until you find a combination " -"that works for you. The exact combination of options that works depends on " -"the computer:" +"advanced_topics/boot_options]] until you find a combination that works for " +"you. The exact combination of options that works depends on the computer:" msgstr "" #. type: Bullet: '- ' @@ -895,7 +894,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this issue, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1003,7 +1002,7 @@ msgstr "" #. type: Title - #, no-wrap -msgid "Boot Loader Menu has display issues\n" +msgid "Boot Loader has display issues\n" msgstr "" #. type: Plain text @@ -1023,7 +1022,7 @@ msgstr "" #. type: Plain text msgid "" "Since Tails 1.1, on some hardware (ThinkPad X230, MacBook Pro 8,1), the Boot " -"Loader Menu is not displayed properly. Tails starts fine, though." +"Loader is not displayed properly. Tails starts fine, though." msgstr "" #. type: Title - @@ -1167,8 +1166,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Enable your encrypted persistent storage in <span class=\"application" -"\">Tails Greeter</span> when you start Tails." +"Enable your encrypted persistent storage in the Welcome Screen when you " +"start Tails." msgstr "" #. type: Plain text @@ -1262,14 +1261,14 @@ msgstr "" #. type: Plain text msgid "" -"When selecting some languages in the Tails Greeter, the default associated " +"When selecting some languages in the Welcome Screen, the default associated " "keyboard layout fallbacks to US." msgstr "" #. type: Plain text msgid "" -"To use the right keyboard layout during a session, set it in the Tails " -"Greeter after having set the language. When the desktop has started, apply " +"To use the right keyboard layout during a session, set it in the Welcome " +"Screen after having set the language. When the desktop has started, apply " "the keyboard layout by clicking on the `en` systray icon." msgstr "" @@ -1339,7 +1338,7 @@ msgid "" "<ul>\n" "<li>The <span class=\"guimenu\">Applications</span> menu might stop\n" "working.</li>\n" -"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]]\n" +"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/welcome_screen/bridge_mode]]\n" "might be impossible and <span class=\"application\">Tor Launcher</span>\n" "might get stuck on <span class=\"guilabel\">Loading Network\n" "Consensus</span>.</li>\n" @@ -1376,7 +1375,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this problem, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1431,8 +1430,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"[[Add the following boot option when starting Tails|doc/first_steps/" -"startup_options/#boot_loader_menu]]:" +"[[Add the following boot option when starting Tails|doc/advanced_topics/" +"boot_options]]:" msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues.es.po b/wiki/src/support/known_issues.es.po index b8cb18b4c4c85323e730b539c48d555abc60eacb..0f7df400403fd07c9c0310aa2281486dec21545d 100644 --- a/wiki/src/support/known_issues.es.po +++ b/wiki/src/support/known_issues.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2020-04-01 22:42+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-01-15 21:32+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -260,7 +260,7 @@ msgstr "" #| msgid "To make Tails start successfully, add the following options to the [[startup options|/doc/first_steps/startup_options/#boot_loader_menu]]:" msgid "" " To start Tails successfully, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "Para arrancar Tails debes añadir las siguentes opciones a tus [[opciones de arranque|/doc/first_steps/startup_options/#boot_loader_menu]]:" #. type: Plain text @@ -295,7 +295,7 @@ msgstr "" #| msgid "To make Tails start successfully, add the following options to the [[startup options|/doc/first_steps/startup_options/#boot_loader_menu]]:" msgid "" " If Tails fails to start, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "Para arrancar Tails debes añadir las siguentes opciones a tus [[opciones de arranque|/doc/first_steps/startup_options/#boot_loader_menu]]:" #. type: Plain text @@ -312,7 +312,7 @@ msgstr "" #| msgid "To make Tails start successfully, add the following options to the [[startup options|/doc/first_steps/startup_options/#boot_loader_menu]]:" msgid "" " To make the display work properly, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "Para arrancar Tails debes añadir las siguentes opciones a tus [[opciones de arranque|/doc/first_steps/startup_options/#boot_loader_menu]]:" #. type: Plain text @@ -382,7 +382,7 @@ msgstr "" #| "[[startup options|/doc/first_steps/startup_options/#boot_loader_menu]]:" msgid "" "To start Tails successfully, [[add the following boot option when starting " -"Tails|doc/first_steps/startup_options/#boot_loader_menu]]:" +"Tails|doc/advanced_topics/boot_options]]:" msgstr "" "Para arrancar Tails debes añadir las siguentes opciones a tus [[opciones de " "arranque|/doc/first_steps/startup_options/#boot_loader_menu]]:" @@ -745,7 +745,10 @@ msgid "" msgstr "" #. type: Plain text -msgid "Goes back continuously to Boot Loader Menu on Tails installed on DVD." +#, fuzzy +#| msgid "" +#| "Goes back continuously to Boot Loader Menu on Tails installed on DVD." +msgid "Goes back continuously to Boot Loader on Tails installed on DVD." msgstr "" "Vuelve continuamente al menú de arranque cuando Tails está instalado en DVD." @@ -874,7 +877,7 @@ msgstr "" #. type: Plain text msgid "" "If you experience this problem, you can try to [[disable MAC address " -"spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes fixes " +"spoofing|doc/first_steps/welcome_screen/mac_spoofing]] that sometimes fixes " "it." msgstr "" @@ -901,9 +904,8 @@ msgstr "" #. type: Plain text msgid "" "You can to [[add the following boot options when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]] until you find a combination " -"that works for you. The exact combination of options that works depends on " -"the computer:" +"advanced_topics/boot_options]] until you find a combination that works for " +"you. The exact combination of options that works depends on the computer:" msgstr "" #. type: Bullet: '- ' @@ -991,7 +993,7 @@ msgstr "" #| "[[startup options|/doc/first_steps/startup_options/#boot_loader_menu]]:" msgid "" "To fix this issue, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" "Para arrancar Tails debes añadir las siguentes opciones a tus [[opciones de " "arranque|/doc/first_steps/startup_options/#boot_loader_menu]]:" @@ -1115,7 +1117,7 @@ msgstr "Otros problemas\n" #. type: Title - #, no-wrap -msgid "Boot Loader Menu has display issues\n" +msgid "Boot Loader has display issues\n" msgstr "" #. type: Plain text @@ -1135,7 +1137,7 @@ msgstr "" #. type: Plain text msgid "" "Since Tails 1.1, on some hardware (ThinkPad X230, MacBook Pro 8,1), the Boot " -"Loader Menu is not displayed properly. Tails starts fine, though." +"Loader is not displayed properly. Tails starts fine, though." msgstr "" #. type: Title - @@ -1280,8 +1282,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Enable your encrypted persistent storage in <span class=\"application" -"\">Tails Greeter</span> when you start Tails." +"Enable your encrypted persistent storage in the Welcome Screen when you " +"start Tails." msgstr "" #. type: Plain text @@ -1380,14 +1382,14 @@ msgstr "" #. type: Plain text msgid "" -"When selecting some languages in the Tails Greeter, the default associated " +"When selecting some languages in the Welcome Screen, the default associated " "keyboard layout fallbacks to US." msgstr "" #. type: Plain text msgid "" -"To use the right keyboard layout during a session, set it in the Tails " -"Greeter after having set the language. When the desktop has started, apply " +"To use the right keyboard layout during a session, set it in the Welcome " +"Screen after having set the language. When the desktop has started, apply " "the keyboard layout by clicking on the `en` systray icon." msgstr "" @@ -1457,7 +1459,7 @@ msgid "" "<ul>\n" "<li>The <span class=\"guimenu\">Applications</span> menu might stop\n" "working.</li>\n" -"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]]\n" +"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/welcome_screen/bridge_mode]]\n" "might be impossible and <span class=\"application\">Tor Launcher</span>\n" "might get stuck on <span class=\"guilabel\">Loading Network\n" "Consensus</span>.</li>\n" @@ -1498,7 +1500,7 @@ msgstr "" #| "options|/doc/first_steps/startup_options/#boot_loader_menu]]." msgid "" "To fix this problem, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" "Para corregir este problema añade `intel_idle.max_cstate=1` a las [[opciones " "de arranque|/doc/first_steps/startup_options/#boot_loader_menu]]." @@ -1559,8 +1561,8 @@ msgstr "" #| "You need to add `nomodeset` to the [[startup options|/doc/first_steps/" #| "startup_options/#boot_loader_menu]] to make Tails start successfully." msgid "" -"[[Add the following boot option when starting Tails|doc/first_steps/" -"startup_options/#boot_loader_menu]]:" +"[[Add the following boot option when starting Tails|doc/advanced_topics/" +"boot_options]]:" msgstr "" "Debes añadir `nomodeset` a las [[opciones de arranque|/doc/first_steps/" "startup_options/#boot_loader_menu]] para iniciar Tails." diff --git a/wiki/src/support/known_issues.fa.po b/wiki/src/support/known_issues.fa.po index fc95e31a1e9390e068ad3c79f29c92047cb0d8a8..80788f8fe0a885ca55a2f814b072c44bc1313909 100644 --- a/wiki/src/support/known_issues.fa.po +++ b/wiki/src/support/known_issues.fa.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: 2020-04-01 22:42+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2019-10-23 11:50+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" @@ -260,7 +260,7 @@ msgstr "" #| msgid "Add the `i915.modeset=0 rootpw=pass` option in the [[boot menu|doc/first_steps/startup_options#boot_menu]]." msgid "" " To start Tails successfully, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "گزینهٔ `i915.modeset=0 rootpw=pass` را در [[فهرست راهاندازی|doc/first_steps/startup_options#boot_menu]] اضافه کنید." #. type: Plain text @@ -290,7 +290,7 @@ msgstr "" #| msgid "Add the `i915.modeset=0 rootpw=pass` option in the [[boot menu|doc/first_steps/startup_options#boot_menu]]." msgid "" " If Tails fails to start, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "گزینهٔ `i915.modeset=0 rootpw=pass` را در [[فهرست راهاندازی|doc/first_steps/startup_options#boot_menu]] اضافه کنید." #. type: Plain text @@ -307,7 +307,7 @@ msgstr "" #| msgid "Add the `i915.modeset=0 rootpw=pass` option in the [[boot menu|doc/first_steps/startup_options#boot_menu]]." msgid "" " To make the display work properly, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "گزینهٔ `i915.modeset=0 rootpw=pass` را در [[فهرست راهاندازی|doc/first_steps/startup_options#boot_menu]] اضافه کنید." #. type: Plain text @@ -383,7 +383,7 @@ msgstr "" #| "first_steps/startup_options#boot_menu]]." msgid "" "To start Tails successfully, [[add the following boot option when starting " -"Tails|doc/first_steps/startup_options/#boot_loader_menu]]:" +"Tails|doc/advanced_topics/boot_options]]:" msgstr "" "گزینهٔ `i915.modeset=0 rootpw=pass` را در [[فهرست راهاندازی|doc/first_steps/" "startup_options#boot_menu]] اضافه کنید." @@ -762,7 +762,7 @@ msgstr "" #. type: Plain text #, fuzzy #| msgid "Goes back continuously to boot menu on Tails installed on DVD." -msgid "Goes back continuously to Boot Loader Menu on Tails installed on DVD." +msgid "Goes back continuously to Boot Loader on Tails installed on DVD." msgstr "روی تیلز نصبشده روی دیویدی مدام به فهرست راهاندازی بازمیگردد." #. type: Title ### @@ -892,7 +892,7 @@ msgstr "" #. type: Plain text msgid "" "If you experience this problem, you can try to [[disable MAC address " -"spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes fixes " +"spoofing|doc/first_steps/welcome_screen/mac_spoofing]] that sometimes fixes " "it." msgstr "" @@ -919,9 +919,8 @@ msgstr "" #. type: Plain text msgid "" "You can to [[add the following boot options when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]] until you find a combination " -"that works for you. The exact combination of options that works depends on " -"the computer:" +"advanced_topics/boot_options]] until you find a combination that works for " +"you. The exact combination of options that works depends on the computer:" msgstr "" #. type: Bullet: '- ' @@ -1027,7 +1026,7 @@ msgstr "" #| "first_steps/startup_options#boot_menu]]." msgid "" "To fix this issue, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" "گزینهٔ `i915.modeset=0 rootpw=pass` را در [[فهرست راهاندازی|doc/first_steps/" "startup_options#boot_menu]] اضافه کنید." @@ -1156,7 +1155,7 @@ msgstr "مسائل دیگر\n" #. type: Title - #, fuzzy, no-wrap #| msgid "Boot menu has display issues\n" -msgid "Boot Loader Menu has display issues\n" +msgid "Boot Loader has display issues\n" msgstr "مشکلاتی در نمایش فهرست راهاندازی وجود دارد\n" #. type: Plain text @@ -1180,7 +1179,7 @@ msgstr "" #| "boot menu is not displayed properly. Tails starts fine, though." msgid "" "Since Tails 1.1, on some hardware (ThinkPad X230, MacBook Pro 8,1), the Boot " -"Loader Menu is not displayed properly. Tails starts fine, though." +"Loader is not displayed properly. Tails starts fine, though." msgstr "" "از تیلز ۱٫۱ به بعد، فهرست راهاندازی روی بعضی سختافزارها (ThinkPad X230، " "MacBook Pro 8,1) به خوبی نشان داده نمیشود. اما تیلز بدون مشکل راهاندازی " @@ -1342,8 +1341,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Enable your encrypted persistent storage in <span class=\"application" -"\">Tails Greeter</span> when you start Tails." +"Enable your encrypted persistent storage in the Welcome Screen when you " +"start Tails." msgstr "" #. type: Plain text @@ -1439,14 +1438,14 @@ msgstr "" #. type: Plain text msgid "" -"When selecting some languages in the Tails Greeter, the default associated " +"When selecting some languages in the Welcome Screen, the default associated " "keyboard layout fallbacks to US." msgstr "" #. type: Plain text msgid "" -"To use the right keyboard layout during a session, set it in the Tails " -"Greeter after having set the language. When the desktop has started, apply " +"To use the right keyboard layout during a session, set it in the Welcome " +"Screen after having set the language. When the desktop has started, apply " "the keyboard layout by clicking on the `en` systray icon." msgstr "" @@ -1522,7 +1521,7 @@ msgid "" "<ul>\n" "<li>The <span class=\"guimenu\">Applications</span> menu might stop\n" "working.</li>\n" -"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]]\n" +"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/welcome_screen/bridge_mode]]\n" "might be impossible and <span class=\"application\">Tor Launcher</span>\n" "might get stuck on <span class=\"guilabel\">Loading Network\n" "Consensus</span>.</li>\n" @@ -1564,7 +1563,7 @@ msgstr "" #| "first_steps/startup_options#boot_menu]]." msgid "" "To fix this problem, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" "گزینهٔ `i915.modeset=0 rootpw=pass` را در [[فهرست راهاندازی|doc/first_steps/" "startup_options#boot_menu]] اضافه کنید." @@ -1625,8 +1624,8 @@ msgstr "" #| "Add the `i915.modeset=0 rootpw=pass` option in the [[boot menu|doc/" #| "first_steps/startup_options#boot_menu]]." msgid "" -"[[Add the following boot option when starting Tails|doc/first_steps/" -"startup_options/#boot_loader_menu]]:" +"[[Add the following boot option when starting Tails|doc/advanced_topics/" +"boot_options]]:" msgstr "" "گزینهٔ `i915.modeset=0 rootpw=pass` را در [[فهرست راهاندازی|doc/first_steps/" "startup_options#boot_menu]] اضافه کنید." diff --git a/wiki/src/support/known_issues.fr.po b/wiki/src/support/known_issues.fr.po index f6149c5b709b61f14f37abc5947281d3833af2a8..c2a92512803f27d7472941cfd2458400530ef42d 100644 --- a/wiki/src/support/known_issues.fr.po +++ b/wiki/src/support/known_issues.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2020-04-01 22:42+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-03-25 10:36+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -294,7 +294,7 @@ msgstr "MacBook Air Retina 2018 et 2019" #| msgid "To make Tails start successfully, add the following options to the [[startup options|/doc/first_steps/startup_options/#boot_loader_menu]]:" msgid "" " To start Tails successfully, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "Pour permettre à Tails de démarrer correctement, ajoutez les options suivantes dans les [[options de démarrage|/doc/first_steps/startup_options/#boot_loader_menu]] :" #. type: Plain text @@ -330,7 +330,7 @@ msgstr "" #| msgid "To make Tails start successfully, add the following options to the [[startup options|/doc/first_steps/startup_options/#boot_loader_menu]]:" msgid "" " If Tails fails to start, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "Pour permettre à Tails de démarrer correctement, ajoutez les options suivantes dans les [[options de démarrage|/doc/first_steps/startup_options/#boot_loader_menu]] :" #. type: Plain text @@ -347,7 +347,7 @@ msgstr "MacBook Pro 5,1 17\" (Nvidia GeForce 9400M)" #| msgid "To make Tails start successfully, add the following options to the [[startup options|/doc/first_steps/startup_options/#boot_loader_menu]]:" msgid "" " To make the display work properly, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "Pour permettre à Tails de démarrer correctement, ajoutez les options suivantes dans les [[options de démarrage|/doc/first_steps/startup_options/#boot_loader_menu]] :" #. type: Plain text @@ -422,7 +422,7 @@ msgstr "<p class=\"pre\">soft lockup - CPU#<span class=\"command-placeholder\">N #| "[[startup options|/doc/first_steps/startup_options/#boot_loader_menu]]:" msgid "" "To start Tails successfully, [[add the following boot option when starting " -"Tails|doc/first_steps/startup_options/#boot_loader_menu]]:" +"Tails|doc/advanced_topics/boot_options]]:" msgstr "" "Pour permettre à Tails de démarrer correctement, ajoutez les options " "suivantes dans les [[options de démarrage|/doc/first_steps/startup_options/" @@ -819,7 +819,10 @@ msgstr "" "-->\n" #. type: Plain text -msgid "Goes back continuously to Boot Loader Menu on Tails installed on DVD." +#, fuzzy +#| msgid "" +#| "Goes back continuously to Boot Loader Menu on Tails installed on DVD." +msgid "Goes back continuously to Boot Loader on Tails installed on DVD." msgstr "" "Revient continuellement au menu du chargeur d’amorçage avec un DVD Tails." @@ -975,9 +978,14 @@ msgstr "" "connecter aux réseaux Wi-Fi." #. type: Plain text +#, fuzzy +#| msgid "" +#| "If you experience this problem, you can try to [[disable MAC address " +#| "spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes " +#| "fixes it." msgid "" "If you experience this problem, you can try to [[disable MAC address " -"spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes fixes " +"spoofing|doc/first_steps/welcome_screen/mac_spoofing]] that sometimes fixes " "it." msgstr "" "Si vous rencontrez ce problème, vous pouvez essayer de [[désactiver " @@ -1018,9 +1026,8 @@ msgstr "" #. type: Plain text msgid "" "You can to [[add the following boot options when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]] until you find a combination " -"that works for you. The exact combination of options that works depends on " -"the computer:" +"advanced_topics/boot_options]] until you find a combination that works for " +"you. The exact combination of options that works depends on the computer:" msgstr "" #. type: Bullet: '- ' @@ -1127,7 +1134,7 @@ msgstr "L'adaptateur Wi-Fi ne marche pas." #| "[[startup options|/doc/first_steps/startup_options/#boot_loader_menu]]:" msgid "" "To fix this issue, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" "Pour permettre à Tails de démarrer correctement, ajoutez les options " "suivantes dans les [[options de démarrage|/doc/first_steps/startup_options/" @@ -1258,8 +1265,9 @@ msgid "Other issues\n" msgstr "Autres problèmes\n" #. type: Title - -#, no-wrap -msgid "Boot Loader Menu has display issues\n" +#, fuzzy, no-wrap +#| msgid "Boot Loader Menu has display issues\n" +msgid "Boot Loader has display issues\n" msgstr "Le menu du chargeur d’amorçage a des problèmes d'affichage\n" #. type: Plain text @@ -1281,9 +1289,13 @@ msgstr "" "-->\n" #. type: Plain text +#, fuzzy +#| msgid "" +#| "Since Tails 1.1, on some hardware (ThinkPad X230, MacBook Pro 8,1), the " +#| "Boot Loader Menu is not displayed properly. Tails starts fine, though." msgid "" "Since Tails 1.1, on some hardware (ThinkPad X230, MacBook Pro 8,1), the Boot " -"Loader Menu is not displayed properly. Tails starts fine, though." +"Loader is not displayed properly. Tails starts fine, though." msgstr "" "Depuis Tails 1.1, sur certains ordinateurs (ThinkPad X230, MacBook Pro 8,1), " "le menu du chargeur d’amorçage ne s'affiche pas correctement. Cependant, " @@ -1459,9 +1471,13 @@ msgid "If you encounter this problem:" msgstr "Si vous rencontrez ce problème :" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "Enable your encrypted persistent storage in <span class=\"application" +#| "\">Tails Greeter</span> when you start Tails." msgid "" -"Enable your encrypted persistent storage in <span class=\"application" -"\">Tails Greeter</span> when you start Tails." +"Enable your encrypted persistent storage in the Welcome Screen when you " +"start Tails." msgstr "" "Activez le volume persistant chiffré dans <span class=\"application\">Tails " "Greeter</span> quand vous démarrez Tails." @@ -1575,17 +1591,26 @@ msgstr "" "-->\n" #. type: Plain text +#, fuzzy +#| msgid "" +#| "When selecting some languages in the Tails Greeter, the default " +#| "associated keyboard layout fallbacks to US." msgid "" -"When selecting some languages in the Tails Greeter, the default associated " +"When selecting some languages in the Welcome Screen, the default associated " "keyboard layout fallbacks to US." msgstr "" "Lors de la sélection de certaines langues dans le Tails Greeter, la " "disposition du clavier associée par défaut est US." #. type: Plain text +#, fuzzy +#| msgid "" +#| "To use the right keyboard layout during a session, set it in the Tails " +#| "Greeter after having set the language. When the desktop has started, " +#| "apply the keyboard layout by clicking on the `en` systray icon." msgid "" -"To use the right keyboard layout during a session, set it in the Tails " -"Greeter after having set the language. When the desktop has started, apply " +"To use the right keyboard layout during a session, set it in the Welcome " +"Screen after having set the language. When the desktop has started, apply " "the keyboard layout by clicking on the `en` systray icon." msgstr "" "Pour utiliser la bonne disposition du clavier durant une session, configurez-" @@ -1673,12 +1698,21 @@ msgid "For example, when the system clock goes backwards:" msgstr "Par exemple, lorsque l'horloge système remonte le temps :" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<ul>\n" +#| "<li>The <span class=\"guimenu\">Applications</span> menu might stop\n" +#| "working.</li>\n" +#| "<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]]\n" +#| "might be impossible and <span class=\"application\">Tor Launcher</span>\n" +#| "might get stuck on <span class=\"guilabel\">Loading Network\n" +#| "Consensus</span>.</li>\n" +#| "</ul>\n" msgid "" "<ul>\n" "<li>The <span class=\"guimenu\">Applications</span> menu might stop\n" "working.</li>\n" -"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]]\n" +"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/welcome_screen/bridge_mode]]\n" "might be impossible and <span class=\"application\">Tor Launcher</span>\n" "might get stuck on <span class=\"guilabel\">Loading Network\n" "Consensus</span>.</li>\n" @@ -1736,7 +1770,7 @@ msgstr "" #| "options|/doc/first_steps/startup_options/#boot_loader_menu]]." msgid "" "To fix this problem, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" "Pour corriger le problème, ajoutez `intel_idle.max_cstate=1` dans les " "[[options de démarrage|/doc/first_steps/startup_options/#boot_loader_menu]]." @@ -1801,8 +1835,8 @@ msgstr "IOMMU controller" #| "Add the following [[startup options|/doc/first_steps/startup_options/" #| "#boot_loader_menu]]:" msgid "" -"[[Add the following boot option when starting Tails|doc/first_steps/" -"startup_options/#boot_loader_menu]]:" +"[[Add the following boot option when starting Tails|doc/advanced_topics/" +"boot_options]]:" msgstr "" "Ajouter les [[options de démarrage|/doc/first_steps/startup_options/" "#boot_loader_menu]] suivantes :" diff --git a/wiki/src/support/known_issues.id.po b/wiki/src/support/known_issues.id.po index e91bfbc72f573ce5da02720962d43266246c28be..30f7cdd224ba9bb114c95e6508371c086d72794e 100644 --- a/wiki/src/support/known_issues.id.po +++ b/wiki/src/support/known_issues.id.po @@ -230,7 +230,7 @@ msgstr "" #, no-wrap msgid "" " To start Tails successfully, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -259,7 +259,7 @@ msgstr "" #, no-wrap msgid "" " If Tails fails to start, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -275,7 +275,7 @@ msgstr "" #, no-wrap msgid "" " To make the display work properly, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -336,7 +336,7 @@ msgstr "" #. type: Plain text msgid "" "To start Tails successfully, [[add the following boot option when starting " -"Tails|doc/first_steps/startup_options/#boot_loader_menu]]:" +"Tails|doc/advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -778,7 +778,7 @@ msgstr "" #. type: Plain text msgid "" "If you experience this problem, you can try to [[disable MAC address " -"spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes fixes " +"spoofing|doc/first_steps/welcome_screen/mac_spoofing]] that sometimes fixes " "it." msgstr "" @@ -805,7 +805,7 @@ msgstr "" #. type: Plain text msgid "" "You can to [[add the following boot options when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]] until you find a combination " +"advanced_topics/boot_options]] until you find a combination " "that works for you. The exact combination of options that works depends on " "the computer:" msgstr "" @@ -891,7 +891,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this issue, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1333,7 +1333,7 @@ msgid "" "<ul>\n" "<li>The <span class=\"guimenu\">Applications</span> menu might stop\n" "working.</li>\n" -"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]]\n" +"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/welcome_screen/bridge_mode]]\n" "might be impossible and <span class=\"application\">Tor Launcher</span>\n" "might get stuck on <span class=\"guilabel\">Loading Network\n" "Consensus</span>.</li>\n" @@ -1370,7 +1370,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this problem, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1425,7 +1425,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "[[Add the following boot option when starting Tails|doc/first_steps/" -"startup_options/#boot_loader_menu]]:" +"welcome_screen/#boot-loader]]:" msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues.it.po b/wiki/src/support/known_issues.it.po index 177fc121323ea654c0706e3199ab25760532fc17..087c61cac2173429fad5dcc5bf62043d3ea98011 100644 --- a/wiki/src/support/known_issues.it.po +++ b/wiki/src/support/known_issues.it.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: 2020-04-01 22:42+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-01-24 08:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -230,7 +230,7 @@ msgstr "" #, no-wrap msgid "" " To start Tails successfully, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -259,7 +259,7 @@ msgstr "" #, no-wrap msgid "" " If Tails fails to start, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -275,7 +275,7 @@ msgstr "" #, no-wrap msgid "" " To make the display work properly, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -337,7 +337,7 @@ msgstr "" #. type: Plain text msgid "" "To start Tails successfully, [[add the following boot option when starting " -"Tails|doc/first_steps/startup_options/#boot_loader_menu]]:" +"Tails|doc/advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -660,7 +660,7 @@ msgid "" msgstr "" #. type: Plain text -msgid "Goes back continuously to Boot Loader Menu on Tails installed on DVD." +msgid "Goes back continuously to Boot Loader on Tails installed on DVD." msgstr "" #. type: Title ### @@ -781,7 +781,7 @@ msgstr "" #. type: Plain text msgid "" "If you experience this problem, you can try to [[disable MAC address " -"spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes fixes " +"spoofing|doc/first_steps/welcome_screen/mac_spoofing]] that sometimes fixes " "it." msgstr "" @@ -808,9 +808,8 @@ msgstr "" #. type: Plain text msgid "" "You can to [[add the following boot options when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]] until you find a combination " -"that works for you. The exact combination of options that works depends on " -"the computer:" +"advanced_topics/boot_options]] until you find a combination that works for " +"you. The exact combination of options that works depends on the computer:" msgstr "" #. type: Bullet: '- ' @@ -895,7 +894,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this issue, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1003,7 +1002,7 @@ msgstr "" #. type: Title - #, no-wrap -msgid "Boot Loader Menu has display issues\n" +msgid "Boot Loader has display issues\n" msgstr "" #. type: Plain text @@ -1023,7 +1022,7 @@ msgstr "" #. type: Plain text msgid "" "Since Tails 1.1, on some hardware (ThinkPad X230, MacBook Pro 8,1), the Boot " -"Loader Menu is not displayed properly. Tails starts fine, though." +"Loader is not displayed properly. Tails starts fine, though." msgstr "" #. type: Title - @@ -1166,8 +1165,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Enable your encrypted persistent storage in <span class=\"application" -"\">Tails Greeter</span> when you start Tails." +"Enable your encrypted persistent storage in the Welcome Screen when you " +"start Tails." msgstr "" #. type: Plain text @@ -1266,14 +1265,14 @@ msgstr "" #. type: Plain text msgid "" -"When selecting some languages in the Tails Greeter, the default associated " +"When selecting some languages in the Welcome Screen, the default associated " "keyboard layout fallbacks to US." msgstr "" #. type: Plain text msgid "" -"To use the right keyboard layout during a session, set it in the Tails " -"Greeter after having set the language. When the desktop has started, apply " +"To use the right keyboard layout during a session, set it in the Welcome " +"Screen after having set the language. When the desktop has started, apply " "the keyboard layout by clicking on the `en` systray icon." msgstr "" @@ -1343,7 +1342,7 @@ msgid "" "<ul>\n" "<li>The <span class=\"guimenu\">Applications</span> menu might stop\n" "working.</li>\n" -"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]]\n" +"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/welcome_screen/bridge_mode]]\n" "might be impossible and <span class=\"application\">Tor Launcher</span>\n" "might get stuck on <span class=\"guilabel\">Loading Network\n" "Consensus</span>.</li>\n" @@ -1380,7 +1379,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this problem, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1435,8 +1434,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"[[Add the following boot option when starting Tails|doc/first_steps/" -"startup_options/#boot_loader_menu]]:" +"[[Add the following boot option when starting Tails|doc/advanced_topics/" +"boot_options]]:" msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues.mdwn b/wiki/src/support/known_issues.mdwn index 8b6601013f3ec751edbc01c7ef9b21b1f7034c2c..5e626315a0a29a54dc83037df66016d9bc9bd182 100644 --- a/wiki/src/support/known_issues.mdwn +++ b/wiki/src/support/known_issues.mdwn @@ -102,7 +102,7 @@ Last updated: * MacBook Air Retina 2018 and 2019 To start Tails successfully, [[add the following boot option when - starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]: + starting Tails|doc/advanced_topics/boot_options]]: modprobe.blacklist=thunderbolt @@ -115,14 +115,14 @@ Last updated: * MacBook Pro 8,3 17" (AMD Radeon HD6770M and Intel HD Graphics 3000) If Tails fails to start, [[add the following boot option when - starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]: + starting Tails|doc/advanced_topics/boot_options]]: radeon.modeset=0 * MacBook Pro 5,1 17" (Nvidia GeForce 9400M) To make the display work properly, [[add the following boot option when - starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]: + starting Tails|doc/advanced_topics/boot_options]]: nouveau.noaccel=1 @@ -150,7 +150,7 @@ On some laptops, Tails starts with the following error: <p class="pre">soft lockup - CPU#<span class="command-placeholder">N</span> stuck for <span class="command-placeholder">N</span>s</p> To start Tails successfully, [[add the following boot option when starting -Tails|doc/first_steps/startup_options/#boot_loader_menu]]: +Tails|doc/advanced_topics/boot_options]]: acpi_rev_override=1 nouveau.modeset=0 @@ -182,7 +182,7 @@ Last updated: 2019-11-01 --> To start Tails successfully, [[add the following boot option when starting -Tails|doc/first_steps/startup_options/#boot_loader_menu]]: +Tails|doc/advanced_topics/boot_options]]: iommu=soft @@ -205,7 +205,7 @@ Last updated: 2018-01-10 --> To start Tails successfully, [[add the following boot option when starting -Tails|doc/first_steps/startup_options/#boot_loader_menu]]: +Tails|doc/advanced_topics/boot_options]]: nomodeset @@ -319,7 +319,7 @@ Last updated: 2014-08-05 Specs: https://www.cnet.com/products/lenovo-ideapad-z585-15-6-a8-4500m-6-gb-ram-750-gb-hdd/ --> -Goes back continuously to Boot Loader Menu on Tails installed on DVD. +Goes back continuously to Boot Loader on Tails installed on DVD. ### Clevo W258CU, ThinkPad X121e, T420i, T410, T520, W520, T530, T60, E325, and E530 @@ -390,7 +390,7 @@ as some Microsoft Surface Pro models, Tails fails to connect to Wi-Fi networks. If you experience this problem, you can try to [[disable MAC address -spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes +spoofing|doc/first_steps/welcome_screen/mac_spoofing]] that sometimes fixes it. RTL8723BE PCIe Wireless Network Adapter @@ -405,7 +405,7 @@ Wi-Fi networks, provide unreliable Wi-Fi connections, or have poor Wi-Fi performance. You can to [[add the following boot options when starting -Tails|doc/first_steps/startup_options/#boot_loader_menu]] until you find a +Tails|doc/advanced_topics/boot_options]] until you find a combination that works for you. The exact combination of options that works depends on the computer: @@ -449,7 +449,7 @@ Last updated: 2019-05-10 Wi-Fi adapter does not work. To fix this issue, [[add the following boot option when -starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]: +starting Tails|doc/advanced_topics/boot_options]]: modprobe.blacklist=ideapad_laptop @@ -502,8 +502,8 @@ fingerprint|doc/about/fingerprint]]. Other issues ============ -Boot Loader Menu has display issues ------------------------------------ +Boot Loader has display issues +------------------------------ <!-- Last updated: 2014-06-27 @@ -512,7 +512,7 @@ I asked some ThinkPad X230 users to confirm. --> Since Tails 1.1, on some hardware (ThinkPad X230, MacBook Pro 8,1), -the Boot Loader Menu is not displayed properly. Tails starts fine, though. +the Boot Loader is not displayed properly. Tails starts fine, though. Touchpad configurations ----------------------- @@ -585,7 +585,7 @@ configurations should still be saved. If you encounter this problem: 1. Enable your encrypted persistent storage in - <span class="application">Tails Greeter</span> when you start Tails. + the Welcome Screen when you start Tails. 1. Choose <span class="menuchoice"> @@ -633,11 +633,11 @@ Some languages do not have the correct keyboard layout set by default Last updated: 2017-08-07 --> -When selecting some languages in the Tails Greeter, the default associated +When selecting some languages in the Welcome Screen, the default associated keyboard layout fallbacks to US. -To use the right keyboard layout during a session, set it in the Tails -Greeter after having set the language. When the desktop has started, apply +To use the right keyboard layout during a session, set it in the Welcome +Screen after having set the language. When the desktop has started, apply the keyboard layout by clicking on the `en` systray icon. Affected language codes are `AYC`, `BHB`, `BRX`, `CMN`, `HAK`, `HNE`, `LIJ`, @@ -676,7 +676,7 @@ For example, when the system clock goes backwards: <ul> <li>The <span class="guimenu">Applications</span> menu might stop working.</li> -<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]] +<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/welcome_screen/bridge_mode]] might be impossible and <span class="application">Tor Launcher</span> might get stuck on <span class="guilabel">Loading Network Consensus</span>.</li> @@ -696,7 +696,7 @@ Tails may be unstable and stop working regularly on some Lenovo ThinkPad 11e laptops, such as the 2015 model. To fix this problem, [[add the following boot option when -starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]: +starting Tails|doc/advanced_topics/boot_options]]: intel_idle.max_cstate=1 @@ -720,7 +720,7 @@ To workaround this issue, you can try to: - IOMMU controller - [[Add the following boot option when - starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]: + starting Tails|doc/advanced_topics/boot_options]]: amd_iommu=on iommu=pt diff --git a/wiki/src/support/known_issues.pl.po b/wiki/src/support/known_issues.pl.po index 559c8511462a6a54ee420ee1f3ac12fd9b8ce27b..cf1aea9b5cee900ca5f3c613b188c81b64e06700 100644 --- a/wiki/src/support/known_issues.pl.po +++ b/wiki/src/support/known_issues.pl.po @@ -231,7 +231,7 @@ msgstr "" #, no-wrap msgid "" " To start Tails successfully, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -260,7 +260,7 @@ msgstr "" #, no-wrap msgid "" " If Tails fails to start, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -276,7 +276,7 @@ msgstr "" #, no-wrap msgid "" " To make the display work properly, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -337,7 +337,7 @@ msgstr "" #. type: Plain text msgid "" "To start Tails successfully, [[add the following boot option when starting " -"Tails|doc/first_steps/startup_options/#boot_loader_menu]]:" +"Tails|doc/advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -779,7 +779,7 @@ msgstr "" #. type: Plain text msgid "" "If you experience this problem, you can try to [[disable MAC address " -"spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes fixes " +"spoofing|doc/first_steps/welcome_screen/mac_spoofing]] that sometimes fixes " "it." msgstr "" @@ -806,7 +806,7 @@ msgstr "" #. type: Plain text msgid "" "You can to [[add the following boot options when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]] until you find a combination " +"advanced_topics/boot_options]] until you find a combination " "that works for you. The exact combination of options that works depends on " "the computer:" msgstr "" @@ -892,7 +892,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this issue, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1334,7 +1334,7 @@ msgid "" "<ul>\n" "<li>The <span class=\"guimenu\">Applications</span> menu might stop\n" "working.</li>\n" -"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]]\n" +"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/welcome_screen/bridge_mode]]\n" "might be impossible and <span class=\"application\">Tor Launcher</span>\n" "might get stuck on <span class=\"guilabel\">Loading Network\n" "Consensus</span>.</li>\n" @@ -1371,7 +1371,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this problem, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1426,7 +1426,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "[[Add the following boot option when starting Tails|doc/first_steps/" -"startup_options/#boot_loader_menu]]:" +"welcome_screen/#boot-loader]]:" msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues.pt.po b/wiki/src/support/known_issues.pt.po index 449fbb3f9b1e3f9269c2e388873833b3e69fa65a..10fde7b484e80a31c5ad806dc1f77cf199cc51a0 100644 --- a/wiki/src/support/known_issues.pt.po +++ b/wiki/src/support/known_issues.pt.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: 2020-04-01 22:42+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2019-10-24 10:21+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -266,7 +266,7 @@ msgstr "" #| msgid "Booting fails with `Not enough memory to load specified image`. Work around by adding the `mem=1500m` [[boot option|/doc/first_steps/startup_options/#boot_menu]]." msgid "" " To start Tails successfully, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "A inicialização falha com `Não há memória suficiente para carregar a imagem especificada` (`Not enough memory to load specified image`). Pode ser contornado adicionando a [[opção de boot|/doc/first_steps/startup_options/#boot_menu]] `mem=1500m`." #. type: Plain text @@ -301,7 +301,7 @@ msgstr "" #| msgid "Booting fails with `Not enough memory to load specified image`. Work around by adding the `mem=1500m` [[boot option|/doc/first_steps/startup_options/#boot_menu]]." msgid "" " If Tails fails to start, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "A inicialização falha com `Não há memória suficiente para carregar a imagem especificada` (`Not enough memory to load specified image`). Pode ser contornado adicionando a [[opção de boot|/doc/first_steps/startup_options/#boot_menu]] `mem=1500m`." #. type: Plain text @@ -318,7 +318,7 @@ msgstr "" #| msgid "Booting fails with `Not enough memory to load specified image`. Work around by adding the `mem=1500m` [[boot option|/doc/first_steps/startup_options/#boot_menu]]." msgid "" " To make the display work properly, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "A inicialização falha com `Não há memória suficiente para carregar a imagem especificada` (`Not enough memory to load specified image`). Pode ser contornado adicionando a [[opção de boot|/doc/first_steps/startup_options/#boot_menu]] `mem=1500m`." #. type: Plain text @@ -394,7 +394,7 @@ msgstr "" #| "startup_options/#boot_menu]]." msgid "" "To start Tails successfully, [[add the following boot option when starting " -"Tails|doc/first_steps/startup_options/#boot_loader_menu]]:" +"Tails|doc/advanced_topics/boot_options]]:" msgstr "" "A inicialização falha com `Não há memória suficiente para carregar a imagem " "especificada` (`Not enough memory to load specified image`). Pode ser " @@ -763,7 +763,10 @@ msgid "" msgstr "" #. type: Plain text -msgid "Goes back continuously to Boot Loader Menu on Tails installed on DVD." +#, fuzzy +#| msgid "" +#| "Goes back continuously to Boot Loader Menu on Tails installed on DVD." +msgid "Goes back continuously to Boot Loader on Tails installed on DVD." msgstr "Sempre volta ao Menu de inicialização no Tails instalado em um DVD." #. type: Title ### @@ -892,7 +895,7 @@ msgstr "" #. type: Plain text msgid "" "If you experience this problem, you can try to [[disable MAC address " -"spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes fixes " +"spoofing|doc/first_steps/welcome_screen/mac_spoofing]] that sometimes fixes " "it." msgstr "" @@ -927,9 +930,8 @@ msgstr "" #. type: Plain text msgid "" "You can to [[add the following boot options when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]] until you find a combination " -"that works for you. The exact combination of options that works depends on " -"the computer:" +"advanced_topics/boot_options]] until you find a combination that works for " +"you. The exact combination of options that works depends on the computer:" msgstr "" #. type: Bullet: '- ' @@ -1038,7 +1040,7 @@ msgstr "" #| "startup_options/#boot_menu]]." msgid "" "To fix this issue, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" "A inicialização falha com `Não há memória suficiente para carregar a imagem " "especificada` (`Not enough memory to load specified image`). Pode ser " @@ -1163,7 +1165,7 @@ msgstr "Outros problemas\n" #. type: Title - #, fuzzy, no-wrap #| msgid "Boot Loader Menu has display issues\n" -msgid "Boot Loader Menu has display issues\n" +msgid "Boot Loader has display issues\n" msgstr "O menu de inicialização tem problemas de visualização\n" #. type: Plain text @@ -1183,7 +1185,7 @@ msgstr "" #. type: Plain text msgid "" "Since Tails 1.1, on some hardware (ThinkPad X230, MacBook Pro 8,1), the Boot " -"Loader Menu is not displayed properly. Tails starts fine, though." +"Loader is not displayed properly. Tails starts fine, though." msgstr "" #. type: Title - @@ -1344,8 +1346,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Enable your encrypted persistent storage in <span class=\"application" -"\">Tails Greeter</span> when you start Tails." +"Enable your encrypted persistent storage in the Welcome Screen when you " +"start Tails." msgstr "" #. type: Plain text @@ -1443,8 +1445,12 @@ msgid "" msgstr "" #. type: Plain text +#, fuzzy +#| msgid "" +#| "When selecting some languages in the Tails Greeter, the default " +#| "associated keyboard layout fallbacks to US." msgid "" -"When selecting some languages in the Tails Greeter, the default associated " +"When selecting some languages in the Welcome Screen, the default associated " "keyboard layout fallbacks to US." msgstr "" "Ao selecionar alguns idiomas no Tails Greeter, o modelo de teclado retorna " @@ -1452,8 +1458,8 @@ msgstr "" #. type: Plain text msgid "" -"To use the right keyboard layout during a session, set it in the Tails " -"Greeter after having set the language. When the desktop has started, apply " +"To use the right keyboard layout during a session, set it in the Welcome " +"Screen after having set the language. When the desktop has started, apply " "the keyboard layout by clicking on the `en` systray icon." msgstr "" @@ -1547,7 +1553,7 @@ msgid "" "<ul>\n" "<li>The <span class=\"guimenu\">Applications</span> menu might stop\n" "working.</li>\n" -"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]]\n" +"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/welcome_screen/bridge_mode]]\n" "might be impossible and <span class=\"application\">Tor Launcher</span>\n" "might get stuck on <span class=\"guilabel\">Loading Network\n" "Consensus</span>.</li>\n" @@ -1592,7 +1598,7 @@ msgstr "" #| "startup_options/#boot_menu]]." msgid "" "To fix this problem, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" "A inicialização falha com `Não há memória suficiente para carregar a imagem " "especificada` (`Not enough memory to load specified image`). Pode ser " @@ -1655,8 +1661,8 @@ msgstr "" #| "Most such problems can be solved by adding [[startup options|/doc/" #| "first_steps/startup_options/#boot_loader_menu]]." msgid "" -"[[Add the following boot option when starting Tails|doc/first_steps/" -"startup_options/#boot_loader_menu]]:" +"[[Add the following boot option when starting Tails|doc/advanced_topics/" +"boot_options]]:" msgstr "" "A maior parte destes problemas pode ser resolvida adicionando [[opções de " "inicialização|/doc/first_steps/startup_options/#boot_loader_menu]]." diff --git a/wiki/src/support/known_issues.ru.po b/wiki/src/support/known_issues.ru.po index b09e129fcddfe7ee185ef73aecdcc0b38398d294..303787940376fb212abfd4275c5baad782a82244 100644 --- a/wiki/src/support/known_issues.ru.po +++ b/wiki/src/support/known_issues.ru.po @@ -231,7 +231,7 @@ msgstr "" #, no-wrap msgid "" " To start Tails successfully, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -260,7 +260,7 @@ msgstr "" #, no-wrap msgid "" " If Tails fails to start, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -276,7 +276,7 @@ msgstr "" #, no-wrap msgid "" " To make the display work properly, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -337,7 +337,7 @@ msgstr "" #. type: Plain text msgid "" "To start Tails successfully, [[add the following boot option when starting " -"Tails|doc/first_steps/startup_options/#boot_loader_menu]]:" +"Tails|doc/advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -779,7 +779,7 @@ msgstr "" #. type: Plain text msgid "" "If you experience this problem, you can try to [[disable MAC address " -"spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes fixes " +"spoofing|doc/first_steps/welcome_screen/mac_spoofing]] that sometimes fixes " "it." msgstr "" @@ -806,7 +806,7 @@ msgstr "" #. type: Plain text msgid "" "You can to [[add the following boot options when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]] until you find a combination " +"advanced_topics/boot_options]] until you find a combination " "that works for you. The exact combination of options that works depends on " "the computer:" msgstr "" @@ -892,7 +892,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this issue, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1334,7 +1334,7 @@ msgid "" "<ul>\n" "<li>The <span class=\"guimenu\">Applications</span> menu might stop\n" "working.</li>\n" -"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]]\n" +"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/welcome_screen/bridge_mode]]\n" "might be impossible and <span class=\"application\">Tor Launcher</span>\n" "might get stuck on <span class=\"guilabel\">Loading Network\n" "Consensus</span>.</li>\n" @@ -1371,7 +1371,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this problem, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1426,7 +1426,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "[[Add the following boot option when starting Tails|doc/first_steps/" -"startup_options/#boot_loader_menu]]:" +"welcome_screen/#boot-loader]]:" msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues.sr_Latn.po b/wiki/src/support/known_issues.sr_Latn.po index 20e87b3621d3e11b872da04942353ae2da91deea..02d325c8026d1ca16d53d1634ba1f97931183982 100644 --- a/wiki/src/support/known_issues.sr_Latn.po +++ b/wiki/src/support/known_issues.sr_Latn.po @@ -231,7 +231,7 @@ msgstr "" #, no-wrap msgid "" " To start Tails successfully, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -260,7 +260,7 @@ msgstr "" #, no-wrap msgid "" " If Tails fails to start, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -276,7 +276,7 @@ msgstr "" #, no-wrap msgid "" " To make the display work properly, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -337,7 +337,7 @@ msgstr "" #. type: Plain text msgid "" "To start Tails successfully, [[add the following boot option when starting " -"Tails|doc/first_steps/startup_options/#boot_loader_menu]]:" +"Tails|doc/advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -779,7 +779,7 @@ msgstr "" #. type: Plain text msgid "" "If you experience this problem, you can try to [[disable MAC address " -"spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes fixes " +"spoofing|doc/first_steps/welcome_screen/mac_spoofing]] that sometimes fixes " "it." msgstr "" @@ -806,7 +806,7 @@ msgstr "" #. type: Plain text msgid "" "You can to [[add the following boot options when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]] until you find a combination " +"advanced_topics/boot_options]] until you find a combination " "that works for you. The exact combination of options that works depends on " "the computer:" msgstr "" @@ -892,7 +892,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this issue, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1334,7 +1334,7 @@ msgid "" "<ul>\n" "<li>The <span class=\"guimenu\">Applications</span> menu might stop\n" "working.</li>\n" -"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]]\n" +"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/welcome_screen/bridge_mode]]\n" "might be impossible and <span class=\"application\">Tor Launcher</span>\n" "might get stuck on <span class=\"guilabel\">Loading Network\n" "Consensus</span>.</li>\n" @@ -1371,7 +1371,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this problem, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1426,7 +1426,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "[[Add the following boot option when starting Tails|doc/first_steps/" -"startup_options/#boot_loader_menu]]:" +"welcome_screen/#boot-loader]]:" msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues.tr.po b/wiki/src/support/known_issues.tr.po index d58ced2bcaa3f0a5c53c56965aab54408af197cc..d3721fe260450cca8650a5eeea3f11e7ec9c4782 100644 --- a/wiki/src/support/known_issues.tr.po +++ b/wiki/src/support/known_issues.tr.po @@ -230,7 +230,7 @@ msgstr "" #, no-wrap msgid "" " To start Tails successfully, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -259,7 +259,7 @@ msgstr "" #, no-wrap msgid "" " If Tails fails to start, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -275,7 +275,7 @@ msgstr "" #, no-wrap msgid "" " To make the display work properly, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -336,7 +336,7 @@ msgstr "" #. type: Plain text msgid "" "To start Tails successfully, [[add the following boot option when starting " -"Tails|doc/first_steps/startup_options/#boot_loader_menu]]:" +"Tails|doc/advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -778,7 +778,7 @@ msgstr "" #. type: Plain text msgid "" "If you experience this problem, you can try to [[disable MAC address " -"spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes fixes " +"spoofing|doc/first_steps/welcome_screen/mac_spoofing]] that sometimes fixes " "it." msgstr "" @@ -805,7 +805,7 @@ msgstr "" #. type: Plain text msgid "" "You can to [[add the following boot options when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]] until you find a combination " +"advanced_topics/boot_options]] until you find a combination " "that works for you. The exact combination of options that works depends on " "the computer:" msgstr "" @@ -891,7 +891,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this issue, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1333,7 +1333,7 @@ msgid "" "<ul>\n" "<li>The <span class=\"guimenu\">Applications</span> menu might stop\n" "working.</li>\n" -"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]]\n" +"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/welcome_screen/bridge_mode]]\n" "might be impossible and <span class=\"application\">Tor Launcher</span>\n" "might get stuck on <span class=\"guilabel\">Loading Network\n" "Consensus</span>.</li>\n" @@ -1370,7 +1370,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this problem, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1425,7 +1425,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "[[Add the following boot option when starting Tails|doc/first_steps/" -"startup_options/#boot_loader_menu]]:" +"welcome_screen/#boot-loader]]:" msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues.zh.po b/wiki/src/support/known_issues.zh.po index 705d53bce64f35ba20fdb75cb14b463e04931a75..7fb35358b65acd60ab2ba529e1c79a520893836a 100644 --- a/wiki/src/support/known_issues.zh.po +++ b/wiki/src/support/known_issues.zh.po @@ -230,7 +230,7 @@ msgstr "" #, no-wrap msgid "" " To start Tails successfully, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -259,7 +259,7 @@ msgstr "" #, no-wrap msgid "" " If Tails fails to start, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -275,7 +275,7 @@ msgstr "" #, no-wrap msgid "" " To make the display work properly, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -336,7 +336,7 @@ msgstr "" #. type: Plain text msgid "" "To start Tails successfully, [[add the following boot option when starting " -"Tails|doc/first_steps/startup_options/#boot_loader_menu]]:" +"Tails|doc/advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -778,7 +778,7 @@ msgstr "" #. type: Plain text msgid "" "If you experience this problem, you can try to [[disable MAC address " -"spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes fixes " +"spoofing|doc/first_steps/welcome_screen/mac_spoofing]] that sometimes fixes " "it." msgstr "" @@ -805,7 +805,7 @@ msgstr "" #. type: Plain text msgid "" "You can to [[add the following boot options when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]] until you find a combination " +"advanced_topics/boot_options]] until you find a combination " "that works for you. The exact combination of options that works depends on " "the computer:" msgstr "" @@ -891,7 +891,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this issue, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1333,7 +1333,7 @@ msgid "" "<ul>\n" "<li>The <span class=\"guimenu\">Applications</span> menu might stop\n" "working.</li>\n" -"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]]\n" +"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/welcome_screen/bridge_mode]]\n" "might be impossible and <span class=\"application\">Tor Launcher</span>\n" "might get stuck on <span class=\"guilabel\">Loading Network\n" "Consensus</span>.</li>\n" @@ -1370,7 +1370,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this problem, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1425,7 +1425,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "[[Add the following boot option when starting Tails|doc/first_steps/" -"startup_options/#boot_loader_menu]]:" +"welcome_screen/#boot-loader]]:" msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues.zh_TW.po b/wiki/src/support/known_issues.zh_TW.po index 5d4282f579128b5dbabda970b6cb5cbd52d49b01..bbe13ed8ce8af89f450847206a4feb2394a008ac 100644 --- a/wiki/src/support/known_issues.zh_TW.po +++ b/wiki/src/support/known_issues.zh_TW.po @@ -231,7 +231,7 @@ msgstr "" #, no-wrap msgid "" " To start Tails successfully, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -260,7 +260,7 @@ msgstr "" #, no-wrap msgid "" " If Tails fails to start, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -276,7 +276,7 @@ msgstr "" #, no-wrap msgid "" " To make the display work properly, [[add the following boot option when\n" -" starting Tails|doc/first_steps/startup_options/#boot_loader_menu]]:\n" +" starting Tails|doc/advanced_topics/boot_options]]:\n" msgstr "" #. type: Plain text @@ -337,7 +337,7 @@ msgstr "" #. type: Plain text msgid "" "To start Tails successfully, [[add the following boot option when starting " -"Tails|doc/first_steps/startup_options/#boot_loader_menu]]:" +"Tails|doc/advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -779,7 +779,7 @@ msgstr "" #. type: Plain text msgid "" "If you experience this problem, you can try to [[disable MAC address " -"spoofing|doc/first_steps/startup_options/mac_spoofing]] that sometimes fixes " +"spoofing|doc/first_steps/welcome_screen/mac_spoofing]] that sometimes fixes " "it." msgstr "" @@ -806,7 +806,7 @@ msgstr "" #. type: Plain text msgid "" "You can to [[add the following boot options when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]] until you find a combination " +"advanced_topics/boot_options]] until you find a combination " "that works for you. The exact combination of options that works depends on " "the computer:" msgstr "" @@ -892,7 +892,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this issue, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1341,7 +1341,7 @@ msgid "" "<ul>\n" "<li>The <span class=\"guimenu\">Applications</span> menu might stop\n" "working.</li>\n" -"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/startup_options/bridge_mode]]\n" +"<li>[[Connecting to Tor using `obfs4` bridges|doc/first_steps/welcome_screen/bridge_mode]]\n" "might be impossible and <span class=\"application\">Tor Launcher</span>\n" "might get stuck on <span class=\"guilabel\">Loading Network\n" "Consensus</span>.</li>\n" @@ -1378,7 +1378,7 @@ msgstr "" #. type: Plain text msgid "" "To fix this problem, [[add the following boot option when starting Tails|doc/" -"first_steps/startup_options/#boot_loader_menu]]:" +"advanced_topics/boot_options]]:" msgstr "" #. type: Plain text @@ -1433,7 +1433,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "[[Add the following boot option when starting Tails|doc/first_steps/" -"startup_options/#boot_loader_menu]]:" +"welcome_screen/#boot-loader]]:" msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues/graphics.de.po b/wiki/src/support/known_issues/graphics.de.po index 94646a8ef0befdd72c3888016b88d94284f512f2..e80a42b0e25821878bb3522419a0380fefdfb9d6 100644 --- a/wiki/src/support/known_issues/graphics.de.po +++ b/wiki/src/support/known_issues/graphics.de.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: 2020-03-26 11:58+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-01-15 21:32+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -280,8 +280,8 @@ msgstr "" #. type: Plain text msgid "" -"Try adding to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]], one after the other:" +"Try adding to the [[boot options|doc/advanced_topics/boot_options]], one " +"after the other:" msgstr "" #. type: Bullet: '* ' @@ -325,8 +325,8 @@ msgstr "" #. type: Plain text msgid "" -"Adding `radeon.dpm=0` to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]] fixes the issue." +"Adding `radeon.dpm=0` to the [[boot options|doc/advanced_topics/" +"boot_options]] fixes the issue." msgstr "" #. type: Plain text @@ -548,8 +548,8 @@ msgstr "" #. type: Plain text msgid "" -"Otherwise, try adding to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]], one after the other:" +"Otherwise, try adding to the [[boot options|doc/advanced_topics/" +"boot_options]], one after the other:" msgstr "" #. type: Bullet: '* ' @@ -708,6 +708,12 @@ msgid "" "org/wiki/CodeNames/#nv160familyturing) might be affected." msgstr "" +#. type: Plain text +msgid "" +"Try adding to the [[boot options|/doc/first_steps/" +"startup_options#boot_loader_menu]], one after the other:" +msgstr "" + #. type: Title = #, no-wrap msgid "Other issues\n" @@ -750,8 +756,8 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Add the `i915.modeset=0 rootpw=pass` option in the [[Boot Loader Menu|doc/" -"first_steps/startup_options#boot_loader_menu]]." +"Add the `i915.modeset=0 rootpw=pass` option in the [[Boot Loader|doc/" +"advanced_topics/boot_options]]." msgstr "" #. type: Bullet: ' 2. ' @@ -809,8 +815,14 @@ msgstr "" #. type: Plain text msgid "" "On some computers with switchable graphics, Tails 2.10 and later fails to " -"start the GNOME session and keeps returning to [[Tails Greeter|doc/" -"first_steps/startup_options#greeter]]." +"start the GNOME session and keeps returning to the [[Welcome Screen|doc/" +"first_steps/welcome_screen]]." +msgstr "" + +#. type: Plain text +msgid "" +"Try adding to the [[boot options|doc/advanced_topics/boot_options]]. one " +"after the other:" msgstr "" #. type: Bullet: '* ' @@ -851,8 +863,8 @@ msgstr "" #. type: Plain text msgid "" -"Adding `video=SVIDEO-1:d` to the [[boot options|/doc/first_steps/" -"startup_options/#boot_loader_menu]] fixes the issue." +"Adding `video=SVIDEO-1:d` to the [[boot options|doc/advanced_topics/" +"boot_options]] fixes the issue." msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues/graphics.es.po b/wiki/src/support/known_issues/graphics.es.po index 6d9f1660fa35cdabc823dbf979dc77fbcfb3b22c..6f058152c8bdfe06ca17ee8a31df7d27fb6dfad3 100644 --- a/wiki/src/support/known_issues/graphics.es.po +++ b/wiki/src/support/known_issues/graphics.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: 2020-03-26 11:58+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2019-10-23 12:31+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -312,8 +312,8 @@ msgstr "" #| "Try adding `nomodeset` to the [[startup options|doc/first_steps/" #| "startup_options#boot_loader_menu]]." msgid "" -"Try adding to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]], one after the other:" +"Try adding to the [[boot options|doc/advanced_topics/boot_options]], one " +"after the other:" msgstr "" "Intenta añadir `nomodeset` a las [[opciones de arranque|doc/first_steps/" "startup_options#boot_loader_menu]]." @@ -366,8 +366,8 @@ msgstr "" #| "Adding `radeon.dpm=0` to the [[startup options|/doc/first_steps/" #| "startup_options#boot_loader_menu]] fixes the issue." msgid "" -"Adding `radeon.dpm=0` to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]] fixes the issue." +"Adding `radeon.dpm=0` to the [[boot options|doc/advanced_topics/" +"boot_options]] fixes the issue." msgstr "" "El problema se arregla añadiendo `radeon.dpm=0` a las [[opciones de " "arranque|/doc/first_steps/startup_options/#boot_loader_menu]]." @@ -629,8 +629,8 @@ msgstr "Este problema se ha arreglado para algunas de estas tarjetas gráficas." #| "Try adding `nomodeset` to the [[startup options|doc/first_steps/" #| "startup_options#boot_loader_menu]]." msgid "" -"Otherwise, try adding to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]], one after the other:" +"Otherwise, try adding to the [[boot options|doc/advanced_topics/" +"boot_options]], one after the other:" msgstr "" "Intenta añadir `nomodeset` a las [[opciones de arranque|doc/first_steps/" "startup_options#boot_loader_menu]]." @@ -822,6 +822,18 @@ msgstr "" "[Lista de tarjetas gráficas de la familia NV110 (Pascal)](https://nouveau." "freedesktop.org/wiki/CodeNames/#nv130familypascal)" +#. type: Plain text +#, fuzzy +#| msgid "" +#| "Try adding `nomodeset` to the [[startup options|doc/first_steps/" +#| "startup_options#boot_loader_menu]]." +msgid "" +"Try adding to the [[boot options|/doc/first_steps/" +"startup_options#boot_loader_menu]], one after the other:" +msgstr "" +"Intenta añadir `nomodeset` a las [[opciones de arranque|doc/first_steps/" +"startup_options#boot_loader_menu]]." + #. type: Title = #, no-wrap msgid "Other issues\n" @@ -863,9 +875,13 @@ msgid "Expert Linux users can also do the following:" msgstr "Usuarios expertos de Linux pueden hacer lo siguiente:" #. type: Bullet: ' 1. ' +#, fuzzy +#| msgid "" +#| "Add the `i915.modeset=0 rootpw=pass` option in the [[Boot Loader Menu|doc/" +#| "first_steps/startup_options#boot_loader_menu]]." msgid "" -"Add the `i915.modeset=0 rootpw=pass` option in the [[Boot Loader Menu|doc/" -"first_steps/startup_options#boot_loader_menu]]." +"Add the `i915.modeset=0 rootpw=pass` option in the [[Boot Loader|doc/" +"advanced_topics/boot_options]]." msgstr "" "Añade `intel_idle.max_cstate=1` a las [[opciones de arranque|/doc/" "first_steps/startup_options/#boot_loader_menu]]." @@ -930,10 +946,22 @@ msgstr "" #. type: Plain text msgid "" "On some computers with switchable graphics, Tails 2.10 and later fails to " -"start the GNOME session and keeps returning to [[Tails Greeter|doc/" -"first_steps/startup_options#greeter]]." +"start the GNOME session and keeps returning to the [[Welcome Screen|doc/" +"first_steps/welcome_screen]]." msgstr "" +#. type: Plain text +#, fuzzy +#| msgid "" +#| "Try adding `nomodeset` to the [[startup options|doc/first_steps/" +#| "startup_options#boot_loader_menu]]." +msgid "" +"Try adding to the [[boot options|doc/advanced_topics/boot_options]]. one " +"after the other:" +msgstr "" +"Intenta añadir `nomodeset` a las [[opciones de arranque|doc/first_steps/" +"startup_options#boot_loader_menu]]." + #. type: Bullet: '* ' msgid "`modprobe.blacklist=nouveau`" msgstr "" @@ -979,8 +1007,8 @@ msgstr "La laptop se congela cuando corre Tails." #| "Adding `radeon.dpm=0` to the [[startup options|/doc/first_steps/" #| "startup_options#boot_loader_menu]] fixes the issue." msgid "" -"Adding `video=SVIDEO-1:d` to the [[boot options|/doc/first_steps/" -"startup_options/#boot_loader_menu]] fixes the issue." +"Adding `video=SVIDEO-1:d` to the [[boot options|doc/advanced_topics/" +"boot_options]] fixes the issue." msgstr "" "El problema se arregla añadiendo `radeon.dpm=0` a las [[opciones de " "arranque|/doc/first_steps/startup_options/#boot_loader_menu]]." diff --git a/wiki/src/support/known_issues/graphics.fa.po b/wiki/src/support/known_issues/graphics.fa.po index 49e26b9dfb91c884093d043ee6c9fd4914d27199..f990c0ae900c08ce076c61e91e55c2341f0f094f 100644 --- a/wiki/src/support/known_issues/graphics.fa.po +++ b/wiki/src/support/known_issues/graphics.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-03-26 11:58+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\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" @@ -283,8 +283,8 @@ msgstr "" #. type: Plain text msgid "" -"Try adding to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]], one after the other:" +"Try adding to the [[boot options|doc/advanced_topics/boot_options]], one " +"after the other:" msgstr "" #. type: Bullet: '* ' @@ -331,8 +331,8 @@ msgstr "" #. type: Plain text msgid "" -"Adding `radeon.dpm=0` to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]] fixes the issue." +"Adding `radeon.dpm=0` to the [[boot options|doc/advanced_topics/" +"boot_options]] fixes the issue." msgstr "" #. type: Plain text @@ -574,8 +574,8 @@ msgstr "" #. type: Plain text msgid "" -"Otherwise, try adding to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]], one after the other:" +"Otherwise, try adding to the [[boot options|doc/advanced_topics/" +"boot_options]], one after the other:" msgstr "" #. type: Bullet: '* ' @@ -735,6 +735,12 @@ msgid "" "org/wiki/CodeNames/#nv160familyturing) might be affected." msgstr "" +#. type: Plain text +msgid "" +"Try adding to the [[boot options|/doc/first_steps/" +"startup_options#boot_loader_menu]], one after the other:" +msgstr "" + #. type: Title = #, no-wrap msgid "Other issues\n" @@ -784,8 +790,8 @@ msgstr "کاربران خبرهٔ لینوکس نیز میتوانند این #. type: Bullet: ' 1. ' msgid "" -"Add the `i915.modeset=0 rootpw=pass` option in the [[Boot Loader Menu|doc/" -"first_steps/startup_options#boot_loader_menu]]." +"Add the `i915.modeset=0 rootpw=pass` option in the [[Boot Loader|doc/" +"advanced_topics/boot_options]]." msgstr "" #. type: Bullet: ' 2. ' @@ -851,8 +857,14 @@ msgstr "" #. type: Plain text msgid "" "On some computers with switchable graphics, Tails 2.10 and later fails to " -"start the GNOME session and keeps returning to [[Tails Greeter|doc/" -"first_steps/startup_options#greeter]]." +"start the GNOME session and keeps returning to the [[Welcome Screen|doc/" +"first_steps/welcome_screen]]." +msgstr "" + +#. type: Plain text +msgid "" +"Try adding to the [[boot options|doc/advanced_topics/boot_options]]. one " +"after the other:" msgstr "" #. type: Bullet: '* ' @@ -896,8 +908,8 @@ msgstr "" #. type: Plain text msgid "" -"Adding `video=SVIDEO-1:d` to the [[boot options|/doc/first_steps/" -"startup_options/#boot_loader_menu]] fixes the issue." +"Adding `video=SVIDEO-1:d` to the [[boot options|doc/advanced_topics/" +"boot_options]] fixes the issue." msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues/graphics.fr.po b/wiki/src/support/known_issues/graphics.fr.po index 6974bd483136cb34b6919bed8a3b30b067b58335..a1e4da7800265fd326c41226ccca826514e6f73b 100644 --- a/wiki/src/support/known_issues/graphics.fr.po +++ b/wiki/src/support/known_issues/graphics.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2020-03-26 11:58+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2020-03-27 15:36+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -323,30 +323,25 @@ msgid "" msgstr "" "<table>\n" "<tr><th>Nom</th><th>Identifiant</th><th>Numéro de version</th></tr>\n" -"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Mars XTX [Radeon HD " -"8790M]</td><td>[1002:6606]</td><td></td></tr>\n" -"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Mars XTX [Radeon HD " -"8790M]</td><td>[1002:6606]</td><td>(rev ff)</td></tr>\n" -"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Seymour LP [Radeon HD " -"6430M]</td><td>[1002:6761]</td><td></td></tr>\n" -"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Cedar [Radeon HD 5000/6000/" -"7350/8350 Series]</td><td>[1002:68f9]</td><td></td></tr>\n" -"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Broadway PRO [Mobility Radeon " -"HD 5850]</td><td>[1002:68a1]</td><td></td></tr>\n" -"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] RV730/M96 [Mobility Radeon HD " -"4650/5165]</td><td>[1002:9480]</td><td></td></tr>\n" -"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] " -"Device</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" -"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Trinity [Radeon HD " -"7520G]</td><td>[1002:9990]</td><td></td></tr>\n" -"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Beavercreek [Radeon HD " -"6550D]</td><td>[1002:9640]</td><td></td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Mars XTX [Radeon HD 8790M]</td><td>[1002:6606]</td><td></td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Mars XTX [Radeon HD 8790M]</td><td>[1002:6606]</td><td>(rev ff)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Seymour LP [Radeon HD 6430M]</td><td>[1002:6761]</td><td></td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Cedar [Radeon HD 5000/6000/7350/8350 Series]</td><td>[1002:68f9]</td><td></td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Broadway PRO [Mobility Radeon HD 5850]</td><td>[1002:68a1]</td><td></td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] RV730/M96 [Mobility Radeon HD 4650/5165]</td><td>[1002:9480]</td><td></td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Device</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Trinity [Radeon HD 7520G]</td><td>[1002:9990]</td><td></td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Beavercreek [Radeon HD 6550D]</td><td>[1002:9640]</td><td></td></tr>\n" "</table>\n" #. type: Plain text +#, fuzzy +#| msgid "" +#| "Try adding to the [[boot options|/doc/first_steps/" +#| "startup_options#boot_loader_menu]], one after the other:" msgid "" -"Try adding to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]], one after the other:" +"Try adding to the [[boot options|doc/advanced_topics/boot_options]], one " +"after the other:" msgstr "" "Essayez d'ajouter aux [[options de démarrage|doc/first_steps/" "startup_options#boot_loader_menu]], une à la fois :" @@ -399,9 +394,13 @@ msgstr "" "</table>\n" #. type: Plain text +#, fuzzy +#| msgid "" +#| "Adding `radeon.dpm=0` to the [[boot options|/doc/first_steps/" +#| "startup_options#boot_loader_menu]] fixes the issue." msgid "" -"Adding `radeon.dpm=0` to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]] fixes the issue." +"Adding `radeon.dpm=0` to the [[boot options|doc/advanced_topics/" +"boot_options]] fixes the issue." msgstr "" "Ajouter `radeon.dpm=0` dans les [[options de démarrage|/doc/first_steps/" "startup_options#boot_loader_menu]] corrige le problème." @@ -725,8 +724,8 @@ msgstr "Ce problème a été corrigé pour plusieurs de ces cartes graphiques." #| "Try adding to the [[boot options|/doc/first_steps/" #| "startup_options#boot_loader_menu]], one after the other:" msgid "" -"Otherwise, try adding to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]], one after the other:" +"Otherwise, try adding to the [[boot options|doc/advanced_topics/" +"boot_options]], one after the other:" msgstr "" "Essayez d'ajouter aux [[options de démarrage|doc/first_steps/" "startup_options#boot_loader_menu]], une à la fois :" @@ -965,6 +964,14 @@ msgstr "" "Les cartes graphiques de la [famille NV160 (Turing)](https://nouveau." "freedesktop.org/wiki/CodeNames/#nv160familyturing) pouvent être affectées." +#. type: Plain text +msgid "" +"Try adding to the [[boot options|/doc/first_steps/" +"startup_options#boot_loader_menu]], one after the other:" +msgstr "" +"Essayez d'ajouter aux [[options de démarrage|doc/first_steps/" +"startup_options#boot_loader_menu]], une à la fois :" + #. type: Title = #, no-wrap msgid "Other issues\n" @@ -1016,9 +1023,13 @@ msgid "Expert Linux users can also do the following:" msgstr "Les personnes expertes de Linux peuvent aussi :" #. type: Bullet: ' 1. ' +#, fuzzy +#| msgid "" +#| "Add the `i915.modeset=0 rootpw=pass` option in the [[Boot Loader Menu|doc/" +#| "first_steps/startup_options#boot_loader_menu]]." msgid "" -"Add the `i915.modeset=0 rootpw=pass` option in the [[Boot Loader Menu|doc/" -"first_steps/startup_options#boot_loader_menu]]." +"Add the `i915.modeset=0 rootpw=pass` option in the [[Boot Loader|doc/" +"advanced_topics/boot_options]]." msgstr "" "Ajouter l'option `i915.modeset=0 rootpw=pass` dans le [[menu du chargeur " "d’amorçage|doc/first_steps/startup_options#boot_loader_menu]]." @@ -1087,15 +1098,32 @@ msgid "Cannot start GNOME session with switchable graphics computers\n" msgstr "La session GNOME ne peut pas démarrer avec des ordinateurs avec cartes graphiques commutables\n" #. type: Plain text +#, fuzzy +#| msgid "" +#| "On some computers with switchable graphics, Tails 2.10 and later fails to " +#| "start the GNOME session and keeps returning to [[Tails Greeter|doc/" +#| "first_steps/startup_options#greeter]]." msgid "" "On some computers with switchable graphics, Tails 2.10 and later fails to " -"start the GNOME session and keeps returning to [[Tails Greeter|doc/" -"first_steps/startup_options#greeter]]." +"start the GNOME session and keeps returning to the [[Welcome Screen|doc/" +"first_steps/welcome_screen]]." msgstr "" "Sur certains ordinateurs avec cartes graphiques commutables, Tails 2.10 et " "suivants ne peuvent ouvrir une session GNOME et reviennent systématiquement " "au [[Tails Greeter|doc/first_steps/startup_options#greeter]]." +#. type: Plain text +#, fuzzy +#| msgid "" +#| "Try adding to the [[boot options|/doc/first_steps/" +#| "startup_options#boot_loader_menu]], one after the other:" +msgid "" +"Try adding to the [[boot options|doc/advanced_topics/boot_options]]. one " +"after the other:" +msgstr "" +"Essayez d'ajouter aux [[options de démarrage|doc/first_steps/" +"startup_options#boot_loader_menu]], une à la fois :" + #. type: Bullet: '* ' msgid "`modprobe.blacklist=nouveau`" msgstr "`modprobe.blacklist=nouveau`" @@ -1141,9 +1169,13 @@ msgid "The laptop crashes while running Tails." msgstr "L'ordinateur portable plante lors de l'utilisation de Tails." #. type: Plain text +#, fuzzy +#| msgid "" +#| "Adding `video=SVIDEO-1:d` to the [[boot options|/doc/first_steps/" +#| "startup_options/#boot_loader_menu]] fixes the issue." msgid "" -"Adding `video=SVIDEO-1:d` to the [[boot options|/doc/first_steps/" -"startup_options/#boot_loader_menu]] fixes the issue." +"Adding `video=SVIDEO-1:d` to the [[boot options|doc/advanced_topics/" +"boot_options]] fixes the issue." msgstr "" "Ajouter `video=SVIDEO-1:d` dans les [[options de démarrage|/doc/first_steps/" "startup_options/#boot_loader_menu]] corrige le problème." diff --git a/wiki/src/support/known_issues/graphics.it.po b/wiki/src/support/known_issues/graphics.it.po index 1fd28b6d76e0b2e14ff74b50b03940e37f009d89..62e720a8b2662eb72af0cc159c5ea6738a6dbb83 100644 --- a/wiki/src/support/known_issues/graphics.it.po +++ b/wiki/src/support/known_issues/graphics.it.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: 2020-03-26 11:58+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2019-10-23 12:30+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -283,8 +283,8 @@ msgstr "" #. type: Plain text msgid "" -"Try adding to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]], one after the other:" +"Try adding to the [[boot options|doc/advanced_topics/boot_options]], one " +"after the other:" msgstr "" #. type: Bullet: '* ' @@ -328,8 +328,8 @@ msgstr "" #. type: Plain text msgid "" -"Adding `radeon.dpm=0` to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]] fixes the issue." +"Adding `radeon.dpm=0` to the [[boot options|doc/advanced_topics/" +"boot_options]] fixes the issue." msgstr "" #. type: Plain text @@ -558,8 +558,8 @@ msgstr "" #. type: Plain text msgid "" -"Otherwise, try adding to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]], one after the other:" +"Otherwise, try adding to the [[boot options|doc/advanced_topics/" +"boot_options]], one after the other:" msgstr "" #. type: Bullet: '* ' @@ -719,6 +719,12 @@ msgid "" "org/wiki/CodeNames/#nv160familyturing) might be affected." msgstr "" +#. type: Plain text +msgid "" +"Try adding to the [[boot options|/doc/first_steps/" +"startup_options#boot_loader_menu]], one after the other:" +msgstr "" + #. type: Title = #, no-wrap msgid "Other issues\n" @@ -761,8 +767,8 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Add the `i915.modeset=0 rootpw=pass` option in the [[Boot Loader Menu|doc/" -"first_steps/startup_options#boot_loader_menu]]." +"Add the `i915.modeset=0 rootpw=pass` option in the [[Boot Loader|doc/" +"advanced_topics/boot_options]]." msgstr "" #. type: Bullet: ' 2. ' @@ -820,8 +826,14 @@ msgstr "" #. type: Plain text msgid "" "On some computers with switchable graphics, Tails 2.10 and later fails to " -"start the GNOME session and keeps returning to [[Tails Greeter|doc/" -"first_steps/startup_options#greeter]]." +"start the GNOME session and keeps returning to the [[Welcome Screen|doc/" +"first_steps/welcome_screen]]." +msgstr "" + +#. type: Plain text +msgid "" +"Try adding to the [[boot options|doc/advanced_topics/boot_options]]. one " +"after the other:" msgstr "" #. type: Bullet: '* ' @@ -862,8 +874,8 @@ msgstr "" #. type: Plain text msgid "" -"Adding `video=SVIDEO-1:d` to the [[boot options|/doc/first_steps/" -"startup_options/#boot_loader_menu]] fixes the issue." +"Adding `video=SVIDEO-1:d` to the [[boot options|doc/advanced_topics/" +"boot_options]] fixes the issue." msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues/graphics.mdwn b/wiki/src/support/known_issues/graphics.mdwn index 65256e1cefa9b22f9a77fb37cce8c0108649e0fb..01ce56976d5a772615b981ec73eab7a719839942 100644 --- a/wiki/src/support/known_issues/graphics.mdwn +++ b/wiki/src/support/known_issues/graphics.mdwn @@ -135,7 +135,7 @@ Tickets: #11095 #12482 ### Workaround Try adding to the [[boot -options|/doc/first_steps/startup_options#boot_loader_menu]], +options|doc/advanced_topics/boot_options]], one after the other: * `radeon.modeset=0` @@ -162,7 +162,7 @@ Tickets: #12218 #11850 ### Workaround Adding `radeon.dpm=0` to the -[[boot options|/doc/first_steps/startup_options#boot_loader_menu]] +[[boot options|doc/advanced_topics/boot_options]] fixes the issue. <a id="intel"></a> @@ -191,7 +191,7 @@ Various Intel graphics card. ### Workaround Try adding to the [[boot -options|/doc/first_steps/startup_options#boot_loader_menu]], +options|doc/advanced_topics/boot_options]], one after the other: * `xorg-driver=intel` @@ -237,7 +237,7 @@ Ticket: #15491 ### Workaround Try adding to the [[boot -options|/doc/first_steps/startup_options#boot_loader_menu]], +options|doc/advanced_topics/boot_options]], one after the other: * `nomodeset` @@ -334,7 +334,7 @@ Ticket: #15116 This problem has been fixed for some of these graphic cards. Otherwise, try adding to the [[boot -options|/doc/first_steps/startup_options#boot_loader_menu]], +options|doc/advanced_topics/boot_options]], one after the other: * `nouveau.noaccel=1` @@ -442,7 +442,7 @@ Last updated: 2019-07-30 This problem has been fixed for some of these graphic cards. Otherwise, try adding to the [[boot -options|/doc/first_steps/startup_options#boot_loader_menu]], +options|doc/advanced_topics/boot_options]], one after the other: * `nouveau.noaccel=0` @@ -510,7 +510,7 @@ There are several possible workarounds for this issue: * Expert Linux users can also do the following: 1. Add the `i915.modeset=0 rootpw=pass` option in the - [[Boot Loader Menu|doc/first_steps/startup_options#boot_loader_menu]]. + [[Boot Loader|doc/advanced_topics/boot_options]]. 2. Create a file `/etc/X11/xorg.conf.d/switchable.conf` with the following content: @@ -538,11 +538,11 @@ Cannot start GNOME session with switchable graphics computers ------------------------------------------------------------- On some computers with switchable graphics, Tails 2.10 and later fails -to start the GNOME session and keeps returning to [[Tails -Greeter|doc/first_steps/startup_options#greeter]]. +to start the GNOME session and keeps returning to the [[Welcome +Screen|doc/first_steps/welcome_screen]]. Try adding to the [[boot -options|/doc/first_steps/startup_options#boot_loader_menu]], +options|doc/advanced_topics/boot_options]]. one after the other: * `modprobe.blacklist=nouveau` @@ -570,7 +570,7 @@ The laptop crashes while running Tails. ### Workaround Adding `video=SVIDEO-1:d` to the -[[boot options|/doc/first_steps/startup_options/#boot_loader_menu]] fixes the issue. +[[boot options|doc/advanced_topics/boot_options]] fixes the issue. <a id="qemu"></a> diff --git a/wiki/src/support/known_issues/graphics.pt.po b/wiki/src/support/known_issues/graphics.pt.po index 0479a46d5af149ef8fc469282974fc5fd0fd2a94..f20c13181f2e1b3c1253550977c12101f7ce4223 100644 --- a/wiki/src/support/known_issues/graphics.pt.po +++ b/wiki/src/support/known_issues/graphics.pt.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: 2020-03-26 11:58+0000\n" +"POT-Creation-Date: 2020-04-07 17:04+0200\n" "PO-Revision-Date: 2019-12-22 21:04+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -285,8 +285,8 @@ msgstr "" #. type: Plain text msgid "" -"Try adding to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]], one after the other:" +"Try adding to the [[boot options|doc/advanced_topics/boot_options]], one " +"after the other:" msgstr "" #. type: Bullet: '* ' @@ -333,8 +333,8 @@ msgstr "" #. type: Plain text msgid "" -"Adding `radeon.dpm=0` to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]] fixes the issue." +"Adding `radeon.dpm=0` to the [[boot options|doc/advanced_topics/" +"boot_options]] fixes the issue." msgstr "" #. type: Plain text @@ -576,8 +576,8 @@ msgstr "" #. type: Plain text msgid "" -"Otherwise, try adding to the [[boot options|/doc/first_steps/" -"startup_options#boot_loader_menu]], one after the other:" +"Otherwise, try adding to the [[boot options|doc/advanced_topics/" +"boot_options]], one after the other:" msgstr "" #. type: Bullet: '* ' @@ -737,6 +737,12 @@ msgid "" "org/wiki/CodeNames/#nv160familyturing) might be affected." msgstr "" +#. type: Plain text +msgid "" +"Try adding to the [[boot options|/doc/first_steps/" +"startup_options#boot_loader_menu]], one after the other:" +msgstr "" + #. type: Title = #, no-wrap msgid "Other issues\n" @@ -779,8 +785,8 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Add the `i915.modeset=0 rootpw=pass` option in the [[Boot Loader Menu|doc/" -"first_steps/startup_options#boot_loader_menu]]." +"Add the `i915.modeset=0 rootpw=pass` option in the [[Boot Loader|doc/" +"advanced_topics/boot_options]]." msgstr "" #. type: Bullet: ' 2. ' @@ -843,8 +849,14 @@ msgstr "" #. type: Plain text msgid "" "On some computers with switchable graphics, Tails 2.10 and later fails to " -"start the GNOME session and keeps returning to [[Tails Greeter|doc/" -"first_steps/startup_options#greeter]]." +"start the GNOME session and keeps returning to the [[Welcome Screen|doc/" +"first_steps/welcome_screen]]." +msgstr "" + +#. type: Plain text +msgid "" +"Try adding to the [[boot options|doc/advanced_topics/boot_options]]. one " +"after the other:" msgstr "" #. type: Bullet: '* ' @@ -888,8 +900,8 @@ msgstr "" #. type: Plain text msgid "" -"Adding `video=SVIDEO-1:d` to the [[boot options|/doc/first_steps/" -"startup_options/#boot_loader_menu]] fixes the issue." +"Adding `video=SVIDEO-1:d` to the [[boot options|doc/advanced_topics/" +"boot_options]] fixes the issue." msgstr "" #. type: Plain text diff --git a/wiki/src/torrents/files/tails-amd64-4.4.1.img.sig b/wiki/src/torrents/files/tails-amd64-4.4.1.img.sig deleted file mode 100644 index 2a8ccf76370b547578c8f961dba4f9c503c1ec29..0000000000000000000000000000000000000000 --- a/wiki/src/torrents/files/tails-amd64-4.4.1.img.sig +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl53058ACgkQqLD05Fsb -UOKCqQ/+Lre4D+QIvlnqgwXxFED5rdQKf/oTPet2L/QoRQi0ZCGYh34HsGXnz9nQ -tnhLCBcIuiA4ELQPwx00Yh6LQKHwgKoU92egKaxE/2f/YIEbmHP5yl8wLS1OLqZP -uGSbKgaJPG7FNNPpcqkEs5buNPddmjcHWI7x0KWcK2Brodc9IPsXUHnEqwSBij1f -y5whVRdJR8BfoQgm6OFAb4lZsvN/Li2seqqIkEfLW7mdaVrlJUcwWSvMEVBgV42h -EjErlN+2Ffd7Bb+qH0/ZYMrqPzqvCiRJj3yP3JyzdF1r0C2GOFZvdeuSaB/W9ppS -t96ZxPE4Fhewk52YiP64d/pqiJzH9TWOSCl74SnUufiyrO45F4L4msHg09zomR9q -L17q0DmAkZX9KPgfm4D12jYdsOHY4vUoD3ElxWD1XLgSEpQ8SB6ucCTIjAYqnich -2OwLZn9yx6asGttHIr6wTsCIl53/2djxr7ejyUv7noUi5uUuYDJC03xLwyIZm47h -F5nseEDzYyxjajCRy3jB++1Rh1lV/6XbLYQMXdubQBfJ6mygSgMWFgn9nryOxFJj -GrhDHSpywDowAM4C98J0jxKlLWAfAoHVQ6leSlOOvSgO54MW3hhmLHnQm98VRrxd -K90N6/9nUnP5vUeSKEx1Y7b4tXZA9JEx7XgHRhbbpLAa8MWOwPA= -=ligl ------END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-4.4.1.img.torrent b/wiki/src/torrents/files/tails-amd64-4.4.1.img.torrent deleted file mode 100644 index 7dd80c3cbb3e6c3146b7ce4d2ec954239e7bcff9..0000000000000000000000000000000000000000 Binary files a/wiki/src/torrents/files/tails-amd64-4.4.1.img.torrent and /dev/null differ diff --git a/wiki/src/torrents/files/tails-amd64-4.4.1.iso.sig b/wiki/src/torrents/files/tails-amd64-4.4.1.iso.sig deleted file mode 100644 index 769a0fbeb0927fab54c6410e7ab1d94db5de9171..0000000000000000000000000000000000000000 --- a/wiki/src/torrents/files/tails-amd64-4.4.1.iso.sig +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl5305AACgkQqLD05Fsb -UOJ7tw/8Cj7gHWGfhf7SeWxQ63c7BYVDO0PsMbr1JMKcy5BOHZaM6gVNVzl7CM5p -/EINjXcp3/DZV/QV9c38y1TjSbX9IS37DzibRV9Jh1BEqiHVLaMd/tAIdjDYD0Rz -FNHhUbPses8Qlgf1Hyz7cfy9E4wBhIDWc5MbAvGuHljp3JjGDpma+9L5TmCbBwa8 -jCZjoikpoi0vVI+l8zekUqmiCm6DlknyRoLpyLuJTkJOjntT4F+FLwWdQ+xAAi6Y -1RwmumfVCi8XHpLBevQZgCw+v15UIiSj2jHYH8/qKCAi5oftQJAJBPWfHzAiieoY -S5HFyY2H8Kdd3XKfFo41lBFAqk66JZjg7xnawNdFjgAK4CKejLimns/5nUwf0qW9 -MDC89KrOQNjvM0oV8BYOu8VIqUfvR27F6+c8ygEjoI1uIstt4ADTlYZ0Q2Iscrsn -nBlbbqfmZsKAUvWLR19pdWfSznKu5ahLY0MoF/04MsK5/bSxoD3q/1hHQ8fJQIvM -G39Wo/UsXzjOAxMeizSWaiGVaAa3fZhnNisrPR1T8SwqTgA7Aj7xMRH7sqq68r32 -8byonlgfmeJSPHbE27DnNoT9jrzzTd7N12wJAdThxNub6ZLU6WyBLB3B9GSoK4gA -ufotKcgQEOkuqGbKBl8C1GdYwUnflu8d78GfQSxYk4WfgsB2Km8= -=bQw4 ------END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-4.4.1.iso.torrent b/wiki/src/torrents/files/tails-amd64-4.4.1.iso.torrent deleted file mode 100644 index c7a959542ce8a4c525b17d7904949a57bceb5aa6..0000000000000000000000000000000000000000 Binary files a/wiki/src/torrents/files/tails-amd64-4.4.1.iso.torrent and /dev/null differ diff --git a/wiki/src/torrents/files/tails-amd64-4.4.1.build-manifest b/wiki/src/torrents/files/tails-amd64-4.5.build-manifest similarity index 99% rename from wiki/src/torrents/files/tails-amd64-4.4.1.build-manifest rename to wiki/src/torrents/files/tails-amd64-4.5.build-manifest index 9a4acb94c951a29b9dd4338cb7c45c97be603e56..37640ebc3ab477b536a16d36f30882b0545d7874 100644 --- a/wiki/src/torrents/files/tails-amd64-4.4.1.build-manifest +++ b/wiki/src/torrents/files/tails-amd64-4.5.build-manifest @@ -1,11 +1,11 @@ --- origin_references: debian: - reference: '2020030101' + reference: '2020032503' debian-security: - reference: '2020032203' + reference: '2020040603' torproject: - reference: '2020032002' + reference: '2020032503' packages: binary: - arch: amd64 @@ -877,16 +877,22 @@ packages: version: 1.22.4-3 - arch: amd64 package: grub-common - version: 2.02+dfsg1-20 + version: 2.04-5 + - arch: amd64 + package: grub-efi-amd64-bin + version: 2.04-5 + - arch: amd64 + package: grub-efi-amd64-signed + version: 1+2.04+5 - arch: amd64 package: grub-efi-ia32-bin - version: 2.02+dfsg1-20 + version: 2.04-5 - arch: amd64 package: grub-efi-ia32 - version: 2.02+dfsg1-20 + version: 2.04-5 - arch: amd64 package: grub2-common - version: 2.02+dfsg1-20 + version: 2.04-5 - arch: all package: gsettings-desktop-schemas version: 3.28.1-1 @@ -1336,7 +1342,7 @@ packages: version: 2.20-7+deb10u1 - arch: amd64 package: libbluetooth3 - version: 5.50-1 + version: 5.50-1.2~deb10u1 - arch: amd64 package: libbluray2 version: 1:1.1.0-1 @@ -2195,6 +2201,9 @@ packages: - arch: amd64 package: libgnutls30 version: 3.6.7-4+deb10u2 + - arch: amd64 + package: libgnutls30 + version: 3.6.7-4+deb10u3 - arch: amd64 package: libgoa-1.0-0b version: 3.30.1-2 @@ -2422,7 +2431,7 @@ packages: version: 2:1.0.9-2 - arch: amd64 package: libicu63 - version: 63.1-6 + version: 63.1-6+deb10u1 - arch: amd64 package: libid3tag0 version: 0.15.1b-14 @@ -4406,9 +4415,6 @@ packages: - arch: amd64 package: linux-libc-dev version: 4.19.98-1 - - arch: all - package: linux-source-5.4 - version: 5.4.19-1 - arch: all package: live-boot-initramfs-tools version: 1:20170112 @@ -4508,6 +4514,9 @@ packages: - arch: amd64 package: modemmanager version: 1.10.0-1 + - arch: amd64 + package: mokutil + version: 0.3.0+1538710437.fb6250f-1 - arch: amd64 package: mount version: 2.33.1-0.1 @@ -4768,7 +4777,7 @@ packages: version: 2.7.16-1 - arch: all package: python3-aiohttp-socks - version: 0.3.3-1 + version: 0.3.4-1 - arch: amd64 package: python3-aiohttp version: 3.5.1-1 @@ -5045,6 +5054,18 @@ packages: - arch: amd64 package: shared-mime-info version: 1.10-1 + - arch: amd64 + package: shim-helpers-amd64-signed + version: 1+15+1533136590.3beb971+7 + - arch: all + package: shim-signed-common + version: 1.33+15+1533136590.3beb971-7 + - arch: amd64 + package: shim-signed + version: 1.33+15+1533136590.3beb971-7 + - arch: amd64 + package: shim-unsigned + version: 15+1533136590.3beb971-7 - arch: amd64 package: simple-scan version: 3.30.1.1-1+b1 @@ -5111,9 +5132,6 @@ packages: - arch: amd64 package: tails-installer version: 5.0.16+dfsg-0tails1 - - arch: all - package: tails-persistence-setup - version: 2.2.1-1 - arch: amd64 package: tar version: 1.30+dfsg-6 @@ -5266,13 +5284,13 @@ packages: version: 2:8.1.0875-5 - arch: all package: virtualbox-guest-dkms - version: 6.1.4-dfsg-1 + version: 6.1.4-dfsg-2 - arch: amd64 package: virtualbox-guest-utils - version: 6.1.4-dfsg-1 + version: 6.1.4-dfsg-2 - arch: amd64 package: virtualbox-guest-x11 - version: 6.1.4-dfsg-1 + version: 6.1.4-dfsg-2 - arch: all package: webext-ublock-origin version: 1.22.2+dfsg-1 @@ -5284,7 +5302,7 @@ packages: version: 0.52.20-8 - arch: all package: whisperback - version: 1.8.1 + version: 1.8.3 - arch: amd64 package: whois version: 5.4.3 diff --git a/wiki/src/torrents/files/tails-amd64-4.5.img.sig b/wiki/src/torrents/files/tails-amd64-4.5.img.sig new file mode 100644 index 0000000000000000000000000000000000000000..beeb6fe8277505131a8c464e70c11f6c4f286bc4 --- /dev/null +++ b/wiki/src/torrents/files/tails-amd64-4.5.img.sig @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6LlyYACgkQqLD05Fsb +UOKO6hAAsedP5Y+MoyWLAhX0xv40i3cnpsLUDmNUfcZvcKeFR2OLDEO+6ZcGZW0q +rEOLx15guCst4JnJQ/shD9jyOpiy00AD5df35KYYpE2dgR/ZG+HMHb+YpXwld/Nm +aP9TGvUg6SGTuPGcurcjOMqcUGSseUFJWV9lpnHhyEH63MR/DJkuTZ6HdFkEGWCu +c57T3eLyfVmsovNWWy5hRrJD14hBOSU4vVNweUYUBF+xgWAs+QaynwqZl4CNJ8tk +vMZ9VR6NG+JaQSI6/8QtwL4Sd5MbbhbCBUi5UB6zUPfmsGbIgSd3X63rWD5Gbv6+ +MUkpmi5lKyTxrWFW4ohVTUACtTILpbJun74Zg/hXE4vVZscqoI/UfJ4sMTgfjmi8 +oRi6FqM7WBdnKZ7zc5C5v4uGlorjCTOi8mZubgAT4esRQYyx4JsQaYJqd1Q1NqPP +Szq8bYXSBijGNsD+HNPpmOUOwdvhUbSC6ykPvWGPLsGAuVJ0XCUgs7Xev+IYeJU1 +CzAF5W6z6fBhDBf/KevaYmGhcWoHHsUtANDr21RwM1BvfUZs3HxApTppC5y91LKk +uHdwDEx+htXVp9QEgShM6xq2e6qE8h+kZXWismq8Tl9vzJaFp9gA/jSMjUDIJ8bt +W6FLYIaK8uGX7Tr7L8tQk4MYmUJ0L0g/cKPB9AMkgtg0ToidT6o= +=/7yU +-----END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-4.5.img.torrent b/wiki/src/torrents/files/tails-amd64-4.5.img.torrent new file mode 100644 index 0000000000000000000000000000000000000000..ab1f5faf48901c60cc6ea4eea57c957653c54574 Binary files /dev/null and b/wiki/src/torrents/files/tails-amd64-4.5.img.torrent differ diff --git a/wiki/src/torrents/files/tails-amd64-4.5.iso.sig b/wiki/src/torrents/files/tails-amd64-4.5.iso.sig new file mode 100644 index 0000000000000000000000000000000000000000..b61f69619f3d8279da14e5d679a842bc429f2270 --- /dev/null +++ b/wiki/src/torrents/files/tails-amd64-4.5.iso.sig @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6LlxMACgkQqLD05Fsb +UOLwTg//eU8jicbhtXHzbt13lTT5hERtIUGBDZRYTPnLY7Fpknj4D156ZutaJP4s +6Z+bQQYT763dhQSApqnK9DZAKwffMTsisVQ9Xee3IgDgCHuoYfj09fF5HoCOMd6r +iSMV2RptgHWC4k9g4ECfKeLCkfAkwGEEHWOMPu2r3NrlPDWmVFSRT7qlLN9x/8mB +i99dOu0PYhisJ/5tGAc7QB5Q4eX42YOxy4wFvuSns0eLpEfLf4Qnu7URmdCQ/oMH +RdYfEVKo9X4Rq6lX2YdnPagy6JcIUiEdm0qfCT4rK2f8P/SZ8cgyptUikHFSQTHO +79HwcHOWLrj4+XeJdzSTHwcif0nk2Uvr9rQNpMkwt/+uJCtGTpeQnasaG8Nc1XYj +DfvkZgpHio37h+yDHZ4N70vEssEjFkAEmjNtS0f7o2IwS8+6eJtU+k2Y0y0f5CDz +vzeeQCrs5l3Bco+FbBYTAk1k4Bs9Qeq7UtJF9CyUktD1Z5RwBo75wtPeMsq8ePQo +Re8NZYhzUmcJctRufY4dUtxNjuJtUC8+V0G1WU7yiBdVbSvGZ905HiYsfGGMQJdV +sprW4THYbTHgSVd7yir1jw25LHbqPhbN/4lu77wzbkrQMc5CIAoPLeISf7kblcAw +ab119cFojFZN17VyAuHIpRMhpNbfao6dheRhG61chL/uYDP1jDU= +=Kn3H +-----END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-4.5.iso.torrent b/wiki/src/torrents/files/tails-amd64-4.5.iso.torrent new file mode 100644 index 0000000000000000000000000000000000000000..4062d35c33369a2897f18ac65d1754d7314610ee Binary files /dev/null and b/wiki/src/torrents/files/tails-amd64-4.5.iso.torrent differ diff --git a/wiki/src/torrents/files/tails-amd64-4.4.1.packages b/wiki/src/torrents/files/tails-amd64-4.5.packages similarity index 98% rename from wiki/src/torrents/files/tails-amd64-4.4.1.packages rename to wiki/src/torrents/files/tails-amd64-4.5.packages index 55692a30b2460bcc6294014bb1e140e660dddd98..64d8bcd7d392d2bfea5e3f0eb746af5e09598fdb 100644 --- a/wiki/src/torrents/files/tails-amd64-4.4.1.packages +++ b/wiki/src/torrents/files/tails-amd64-4.5.packages @@ -120,7 +120,7 @@ ffmpeg 7:4.1.4-1~deb10u1 file 1:5.35-4+deb10u1 file-roller 3.30.1-2 findutils 4.6.0+git+20190209-2 -firefox 68.6.0+fake1 +firefox 68.7.0+fake1 firmware-amd-graphics 20190717-2 firmware-atheros 20190717-2 firmware-b43-installer 1:019-4 @@ -266,10 +266,12 @@ gpgv 2.2.12-1+deb10u1 grep 3.3-1 grilo-plugins-0.3:amd64 0.3.8-2 groff-base 1.22.4-3 -grub-common 2.02+dfsg1-20 -grub-efi-ia32 2.02+dfsg1-20 -grub-efi-ia32-bin 2.02+dfsg1-20 -grub2-common 2.02+dfsg1-20 +grub-common 2.04-5 +grub-efi-amd64-bin 2.04-5 +grub-efi-amd64-signed 1+2.04+5 +grub-efi-ia32 2.04-5 +grub-efi-ia32-bin 2.04-5 +grub2-common 2.04-5 gsettings-desktop-schemas 3.28.1-1 gstreamer1.0-clutter-3.0:amd64 3.0.26-2 gstreamer1.0-libav:amd64 1.15.0.1+git20180723+db823502-2 @@ -411,7 +413,7 @@ libblockdev-part2:amd64 2.20-7+deb10u1 libblockdev-swap2:amd64 2.20-7+deb10u1 libblockdev-utils2:amd64 2.20-7+deb10u1 libblockdev2:amd64 2.20-7+deb10u1 -libbluetooth3:amd64 5.50-1 +libbluetooth3:amd64 5.50-1.2~deb10u1 libbluray2:amd64 1:1.1.0-1 libboost-atomic1.67.0:amd64 1.67.0-13+deb10u1 libboost-chrono1.67.0:amd64 1.67.0-13+deb10u1 @@ -670,7 +672,7 @@ libgnomekbd-common 3.26.1-1 libgnomekbd8:amd64 3.26.1-1 libgnupg-interface-perl 0.52-10 libgnustep-base1.26 1.26.0-4+deb10u1 -libgnutls30:amd64 3.6.7-4+deb10u2 +libgnutls30:amd64 3.6.7-4+deb10u3 libgoa-1.0-0b:amd64 3.30.1-2 libgoa-1.0-common 3.30.1-2 libgoa-backend-1.0-1:amd64 3.30.1-2 @@ -745,7 +747,7 @@ libhyphen0:amd64 2.8.8-7 libibus-1.0-5:amd64 1.5.19-4+deb10u1.0tails1 libical3:amd64 3.0.4-3 libice6:amd64 2:1.0.9-2 -libicu63:amd64 63.1-6 +libicu63:amd64 63.1-6+deb10u1 libid3tag0:amd64 0.15.1b-14 libidn11:amd64 1.33-2.2 libidn2-0:amd64 2.0.5-1+deb10u1 @@ -1369,6 +1371,7 @@ mesa-utils 8.4.0-1+b1 mime-support 3.62 mobile-broadband-provider-info 20170903-1 modemmanager 1.10.0-1 +mokutil 0.3.0+1538710437.fb6250f-1 mount 2.33.1-0.1 mousetweaks 3.12.0-5 mtools 4.0.23-1 @@ -1456,7 +1459,7 @@ python2.7 2.7.16-2+deb10u1 python2.7-minimal 2.7.16-2+deb10u1 python3 3.7.3-1 python3-aiohttp 3.5.1-1 -python3-aiohttp-socks 0.3.3-1 +python3-aiohttp-socks 0.3.4-1 python3-aiorpcx 0.18.4-1 python3-apt 1.8.4.1 python3-async-timeout 3.0.1-1 @@ -1544,6 +1547,10 @@ secure-delete 3.1-6 sed 4.7-1 sensible-utils 0.0.12 shared-mime-info 1.10-1 +shim-helpers-amd64-signed 1+15+1533136590.3beb971+7 +shim-signed:amd64 1.33+15+1533136590.3beb971-7 +shim-signed-common 1.33+15+1533136590.3beb971-7 +shim-unsigned 15+1533136590.3beb971-7 simple-scan 3.30.1.1-1+b1 sound-juicer 3.24.0-3 sound-theme-freedesktop 0.8-2 @@ -1564,8 +1571,6 @@ systemd 241-7~deb10u3 systemd-sysv 241-7~deb10u3 sysvinit-utils 2.93-8 tails-installer 5.0.16+dfsg-0tails1 -tails-perl5lib 4.0 -tails-persistence-setup 2.2.1-1 tar 1.30+dfsg-6 tcpdump 4.9.3-1~deb10u1 tcpflow 1.5.2+repack1-1 @@ -1614,13 +1619,13 @@ user-setup 1.81 util-linux 2.33.1-0.1 vim-common 2:8.1.0875-5 vim-tiny 2:8.1.0875-5 -virtualbox-guest-dkms-dummy 6.1.4-dfsg-1+tails.fake1 -virtualbox-guest-utils 6.1.4-dfsg-1 -virtualbox-guest-x11 6.1.4-dfsg-1 +virtualbox-guest-dkms-dummy 6.1.4-dfsg-2+tails.fake1 +virtualbox-guest-utils 6.1.4-dfsg-2 +virtualbox-guest-x11 6.1.4-dfsg-2 webext-ublock-origin 1.22.2+dfsg-1 wget 1.20.1-1.1 whiptail 0.52.20-8 -whisperback 1.8.1 +whisperback 1.8.3 whois 5.4.3 wireless-regdb 2016.06.10-1 wireless-tools 30~pre9-13 diff --git a/wiki/src/torrents/files/tails-amd64-4.5~rc1.img.sig b/wiki/src/torrents/files/tails-amd64-4.5~rc1.img.sig deleted file mode 100644 index ddb3c8d8264991e05b804d1f4532e0c754f2a5a3..0000000000000000000000000000000000000000 --- a/wiki/src/torrents/files/tails-amd64-4.5~rc1.img.sig +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl59OrUACgkQqLD05Fsb -UOLKZA//TuXxeisCtGRgqHOBZyblKLcDGAdjpXXkQUps4bcsaukekSIh2KippMMo -bpg0ua73qaSEGHtc1KbrqV/kb6QTDCTJuKREjEVG769Ggz8bqqNPhhx2P+qzQ4ew -V82izQiOcedAXc972PAQWKESI5d3+fKf/xO8bB6yb4TkP2hD4tfWDge/3duXA437 -TlXAPHEMhV333VJ3qioB+j1h/3ATwoI78R7m1R15uDJRCfCSaU03FVZffUIV5TGJ -BOrcFe+MKPpA30tgoOfLr6NxtfnM6RzC7E3cDwjvaSLgcx64SztJ+G9STR0EVI6Y -9YMV5WmVSKzntGrTgO1w6UieWWcaNWFcvA1NCdmEl3vSwSz2vEfqscz6fm54s38L -nZ5LE/4Rzaz4ptnkLgiiGKetFpQ9IcE9g+3hcKP9imrO0/ZU4XF5Y81M2uw1W07H -FFVaxb7Rhj8kxAZ230J6MJKli5pIvMTvNiZrrDOM2VU4qzIAgjmPy8jznafCV5Hu -Nb1QanyiPjn+NLYkcZqe0rm5lp2t+5rfQGtdnEmaJSM6p+AO0E3rJZ9kMHvJkwRm -iOLpAoagA6fim+LoYYRv5N7odYpp9uGVmAmt7YPnyoMVSbbT1mi247R8VTfqi9wS -FIOTuUNtWHh5+wm3//FN4Dcwean2HBGpiscx/EA81Cl7pVf8YsY= -=4ZyU ------END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-4.5~rc1.img.torrent b/wiki/src/torrents/files/tails-amd64-4.5~rc1.img.torrent deleted file mode 100644 index ba8dfe4cc6f0106b5ae501dd13eb84dadd7f9d66..0000000000000000000000000000000000000000 Binary files a/wiki/src/torrents/files/tails-amd64-4.5~rc1.img.torrent and /dev/null differ diff --git a/wiki/src/torrents/files/tails-amd64-4.5~rc1.iso.sig b/wiki/src/torrents/files/tails-amd64-4.5~rc1.iso.sig deleted file mode 100644 index 4b69e2a5e211754d5d57c5cfc04178573a0888c4..0000000000000000000000000000000000000000 --- a/wiki/src/torrents/files/tails-amd64-4.5~rc1.iso.sig +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl59OpoACgkQqLD05Fsb -UOJuLg/7B1A9vivJ2kV8TTpklcxaqmYEjzF5PlLvrvBiNy0E5SL/7ba9rDsXvNT0 -TEvgqET8ZwhccvfG40S0bZvRNu8sALr1DbExMQ2ER6rm5fi1zQryqTkZrJgpQpU0 -x1vgUR/omZMkroXhdQzO3+yKZQUEzRbDTFSJBGMUXKF1RiczOPB915lgOvCxAtxY -5xX+6NvQ27aGw7Cddqar1SzfaUnvUASxPQw1IZfh8fDQ4sAg9QaKGWLFgMVFBZdW -eN9eeTHAABiRdBhVB8FirbPxMfQ6AjnoSNq/B8n54Dfu5/RrXJArTpwroHUZuwPG -IOL+LZvGE/WI1EDxnLTMZsPd2E8EhTRJ6zIqghzjqa30c4yWWQ9kxDBdxzXRnvoD -PL29U8NJOeljotgkp9p4te1yoFzojSgbe7z6K0cEJ7/do/9wCnShe792bOP8ZJK8 -G/osJ9YzDeiZSx1P4ahVc4OlgHXahsM3t6io6Nejk8pxQyaH3Cd2izLWp2DAdAQU -fsU8g574FjD2htCUKYANM1DPmzXcjOE58gNRfM9aD5jEG966eegZepbD1np876b4 -Igp2puElU7/0MjadJBp3kGzNrfrwISzwCxVB67q0u0SM4PZcvvThb40UJAHzdHaK -YsqoEMw5/bywWVahUVx5DcTjiCrjwD4iQjjuPq57uIrHEuGPB5A= -=0LR0 ------END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-4.5~rc1.iso.torrent b/wiki/src/torrents/files/tails-amd64-4.5~rc1.iso.torrent deleted file mode 100644 index 08209312cda7486c0eac9d5862525081c0edbb1b..0000000000000000000000000000000000000000 Binary files a/wiki/src/torrents/files/tails-amd64-4.5~rc1.iso.torrent and /dev/null differ diff --git a/wiki/src/upgrade/v2/Tails/4.0/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.0/amd64/stable/upgrades.yml index 067634884bce37f75d85948fb3bf892e7d1464d1..5f575012f5215af3a6bfb1797937998ec15e1e27 100644 --- a/wiki/src/upgrade/v2/Tails/4.0/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/4.0/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '4.0' product-name: Tails upgrades: -- details-url: https://tails.boum.org/news/version_4.4.1/ +- details-url: https://tails.boum.org/news/version_4.5/ type: major upgrade-paths: - target-files: - - sha256: 2809f0a1a2e7e911324c77b4a77e4c21a966a50ea9d8db9b0d1a6541fc8c4ca2 - size: 1151539200 - url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.4.1/tails-amd64-4.4.1.iso + - sha256: eddd88ab6726dbaf62a9ec1bf552e2a90d01b0ea539d7aaae4ad4772473d51ea + size: 1167990784 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.5/tails-amd64-4.5.iso type: full - target-files: - - sha256: cdc49f28ef5365276d34a2db8ee6568602e5ea9fa3e579a85da062fee3a40abd - size: 413917184 - url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.0_to_4.4.1.iuk + - sha256: 3d6049c3e3f532bff8ae6497a8f9b41504d4a3ba2f5fc3b6132a1c96df4c0d3e + size: 437112832 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.0_to_4.5.iuk type: incremental - version: 4.4.1 + version: '4.5' diff --git a/wiki/src/upgrade/v2/Tails/4.0/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.0/amd64/stable/upgrades.yml.pgp index 9ed087740c3c54ed0dbf4153765a90d064a72e8b..d6fba3c99d6096f2a0a85217d972193a8f9b6380 100644 --- a/wiki/src/upgrade/v2/Tails/4.0/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/4.0/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl54cPUACgkQqLD05Fsb -UOIk+BAAvvu1Cg/kdPa21A0UAzU+9UBhHcWCrFcx600HNKJr6toCGIbgY3VObHyN -eGy5MQ1WMWlH15B/0MpRk8LLlawNSEpfqR1JYvQjXRVeYUfBfeIiQjkWaQJHNXUG -Sdivaz0xKFU7mXaaS7gkBIeoIMBDg4ZW8/o83C/zXclIzfm6tmpHuQb3ryeLOGfE -5GXmOBgkDeht1XK61MgxqtGY7GJHm2W6j0lLLIguIhZUJzxBJOHmCprDR828d5Gs -0XIjcDTGLPU7kvU9xDagiiKuRFbvLc7mBTQatmkwHBbF616Qw4S9u4JQle1IjqIo -/s63L7Klgtr2xdcdCSuHvJXtPAlHOLQ8WyB4/Zfbb4vr2xUOqN8iI8FWSC5FZjCu -DieU/7gB9bhEkc+B3yzS66dUd4s47SdzD5siqoZb8EMtKQWIW319rjiRkSdjJ0vS -xbMJpghNnI4KKaOQwDKfWMEHNeh9Z+Z8WnwZSeZbF6rb7GHvYXey8Q5nnD5C+N0y -s4e1fInEK4sP7c6WrTCg0GoYVsVhtbNSSXB241RGZZKijvs39y06oanHiS3vITOe -cy/uRwoD0J7/2dpqNb8f9w6DvvIQ2L20maNrcAyGtj+7rjTFxVeSq4biKkMXC+u9 -WL+A59rGaMRmSxYhyxWiTrrB3KjU+fd6nvovjvds6lkJJdP8aBA= -=BCYI +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6LuuMACgkQqLD05Fsb +UOKfNhAArIBhCuz3LQbYtmc8cg3FSn/sB2eBPs5O5smxG/tEV9Jxbc2Wyj8kjSeN +G52zVDS5kBweaLEweFS/Mo6ZJViiGeac+OiilEcc5mdIAJHvYo8Ay5VcBiyVroMF +xJRRh10X3s14pjJt8NKUKzNbYZlbL57Jo5I86wW6opsXyp7mMmyovxt0bWC9CxeE +62PtG2YhR6qZlNFW9Fj/KiOQmHCvSxdCcpsecxaPuleVBpywnr/Crf9epJYbgsEg +awLOxDMhDEEzk33obSijnDNGI2e8N6qjSWlUFDj9cgqFKjP8ghufb1YqjMNUJ37I +2NeyL5wn0IH8/5KS3XehXEzJcfUVWtIDqocFZQK9yOAPuN2SBGm55GTFT69MQjiL +i+HGZJWeh/tDLXTOLCzI3S23grc32e/3FjYHWYmCbxH9EDq26FPEqghNnFuFQ4Pm +s9M/dA7aCS0XgaY6VeHMpzh1FniArKkXwtZIXVZ6kTNfvGhvnH+EKhNx4GjvvWL5 +ihNFryJeVZV9CvF4xBA0EaTEDnPPgEuQd7ORIpflLoGp8l3v4rsPpNwlaa3Ah9Zb +125Ko4sLG14WpbyMwfGNRl0/Ncauyfd5SPUH3PtYJd//8bUobP20dWLIGcaRH92H ++3thWL5hcSPNvs3rHhjIfDoZKr8WTPUppP0gipBj85HWoHZXUBw= +=UVBw -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.0~beta1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.0~beta1/amd64/stable/upgrades.yml index bca2d4a51818268744da01d589fd069e0d7eaefc..f51abdf1a77ec302983ad0537d82eaaaf96e157f 100644 --- a/wiki/src/upgrade/v2/Tails/4.0~beta1/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/4.0~beta1/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: 4.0~beta1 product-name: Tails upgrades: -- details-url: https://tails.boum.org/news/version_4.4.1/ +- details-url: https://tails.boum.org/news/version_4.5/ type: major upgrade-paths: - target-files: - - sha256: 2809f0a1a2e7e911324c77b4a77e4c21a966a50ea9d8db9b0d1a6541fc8c4ca2 - size: 1151539200 - url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.4.1/tails-amd64-4.4.1.iso + - sha256: eddd88ab6726dbaf62a9ec1bf552e2a90d01b0ea539d7aaae4ad4772473d51ea + size: 1167990784 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.5/tails-amd64-4.5.iso type: full - target-files: - - sha256: b7beaa6bea654d801de583284e7ff9ce63e4da5fb8abae0fe6a06e7fb4436a09 - size: 507006976 - url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.0~beta1_to_4.4.1.iuk + - sha256: c0a083dd88f2de81af411e4528579710fb89ae3404426f7e8c1eb7dcb1e1856f + size: 530288640 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.0~beta1_to_4.5.iuk type: incremental - version: 4.4.1 + version: '4.5' diff --git a/wiki/src/upgrade/v2/Tails/4.0~beta1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.0~beta1/amd64/stable/upgrades.yml.pgp index cb9a73e2505003f0e75186d467ce9cce83418c3a..622e98468ddf8a6b54afcf80953733ea36d6df36 100644 --- a/wiki/src/upgrade/v2/Tails/4.0~beta1/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/4.0~beta1/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl54cQMACgkQqLD05Fsb -UOKLwQ/9HHia4JxQ7Tf4s25fCH5574egNw7PiLW/f5IYtip+NcnQTiGFaQ7fsQ2/ -ho8BLBr11UwNn55nuREyoQsL7a+c22eWAtxqNzZVcfcE/8nrt8ks+hbmEUj3o61+ -Omm+gq8V0ELmTLU/jt+p6SsBMHOpv+TH+pQYN0lljb2hBqlV9TIUhEydPqOHODQb -/pRQO90dgoAYX+GfKVmLAkqRARnvVIlg05V6J/sLjqbJOV5K1bgDTDlBH3HaV5Pj -7A+bDhSjUgnE1uuNKAOhNhtSmeHb+XVODFITNpG/LE2OZWGMlWSt5/T5a3gt/xZr -/h4Dt4enxom/RjjjLz9XXwONLTKKKTZYTwQJ6ENaW6pEK5u3Vq+MVXAP11seViN0 -hGM+ko/gtiMCmp1PkvFUS3W3IuY4tgg3M+7Sh7e94X4RLOiAgEps1iY0sZ/5eTsj -tnpQDsWUlTHxNGh6iWPSTmBMYtfvgdBF//x9mUi2az+MKEbtGn0MLTXfiko6sLdQ -pjwXH6xHIPSRv+sDIj+F4amSwtATT4eufkNxXWp/aOSbj0wLfPjUNyZs4OZXPW3S -i2ELlT6SO71nXE3PG2gzpx84DyeikFG/6OcDPMjyURCDIQdAU3YruYnDWud++0IW -/YwIChcqP214MScvrdgDLTGk6DKa+7ytx4PuwidsmwNsCwZHem0= -=pJnh +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6LuvYACgkQqLD05Fsb +UOJ08Q/+PyOV4xLs/aOJQ1vocIWLLUyAI2JM7buI6o54NZITB+ZeskPmCfXvmesO +VOtZQVq9Cm/bDaT8jzeDUEdjvzhuiQf0WaJ3W7dFhuNTlEUTrBgseG4c827pBdID +HeKS4e3qBfy2pFK5RNKNf0rOb/QX3sY7fBPOIodPdlprTdz6j0MywfIX/0MCwDon +uoqgHypuvp6OtAOrWk3DWoDGoARxisNuuZyYfDYf3CT6/RslIhZ4Es7Pskz5q8PF +QF/f/saPrKSxibrYFUERGmbwsvfh8du7kCn9/Ws+MzchIrWXi5rFmUMRIQUxGH5X +ERovllfMO9Ezw+nbxaMweHeP8We9SEbqE0EX2otfxjeN72AOrWThxOTYeBPP86tt +dRrAa/4qjKyfhBQI7s72eCbLviWIBgM79SKi6iV6TAY8LDrPsuLHWovh7KQB+vr/ +K/w7t2LztvRHW0yCbdijvLKt7QorCoqpsL7SZHufwXwVMq2s0AqyRbpQcYwkcq4R +N/E91IGYFM4V/iF0ZUFgS4E7s8B3qxe/7Oxd+/qTgq8Jckjj1BX6N8cVLMomGbYk +Mc5UW2v4puSiYtr3Gto2UzYwVnYa7DWd7RsFfWkIT63ukKur3PzzMvqEPYKrHJc2 +yjmwcb+wIOBh8E9Sj/qY9gEgBJTECgJK+0ySxQg4PrDeFqbZNs4= +=mcG3 -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.0~beta2/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.0~beta2/amd64/stable/upgrades.yml index fa227abe169b02685db815a55aa52cc6e2a66595..6d63a66ecbc79a1742ad8cc7066c8580fd00a829 100644 --- a/wiki/src/upgrade/v2/Tails/4.0~beta2/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/4.0~beta2/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: 4.0~beta2 product-name: Tails upgrades: -- details-url: https://tails.boum.org/news/version_4.4.1/ +- details-url: https://tails.boum.org/news/version_4.5/ type: major upgrade-paths: - target-files: - - sha256: 2809f0a1a2e7e911324c77b4a77e4c21a966a50ea9d8db9b0d1a6541fc8c4ca2 - size: 1151539200 - url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.4.1/tails-amd64-4.4.1.iso + - sha256: eddd88ab6726dbaf62a9ec1bf552e2a90d01b0ea539d7aaae4ad4772473d51ea + size: 1167990784 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.5/tails-amd64-4.5.iso type: full - target-files: - - sha256: d3f4e0e39e38b171a6f6591564d202fe5565dbece4166a341ac22e6b4c2c374d - size: 453931008 - url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.0~beta2_to_4.4.1.iuk + - sha256: 3da61d4b5d6027b99fe0a07b7341591ec504050e26b45380b6f78d982a9f35c9 + size: 476917760 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.0~beta2_to_4.5.iuk type: incremental - version: 4.4.1 + version: '4.5' diff --git a/wiki/src/upgrade/v2/Tails/4.0~beta2/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.0~beta2/amd64/stable/upgrades.yml.pgp index d0e4ec294b775f6bb1139ffaf370d22a12b6f601..a220ea973b6c9fcd85381ef9a0b60446c120a61f 100644 --- a/wiki/src/upgrade/v2/Tails/4.0~beta2/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/4.0~beta2/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl54cQsACgkQqLD05Fsb -UOIL/g/8CqLFoIu7NMKEk4qoTh2fohO3oW0fS9wN1hqG4WMfjL08iimRwtmQVciR -X1HKPhpclBr6dSj0F0c6E9HbkbKCUTbPrWbcWTYYbh2UoL9mSxGStRvICUBubZ13 -Hyuu4meLh8qod5LZLbsJsfP5oGH3GVk5QmVUSHdOv81mFpX5piwJu97kb7goC6tR -INZQOSLDyFt3jYMlCmzSpFo67LfknaCyiGpRmqwNC2fRw37+/CpEo+b8C3kNbkp8 -2mUsh1yqfnkN2Kh6MLAhuXTqJED+9Odcp1rss4ALSWxdtnT+OgJYH7763EGieUh/ -lInw50OFq79x4gtvLR+RntCAMthN4b2IA2SUKoOy00OxOIZWqqz4Re8REVvZ+vs2 -cNriADZegpMFYp2g+CkrpXEGn19uDiEy9YgjRfNwMINRDnFFb8suOhtvGLBlsimZ -xwWfFSXG3/G4m2InL0kHwkeMTNftFaoN0zYzaHBElEuMA9f/YnE7ECYMPRw5XB4m -TRnN0ZOohOwwuF3r0sXgfkStAzqO0NGXhoud3wjha4KyuvaBj9LZ072ezZeJvPBV -o+w7Pz5YRC2GSC3iFwXNxJrCrgNdxUxDA0UIdREjcLWUTzXS8a4po8FFWdhL5qRF -BDFI3zKN0/6yBmZ/4w69ZXvHThuxrv01UgANgY9PkU3vB8GEx7o= -=wY79 +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6LuvwACgkQqLD05Fsb +UOIgfA//S3iL/sWHJd74IyjeSCvKmgGi4MULDQuu37HzXds/CWd9HSUbtCq/gOZi +/t26/3RXY47XYccxajX6uAiwnENlVFaRYwoLOHcBfTcNLOx+JbczQ1NzrxhNr0KB +lvTuqjI1NU9fof64TmtHNneuMj/ImkFqGI8/GlCFjHZDC4+BCoSY0KXvcLTw3LYQ +ob3CAOiksq+8Ne0+iEh3GIvOrDq6V6GK3ugW200XMBhmLTXoxwTN9qzY4tXhaoVK +0scV2A3d4GPrDuB0Af/9cH5niRCSCj5N8lfW2LnloVtZj9IXCglTR7Uv2JsAx35A +/VKOwcLX9Jy6VV+b3gvN1bJQVoYp+gdQIV2e+GAurOJt4Zh0iZzva9Y/qb6RdNaI +3K0fvx5CH69jEYqN+bd1yDdJCiMmYhJS7GiFZInFxRFAwF4/Vh/1ohuXxjhR/Tl/ +kKGtGTs1ug+WC/MokJs0g371UzX4vvFnVzXnX8aaOrw77Qu6XQxOhVhsSsDw9meP +inwF9A13BrYcm+KDbYIhv5VX0OT65JZKsZBTKsXybPUy4GgJv36rPEQEPyhWdkzz +rfDC05ZL0yrBZNyzYbTCPSD+ctqish4hkcjWDDuwRFB8u6m2MtOVA5AI9dicq7bu +fdN64eqAN3PigFHfTU4u5VrSLrUofmGbmQfS/foZ7Psa0JuRtNA= +=cn6Q -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.0~rc1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.0~rc1/amd64/stable/upgrades.yml index a8a790948181eb359b510885d2f75e8e9b7c9631..ac1941dac880431e7be2292c6fad800a7839e646 100644 --- a/wiki/src/upgrade/v2/Tails/4.0~rc1/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/4.0~rc1/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: 4.0~rc1 product-name: Tails upgrades: -- details-url: https://tails.boum.org/news/version_4.4.1/ +- details-url: https://tails.boum.org/news/version_4.5/ type: major upgrade-paths: - target-files: - - sha256: 2809f0a1a2e7e911324c77b4a77e4c21a966a50ea9d8db9b0d1a6541fc8c4ca2 - size: 1151539200 - url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.4.1/tails-amd64-4.4.1.iso + - sha256: eddd88ab6726dbaf62a9ec1bf552e2a90d01b0ea539d7aaae4ad4772473d51ea + size: 1167990784 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.5/tails-amd64-4.5.iso type: full - target-files: - - sha256: dfbc0cdfd8998461cc6e06adb5d315aeaa488b733e7f08156fa0c5701bb9347e - size: 421769216 - url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.0~rc1_to_4.4.1.iuk + - sha256: 965fa91195c811cdf016454cf9d6ed99aed778685343da026184372887361437 + size: 444751872 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.0~rc1_to_4.5.iuk type: incremental - version: 4.4.1 + version: '4.5' diff --git a/wiki/src/upgrade/v2/Tails/4.0~rc1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.0~rc1/amd64/stable/upgrades.yml.pgp index f20ef1ce04524fadf3439887dc299e93e5591443..4d6d6a0828db4293f0d6c344de7b162d4794e1a8 100644 --- a/wiki/src/upgrade/v2/Tails/4.0~rc1/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/4.0~rc1/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl54cREACgkQqLD05Fsb -UOLyTQ/8CU++9MNTufvnV5bJE/qvUXrPmJety7/jCKWxOH3IRictJcG3YmaDq+M2 -vlMipxHc5CYzQIpVe4yFEkOKDOl0md+d0Fz0rAObklmhWh/W0aRCygD14gF9TKoX -g1XzE5pF8JvLE4B3F5bKsTWMUo9TjkwqVZrxEA2+P15eZPaUL2gBDQV57P5oB1NV -DW6KNoRalRVqXoCMbPdxT3ITldRNhlR8iuRbkHiTpmE2bcBMEEc3V5z5ygVGQ3RR -Q+4LUqK69Q/PNGaVoqcEgUywV52cxBPQjS1VwkuqIJ+xKnAzVMetV2RmSjS+9xwh -tCmth0IU9gXnQ5cBy7wDZALGLKX8BMetHZQBbZB/pU9EN3s/P7qGARK5F0aq8jXv -f6iwOF9AVZmeK9poLA5PEqHNI/E35b+tLX1jURREHINgFirAatI69EgBn7jWdrU9 -CtMwjTfxQTdzpyLQyOmMhX1Noa7/6zAB9wPT3/p4V81o/FntjJbytfg4VKsEPo96 -RpVsaULSTO5E1ofTpVfQJa/iKFOQy2mofQ7/lKDsjZndJewwggOTSDq6XZ5Ej4KE -KakRXnTWXL+5Ts04ffcYinByUZlyY+axqygP4MPj8nA8n0lrzibJ0d1yY+quL4IO -omclULgyZQokpQ2EsiBbN8Fp71yA/LcdMYHmlxLQ9iGMMWC9OTA= -=F06+ +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6LuwIACgkQqLD05Fsb +UOK0nhAAoEJKNUEwpjOlXa4D9S0CfoeHKj0jO+3jWT2Ut9VY1p9emNelCoOcg0pZ +xqRDY4s5+0Qga8c58TCAaS8mcJ+eBOqph3cpp5APshKUoF0X5OgmBOKp5kDaHB3V +THrYYLnxFSBFjy21NBx5y/bTEiHCzzY30k/yM4QFtjY99uNiVr51o6nQLytfb5j3 +L3lJgCymqBTbzTMZIOpZk4lcn9dy8enJprOCYOEDfEyLLbB6jvRgIjO55VX2I85R +ECjlhaoplg4HfQGepywI77EZHOZjlLml64UvZcRJCM63DkK94quig7WZ5iPjWbz2 +8MrRFtRh9gIoE/9GzLi8DRox2NU2Z205TreY7s/Rcl6vMwwTnihtDcU1g/u3bdNV +FF3FpbIpLTQZittiQSS3Sr83hsjvSaN/zgouKr3fAC2mdkDeLUFmmIm5H3/3gzN7 +67tULe0So+vehvIf5R5EOXWTtAfiHMtnRQ+uO18Bn+1RPMo+KJYTLCnoOr54YWhC +I81WKfs2VkVfPHsofpWd00Iy8WBTm+TNbPlfb+Hi6yZSxoe9L1/s11gGtuZn9TMA +nPTVFhSlZdTtCNleEAyMYknkQp84ZVBluk4CtfxK/fX1ZW8/ATA3v0sxiXs3ORvU +0k6ZtLAkdvqFf0JxUH88DruNql7HXLFCrhrxWnQXsMMuVDEL/D8= +=NZGn -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.1.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.1.1/amd64/stable/upgrades.yml index 336324df237d591f9ff0321f6ea55f9355b07767..a2c56f0c2df73c5996deebc4c6cc27d7ace8014a 100644 --- a/wiki/src/upgrade/v2/Tails/4.1.1/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/4.1.1/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: 4.1.1 product-name: Tails upgrades: -- details-url: https://tails.boum.org/news/version_4.4.1/ +- details-url: https://tails.boum.org/news/version_4.5/ type: major upgrade-paths: - target-files: - - sha256: 2809f0a1a2e7e911324c77b4a77e4c21a966a50ea9d8db9b0d1a6541fc8c4ca2 - size: 1151539200 - url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.4.1/tails-amd64-4.4.1.iso + - sha256: eddd88ab6726dbaf62a9ec1bf552e2a90d01b0ea539d7aaae4ad4772473d51ea + size: 1167990784 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.5/tails-amd64-4.5.iso type: full - target-files: - - sha256: c87ad5c9ef61234134b13132fda13eac7de820ba049cc0f5b7481c61996e9f57 - size: 288874496 - url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.1.1_to_4.4.1.iuk + - sha256: b8fd02ae0d01a83881f041fa2a6968b7c7729d5cee0e86a878e243773e81b353 + size: 312111104 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.1.1_to_4.5.iuk type: incremental - version: 4.4.1 + version: '4.5' diff --git a/wiki/src/upgrade/v2/Tails/4.1.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.1.1/amd64/stable/upgrades.yml.pgp index f3a2ea467247911b95fbf7addb55c8d4a58846af..ff1844bb917098f9a13ff25d2b6bce316c03493e 100644 --- a/wiki/src/upgrade/v2/Tails/4.1.1/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/4.1.1/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl54cRcACgkQqLD05Fsb -UOJHzBAAu5VSkcJMTim3Zt9WIG+7Q/OtDQEZr4i8lIa+5ETOx0ee+sXpuqt5vEay -mKZKrqiLI/1YWKqqnPAjctkD5HyE8lb+FPMviO4S4VpQWoetf41tXNwbrz+L1z6Q -o3njKHRbvji4E/6wS3rr7QUQxif0pFKQfY99GcBL2fES1mpKeQIXhzLio9fwpgdN -w7atJWLDDhuJfWzEsHbcqS1CyfYYBgmMYWjL+QH9zCKYzfkfLpUOkyKp+AkB/RW/ -8DlNgQI1DkMMO4yCApokHurgIYRr72QcToGtEoLuSiacWSevR2xWH4tYf021ovzU -BqLHnZBOV4pewLzqfAQrrA6X/HsGU/2ldd5crQJHKQSgrw36XPCSTod48opbYUR9 -gGMjGSzWpc/iFrw9otnuhVnfdeqVhlSaaT/Ly1lumJCfVDfnM3GLvSa/s6fXguPF -uQ2jgJG72eAuuoaUYs8FzonY4spe2GNFFcsOmMRTeWYfpA5AjbPFrQdv3c3dpXOO -ZvNiYmD6GVMzfmGrCSsG8Uytqds83o6vQz3EIPqRbcg0dxBeAfC5vpiy0eVjAsae -Pdy4CUTP187q/P3OA1Arl6KHfDKiIH0WyVllAVg1YKJjcpEWoTrxQLGtNVxJRreA -ltKMBbG5OQBB/QcIX4CCew8OzmDb0bLaJTYWYLmT74qkyNVDvhw= -=UB8T +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6LuwgACgkQqLD05Fsb +UOLAFg//XG4j2HGyu10yrik6NY0wI1CqEk/h3/873vAlvoV4vvg7JrQA2DjD9BH2 +WlCxq+HVxPC1Broi/7r6lt8/c0wGma0lD99N6M4AMHYV2TVNoyWbGj1YbXQNAcnY +V3tyjCVFW/OFewvPsSBctHg4DMfyE61ABfzi7nTgp0ozgq3+p7RP/RunV6NvZ77h +XlW7y++M1WFh4J0G0aV8wRShr7fCKVRqrf7RsdiG4esDTQAFNQ2IIX4/SB6u9UaQ +wLwsIRKX750CofkdLagzSC0Y4ZQKQFfoz96JUmr8eMEXNgo6NlBW5Cpk3NXxOkHu +tCaYCLWNhiAsH9nDwo2ugCG2glloNgxMruoMo4vk3JEgEzK73xPM+eubxg+vJf7j +QwGnMDUzQC3FpU3+yLL4Ha+A8Xck8shMtl4gLS4rQrtyptaSzxMe1+OM3DDF6PqY +Gkq+okkrfVnvnXBOZZITLLzm4ydoJDFd4vKPNZ+YpEx3xMWZ5nDk3yHYphYEC4r6 ++7YvOpaOnA+1xNogqDw0x3DuS1IgknYDlw70JYGB/D5iyeNN1y8BFClc2b/DLaRa +w/puRdzq9kBXq5rKDGAC3rUsWm741s+ehyj6GptSVBbRzKyTq74+/T0RCfi4XlgT +FhkIjMO91Sbyl05L9eJ+hWdafHNwy6DBZUoDdmJdrDN+W9s6IBk= +=Mtae -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.1/amd64/stable/upgrades.yml index 9ccbe8af3fa91efb17cf6c56d9ffb19c363574cb..fe306530460905475ed325de746e76436ad907e0 100644 --- a/wiki/src/upgrade/v2/Tails/4.1/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/4.1/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '4.1' product-name: Tails upgrades: -- details-url: https://tails.boum.org/news/version_4.4.1/ +- details-url: https://tails.boum.org/news/version_4.5/ type: major upgrade-paths: - target-files: - - sha256: 2809f0a1a2e7e911324c77b4a77e4c21a966a50ea9d8db9b0d1a6541fc8c4ca2 - size: 1151539200 - url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.4.1/tails-amd64-4.4.1.iso + - sha256: eddd88ab6726dbaf62a9ec1bf552e2a90d01b0ea539d7aaae4ad4772473d51ea + size: 1167990784 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.5/tails-amd64-4.5.iso type: full - target-files: - - sha256: c20838080741ef975c328abeb8bbfb7bb571eb1295cad1b314f08bd93505b57a - size: 303878144 - url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.1_to_4.4.1.iuk + - sha256: 06896d000d017324c7f1f6ab585f014bb4cf463c03c0961cd5593d4346539b13 + size: 327163904 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.1_to_4.5.iuk type: incremental - version: 4.4.1 + version: '4.5' diff --git a/wiki/src/upgrade/v2/Tails/4.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.1/amd64/stable/upgrades.yml.pgp index f3927525a25107902869060e47a7581f7f708944..dd17a76e02f940f21781e38142b30b0688e7a5c5 100644 --- a/wiki/src/upgrade/v2/Tails/4.1/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/4.1/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl54cR0ACgkQqLD05Fsb -UOL9Yg/9EqqjCmb85M88LNSjI5i11IVY7M8In3M0TjOXoHY5/qzbPL3oEqX0sDTD -rY/j0VbvlbYYs9lMmiXPF0dXCWUc661MPfomKq+DEA22nM1t8qwZlqf2ENsVRd8v -F07vjsSIvrInfMEkxe/GkR1uPxXVUjqICFroELGAJnGxL2aR17p6Z2cB+GBRVKiv -22dFYCmePuzcZzC2CJTlw7hEneTeBZI14RuHR48ED/cWA9jWKIYmX4hjPPRFli1S -FVWTAp6LL6s8Sj4Ehag4zy5QTh7+32xz9MvXtGWEXYfrqBUjC1rxU17Fipiotpvc -RTDpO9PrwiqyEbwJN+YhhruSRKfbwk+Bb7MFSQnSSPOMw+XYYb7AQKiG0EaPAz3J -KE1fFV8zNx+t8BltcmWWLSgDyc6A9TvXEOU7zKLdispD8fUm2piYYhYWeK58RuGy -DCFuNND64LfSZ1UcMTYXse1hC1uKtyXspiJpp5jPI2ZkYmHWeUb86EzUKFzBFXVI -ZZAMB0GmqlQxc8w51Mc/8of2tJZxsVaVvlUsb7Ie4hTZ2tJnz4vx+Phg/l0YGOd8 -gJxXOM5nynjDt0c6cNAuD8qD3XlNAvG4Rd+m5DNiORozBrTkAg7VQEmtl/rUfsnP -jfygvDREmkNoZyTYY7jhZBAlN/1RN9Hkog9RYWJIxITh4kL3Zhk= -=/EJh +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6LuxkACgkQqLD05Fsb +UOKneQ//WxuAib5YKrXSxzYNSs8gEg76jOhXdffp8dysQb4EnP42cr7aRtelaDbb +rwyB/xY+EDloMe9sQt5g3xAyy5nzdZvNvk3hhNK19X/3UhVeomSU5VOO0VaGJYV6 +X9Nx6BbfwL+5cOoFuAtDKPx6XMs2P8hEyVW7NWyuvZj/uLllebi6FA9ElOANdGee +Rz/BgHe55KHx3YXb9e5UzCjR70uMFD6jBsSRHOPil03h4t4zxvXfTSBOOkHXRcb/ +LvHRhiaR5G0UuQ8Vy7qlUuX+8gN29qrA554urWug4/gGwKwmVVdnMZ0lMFIvysV+ +uMdNJvd3wRdFsB9ygL/JlgAge5vUFJK2QJE7IWf2HJyOJbcoZfWst9YbB4mcpuoQ +SE/fFhln04Qg8lQGBZAI7i9cOwjziM04mwvFJG2VsqBAE9Zmbuj2Ztn3k5+Bcqkk +1A0kzc5wPF/2yJMqLqi6eDaRIkm71u6xa5FJyKxdcaXqu+9h+vx8xYOIEuE+B1i8 +usXX2KFq+/plkrU9Ze1t/G85bfZG16bNfm9BtDWbAd2kZ+PCeCWRFiAWagZXJBMY +TgKtZDw8xIGufx9LX74ylY16MD5X5eRPvg76+3BGlldxIvmwwfblmxjsoETMvy51 +oHWa77xS5scP7ZWBApazGsSiGAcHTuAeM1kUYqUXgecY14R82Wk= +=xPRK -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.11~rc1/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.11~rc1/amd64/alpha/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..e3e2b9ad9442b918288ffb7bf9f0154bb0fead41 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.11~rc1/amd64/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: alpha +initial-install-version: 4.11~rc1 +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.11~rc1/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.11~rc1/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..1ace4eb2cb5b4bc331787c7bba5a99d579c58a73 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.11~rc1/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6Luw0ACgkQqLD05Fsb +UOKfqBAAhV5ATn7N2IwQZ0pUEYu8UwmdihmpuqxS6ZvKDHCnebJ2s4cRDNr7D6pt +/nk/yPIBrpldT7yv3RSLF2GLOct97DiqBKITdPYGEB5Sc46nJPxd+beAtnLFRpsl +bGoWpgdIMvj0ddWSMzYK5UFMzyMgug876/me8oXq4x70oP5E8umFnBkVcyG4Kxii +1ftlJNmNQnfyBoucxvkMfIH9eRp6X8eCatP2HApjdtUN/TzVMOIPu9X1CrXMEerw +/SaTaSOUXGnVzwPqhnK+xpFgqQtFrNJu/Uo7bP34sMUU8eddxKilrMMyXxGBe45c +T2DNVZxV3j0QcvYOIx75LuL4e6DE/qrecIiNNgXMxU7h4vp3fPt3JoLpaGTDwOnd +FB7FYTi0EQo5m4MoaBBVG8BDFTq2IUika6V8BhwauE6+JZE+543YVNGb8pxFofeG +k9u0N2OLLHdQ2utMEUzln0GOs4k9Ig2wv8D7y2dypHBixwt0uF7TyTw2JIsf+ODB +WnT7jJepbpwwenhSOH6T9b4Db7AZHdUbw9perwJbUELzCNQNl62HbVzZfvXyHgzw +eoCdGkWZMrEnBsowEWn1e7HO73GIqxgTrnkSHnTzVD5q+V6RAD8FmJYUlQ40B7Jg +NR+YVMPQPr7w210xkCTkomlSA7OTV50e49wmdvCnK/f+GdKRd3Y= +=F3rK +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.11~rc1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.11~rc1/amd64/stable/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..f47ce2e4ff9708939ad893f720aec581940313ff --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.11~rc1/amd64/stable/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: 4.11~rc1 +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.11~rc1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.11~rc1/amd64/stable/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..e2bfa95119774dde70ddf4a9361742292841a7c8 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.11~rc1/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6LuxMACgkQqLD05Fsb +UOLrww/+Lb2B9zrgnaFQrkoGsJlFIMAfwOEss9vE/+UdwgBjT9457ttzSVc6COCY +vlL3s6uDM5fjMA/moT1xBy4jbR9qs8tgvHegHEgbw6TOKu3WzkELc/j5lY83vTY4 +Xgc2QJNauHRaDU1FscJY5dQnh8IJZvNFDa2NkToFzgrDmBnEwhbj8ie5Sazn5seX +YNVugTMHNG4OMA2WUcsViLwdK+uaMN2qibZYjPeDB9gGsgIybWShJxFNVCBqJcWm +zbcq0gzKTz15pQk9UyXY3Q2ILKzUM9EC3FAz4O1RDDds486+HGoB5XtTEZZrh0ZQ +S+f3NqBbaRwionKlIdazT1RGXbqoR6tzon2JSBusQp3ELv9/NS6aUYP1xsXJOCSa ++VlEQj1fmlRCbBqh1RFkiccf/DZIqVFa1tVWHYTDqvoi7S2uRhpA2lPe/5LZfgSH +w1wIo7xAx5q7MH+PB0BdOkJ2OGAY57ZrMslo4yjpwKS/AT4l54/rnzTI8DadqTvP +vwnN8AH3qp6IAw9u3fbWRgyPoUuXun9X7nS4izO6xDuhId7pdyCNXYYwff1t02Cu +zcwdWfhgHgSy3NmgK/fyDBh2JiLGKDlXcBLHdEClx/EZULBxYfnx4NIliylGVHVv +sYqM/PS/aaomO1GzY0h+9aereFoLETYttslUudRkxxAWLWmQInY= +=9TUP +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.2.2/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.2.2/amd64/stable/upgrades.yml index 10345deaff06bccd641e466e57e72a3c95ea5aca..5d355670ddb8f95cfc821d1c68910c2784fb7e5b 100644 --- a/wiki/src/upgrade/v2/Tails/4.2.2/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/4.2.2/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: 4.2.2 product-name: Tails upgrades: -- details-url: https://tails.boum.org/news/version_4.4.1/ +- details-url: https://tails.boum.org/news/version_4.5/ type: major upgrade-paths: - target-files: - - sha256: 2809f0a1a2e7e911324c77b4a77e4c21a966a50ea9d8db9b0d1a6541fc8c4ca2 - size: 1151539200 - url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.4.1/tails-amd64-4.4.1.iso + - sha256: eddd88ab6726dbaf62a9ec1bf552e2a90d01b0ea539d7aaae4ad4772473d51ea + size: 1167990784 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.5/tails-amd64-4.5.iso type: full - target-files: - - sha256: c0189932628b1e9084f782008dd33e922513b2d919f807e25fef38270405584b - size: 274223104 - url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.2.2_to_4.4.1.iuk + - sha256: 0d201489dc2bad93a13a751e060d4b5bf606eb0a46e5c0e0d4da8708c88c0cf4 + size: 297365504 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.2.2_to_4.5.iuk type: incremental - version: 4.4.1 + version: '4.5' diff --git a/wiki/src/upgrade/v2/Tails/4.2.2/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.2.2/amd64/stable/upgrades.yml.pgp index c9abe86295a9e6d252b3e6194e55d51568531506..a5e5dc0c00d13d80ae08c60e7fadb16be72c09ab 100644 --- a/wiki/src/upgrade/v2/Tails/4.2.2/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/4.2.2/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl54cSMACgkQqLD05Fsb -UOJZfQ/+ODmfu2axP5CHmW3asrPNPIv0TYHBHT+hyJoucGH6iUu8ZoPXUTC3Huns -gldTcnrgj4lpOIY6so74lcnuWoBJTMfT55Cv7mPQ7qDz8P4yQWdBXhkAYthg5rNk -ltrlinnMTHoFtRWtpE9lxfqeV5q2F70HHMyijX5zmgMpqGDbbuFtCBcjBdjmGAPV -c6wzWE92fn9RYutaTYkUq53/JJw1+KfsB6qzWD1OyEq6VQ8FUYjsjeDMxRc2bofF -DG/IfZo+odcInNIDlQtGE23kHO0ZalcQmtSkYtB862yO5Uc0DcubVmQwBhjutZ2s -XTjjpVJsypfhFSM4U+UMId7hZ/PFZdtHDJzHLDz17N3Ntvtd/qyegk7qgND9va4U -4F2SVcY0t7vwf/UIH8vdCi1tcYJGF9D6z/a3DSfpkeIoiI/BPuBy1CZR27yObW1q -89Y/TAM3YVP3DvvSuR4JznY2ZWeHdMB+R0h25wOl4bODUPNVGorF2aUPW/QSD5VP -fZV2ekl2nkVnBZT80YM7j80HE+vcekgU6rm4EyK1yamS53Ml3pEhjSpUGvuAmO7J -ow7CB32RYcr92Rqzl57cEcXFr+/teXEvqBylIQs6qVhSebjysBwTdGMiY7BaUmSj -7AR50MlJkZ0DQPM4u7r5/VG++4yA0cB9Bu+qpueATIWHfDpis0Q= -=CIUt +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6Lux8ACgkQqLD05Fsb +UOJPgxAAhn4fRnYUxfFbRNnMOnvSx0IenlwEtLYYqWgpyObHckDXP94llqteUlCJ +AcpgDI+l6hyHB4++ETzKGdLixDUX/NweWuE9kOIUpHoUuHO/7Al6l6MW7axW+XqW +LRpc6XcgCI24IWZ0GQA4/c4NG1rEGJUpNH1rcddsFWJtqEVctYDMxynfr2oem/7A +AEtnH9pf5mgsMfXRXRLLdpmPZqmAEFSWjxH3oyd1ZkGG1gzfTOb5rY7tU8Ii4/XE +PHlAYToQ+rvXQ3FeE03sjkQOfFGNpLWVkrVWzNC0qqbN3LcepKzXu1aamKpkKGId +5VT+dBj8eAsRmITVjaZaCohNSlc+x0RkwzqGNWbqfeZI8x2xbfc/cn74T4/PYSWW +O2zJg8oxwwbd/cxy50xFrsfriFoWMbAxNqI4mdccChi3wsUEtVVXBM7tzGBJCenb +JmWmg/w0aTrbCY3++0xPcPDj8c9IEuOuN5Hi15HhW63K4BlXLujWZCJax+SrDyxs +I3CCVVakmTklHwbAUZeN0sUoJStrF4Jm7h1hw1BvR1OChf0My+mKDpFPuB2uJl9S +9Dy6eV9Mve1mn2ubBH9h6ogZMtP74K1Q1XMQ5K2Z9QYOl4gI1z5v3vq9vNRAfZHG +gIIETlccdm8YFCF4V8p9vRhmuaOIimeYXsIGCP8n1VKz4g9AeVQ= +=7u4x -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.2/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.2/amd64/stable/upgrades.yml index 12031a103676d227c4a06aff272b3f0d0e8352fc..697984dff7e9ac15b98a60a2a0287743ef7bfccf 100644 --- a/wiki/src/upgrade/v2/Tails/4.2/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/4.2/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '4.2' product-name: Tails upgrades: -- details-url: https://tails.boum.org/news/version_4.4.1/ +- details-url: https://tails.boum.org/news/version_4.5/ type: major upgrade-paths: - target-files: - - sha256: 2809f0a1a2e7e911324c77b4a77e4c21a966a50ea9d8db9b0d1a6541fc8c4ca2 - size: 1151539200 - url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.4.1/tails-amd64-4.4.1.iso + - sha256: eddd88ab6726dbaf62a9ec1bf552e2a90d01b0ea539d7aaae4ad4772473d51ea + size: 1167990784 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.5/tails-amd64-4.5.iso type: full - target-files: - - sha256: a5a96d77e88cc04958bd0e69978490d171a3c6f4efb82874d89c296edc03014a - size: 274251776 - url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.2_to_4.4.1.iuk + - sha256: e7b4e30b7c9fcce99a2a8b831ae7ae4d1aee00a64662f984fc6b03ccd9695be4 + size: 297390080 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.2_to_4.5.iuk type: incremental - version: 4.4.1 + version: '4.5' diff --git a/wiki/src/upgrade/v2/Tails/4.2/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.2/amd64/stable/upgrades.yml.pgp index 2a9f3eb85d6b633c595d96448a3499a448a843f0..7257be1544c9847914bb6f4f7d838eafe16e6d7c 100644 --- a/wiki/src/upgrade/v2/Tails/4.2/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/4.2/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl54cSgACgkQqLD05Fsb -UOLEZQ//WHyL56se28isSQE1vtcNXIYWBvVA0GsMsD/XBwh7qF3D2IDXKJsekbrZ -bR7TSm1K7sUw/HjLu0z+aLH9s/+Yd0YMtvKTp7ZMn2wXb88VIc6L837Jqt/bVicp -2f1AYmfLiIGPcwqJ/9YiqcKvsIQ1apC12QEPYRl8oi4eyes+PVU9RjsugMuA6waL -6D7v2qc5QlZStqcXloVGZFC+Fvpm7huDkphchB5QhuyLh33itg+LBspd4kwh0ZGd -/jMfvTt0QZDJd676GeLMqgzp6xd8+22r9nSLZxlQ1MA9/VpwocKH+umr9ww6RuQa -3jlfDNF4Bqot8SVsjGwHlOWTKWgNaW0GmDYj9PvxJ0KaiZoCgEvV/16xzWhp4shb -Xygh5aGXZLkSSruy5sQ+ARAu1b6Y0AFmxzTQIYyJ6DHrpEr/HLleG1y0BGS74jJ2 -i3aT9E5aLElcyuSB07eErne0La/oYxooMUx4EAqdpzOMI/PbdvYNJkj5l9d9hgJd -g24Lsil/BxnGqnbNTsGK3W6k/qGudCSEdpLpbmfELMc7YH6YkxIu74I+qg3Nnc5T -6nbQrADi4tX5BzOdwmSR/f0aP04JDhTE3oD+3sfPdVZyHJaZFN/SIXDm0lxSjoL1 -G4qkajg6k84vjiisdU+Q7PYEy0M3mm+u59GngMiihET6BtvzN94= -=/DLI +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6LuyUACgkQqLD05Fsb +UOLwEQ/9FY2v3oF7mVeIeyA3WGBtpIHSILXJGGum4XYrAwXM2CHbzjT+toQ+ALBR +A317ZusbmpuU+zC5NQFI01Do33qq00joTHjDTlqC2VFb1kgL4KlLBxHHWpFcPKDY +f0RLWnee5iohXixm037UbcyWIHE29pSQWooxr1O6tACPHAYFbbw2+f/DhEj2rxIG +//p1bkSOiHJ2ov7Fm4zyplV4PWqpmDnJUWWOHjf0xrZ0XkmLYKhsF+J1oXpg1CB6 +3nC5vlKnXV24eNm9iwR4kbbnPF8jEQ1ffOjs5iDAhtadHrQqbMhgV8ktjlpsEgvR +tux1RVrdxSpYLyyATcX/TYW0WIb7gW4jAcLqABWi+3LDCDGrUzE8oMu3RfInjAMf +17b+EpDelltU9Pk8T5MQiRhsufxnpkH4ykV99jhtxlrx3x2GvvYb8eql8JiWZ84u +UIZNGBX25niSmk0loMCWJa6kqSBLzbbPRmbQoIEWkl7t47TR/6HQd/qrEe0S9cOl +edqcIeqa/MpLEgsIfR+xzDTrrc4laQnprJeJt4mJCL0yMuWL7KMDLf2vXtRRcgNj +MyTNXjLSt+TRLYEYTAdUgkVud9nxan4Bvmj+eXZutJKnFo7f6LR0OCHCAcLSBjHB +l0iwCs1lcNpvUh7kCYjnKLAHrp7AFSO8v9PuAhB+1ecl8INKjWc= +=ScUu -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.3/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.3/amd64/stable/upgrades.yml index 130c9a31c95b102214721796850b6d654ab590d6..fbcae28f721e3771f8c17c50b8c69473d0772cae 100644 --- a/wiki/src/upgrade/v2/Tails/4.3/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/4.3/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '4.3' product-name: Tails upgrades: -- details-url: https://tails.boum.org/news/version_4.4.1/ +- details-url: https://tails.boum.org/news/version_4.5/ type: major upgrade-paths: - target-files: - - sha256: 2809f0a1a2e7e911324c77b4a77e4c21a966a50ea9d8db9b0d1a6541fc8c4ca2 - size: 1151539200 - url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.4.1/tails-amd64-4.4.1.iso + - sha256: eddd88ab6726dbaf62a9ec1bf552e2a90d01b0ea539d7aaae4ad4772473d51ea + size: 1167990784 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.5/tails-amd64-4.5.iso type: full - target-files: - - sha256: 1f33d2600d89c0dbf3b4124980584920ae21f56194bc4d06ef04198bd268fe1d - size: 239644672 - url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.3_to_4.4.1.iuk + - sha256: 9b579d0dcb49d8d87818c3604361ad1a92f986ae397e639beaf706013a509c46 + size: 263798784 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.3_to_4.5.iuk type: incremental - version: 4.4.1 + version: '4.5' diff --git a/wiki/src/upgrade/v2/Tails/4.3/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.3/amd64/stable/upgrades.yml.pgp index 88ff0a5c8de34699db7158949bad2954ef507f61..fd91e8ee1a86828c90a0b443b6f0b5d6b3824883 100644 --- a/wiki/src/upgrade/v2/Tails/4.3/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/4.3/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl54cS4ACgkQqLD05Fsb -UOLE2g//YYlSkSAL2QgvdY9Pu+4a/OGaXjrIDCgVeBp/PSK01BoWrr8b+ZccNvOh -d1xm9/Ok2uxj9OkCybxCQxM7+xN+T665Ynh7dQEcFBrropduNyE+uL/pzDPVk8p+ -krG88VQK2/W3bf2jJfT5on/DEi13PINwGi8Jxuvj5u+BQV0p4bk73JV+0gQi5w6n -OQJazxKbD1PEc2VfAkN5Fi4tLxcWRiO33HgS3MZUXqvioqFMELWdXTOwJcDZfuJp -kmyNW2eNFM0eLxnsU6vdgRxQaXRz4nh6lvNxzUn9Vbg5p8cMBagdZrCcCNGA/XFP -URvSPgYWiwuGWyQXwVGXaUIl20b01kiDAz3w+vNsVAsLnyvKLV6MW5yTtxdHfk2w -WJmHmy+uVEYKKmzcWHOfPLxyvn6QlgqtsnFsVJLHJ8G/nmGTkS160iLecnoOe0fG -15LIQWbrikqnWc+ZHSxbtVLY381zD4fLxF+TasnuCOmCq7lLr0h+JIbCQLUqZpsm -3CfsGtdM1j2bzrR4O8547LYP30/Vve6QeQ4z/5/7Rg+lCUDphd4MNQErvYDYBWhr -bHev6bcybCeNEq5gURmEdI4iiISG9kGujDvJd5D4AoJjMQt88huLeyABEcIIenFN -h8Oty+eCsn8xY2pEO1ncJUVtOetC24xQq8TRrDvufWMU+3yiUVE= -=QBYr +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6LuyoACgkQqLD05Fsb +UOJ4oA/+NpW0a3xG1Wf4h5gUM3k5iZpyqTWBtdC4ghmYPdyH4CZ/Ky4p0i6cpv7L +2K0ZbDUGH8t8h8oNPL5QviEyo1yH90HVQtytC93ZfkGqhk4C92xL78Qt62jaRBWm +Ife+DCzcZ79ESdEDDW3b5DRmiO1OlCYYSz+Kjw903vRVvZuLuhtzMCcXH7UPOoSU +/1FOmhYPAgEaT0U3HIOvFGy4zIEzhRpfsnf10Jwd1ck17nQGb0ooMUN47uYD/Y6j +ZkqsWs17htJQn+uaQI+Gw9jd1THctqnqRHkKV9VIL/b/+4KVWDQrVJbC8mk91C8f +qx0Tn0xNwSv1nI3Pb0ohbhy4s2n1kiMPglNfki/FRWuv/dtloOCdzc8Dw0KQFhT1 +QZ2vWjPXriwdOKNslzISt+NqkVvKvgMyJA9xO2uvH1T4h0YXA+SSqioNx8rSu2Ml +gaKls+WbrufpS4+m9GtboO8Ld5yNesYmMszg6iBk9DOt8GE8kZQzX74qqy3EFJDr +0Z3SCGk1aMVhX4xow7bCF2XyHSS4EcZN5PCoXkIlhzQeLA++AJwbZ8cmUif/+d2d +nr0Zqd9wesreYaZI5Ef3sm3SuDNtJ3+IQVqSPEO6218P6XWbkH42XPuzpaRPxg70 +etbv+rEmBk+iTXZLkyUFkAN4bsa08u3XMvizw8VGyYX9cbpbPK4= +=ilIC -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.4.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.4.1/amd64/stable/upgrades.yml index dc926184a13823eaaa5d2768e315c92207ab568a..4c8155340fffe6e9fe0145bca9c718b06b36d61f 100644 --- a/wiki/src/upgrade/v2/Tails/4.4.1/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/4.4.1/amd64/stable/upgrades.yml @@ -3,3 +3,18 @@ build-target: amd64 channel: stable initial-install-version: 4.4.1 product-name: Tails +upgrades: +- details-url: https://tails.boum.org/news/version_4.5/ + type: major + upgrade-paths: + - target-files: + - sha256: eddd88ab6726dbaf62a9ec1bf552e2a90d01b0ea539d7aaae4ad4772473d51ea + size: 1167990784 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.5/tails-amd64-4.5.iso + type: full + - target-files: + - sha256: a88d295c57e5015ad36b85ecbc3ae496fd55633c2e72169f141b571a2fac5d4a + size: 146128896 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.4.1_to_4.5.iuk + type: incremental + version: '4.5' diff --git a/wiki/src/upgrade/v2/Tails/4.4.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.4.1/amd64/stable/upgrades.yml.pgp index 80c091fbbb7d9cb4e2580cfc773640e9cc1a7669..e0c26473e9fed236324f5b4bccb721669700f8a7 100644 --- a/wiki/src/upgrade/v2/Tails/4.4.1/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/4.4.1/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl5pWMAACgkQqLD05Fsb -UOLCPRAAoApObp7TCd+wdzjwOjcmx7h2rFpipm9qxFPc+nGEQDrmLz7w7nv96BPm -KW4wDja2ltTkGlQfZ8Qm5/wDp+LtXUpKhzJiuWhXUf5cyzEh4UntM+d3/icRXLUU -58ImRiTd0lD6Q2qtP6embzBy2294VIEAoHDEf00JYNdHoyAV5KFtnCTRKyafI7wc -YRnX53LRFvh3mU3RcOBgp1L7WSkwLr1FXBTjNFT+I1SdTpZUPvWfHwFCIyxhC22V -3spWAMT4ypyxx2hwtfFdwk9NxcDQ46EdslX5MiHqjBqEpVCFJ1+932qSLVZKe2Gx -DjqEJv8vyVcI7qTsymhfV247HEixUQyIkmWxaN2v9l+gSpo6UGMPmoqJkzCmJ6Qf -qEIjEIhI6OW22rmzD3dwAmi8hJ3KWRWujPX4U7tctPn8XDsHOUYNCw2ocgEjJSQI -x/wXeL4+xP5XaQu9/jOkk+hP1LgcSpKkYeASI9IdEgNXSamI+2Pv+kt2+wUJsB3G -mNGUYgH2BHResWL14qJnhAi4uaQ+6DwtcGGSJPOGYpsv4Gi4Lz15CON3+D3gg9MJ -DxK/MNtsaGDrlu8wD2oTj3sOR5BDX/k6mFX7BhdS2+sB56VIoOEFEkJjSDSQn/aH -ywyO2kgN1y5TEGvliY7N4LjGMUP4ABqoYvDSsURMFbZggruG9eg= -=vN3+ +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6LuzAACgkQqLD05Fsb +UOIN0w/+IeScNSWlNMEUZO9DOIugn69ufJltbxrBOjMyO2yt6GocLcp/t3Cyiiod +PuIJ4xLCIwEmh1jZSyrYSrJF3yQdhzwnopaCw8ViDjWXfB3WUHrPmzbUji2F5yTY +4NCGXGqsslZdFi80K8VdD0/UJOjKcMctClP+CtjwGqYoNDsLeO3n5uz+bIbGIFx3 +WBsAI4DJLvvjK/i90bkiyTzks1YGHqY1PudExo8mXnE+Kdoa6UNci1SkvIMHx9Xh +XPTx8Ubp7/5ejSYIGhLX8WmNXsznYOBB687fIEv6TKmIu8uDIUihKhKj/kl6qDSJ +U5oBz1jAlYgmDvVqO/QyJKhcOSW8ohSO0k4tSd7LT58j6z0T0tkXsf3LpXtHIDfn +NLLgwIf39VSdqE+mYhsNDr5t4OQOXOnWz92rbDi6KFU72qYHMSCP+jo0LXzo1xiQ +Xd5KY8PZRGLp7aslVfryUcRZgCDlA0hjD76bRnIm1Jjdet/liIt7r357OJPCZOXa +3Dsa7ntG6QxY4vrVvidFKgJxbhYFoBtEG3NwQcDj2VpSiFg0LS5+/10RNd1m6ve6 +5TiA3qVU3404FNduhRUmNjndrwN9kO7plVBUZT96Jqe157Iix2znOOJuB8G4OMxz +0Rydh9HuFdpylBz2VlEspBE64G7NdjZX84wfBGO1PghkQdTxvUI= +=x54P -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.4/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.4/amd64/stable/upgrades.yml index 66563a370d3136f61bdcafe08c64ca9fe641c496..5738d74674360adf605a14616af4b32199780cae 100644 --- a/wiki/src/upgrade/v2/Tails/4.4/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/4.4/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '4.4' product-name: Tails upgrades: -- details-url: https://tails.boum.org/news/version_4.4.1/ +- details-url: https://tails.boum.org/news/version_4.5/ type: major upgrade-paths: - target-files: - - sha256: 2809f0a1a2e7e911324c77b4a77e4c21a966a50ea9d8db9b0d1a6541fc8c4ca2 - size: 1151539200 - url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.4.1/tails-amd64-4.4.1.iso + - sha256: eddd88ab6726dbaf62a9ec1bf552e2a90d01b0ea539d7aaae4ad4772473d51ea + size: 1167990784 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.5/tails-amd64-4.5.iso type: full - target-files: - - sha256: 9b36795dfc902ab96fce98e982c34bc274ac9329fb7f9086a16ec33faaa0cfc6 - size: 169504768 - url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.4_to_4.4.1.iuk + - sha256: 9a91c369d926488967003aaf2d5d556d32b3941072937bc2aca4a9d54c323b00 + size: 209780736 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.4_to_4.5.iuk type: incremental - version: 4.4.1 + version: '4.5' diff --git a/wiki/src/upgrade/v2/Tails/4.4/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.4/amd64/stable/upgrades.yml.pgp index 9200cf5c84183713b3edc889eeb56d981846b042..96cb2a9ac4b8e500e3d8ab59e35d9c5959ecc94e 100644 --- a/wiki/src/upgrade/v2/Tails/4.4/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/4.4/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl54cT8ACgkQqLD05Fsb -UOKrTg//RjJzkDb2Wi0+wjn8pc3cCXc5LN4wLCM+opqHsUIlplVlEXWcfx2yM+z8 -GUIseuEHcmxlm26JCvhtKCoVJSdSaHXlQFLOmly3ENca2drBnhfNh+IgFuVjpYV/ -js0aILScwlO4Xl/6mPKpJ4ctfC7zu0YRj0CuGkIKWDlFAVbjoFR7UjfM9ggP7cjU -VsO2ftcByhjZ5p37AvLeMvhS6M9XNvnJYq0EXL8mBguxHO9rI720l+4kRsDvHq5w -A+cEUuTDax+Okw0NTS0t+UytZOM93OyRAiQc7N818xRElez38NmHn1QMdz4wRhFd -gNrKaRnbEVYOQsmvjL50rxTDkA2LfuLYM9uZ6cfYR1FCejPaPGxtlaso8wfQm8Cl -bpTbERgne+8mdB645KI1knYO6vvlw9Y4iHl0yDIGz4Bzi0WCcAw8GncPbG5qDUYS -f2wvYcWTX42JOUYEyey/qf3FwE82vD49+mluJFZ8IZ0MqlPdt5ZN0JddAA52OhRd -35PlGsQ/uy6VmGWQVieH3ia4/M6PUy8SNK9N3AyWV+A9DOWA8DlF37+BDq2z5OCu -PM+yv0aiYQHcBeUrSdDitraho4lGUoIJ6VhQlfmM34YXQ+0Pim9SkRancTNC9HGE -k/1/QI/AMTPbG2vvyFqg4K1AEwk2VaJi9E5PYt5pyznC5tOPAyk= -=66yz +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6LuzYACgkQqLD05Fsb +UOJ89w//UgE8a79A4LiJ9zl79hVZs4gMBkKyYeB6gHXsieK+qgB+gtoVJhuXV3P7 +wiyKaWTdyM+2LMFwmf3HalgyE2GF1KJ7RpHHwuUEHxSha6p6i4gsp5xqCONEJi6t +0HGMUaNE1tib8dsxv3EOXEgmDOTeudM/dwyiFShY9tCuKOKfHXtvD5BAZoPBv/7J +UOg6EfQJkRLu6OoEC/FTYoktEcUHJ9aje/wi2gEek7zUndRJoCddALLrqgxLfpg6 ++eMyfTDhK5n3hEO0tKjRZRKXoWFYQC32roB01ib9mUmw4WBUMdg4lz7gwAc/yH0i +7SCK4pLbehjRRh1HlhwtQsPV3znjEnekuL7aTC3U2zElGs6s03chxgQ+g/P7EhTL +MdyoGtSB1DJXWhEh2uS1TwKOgJ1l12p0w0SPaikQiO9+2sSdjXVfShcr8bhGKSVh +PdV4Kj/Nm5ckv6qQOHfSE8u8ntlqpU7Jh18A62NTWubbPhCtEtfwxh1w0MMg/U5b +8wLd05WvKMXh6L9EpA6Degg6W6JpVFDo6TQjySOGzjdeVYnMo+uHAZ2dALRf80pO +CgGgZLGdOAb3Xik64VMyIAaKwwfJ3BvQomSS4nBV6uJ4V/OBZnzKhSDKVA4VVMRj +2j4mXaeoP+Mcc/D4c19P8pscfu1w9i4ITovIVVTJQ736EKNbA6g= +=cuha -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.5.1/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.5.1/amd64/alpha/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..670674aff77339ccac814791669921ce3d2ce12e --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.5.1/amd64/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: alpha +initial-install-version: 4.5.1 +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.5.1/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.5.1/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..2120feb06eb0e7f5ea037847ad89b717ed17723a --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.5.1/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6LuzwACgkQqLD05Fsb +UOL6GBAApV98MImniG4Uf2sXZoq9hp+CU1QuwZfNXy6u8YjAiW5teT0uhiVc6OFl +n/tDyP5Zd8/+l4jQY/TiDZl7QGWlBRVf3suG/wgfmCmFncuMJaJ7kGRsk8BcQy9g +1W/477z1lnI5B2NVg+5Ps1ZzBqF8pf7uBYiGA5VdvuBwm4xRjAQvIh0C1zyw8gCp +/c/c1k0hAtuJaeXuujA9KnEqLzMjtf+qqfI7KeZTxWbFiMdHZqvjJovVzcMcti4Z +ez2q4nkxaDSP2XGkaxNVBlDjqKe1NC9bNFdDktdXsgpC45C5/82S1TxPW/cjivLg +U9sru1xgZtHJ1oqHJDH3rc3S/h/FiB2LvxVL0yDe5g7Av0S5/cp3oGTX60rmQlRp +Kl7yADDWvboFw2KXSht88MVh/wF5Xgmuvj+LR6x/vV+NzY41kLMGnH4hGw7qEGdQ +I5vHaZC/5c1a1W6GSnnNtcl0BTVe72ypoqxVy8HXNSCMj5t6YoheSuqtW5gfTsl0 +TALO9pv+pPeilKzRHzv2LU0hK01YFvFLXNCnQL9Ejz5vSdhCmIsDXKMXJ8sBGhFa +TwTLKzAVKbFefD+/uhyOQWI2Yu4fRIxn+6VEe+eAxdhioTNH2rcX6Wxf9EQdCAp4 +iZQX+jUHTYuOkGIcn6IDIfcRhjocflEx5ALpjmdrMy8HQ0iM+Hw= +=In2l +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.5.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.5.1/amd64/stable/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..350a49f3c9e4ab3f2799e5222cfdb32cbf325fbe --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.5.1/amd64/stable/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: 4.5.1 +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.5.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.5.1/amd64/stable/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..609c12d9abbd1e52438194473101888f2ff67231 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.5.1/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6Lu0IACgkQqLD05Fsb +UOIzTA/+K0G6y4lcZPDZGg65Qd66LKXS+f2m1UxVCyah6CwvS5cLPRNeiyjLsaJe +XU0XkYYMY5UeB1d5zhQ/NH4zq2433o5pEJLhCjmvuTG64USZoQC49n5wHDEC6hAn +M58mV1I+gA/+78939F7wbPY9qaVpoh6Ez9+PrS34sg8oO/nUQc0aMpS7KWqstpQN +BWYIEC2Nh0FBxQiEsDMO5CpBl7v94qXRsHIw3dZjjh5d9HncEDapSB95w9YOJrDA +9XA3l7YUF/9Ez3C8cU/yihK36VKy+yaEJsj09PXEazxgV2I4XHIv0v8XiZIazJyU +zYgEiNoMPkll6Ix1xlJPNN6RdJRCb+OdSfC8JjVeCfsVhgaKUV0996LWmOd+ocMb +W07eCzyI35a87YCJUzRhSddVk4Ax1Zoc9JaNr6SyEaVkX7wnz/R5R/PmTBwR1AFM +LypX9Z6aDE9v2Q4Y8dH6D5Q0f3Wk03WQk0QhGqTR+tLucX5SDKFgFISjPSFUuH6+ +W6oNVf+TocT6d3grfL2FjhBpxyPqQKM0PUds9L9ot2r4dYNIv/eVP2JkCOL1H9Yc +gsre6PUf1fM/+JuBZcrlR/Y1o553Ctjq7S6ED0GVV6WxjPdE6yZ+AZkUHRezvpvo +4plgLufnI3DP3QU/kzlCTqmjdKjfZUItB2A+Q4JXj8ftPLi4Vsw= +=Bf30 +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.5~rc1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.5~rc1/amd64/stable/upgrades.yml index 142939aa05241ed2b0128090bb52d58a2969200b..7585fd2c41bb78155c08aa270072981f37e5ec50 100644 --- a/wiki/src/upgrade/v2/Tails/4.5~rc1/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/4.5~rc1/amd64/stable/upgrades.yml @@ -3,3 +3,18 @@ build-target: amd64 channel: stable initial-install-version: 4.5~rc1 product-name: Tails +upgrades: +- details-url: https://tails.boum.org/news/version_4.5/ + type: major + upgrade-paths: + - target-files: + - sha256: eddd88ab6726dbaf62a9ec1bf552e2a90d01b0ea539d7aaae4ad4772473d51ea + size: 1167990784 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.5/tails-amd64-4.5.iso + type: full + - target-files: + - sha256: f39a9edd24b3145f737af1ed6a22715437c7ac752d155a264103d217d86b6adc + size: 122974208 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.5~rc1_to_4.5.iuk + type: incremental + version: '4.5' diff --git a/wiki/src/upgrade/v2/Tails/4.5~rc1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.5~rc1/amd64/stable/upgrades.yml.pgp index acd62d4cef11e25a1a32cf84b3d42e9772d52eaa..d5be2b1cad81688c8e3c90a54a1b511253919adb 100644 --- a/wiki/src/upgrade/v2/Tails/4.5~rc1/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/4.5~rc1/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl4YkbQACgkQqLD05Fsb -UOKk9Q/+L2bERYv3vnGTx1I3A+t4+LVhVWdEFssI81iA3X9qsbo+TNjOt27SYFnD -EYEpdQEqKgfTn9he14Lb3YQiIHtkIDDpMw3h6ndE+CKlG+m4u345angb7wV5W81U -6OhCN/ehTdSO0MGoivcIGkVcOPpShOxNrl2I7LpePW8XWY4yAvlJH3aQXGaFnWDt -edLUDrPlkAJvxJOYiCvCdnNEzZ9PcMwF8J2nzLpibVblxpFKk/nrq/g+xl/dZuBJ -egIBOXH0joVtp7OfQC+WYHJR4yziX6BrySRoawtYbflt44d/WFEScC/uEtfbbqQk -HQXNfmmKP87v3SULkj1LkdNl/xfJACR3AevY4o9cWFniO1M+wtE+PDxt6o9uKBTa -iQugqKtsIqdEd0msOYvD2OxJmnN5n+6YOEVVF4jjkpfpISUMYFr7Tt5ymLlgRC7/ -BdNrw5tlFvSG965nxwP8V6BlsOJ3cfuSZ6NULbX07pRR0wHUmk9e3v0t89xU0568 -tlJHjh1HfbGHODisEwdRaEii7YJM4V+LKKdg1ykKN9Lpn+4UeneLVLCp6cH5KS+e -yw+rBI28D5nB9bzjK9gviilwQw7FHQSemedYjdWZ/AAmTF/gZrs0tSqBLlP/YP2S -9ngHG/hNi3eu0NQ8PRKABFJfggyB4J2OeIDfQHIArT/uZAd2r/M= -=UoD7 +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl6Lu0gACgkQqLD05Fsb +UOLqZA//QrQ8HDp2nSocDsKzsk4CZVrzOF8pkistdffSgKF8MOx5CvtZ+EAx2vS2 +Go9jzo9g8JYoqHjPbchEJEc3FTWYFwwIf8fPJP6V+GN9aB0nY9IWKr1tiaoIeoRF +byGZ4SRGupbGV1+EpzEp30bUtMQJqc0iIqWVU4BFFfN8kfO5dRWtKfGSKlU+UKG9 +S9YU1CbKd2zCu7jFseVZ9Cf8iywSxgxUZm46GxZtAq02lAub1hRU6Y8WO8Awvncs +dKr1oguxl0BKePJdKvuW1DOHr8wbuxDym3TTt59w87VZykR5CTBYXYOy+QFcQapa +HJhCNAk5zkG8NQf2Ra2XSrRVqWIMk9ak7ii5zmHEwoWuGApENPC700ViM73T7/nf +81HjhjO/Jp1rB4asNQqCvLQW5jzwnvPubDeU+v8xy3ISDRThGi245hvHg/Mv0kfr +z/5QZE8Mpn3vJpM3n6DerYWOWA0tjuxP2KmULFDBchqQ8m7d2Ya4NCfU+Rr+8ihT +Pjd5FJyVUKudfFKOBdUqf1ZJxCUavQ+JQJVOUJNEp8Mc50r5gOMH1ZtP72SsOIKA +LEr/T9kROd17Tk6iGpbBnMZgDvG556+PyJ6+3gphvCM/uoOrKpkphO0AXU2MZJFm +VeKdD4Ad1fGEb2WyNhA8ygpcXgRQy1aM8M5Uz7MQ1+7uZG2WLG4= +=kmn0 -----END PGP SIGNATURE-----