diff --git a/Rakefile b/Rakefile index 416b03d2f871f79b5a1b7e0825faf27539abb60b..529197c110c7442b54920dccf36cd23dae3b1acc 100644 --- a/Rakefile +++ b/Rakefile @@ -43,6 +43,7 @@ EXPORTED_VARIABLES = [ 'TAILS_PROXY', 'TAILS_PROXY_TYPE', 'TAILS_RAM_BUILD', + 'TAILS_WEBSITE_CACHE', 'GIT_COMMIT', 'GIT_REF', 'BASE_BRANCH_GIT_COMMIT', @@ -118,7 +119,7 @@ rescue CommandError => e end # Runs the vagrant command, not letting stdout/stderr through, and -# returns [stdout, stderr, Preocess:Status]. +# returns [stdout, stderr, Process::Status]. def capture_vagrant(*args) capture_command('vagrant', *args, :chdir => './vagrant') rescue CommandError => e @@ -246,11 +247,20 @@ task :parse_build_options do ENV['TAILS_PROXY_TYPE'] = 'noproxy' when 'offline' ENV['TAILS_OFFLINE_MODE'] = '1' + when 'cachewebsite' + if is_release? + $stderr.puts "Building a release ⇒ ignoring #{opt} build option" + ENV['TAILS_WEBSITE_CACHE'] = '0' + else + ENV['TAILS_WEBSITE_CACHE'] = '1' + end # SquashFS compression settings when 'fastcomp', 'gzipcomp' - ENV['MKSQUASHFS_OPTIONS'] = '-comp xz' if is_release? - raise 'We must use the default compression when building releases!' + $stderr.puts "Building a release ⇒ ignoring #{opt} build option" + ENV['MKSQUASHFS_OPTIONS'] = nil + else + ENV['MKSQUASHFS_OPTIONS'] = '-comp xz -no-exports' end when 'defaultcomp' ENV['MKSQUASHFS_OPTIONS'] = nil @@ -389,8 +399,35 @@ task :maybe_clean_up_builder_vms do clean_up_builder_vms if $force_cleanup end +task :ensure_correct_permissions do + FileUtils.chmod('go+x', '.') + FileUtils.chmod_R('go+rX', ['.git', 'submodules', 'vagrant']) + + # Changing permissions outside of the working copy, in particular on + # parent directories such as $HOME, feels too blunt and can have + # problematic security consequences, so we don't forcibly do that. + # Instead, when the permissions are not OK, display a nicer error + # message than "Virtio-9p Failed to initialize fs-driver […]" + begin + capture_command('sudo', '-u', 'libvirt-qemu', 'stat', '.git') + rescue CommandError + abort <<-END_OF_MESSAGE.gsub(/^ /, '') + + Incorrect permissions: the libvirt-qemu user needs to be allowed + to traverse the filesystem up to #{ENV['PWD']}. + + To fix this, you can for example run the following command + on every parent directory of #{ENV['PWD']} up to #{ENV['HOME']} + (inclusive): + + chmod g+x DIR && setfacl -m user:libvirt-qemu:x DIR + + END_OF_MESSAGE + end +end + desc 'Build Tails' -task :build => ['parse_build_options', 'ensure_clean_repository', 'maybe_clean_up_builder_vms', 'validate_git_state', 'setup_environment', 'validate_http_proxy', 'vm:up', 'ensure_clean_home_directory'] do +task :build => ['parse_build_options', 'ensure_clean_repository', 'maybe_clean_up_builder_vms', 'validate_git_state', 'setup_environment', 'validate_http_proxy', 'ensure_correct_permissions', 'vm:up', 'ensure_clean_home_directory'] do begin if ENV['TAILS_RAM_BUILD'] && not(enough_free_memory_for_ram_build?) @@ -419,38 +456,62 @@ task :build => ['parse_build_options', 'ensure_clean_repository', 'maybe_clean_u exported_env = EXPORTED_VARIABLES.select { |k| ENV[k] }. collect { |k| "#{k}='#{ENV[k]}'" }.join(' ') - run_vagrant_ssh("#{exported_env} build-tails") - - artifacts = list_artifacts - raise 'No build artifacts were found!' if artifacts.empty? - user = vagrant_ssh_config('User') - hostname = vagrant_ssh_config('HostName') - key_file = vagrant_ssh_config('IdentityFile') - $stderr.puts "Retrieving artifacts from Vagrant build box." - run_vagrant_ssh( - "sudo chown #{user} " + artifacts.map { |a| "'#{a}'" } .join(' ') - ) - fetch_command = [ - 'scp', - '-i', key_file, - # We need this since the user will not necessarily have a - # known_hosts entry. It is safe since an attacker must - # compromise libvirt's network config or the user running the - # command to modify the #{hostname} below. - '-o', 'StrictHostKeyChecking=no', - '-o', 'UserKnownHostsFile=/dev/null', - # Speed up the copy - '-o', 'Compression=no', - ] - fetch_command += artifacts.map { |a| "#{user}@#{hostname}:#{a}" } - fetch_command << ENV['ARTIFACTS'] - run_command(*fetch_command) - clean_up_builder_vms unless $keep_running + + begin + retrieved_artifacts = false + run_vagrant_ssh("#{exported_env} build-tails") + rescue VagrantCommandError + retrieve_artifacts(:missing_ok => true) + retrieved_artifacts = true + ensure + retrieve_artifacts(:missing_ok => false) unless retrieved_artifacts + clean_up_builder_vms unless $keep_running + end ensure clean_up_builder_vms if $force_cleanup end end +desc "Retrieve build artifacts from the Vagrant box" +task :retrieve_artifacts do + retrieve_artifacts +end + +def retrieve_artifacts(missing_ok: false) + artifacts = list_artifacts + if artifacts.empty? + msg = 'No build artifacts were found!' + if missing_ok + $stderr.puts msg + return + else + raise msg + end + end + user = vagrant_ssh_config('User') + hostname = vagrant_ssh_config('HostName') + key_file = vagrant_ssh_config('IdentityFile') + $stderr.puts "Retrieving artifacts from Vagrant build box." + run_vagrant_ssh( + "sudo chown #{user} " + artifacts.map { |a| "'#{a}'" } .join(' ') + ) + fetch_command = [ + 'scp', + '-i', key_file, + # We need this since the user will not necessarily have a + # known_hosts entry. It is safe since an attacker must + # compromise libvirt's network config or the user running the + # command to modify the #{hostname} below. + '-o', 'StrictHostKeyChecking=no', + '-o', 'UserKnownHostsFile=/dev/null', + # Speed up the copy + '-o', 'Compression=no', + ] + fetch_command += artifacts.map { |a| "#{user}@#{hostname}:#{a}" } + fetch_command << ENV['ARTIFACTS'] + run_command(*fetch_command) +end + def has_box? not(capture_vagrant('box', 'list').grep(/^#{box_name}\s+\(libvirt,/).empty?) end @@ -488,6 +549,14 @@ def clean_up_builder_vms run_vagrant_ssh("sudo umount /var/cache/apt-cacher-ng") run_vagrant_ssh("sudo sync") end + begin + run_vagrant_ssh("mountpoint -q /var/cache/tails-website") + rescue VagrantCommandError + # Nothing to unmount. + else + run_vagrant_ssh("sudo umount /var/cache/tails-website") + run_vagrant_ssh("sudo sync") + end end clean_up_domain.call(previous_domain) @@ -571,7 +640,7 @@ namespace :vm do clean_up_builder_vms end begin - run_vagrant('up') + run_vagrant('up', '--provision') rescue VagrantCommandError => e clean_up_builder_vms if $force_cleanup raise e @@ -593,7 +662,7 @@ namespace :vm do run_vagrant('provision') end - desc "Destroy build virtual machine (clean up all files except the vmproxy's apt-cacher-ng data)" + desc "Destroy build virtual machine (clean up all files except the vmproxy's apt-cacher-ng data and the website cache)" task :destroy do clean_up_builder_vms end diff --git a/auto/build b/auto/build index d6cd96eebffc2bb3544ade214daf4e98a90e1847..83064c695a2ae63dead2f7c0840b8f171a755624 100755 --- a/auto/build +++ b/auto/build @@ -112,13 +112,24 @@ MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -mem 512M -wildcards -ef chroot/usr/sh export MKSQUASHFS_OPTIONS # build the doc wiki -./build-website +if [ "${TAILS_WEBSITE_CACHE:-0}" = 1 ]; then + export WEBSITE_DEST_DIR=. + export WEBSITE_CACHE_BASEDIR + website-cache gc + WEBSITE_CACHE_KEY=$(website-cache key) + if ! website-cache get "$WEBSITE_CACHE_KEY"; then + ./build-website + website-cache put "$WEBSITE_CACHE_KEY" + fi +else + ./build-website +fi # refresh translations of our programs ./refresh-translations || fatal "refresh-translations failed ($?)." # generate list of supported languages -./generate-languages-list || fatal "generate-languages-list failed ($?)." +generate-languages-list || fatal "generate-languages-list failed ($?)." BUILD_ISO_FILENAME="${BUILD_BASENAME}.iso" BUILD_MANIFEST="${BUILD_BASENAME}.build-manifest" diff --git a/generate-languages-list b/auto/scripts/generate-languages-list similarity index 100% rename from generate-languages-list rename to auto/scripts/generate-languages-list diff --git a/auto/scripts/website-cache b/auto/scripts/website-cache new file mode 100755 index 0000000000000000000000000000000000000000..39bbed66716b356453ebcef5162f8c22616c3108 --- /dev/null +++ b/auto/scripts/website-cache @@ -0,0 +1,206 @@ +#!/usr/bin/python3 + +import argparse +import hashlib +import json +import logging +import os +import shutil +import subprocess +import sys + +from datetime import datetime, timedelta +from pathlib import Path + +LOG_FORMAT = "%(asctime)-15s %(levelname)s %(message)s" +log = logging.getLogger() + +# Input parameters that primarily determine the output of the build, +# and therefore are used to generate the cache key: any change +# to any of these input parameters will yield a different cache key. +KEY_FILES = [ + # A new implementation of the caching mechanism should + # invalidate older cached data + 'auto/scripts/website-cache', + # ikiwiki configuration + 'ikiwiki.setup', + # ikiwiki input directory + 'wiki/src', +] +KEY_PACKAGES = [ + 'gettext', + 'ikiwiki', + 'libmarkdown2', + 'libtext-markdown-discount-perl', + 'perl', + 'po4a', +] + +# Files to cache, relative to the root of this very Git repository +CACHED_FILES = [ + 'config/chroot_local-includes/usr/share/doc/tails/website', +] + + +def main(): + parser = argparse.ArgumentParser( + description="Query and manage website cache" + ) + parser.add_argument( + "--dest-dir", type=str, action="store", + default=os.getenv('WEBSITE_DEST_DIR', None), + help="Directory where to restore data from the cache") + parser.add_argument( + "--cache-base-dir", type=str, action="store", + default=os.getenv('WEBSITE_CACHE_BASEDIR', None), + help="Directory where the cache lives") + parser.add_argument("--debug", action="store_true", help="debug output") + subparsers = parser.add_subparsers(help="sub-command help", dest="command") + + parser_gc = subparsers.add_parser( + "gc", + help="Garbage collect expired data from the cache") + parser_gc.add_argument( + "--max-days", type=int, action="store", default=30, + help="Number of days after which cached data expires") + parser_gc.set_defaults(func=gc) + + parser_get = subparsers.add_parser("get", help="Copy data from the cache") + parser_get.add_argument("cache_key", type=str, action="store") + parser_get.set_defaults(func=get) + + parser_put = subparsers.add_parser("put", help="Copy data to the cache") + parser_put.add_argument("cache_key", type=str, action="store") + parser_put.set_defaults(func=put) + + parser_key = subparsers.add_parser( + "key", + help="Computing cache key for the source tree and build environment") + parser_key.set_defaults(func=key) + + parser_forget = subparsers.add_parser("forget", help="Delete cached data") + parser_forget.add_argument("cache_key", type=str, action="store") + parser_forget.set_defaults(func=forget) + + args = parser.parse_args() + + if args.debug: + logging.basicConfig(level=logging.DEBUG, format=LOG_FORMAT) + else: + logging.basicConfig(level=logging.INFO, format=LOG_FORMAT) + + if args.cache_base_dir is None: + log.error("Please pass --cache-base-dir or set $WEBSITE_CACHE_BASEDIR") + sys.exit(1) + + if args.dest_dir is None: + log.error("Please pass --dest-dir or set $WEBSITE_DEST_DIR") + sys.exit(1) + + for key_file in KEY_FILES + [args.cache_base_dir]: + if not Path(key_file).exists(): + log.error("%s does not exist" % (key_file)) + sys.exit(1) + + if args.command is None: + parser.print_help() + else: + args.func(args) + + +def gc(args): + log.info("Garbage collecting expired data from the cache…") + cache_dirs = [d for d in Path(args.cache_base_dir).iterdir() if d.is_dir()] + delete_before = datetime.utcnow() - timedelta(days=args.max_days) + log.debug("Will delete data created before %s" % (delete_before)) + for cache_dir in cache_dirs: + mtime = datetime.utcfromtimestamp(cache_dir.stat().st_mtime) + if mtime < delete_before: + log.info(" - Deleting cache for %s with mtime %s" + % (cache_dir.name, mtime)) + shutil.rmtree(cache_dir) + else: + log.debug(" - Cache for %s has mtime %s ⇒ keeping" + % (cache_dir.name, mtime)) + + +def get(args): + cache_dir = Path(args.cache_base_dir, args.cache_key) + if not cache_dir.exists(): + raise LookupError("Found no cache dir for key %s" % (args.cache_key)) + + for file_to_get in [Path(f) for f in CACHED_FILES]: + cached_file = Path(cache_dir, file_to_get) + dest_file = Path(args.dest_dir, file_to_get) + + if dest_file.exists(): + raise FileExistsError("%s already exists locally, not overwriting" + % (dest_file)) + if not cached_file.exists(): + raise FileNotFoundError("Found no cached %s for key %s" + % (file_to_get, args.cache_key)) + + log.debug("Copying %s from the cache" % (file_to_get)) + if cached_file.is_dir(): + shutil.copytree(src=cached_file, dst=dest_file, symlinks=True) + else: + raise NotImplementedError( + "Retrieving non-directories is not supported yet") + + +def put(args): + cache_dir = Path(args.cache_base_dir, args.cache_key) + cache_dir.mkdir() + for file_to_cache in [Path(f) for f in CACHED_FILES]: + cached_file = Path(cache_dir, file_to_cache) + + if not file_to_cache.exists(): + raise FileNotFoundError("Cannot store non-existing %s in the cache" + % file_to_cache) + + log.debug("Caching %s with key %s" % (file_to_cache, args.cache_key)) + cached_file.parent.mkdir(parents=True) + if file_to_cache.is_dir(): + shutil.copytree(src=file_to_cache, dst=cached_file, symlinks=True) + else: + raise NotImplementedError( + "Caching non-directories is not supported yet") + + +def forget(args): + cache_dir = Path(args.cache_base_dir, args.cache_key) + if cache_dir.exists(): + log.info("Deleting cached data for key %s" % args.cache_key) + shutil.rmtree(cache_dir) + else: + log.info("No cached data to forget for key %s", args.cache_key) + + +def package_version(package: str) -> str: + return subprocess.run( + ["dpkg-query", "--showformat", "${Version}", "--show", package], + stdout=subprocess.PIPE, universal_newlines=True, + check=True).stdout.rstrip() + + +def compute_cache_key(key_files: [str], key_packages: [str]) -> str: + input_data = { + 'git_commit': subprocess.run( + ["git", "log", "-1", "--pretty=%H", "--", *key_files], + stdout=subprocess.PIPE, universal_newlines=True, + check=True).stdout.rstrip(), + 'packages': dict( + (package, package_version(package)) for package in sorted(key_packages) + ), + } + serialized = json.dumps(input_data, sort_keys=True) + log.debug("Serialized data: " + serialized) + return hashlib.sha1(bytes(serialized, encoding='utf-8')).hexdigest() + + +def key(args): + print(compute_cache_key(KEY_FILES, KEY_PACKAGES)) + + +if __name__ == "__main__": + main() diff --git a/bin/copy-iuks-to-rsync-server-and-verify b/bin/copy-iuks-to-rsync-server-and-verify new file mode 100755 index 0000000000000000000000000000000000000000..c73f4691c05b429b15c01640330f504f46e1eb5e --- /dev/null +++ b/bin/copy-iuks-to-rsync-server-and-verify @@ -0,0 +1,119 @@ +#!/usr/bin/python3 + +import argparse +import logging +import subprocess +import sys + +from typing import List +from pathlib import Path + +JENKINS_IUKS_BASE_URL = "https://nightly.tails.boum.org/build_IUKs/builds" +RSYNC_SERVER_HOSTNAME = "rsync.lizard" +LOG_FORMAT = "%(asctime)-15s %(levelname)s %(message)s" +log = logging.getLogger() + + +def main(): + parser = argparse.ArgumentParser( + description="Copy IUKs from Jenkins to our rsync server \ + and verify that they match those built locally" + ) + parser.add_argument("--hashes-file", type=str, action="store", required=True) + parser.add_argument("--jenkins-build-id", type=int, action="store", required=True) + parser.add_argument("-q", "--quiet", action="store_true", + help="quiet output") + parser.add_argument("--debug", action="store_true", help="debug output") + parser.add_argument("--skip-sending-hashes-file", action="store_true", + help="Assume the hashes file was uploaded already") + parser.add_argument("--skip-downloading-iuks", action="store_true", + help="Assume the IUKs were already downloaded") + args = parser.parse_args() + + if args.debug: + logging.basicConfig(level=logging.DEBUG, format=LOG_FORMAT) + elif args.quiet: + logging.basicConfig(level=logging.WARN, format=LOG_FORMAT) + else: + logging.basicConfig(level=logging.INFO, format=LOG_FORMAT) + + if not Path(args.hashes_file).exists(): + log.error("%s does not exist" % (args.hashes_file)) + sys.exit(1) + + if not args.skip_sending_hashes_file: + send_hashes_file( + hashes_file=args.hashes_file, + desthost=RSYNC_SERVER_HOSTNAME, + ) + + if not args.skip_downloading_iuks: + download_iuks_from_jenkins( + hashes_file=args.hashes_file, + desthost=RSYNC_SERVER_HOSTNAME, + jenkins_iuks_base_url=JENKINS_IUKS_BASE_URL, + jenkins_build_id=args.jenkins_build_id, + ) + + verify_iuks( + desthost=RSYNC_SERVER_HOSTNAME, + hashes_file=Path(args.hashes_file).name, + ) + + +def send_hashes_file( + hashes_file: str, + desthost: str) -> None: + log.info("Sending %(f)s to %(h)s…" % { + "f": hashes_file, + "h": desthost, + }) + subprocess.run( + ["scp", hashes_file, "%s:" % (desthost)], + check=True + ) + + +def iuks_listed_in(hashes_file: str) -> List[str]: + with Path(hashes_file).open() as f: + lines = f.readlines() + return [l.split(' ')[-1].rstrip() for l in lines] + + +def download_iuks_from_jenkins( + hashes_file: str, + desthost: str, + jenkins_iuks_base_url: str, + jenkins_build_id: int) -> None: + log.info("Downloading IUKs from Jenkins to %s…" % (desthost)) + iuks = iuks_listed_in(hashes_file) + log.debug("IUKS: %s" % ', '.join(iuks)) + for iuk in iuks: + log.debug("Downloading %s" % (iuk)) + url = "%s/%s/archive/%s" % ( + jenkins_iuks_base_url, + jenkins_build_id, + iuk + ) + subprocess.run( + ["ssh", desthost, "wget", "--quiet", "--no-clobber", + "-O", iuk, url], + check=True + ) + + +def verify_iuks(desthost: str, hashes_file: str) -> None: + log.info("Verifying that IUKs built on Jenkins match those you've built…") + try: + subprocess.run( + ["ssh", desthost, "sha256sum", "--check", "--strict", + Path(hashes_file).name], + check=True + ) + except subprocess.CalledProcessError: + print("\nERROR: IUKs built on Jenkins don't match yours\n", + file=sys.stderr) + + +if __name__ == "__main__": + main() diff --git a/bin/create-test-iuks b/bin/create-test-iuks new file mode 100755 index 0000000000000000000000000000000000000000..fd00e8043e65d77443b2c7b78c182be0f7060113 --- /dev/null +++ b/bin/create-test-iuks @@ -0,0 +1,80 @@ +#!/bin/sh + +set -e +set -u +set -x + +VERSIONS="2.0~test 2.2~test 2.3~test" +export SOURCE_DATE_EPOCH=$(date --utc '+%s') + +[ -d "$TAILS_CHECKOUT" ] || exit 2 + +WORKDIR=$(mktemp -d) + +for version in $VERSIONS; do + ISO_SRC="$WORKDIR/$version"/iso_src + for dir in EFI/BOOT isolinux live utils/linux utils/mbr; do + mkdir -p "$ISO_SRC/$dir" + done + SQUASHFS_SRC="$WORKDIR/$version"/squashfs_src + mkdir -p "$SQUASHFS_SRC" + 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 + echo "Some content" > "$SQUASHFS_SRC"/some_new_file + rm "$SQUASHFS_SRC"/usr/share/common-licenses/BSD + fi + if [ "$version" = '2.3~test' ]; then + echo "Some content 2.3" > "$SQUASHFS_SRC"/some_new_file_2.3 + rm "$SQUASHFS_SRC"/usr/share/common-licenses/MPL-1.1 + fi + cat > "$SQUASHFS_SRC"/etc/amnesia/version <<EOF +$version - 20380119 +ffffffffffffffffffffffffffffffffffffffff +live-build: 3.0.5+really+is+2.0.12-0.tails2 +live-boot: 4.0.2-1 +live-config: 4.0.4-1 +EOF + cat > "$SQUASHFS_SRC"/etc/os-release <<EOF +TAILS_PRODUCT_NAME="Tails" +TAILS_VERSION_ID="$version" +EOF + mksquashfs \ + "$SQUASHFS_SRC" \ + "$ISO_SRC"/live/filesystem.squashfs \ + -no-progress -noappend -comp xz -Xbcj x86 -b 1024K -Xdict-size 1024K + + 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 + cp /usr/bin/syslinux "$ISO_SRC"/utils/linux + fi + if [ "$version" = '2.3~test' ]; then + rm "$ISO_SRC"/utils/mbr/mbr.bin + fi + xorriso \ + -as mkisofs -R -r -J -joliet-long -l -cache-inodes -iso-level 3 \ + --modification-date=2019112316114600 \ + -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" + sudo su -c \ + "SOURCE_DATE_EPOCH=$SOURCE_DATE_EPOCH \ + LC_ALL=C \ + TMPDIR=\"${TMPDIR:-/tmp}\" \ + 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\" \ + --new_iso \"$WORKDIR/${dest_version}.iso\" \ + --outfile \"$WORKDIR/Tails_amd64_2.0~test_to_${dest_version}.iuk\"" +done + +echo "Generated test IUKS:" +ls -lh "$WORKDIR"/*.iuk diff --git a/bin/iuk-source-versions b/bin/iuk-source-versions new file mode 100755 index 0000000000000000000000000000000000000000..ea3c2f7978b73e245f621515c71a0e0a662fe144 --- /dev/null +++ b/bin/iuk-source-versions @@ -0,0 +1,41 @@ +#!/bin/sh + +set -e +set -u + +IGNORED_TAGS="4.2.1" + +major_version () { + local version="$1" + echo "$version" | perl -p -E 's,[.].*,,' +} + +member () { + local item="$1" + shift + local found=no + for i in "$@"; do + if [ "$i" = "$item" ]; then + found=yes + break + fi + done + + [ "$found" = 'yes' ] +} + +RELEASING_VERSION="$1" +RELEASING_MAJOR_VERSION=$(major_version "$RELEASING_VERSION") + +git tag | while read tag ; do + if member "$tag" $IGNORED_TAGS; then + continue + fi + version=$(echo "$tag" | perl -p -E 's,-,~,') + major_version=$(major_version "$version") + if [ "$major_version" = "$RELEASING_MAJOR_VERSION" ] && \ + dpkg --compare-versions "$version" lt "$RELEASING_VERSION" ; then + echo "$version" + fi +done + diff --git a/config/amnesia b/config/amnesia index 9f0a65063d1f0d40594e8350992cf4efe36e0fd2..6d8bbf62d127c86f2bdfb5969c869f90e68efc64 100644 --- a/config/amnesia +++ b/config/amnesia @@ -17,13 +17,13 @@ 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 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 union=aufs" # Options passed to isohybrid AMNESIA_ISOHYBRID_OPTS="-h 255 -s 63 --id 42 --verbose" # Kernel version -KERNEL_VERSION='5.3.0-3' +KERNEL_VERSION='5.4.0-3' KERNEL_SOURCE_VERSION=$( echo "$KERNEL_VERSION" \ | perl -p -E 's{\A (\d+ [.] \d+) [.] .*}{$1}xms' diff --git a/config/binary_local-hooks/05-check_initramfs-size b/config/binary_local-hooks/05-check_initramfs-size index a5466e985ca37732292ced39c3660d556d1706df..bc51b2d9c4db66775d1a26737638a80a2cde3b55 100755 --- a/config/binary_local-hooks/05-check_initramfs-size +++ b/config/binary_local-hooks/05-check_initramfs-size @@ -17,9 +17,9 @@ Set_defaults Echo_message "checking the size of the initramfs" INITRAMFS=$(readlink --canonicalize binary/live/initrd.img) -MAX_SIZE=$((35 * 1024 * 1024)) # in bytes +MAX_SIZE=$((32 * 1024 * 1024)) # in bytes ACTUAL_SIZE=$(stat --format='%s' "$INITRAMFS") -if [ "$ACTUAL_SIZE" -gt "$MAX_SIZE" ]; then +if [ "$ACTUAL_SIZE" -ge "$MAX_SIZE" ]; then echo "E: initramfs is larger ($ACTUAL_SIZE bytes) than the maximum allowed ($MAX_SIZE)" >&2 exit 1 fi diff --git a/config/binary_rootfs/squashfs.sort b/config/binary_rootfs/squashfs.sort index 7ad577d2fe93860ca1b062c7c3e928c372e169d7..784bfa5c7eb2495dbbaf2093be540e980b2ffb77 100644 --- a/config/binary_rootfs/squashfs.sort +++ b/config/binary_rootfs/squashfs.sort @@ -1,4460 +1,4200 @@ -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/lib/x86_64-linux-gnu/libkmod.so.2.3.4 32765 -usr/lib/x86_64-linux-gnu/libssl.so.1.1 32764 -usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 32763 -lib/live/config/0001-sane-clock 32762 -bin/dash 32761 -lib/x86_64-linux-gnu/ld-2.28.so 32760 -etc/ld.so.cache 32759 -lib/x86_64-linux-gnu/libc-2.28.so 32758 -bin/sed 32757 -lib/x86_64-linux-gnu/libselinux.so.1 32756 -lib/x86_64-linux-gnu/libpcre.so.3.13.3 32755 -lib/x86_64-linux-gnu/libdl-2.28.so 32754 -lib/x86_64-linux-gnu/libpthread-2.28.so 32753 -usr/lib/locale/en_US.utf8/LC_IDENTIFICATION 32752 -usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache 32751 -usr/lib/locale/chr_US/LC_MEASUREMENT 32750 -usr/lib/locale/chr_US/LC_TELEPHONE 32749 -usr/lib/locale/en_US.utf8/LC_ADDRESS 32748 -usr/lib/locale/bi_VU/LC_NAME 32747 -usr/lib/locale/chr_US/LC_PAPER 32746 -usr/lib/locale/en_AG/LC_MESSAGES/SYS_LC_MESSAGES 32745 -usr/lib/locale/chr_US/LC_MONETARY 32744 -usr/lib/locale/aa_DJ.utf8/LC_COLLATE 32743 -usr/lib/locale/en_US.utf8/LC_TIME 32742 -usr/lib/locale/aa_ET/LC_NUMERIC 32741 -usr/lib/locale/aa_DJ.utf8/LC_CTYPE 32740 -etc/amnesia/version 32739 -bin/date 32738 -usr/share/zoneinfo/UCT 32737 -lib/live/config/0005-nss-systemd 32736 -bin/grep 32735 -etc/nsswitch.conf 32734 -lib/live/config/0010-debconf 32733 -lib/live/setup-network.sh 32732 -lib/live/config/0020-hostname 32730 -etc/hostname 32729 -bin/cat 32728 -etc/hosts 32727 -bin/hostname 32725 -bin/touch 32724 -lib/live/config/0030-live-debconfig_passwd 32722 -lib/live/config/0030-user-setup 32721 -usr/bin/debconf-set-selections 32718 -usr/bin/perl 32717 -lib/x86_64-linux-gnu/libm-2.28.so 32716 -lib/x86_64-linux-gnu/libcrypt-2.28.so 32715 -usr/share/perl/5.28.1/warnings.pm 32714 -usr/share/perl/5.28.1/strict.pm 32713 -usr/share/perl5/Debconf/Db.pm 32712 -usr/share/perl5/Debconf/Log.pm 32711 -usr/share/perl/5.28.1/base.pm 32710 -usr/share/perl/5.28.1/Exporter.pm 32709 -usr/share/perl5/Debconf/Config.pm 32708 -usr/share/perl5/Debconf/Question.pm 32707 -usr/share/perl5/Debconf/Template.pm 32706 -usr/lib/x86_64-linux-gnu/perl/5.28.1/POSIX.pm 32705 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Fcntl.pm 32704 -usr/share/perl/5.28.1/XSLoader.pm 32703 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Fcntl/Fcntl.so 32702 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/POSIX/POSIX.so 32701 -usr/share/perl/5.28.1/Tie/Hash.pm 32700 -usr/share/perl/5.28.1/Carp.pm 32699 -usr/share/perl/5.28.1/overloading.pm 32698 -usr/share/perl/5.28.1/warnings/register.pm 32697 -usr/share/perl/5.28.1/Exporter/Heavy.pm 32696 -usr/share/perl/5.28.1/FileHandle.pm 32695 -usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/File.pm 32694 -usr/share/perl/5.28.1/Symbol.pm 32693 -usr/share/perl/5.28.1/SelectSaver.pm 32692 -usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Seekable.pm 32691 -usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Handle.pm 32690 -usr/lib/x86_64-linux-gnu/perl/5.28.1/IO.pm 32689 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/IO/IO.so 32688 -usr/share/perl5/Debconf/Gettext.pm 32687 -usr/lib/x86_64-linux-gnu/perl5/5.28/Locale/gettext.pm 32686 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode.pm 32685 -usr/share/perl/5.28.1/constant.pm 32684 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Encode/Encode.so 32683 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode/Alias.pm 32682 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode/MIME/Name.pm 32681 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Storable.pm 32680 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Storable/Storable.so 32679 -usr/share/perl/5.28.1/parent.pm 32678 -usr/share/perl/5.28.1/vars.pm 32677 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode/Encoding.pm 32676 -usr/share/perl/5.28.1/bytes.pm 32675 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode/Config.pm 32674 -usr/lib/x86_64-linux-gnu/perl/5.28.1/DynaLoader.pm 32673 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Config.pm 32672 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Locale/gettext/gettext.so 32671 -usr/share/perl/5.28.1/Text/Wrap.pm 32670 -usr/share/perl/5.28.1/Text/Tabs.pm 32669 -usr/lib/x86_64-linux-gnu/perl/5.28.1/re.pm 32668 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/re/re.so 32667 -usr/share/perl5/Debconf/Iterator.pm 32666 -usr/share/perl5/Debconf/Base.pm 32665 -usr/share/perl/5.28.1/fields.pm 32664 -usr/share/perl5/Debconf/Encoding.pm 32663 -usr/lib/x86_64-linux-gnu/perl5/5.28/Text/Iconv.pm 32662 -usr/share/perl/5.28.1/AutoLoader.pm 32661 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Text/Iconv/Iconv.so 32660 -usr/bin/locale 32659 -usr/share/perl5/Text/WrapI18N.pm 32658 -usr/lib/x86_64-linux-gnu/perl5/5.28/Text/CharWidth.pm 32657 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Text/CharWidth/CharWidth.so 32656 -usr/share/perl/5.28.1/overload.pm 32655 -usr/share/perl5/Debconf/Priority.pm 32654 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Hash/Util.pm 32653 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Scalar/Util.pm 32652 -usr/lib/x86_64-linux-gnu/perl/5.28.1/List/Util.pm 32651 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/List/Util/Util.so 32650 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Hash/Util/Util.so 32649 -lib/x86_64-linux-gnu/libnss_files-2.28.so 32648 -usr/share/perl5/Debconf/DbDriver.pm 32645 -usr/share/perl/5.28.1/Getopt/Long.pm 32644 -etc/debconf.conf 32643 -usr/share/perl5/Debconf/DbDriver/File.pm 32642 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Cwd.pm 32641 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Cwd/Cwd.so 32640 -usr/share/perl5/Debconf/DbDriver/Cache.pm 32639 -usr/share/perl5/Debconf/Format/822.pm 32638 -usr/share/perl5/Debconf/Format.pm 32637 -usr/share/perl5/Debconf/DbDriver/Stack.pm 32634 -usr/share/perl5/Debconf/DbDriver/Copy.pm 32633 -bin/rm 32628 -usr/lib/user-setup/user-setup-apply 32627 -usr/share/debconf/confmodule 32626 -usr/share/debconf/frontend 32625 -usr/share/perl5/Debconf/AutoSelect.pm 32624 -usr/share/perl5/Debconf/ConfModule.pm 32623 -usr/share/perl/5.28.1/IPC/Open2.pm 32622 -usr/share/perl/5.28.1/IPC/Open3.pm 32621 -usr/share/perl5/Debconf/FrontEnd/Noninteractive.pm 32620 -usr/share/perl5/Debconf/FrontEnd.pm 32619 -usr/lib/x86_64-linux-gnu/perl5/5.28/Glib/Object/Introspection.pm 32618 -usr/lib/x86_64-linux-gnu/perl5/5.28/Glib.pm 32617 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Glib/Glib.so 32616 -usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5800.3 32615 -usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5800.3 32614 -usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0.5800.3 32613 -usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 32612 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Glib/Object/Introspection/Introspection.so 32611 -usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0 32610 -usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5800.3 32609 -usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5800.3 32608 -lib/x86_64-linux-gnu/libz.so.1.2.11 32607 -lib/x86_64-linux-gnu/libmount.so.1.1.0 32606 -lib/x86_64-linux-gnu/libresolv-2.28.so 32605 -lib/x86_64-linux-gnu/libblkid.so.1.1.0 32604 -lib/x86_64-linux-gnu/librt-2.28.so 32603 -lib/x86_64-linux-gnu/libuuid.so.1.3.0 32602 -usr/lib/user-setup/functions.sh 32601 -sbin/shadowconfig 32600 -usr/sbin/pwck 32599 -etc/login.defs 32598 -usr/sbin/grpck 32597 -usr/sbin/pwconv 32592 -etc/.pwd.lock 32591 -usr/sbin/grpconv 32586 -bin/chown 32573 -bin/chmod 32572 -usr/bin/cut 32571 -usr/bin/dpkg-query 32570 -var/lib/dpkg/status 32569 -var/lib/dpkg/triggers/File 32568 -var/lib/dpkg/triggers/Unincorp 32567 -usr/bin/dpkg 32566 -etc/dpkg/dpkg.cfg 32565 -usr/sbin/usermod 32564 -lib/x86_64-linux-gnu/libaudit.so.1.0.0 32563 -usr/lib/x86_64-linux-gnu/libsemanage.so.1 32562 -lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 32561 -lib/x86_64-linux-gnu/libsepol.so.1 32560 -lib/x86_64-linux-gnu/libbz2.so.1.0.4 32559 -usr/sbin/adduser 32546 -usr/share/perl5/Debian/AdduserCommon.pm 32545 -usr/lib/x86_64-linux-gnu/perl/5.28.1/I18N/Langinfo.pm 32544 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/I18N/Langinfo/Langinfo.so 32543 -etc/adduser.conf 32542 -usr/sbin/groupadd 32541 -usr/sbin/useradd 32536 -etc/default/useradd 32535 -var/log/faillog 32520 -var/log/lastlog 32518 -sbin/pam_tally2 32508 -lib/x86_64-linux-gnu/libpam.so.0.84.2 32507 -usr/bin/find 32506 -etc/skel/.config/Trolltech.conf 32503 -etc/skel/.config/keepassxc/keepassxc.ini 32502 -etc/skel/.config/onionshare/onionshare.json 32501 -etc/skel/.bash_logout 32500 -etc/skel/.bashrc 32499 -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 32475 -lib/x86_64-linux-gnu/libpam_misc.so.0.82.1 32474 -etc/pam.d/chfn 32473 -lib/x86_64-linux-gnu/security/pam_rootok.so 32472 -etc/pam.d/common-auth 32471 -lib/x86_64-linux-gnu/security/pam_unix.so 32470 -lib/x86_64-linux-gnu/libnsl-2.28.so 32469 -lib/x86_64-linux-gnu/security/pam_deny.so 32468 -lib/x86_64-linux-gnu/security/pam_permit.so 32467 -etc/pam.d/common-account 32466 -etc/pam.d/common-session 32465 -lib/x86_64-linux-gnu/security/pam_systemd.so 32464 -etc/pam.d/other 32463 -etc/pam.d/common-password 32462 -usr/bin/gpasswd 32455 -lib/live/config/0040-sudo 32413 -lib/live/config/0050-locales 32412 -etc/default/locale 32411 -bin/which 32410 -bin/systemctl 32409 -lib/x86_64-linux-gnu/liblzma.so.5.2.4 32408 -usr/lib/x86_64-linux-gnu/liblz4.so.1.8.3 32407 -lib/x86_64-linux-gnu/libgcrypt.so.20.2.4 32406 -lib/x86_64-linux-gnu/libgpg-error.so.0.26.1 32405 -lib/live/config/0070-tzdata 32403 -etc/timezone 32402 -usr/sbin/dpkg-reconfigure 32400 -var/lib/dpkg/info/format 32399 -var/lib/dpkg/info/tzdata.templates 32398 -var/lib/dpkg/info/tzdata.config 32397 -usr/bin/head 32396 -usr/share/perl5/Debconf/Element/Noninteractive/Select.pm 32395 -usr/share/perl5/Debconf/Element/Noninteractive.pm 32394 -usr/share/perl5/Debconf/Element.pm 32393 -var/lib/dpkg/info/tzdata.postinst 32392 -bin/ln 32391 -bin/mv 32390 -lib/live/config/0080-gdm3 32388 -lib/live/config/0085-sddm 32387 -lib/live/config/0090-kdm 32386 -lib/live/config/0100-lightdm 32385 -lib/live/config/0110-lxdm 32384 -lib/live/config/0120-nodm 32383 -lib/live/config/0130-slim 32382 -lib/live/config/0140-xinit 32381 -lib/live/config/0150-keyboard-configuration 32380 -lib/live/config/1000-remount-procfs 32379 -bin/mount 32378 -etc/fstab 32376 -lib/live/config/1020-gnome-panel-data 32373 -lib/live/config/1030-gnome-power-manager 32372 -usr/bin/sudo 32371 -lib/x86_64-linux-gnu/libutil-2.28.so 32370 -usr/lib/sudo/libsudo_util.so.0.0.0 32369 -usr/lib/sudo/sudoers.so 32368 -etc/sudoers 32367 -etc/sudoers.d/README 32366 -etc/sudoers.d/always-ask-password 32365 -etc/sudoers.d/tails-greeter-cryptsetup 32364 -etc/sudoers.d/tails-greeter-live-persist 32363 -etc/sudoers.d/tails-greeter-umount 32362 -etc/sudoers.d/zzz_boot_profile 32361 -etc/sudoers.d/zzz_gdm 32360 -etc/sudoers.d/zzz_halt 32359 -etc/sudoers.d/zzz_persistence-setup 32358 -etc/sudoers.d/zzz_tails-additional-software 32357 -etc/sudoers.d/zzz_tails-debugging-info 32356 -etc/sudoers.d/zzz_tails-kill-gdm-session 32355 -etc/sudoers.d/zzz_unsafe-browser 32354 -etc/sudoers.d/zzz_upgrade 32353 -etc/host.conf 32352 -etc/resolv.conf 32351 -etc/pam.d/sudo 32350 -etc/pam.d/common-session-noninteractive 32349 -lib/live/config/1040-gnome-screensaver 32347 -lib/live/config/1050-kaboom 32346 -lib/live/config/1060-kde-services 32345 -lib/live/config/1080-policykit 32344 -lib/live/config/1090-ssl-cert 32343 -usr/sbin/make-ssl-cert 32342 -bin/bash 32341 -lib/x86_64-linux-gnu/libtinfo.so.6.1 32340 -bin/mktemp 32339 -usr/share/ssl-cert/ssleay.cnf 32338 -usr/bin/openssl 32337 -etc/ssl/openssl.cnf 32336 -lib/live/config/1110-anacron 32332 -lib/live/config/1120-util-linux 32331 -lib/live/config/1130-login 32329 -lib/live/config/1140-xserver-xorg 32325 -usr/bin/lspci 32324 -lib/x86_64-linux-gnu/libpci.so.3.5.2 32323 -lib/x86_64-linux-gnu/libudev.so.1.6.13 32322 -usr/bin/tr 32321 -lib/udev/hwdb.bin 32320 -usr/bin/mawk 32319 -bin/ls 32318 -usr/share/live/config/xserver-xorg/intel.ids 32317 -usr/share/live/config/xserver-xorg/qxl.ids 32316 -lib/live/config/1160-openssh-server 32315 -lib/live/config/1170-xfce4-panel 32314 -lib/live/config/1180-xscreensaver 32313 -lib/live/config/1190-broadcom-sta 32312 -lib/live/config/1500-reconfigure-APT 32311 -lib/live/config/1600-undivert-APT 32283 -usr/bin/dpkg-divert 32282 -usr/bin/apt-get.real 32278 -lib/live/config/2000-aesthetics 32276 -lib/live/config/2000-import-gnupg-key 32275 -usr/bin/gpg 32273 -usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6 32272 -lib/x86_64-linux-gnu/libreadline.so.7.0 32271 -usr/lib/x86_64-linux-gnu/libassuan.so.0.8.2 32270 -usr/share/doc/tails/website/tails-accounting.key 32269 -usr/bin/gpg-agent 32268 -usr/lib/x86_64-linux-gnu/libnpth.so.0.1.2 32267 -usr/share/doc/tails/website/tails-bugs.key 32266 -usr/share/doc/tails/website/tails-email.key 32265 -usr/share/doc/tails/website/tails-foundations.key 32264 -usr/share/doc/tails/website/tails-mirrors.key 32263 -usr/share/doc/tails/website/tails-press.key 32262 -usr/share/doc/tails/website/tails-signing.key 32261 -usr/share/doc/tails/website/tails-sysadmins.key 32260 -usr/share/doc/tails/website/tails-translations.key 32259 -lib/live/config/2030-systemd 32234 -bin/systemd-machine-id-setup 32233 -lib/systemd/libsystemd-shared-241.so 32232 -lib/x86_64-linux-gnu/libcap.so.2.25 32231 -lib/x86_64-linux-gnu/libcryptsetup.so.12.4.0 32230 -usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0 32229 -usr/lib/x86_64-linux-gnu/libseccomp.so.2.3.3 32228 -lib/x86_64-linux-gnu/libidn.so.11.6.16 32227 -lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 32226 -usr/lib/x86_64-linux-gnu/libargon2.so.1 32225 -usr/lib/x86_64-linux-gnu/libjson-c.so.3.0.1 32224 -etc/machine-id 32222 -bin/journalctl 32221 -usr/lib/systemd/catalog/systemd.be.catalog 32220 -usr/lib/systemd/catalog/systemd.be@latin.catalog 32219 -usr/lib/systemd/catalog/systemd.bg.catalog 32218 -usr/lib/systemd/catalog/systemd.catalog 32217 -usr/lib/systemd/catalog/systemd.de.catalog 32216 -usr/lib/systemd/catalog/systemd.fr.catalog 32215 -usr/lib/systemd/catalog/systemd.it.catalog 32214 -usr/lib/systemd/catalog/systemd.pl.catalog 32213 -usr/lib/systemd/catalog/systemd.pt_BR.catalog 32212 -usr/lib/systemd/catalog/systemd.ru.catalog 32211 -usr/lib/systemd/catalog/systemd.zh_CN.catalog 32210 -usr/lib/systemd/catalog/systemd.zh_TW.catalog 32209 -lib/live/config/3000-tps-media-directory 32207 -usr/bin/install 32206 -lib/live/config/7000-debug 32204 -lib/live/config/8000-rootpw 32203 -lib/live/config/9000-hosts-file 32202 -etc/live/config.d/hostname.conf 32201 -lib/live/config/9980-permissions 32200 -lib/live/config/9990-hooks 32198 -lib/live/config/9995-nss-systemd 32197 -lib/live/config/9999-unset-user-account-comment 32196 -etc/adjtime 32191 -etc/default/cron 32187 -lib/systemd/systemd-logind 32185 -usr/lib/udisks2/udisksd 32184 -usr/sbin/alsactl 32183 -usr/lib/x86_64-linux-gnu/libasound.so.2.0.0 32182 -usr/share/alsa/alsa.conf 32180 -usr/share/alsa/alsa.conf.d/10-rate-lav.conf 32177 -usr/share/alsa/alsa.conf.d/10-samplerate.conf 32176 -usr/share/alsa/alsa.conf.d/10-speexrate.conf 32175 -usr/share/alsa/alsa.conf.d/50-arcam-av-ctl.conf 32174 -usr/share/alsa/alsa.conf.d/50-jack.conf 32173 -usr/share/alsa/alsa.conf.d/50-oss.conf 32172 -usr/share/alsa/alsa.conf.d/50-pulseaudio.conf 32171 -usr/share/alsa/alsa.conf.d/60-a52-encoder.conf 32170 -usr/share/alsa/alsa.conf.d/60-upmix.conf 32169 -usr/share/alsa/alsa.conf.d/60-vdownmix.conf 32168 -usr/share/alsa/alsa.conf.d/98-usb-stream.conf 32167 -usr/share/alsa/alsa.conf.d/pulse.conf 32166 -etc/asound.conf 32165 -usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_conf_pulse.so 32164 -usr/lib/x86_64-linux-gnu/libpulse.so.0.20.3 32163 -usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecommon-12.2.so 32162 -lib/x86_64-linux-gnu/libdbus-1.so.3.19.11 32161 -usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0 32160 -usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 32159 -usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0 32158 -usr/lib/x86_64-linux-gnu/libICE.so.6.3.0 32157 -usr/lib/x86_64-linux-gnu/libSM.so.6.0.1 32156 -usr/lib/x86_64-linux-gnu/libXtst.so.6.1.0 32155 -lib/x86_64-linux-gnu/libsystemd.so.0.25.0 32154 -lib/x86_64-linux-gnu/libwrap.so.0.7.6 32153 -usr/lib/x86_64-linux-gnu/libsndfile.so.1.0.28 32152 -usr/lib/x86_64-linux-gnu/libasyncns.so.0.3.1 32151 -usr/lib/x86_64-linux-gnu/libXau.so.6.0.0 32150 -usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0 32149 -usr/lib/x86_64-linux-gnu/libbsd.so.0.9.1 32148 -usr/lib/x86_64-linux-gnu/libXext.so.6.4.0 32147 -usr/lib/x86_64-linux-gnu/libXi.so.6.1.0 32146 -usr/lib/x86_64-linux-gnu/libFLAC.so.8.3.0 32144 -usr/lib/x86_64-linux-gnu/libogg.so.0.8.2 32143 -usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.8 32142 -usr/lib/x86_64-linux-gnu/libvorbisenc.so.2.0.11 32141 -usr/lib/accountsservice/accounts-daemon 32139 -usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0 32138 -usr/local/lib/initramfs-restore 32137 -usr/sbin/cron 32136 -etc/crontab 32134 -usr/sbin/ModemManager 32132 -etc/pulse/client.conf 32131 -etc/systemd/logind.conf 32130 -usr/local/bin/tails-get-bootinfo 32128 -usr/bin/env 32126 -usr/bin/python3.7 32125 -lib/x86_64-linux-gnu/libexpat.so.1.6.8 32124 -usr/bin/dbus-daemon 32121 -etc/init.d/rng-tools 32119 -usr/lib/x86_64-linux-gnu/libgudev-1.0.so.0.2.0 32118 -usr/lib/x86_64-linux-gnu/libblockdev.so.2.0.0 32117 -usr/lib/x86_64-linux-gnu/libbd_utils.so.2.1.0 32116 -etc/pulse/client.conf.d/00-disable-autospawn.conf 32115 -usr/share/alsa/init/00main 32114 -usr/share/alsa/init/hda 32113 -usr/share/alsa/init/default 32112 -usr/sbin/memlockd 32111 -sbin/wpa_supplicant 32108 -lib/udev/lmt-udev 32106 -usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25 32100 -usr/local/lib/tails-set-wireless-devices-state 32099 -etc/default/rng-tools 32098 -usr/local/lib/onion-grater 32073 -usr/lib/systemd/logind.conf.d/lower-NAutoVTs.conf 32070 -usr/lib/x86_64-linux-gnu/libmm-glib.so.0.4.0 32068 -usr/lib/x86_64-linux-gnu/libatasmart.so.4.0.5 32067 -usr/lib/x86_64-linux-gnu/libudisks2.so.0.0.0 32066 -lib/x86_64-linux-gnu/libapparmor.so.1.6.0 32065 -usr/share/dbus-1/system.conf 32064 -sbin/start-stop-daemon 32063 -usr/sbin/rngd 32050 -usr/lib/x86_64-linux-gnu/libqmi-glib.so.5.4.0 32049 -usr/lib/python3.7/argparse.py 32047 -usr/share/dbus-1/system.d/nm-dispatcher.conf 32046 -usr/bin/unmkinitramfs 32045 -lib/x86_64-linux-gnu/libgcc_s.so.1 32042 -etc/memlockd.cfg 32041 -usr/bin/getopt 32040 -usr/bin/ldd 32035 -lib/x86_64-linux-gnu/libnl-3.so.200.26.0 32026 -lib/x86_64-linux-gnu/libnl-genl-3.so.200.26.0 32025 -usr/lib/x86_64-linux-gnu/libnl-route-3.so.200.26.0 32024 -usr/lib/x86_64-linux-gnu/libpcsclite.so.1.0.0 32023 -usr/lib/python3.7/gettext.py 32005 -usr/share/dbus-1/system.d/org.freedesktop.ColorManager.conf 32004 -bin/dd 31996 -usr/lib/x86_64-linux-gnu/libmbim-glib.so.4.4.0 31995 -usr/share/dbus-1/system.d/org.freedesktop.NetworkManager.conf 31994 -usr/lib/python3.7/ipaddress.py 31993 -bin/echo 31992 -usr/lib/python3/dist-packages/psutil/__init__.py 31990 -usr/share/dbus-1/system.d/org.freedesktop.PolicyKit1.conf 31989 -usr/share/dbus-1/system.d/org.freedesktop.UDisks2.conf 31988 -usr/share/dbus-1/system.d/org.freedesktop.UPower.conf 31987 -usr/share/dbus-1/system.d/org.freedesktop.hostname1.conf 31986 -usr/share/dbus-1/system.d/org.freedesktop.locale1.conf 31985 -usr/share/dbus-1/system.d/org.freedesktop.login1.conf 31984 -usr/share/dbus-1/system.d/org.freedesktop.network1.conf 31983 -usr/share/dbus-1/system.d/org.freedesktop.resolve1.conf 31982 -usr/share/dbus-1/system.d/org.freedesktop.systemd1.conf 31981 -usr/share/dbus-1/system.d/org.freedesktop.timedate1.conf 31980 -usr/share/dbus-1/system.d/org.freedesktop.timesync1.conf 31979 -etc/dbus-1/system.d/com.hp.hplip.conf 31977 -etc/dbus-1/system.d/com.redhat.NewPrinterNotification.conf 31976 -etc/dbus-1/system.d/com.redhat.PrinterDriversInstaller.conf 31975 -etc/dbus-1/system.d/gdm.conf 31974 -etc/dbus-1/system.d/org.freedesktop.Accounts.conf 31973 -etc/dbus-1/system.d/org.freedesktop.ModemManager1.conf 31972 -etc/dbus-1/system.d/org.freedesktop.bolt.conf 31971 -usr/lib/python3.7/__future__.py 31970 -usr/lib/python3.7/contextlib.py 31969 -bin/kill 31966 -etc/dbus-1/system.d/org.opensuse.CupsPkHelper.Mechanism.conf 31965 -etc/dbus-1/system.d/pulseaudio-system.conf 31964 -etc/dbus-1/system.d/wpa_supplicant.conf 31963 -usr/share/dbus-1/system-services/com.hp.hplip.service 31954 -usr/share/dbus-1/system-services/fi.epitest.hostap.WPASupplicant.service 31953 -usr/share/dbus-1/system-services/fi.w1.wpa_supplicant1.service 31952 -usr/share/dbus-1/system-services/org.freedesktop.Accounts.service 31951 -usr/share/dbus-1/system-services/org.freedesktop.ColorManager.service 31950 -usr/share/dbus-1/system-services/org.freedesktop.ModemManager1.service 31949 -usr/share/dbus-1/system-services/org.freedesktop.PolicyKit1.service 31948 -usr/share/dbus-1/system-services/org.freedesktop.UDisks2.service 31947 -usr/share/dbus-1/system-services/org.freedesktop.UPower.service 31946 -usr/share/dbus-1/system-services/org.freedesktop.bolt.service 31945 -usr/share/dbus-1/system-services/org.freedesktop.hostname1.service 31944 -usr/share/dbus-1/system-services/org.freedesktop.locale1.service 31943 -usr/share/dbus-1/system-services/org.freedesktop.login1.service 31942 -usr/share/dbus-1/system-services/org.freedesktop.network1.service 31941 -usr/share/dbus-1/system-services/org.freedesktop.nm_dispatcher.service 31940 -usr/share/dbus-1/system-services/org.freedesktop.resolve1.service 31939 -usr/share/dbus-1/system-services/org.freedesktop.systemd1.service 31938 -usr/share/dbus-1/system-services/org.freedesktop.timedate1.service 31937 -usr/share/dbus-1/system-services/org.freedesktop.timesync1.service 31936 -usr/share/dbus-1/system-services/org.opensuse.CupsPkHelper.Mechanism.service 31935 -usr/lib/python3/dist-packages/psutil/_common.py 31920 -usr/sbin/laptop_mode 31917 -etc/libblockdev/conf.d/00-default.cfg 31916 -usr/lib/x86_64-linux-gnu/libbd_swap.so.2.0.0 31915 -lib/x86_64-linux-gnu/libprocps.so.7.1.0 31914 -usr/lib/x86_64-linux-gnu/libbd_loop.so.2.0.0 31913 -lib/systemd/system/polkit.service 31912 -usr/lib/x86_64-linux-gnu/gio/modules/giomodule.cache 31911 -usr/lib/x86_64-linux-gnu/gio/modules/libgvfsdbus.so 31910 -usr/lib/x86_64-linux-gnu/gvfs/libgvfscommon.so 31909 -usr/lib/x86_64-linux-gnu/libbd_crypto.so.2.0.0 31908 -etc/shells 31907 -etc/laptop-mode/conf.d/ac97-powersave.conf 31902 -etc/laptop-mode/conf.d/auto-hibernate.conf 31901 -etc/laptop-mode/conf.d/battery-level-polling.conf 31900 -etc/laptop-mode/conf.d/bluetooth.conf 31899 -etc/laptop-mode/conf.d/configuration-file-control.conf 31898 -etc/laptop-mode/conf.d/cpufreq.conf 31897 -etc/laptop-mode/conf.d/cpuhotplug.conf 31896 -etc/laptop-mode/conf.d/dpms-standby.conf 31895 -etc/laptop-mode/conf.d/eee-superhe.conf 31894 -etc/laptop-mode/conf.d/ethernet.conf 31893 -etc/laptop-mode/conf.d/exec-commands.conf 31892 -etc/laptop-mode/conf.d/hal-polling.conf 31891 -etc/laptop-mode/conf.d/intel-hda-powersave.conf 31890 -etc/laptop-mode/conf.d/intel-sata-powermgmt.conf 31889 -etc/laptop-mode/conf.d/intel_pstate.conf 31888 -etc/laptop-mode/conf.d/kbd-backlight.conf 31887 -etc/laptop-mode/conf.d/lcd-brightness.conf 31886 -etc/laptop-mode/conf.d/nmi-watchdog.conf 31885 -etc/laptop-mode/conf.d/pcie-aspm.conf 31884 -etc/laptop-mode/conf.d/radeon-dpm.conf 31883 -etc/laptop-mode/conf.d/runtime-pm.conf 31882 -etc/laptop-mode/conf.d/sched-mc-power-savings.conf 31881 -etc/laptop-mode/conf.d/sched-smt-power-savings.conf 31880 -etc/laptop-mode/conf.d/start-stop-programs.conf 31879 -etc/laptop-mode/conf.d/terminal-blanking.conf 31878 -etc/laptop-mode/conf.d/vgaswitcheroo.conf 31877 -etc/laptop-mode/conf.d/video-out.conf 31876 -etc/laptop-mode/conf.d/wireless-ipw-power.conf 31875 -etc/laptop-mode/conf.d/wireless-iwl-power.conf 31874 -etc/laptop-mode/conf.d/wireless-power.conf 31873 -etc/laptop-mode/laptop-mode.conf 31872 -var/log/wtmp 31868 -usr/lib/x86_64-linux-gnu/libnss3.so 31867 -usr/lib/policykit-1/polkitd 31866 +usr/lib/x86_64-linux-gnu/libkmod.so.2.3.4 32767 +usr/lib/x86_64-linux-gnu/libacl.so.1.1.2253 32766 +usr/lib/x86_64-linux-gnu/libssl.so.1.1 32765 +usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 32764 +usr/lib/x86_64-linux-gnu/libattr.so.1.1.2448 32763 +usr/bin/cut 32762 +usr/bin/tr 32761 +usr/bin/basename 32760 +usr/sbin/laptop_mode 32759 +usr/bin/flock 32758 +usr/bin/logger 32757 +usr/lib/x86_64-linux-gnu/liblz4.so.1.8.3 32756 +lib/live/config/0001-sane-clock 32755 +bin/dash 32754 +lib/x86_64-linux-gnu/ld-2.28.so 32753 +etc/ld.so.cache 32752 +lib/x86_64-linux-gnu/libc-2.28.so 32751 +bin/sed 32750 +lib/x86_64-linux-gnu/libselinux.so.1 32749 +lib/x86_64-linux-gnu/libpcre.so.3.13.3 32748 +lib/x86_64-linux-gnu/libdl-2.28.so 32747 +lib/x86_64-linux-gnu/libpthread-2.28.so 32746 +usr/lib/locale/en_US.utf8/LC_IDENTIFICATION 32745 +usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache 32744 +usr/lib/locale/chr_US/LC_MEASUREMENT 32743 +usr/lib/locale/chr_US/LC_TELEPHONE 32742 +usr/lib/locale/en_US.utf8/LC_ADDRESS 32741 +usr/lib/locale/bi_VU/LC_NAME 32740 +usr/lib/locale/chr_US/LC_PAPER 32739 +usr/lib/locale/en_AG/LC_MESSAGES/SYS_LC_MESSAGES 32738 +usr/lib/locale/chr_US/LC_MONETARY 32737 +usr/lib/locale/aa_DJ.utf8/LC_COLLATE 32736 +usr/lib/locale/en_US.utf8/LC_TIME 32735 +usr/lib/locale/aa_ET/LC_NUMERIC 32734 +usr/lib/locale/aa_DJ.utf8/LC_CTYPE 32733 +etc/amnesia/version 32732 +bin/date 32731 +usr/share/zoneinfo/UCT 32730 +lib/live/config/0005-nss-systemd 32729 +bin/grep 32728 +etc/nsswitch.conf 32727 +lib/live/config/0010-debconf 32726 +lib/live/setup-network.sh 32725 +lib/live/config/0020-hostname 32723 +etc/hostname 32722 +bin/cat 32721 +etc/hosts 32720 +bin/hostname 32718 +bin/touch 32717 +lib/live/config/0030-live-debconfig_passwd 32715 +lib/live/config/0030-user-setup 32714 +usr/bin/debconf-set-selections 32711 +usr/bin/perl 32710 +lib/x86_64-linux-gnu/libm-2.28.so 32709 +lib/x86_64-linux-gnu/libcrypt-2.28.so 32708 +usr/share/perl/5.28.1/warnings.pm 32707 +usr/share/perl/5.28.1/strict.pm 32706 +usr/share/perl5/Debconf/Db.pm 32705 +usr/share/perl5/Debconf/Log.pm 32704 +usr/share/perl/5.28.1/base.pm 32703 +usr/share/perl/5.28.1/Exporter.pm 32702 +usr/share/perl5/Debconf/Config.pm 32701 +usr/share/perl5/Debconf/Question.pm 32700 +usr/share/perl5/Debconf/Template.pm 32699 +usr/lib/x86_64-linux-gnu/perl/5.28.1/POSIX.pm 32698 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Fcntl.pm 32697 +usr/share/perl/5.28.1/XSLoader.pm 32696 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Fcntl/Fcntl.so 32695 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/POSIX/POSIX.so 32694 +usr/share/perl/5.28.1/Tie/Hash.pm 32693 +usr/share/perl/5.28.1/Carp.pm 32692 +usr/share/perl/5.28.1/overloading.pm 32691 +usr/share/perl/5.28.1/warnings/register.pm 32690 +usr/share/perl/5.28.1/Exporter/Heavy.pm 32689 +usr/share/perl/5.28.1/FileHandle.pm 32688 +usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/File.pm 32687 +usr/share/perl/5.28.1/Symbol.pm 32686 +usr/share/perl/5.28.1/SelectSaver.pm 32685 +usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Seekable.pm 32684 +usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Handle.pm 32683 +usr/lib/x86_64-linux-gnu/perl/5.28.1/IO.pm 32682 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/IO/IO.so 32681 +usr/share/perl5/Debconf/Gettext.pm 32680 +usr/lib/x86_64-linux-gnu/perl5/5.28/Locale/gettext.pm 32679 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode.pm 32678 +usr/share/perl/5.28.1/constant.pm 32677 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Encode/Encode.so 32676 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode/Alias.pm 32675 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode/MIME/Name.pm 32674 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Storable.pm 32673 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Storable/Storable.so 32672 +usr/share/perl/5.28.1/parent.pm 32671 +usr/share/perl/5.28.1/vars.pm 32670 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode/Encoding.pm 32669 +usr/share/perl/5.28.1/bytes.pm 32668 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Encode/Config.pm 32667 +usr/lib/x86_64-linux-gnu/perl/5.28.1/DynaLoader.pm 32666 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Config.pm 32665 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Locale/gettext/gettext.so 32664 +usr/share/perl/5.28.1/Text/Wrap.pm 32663 +usr/share/perl/5.28.1/Text/Tabs.pm 32662 +usr/lib/x86_64-linux-gnu/perl/5.28.1/re.pm 32661 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/re/re.so 32660 +usr/share/perl5/Debconf/Iterator.pm 32659 +usr/share/perl5/Debconf/Base.pm 32658 +usr/share/perl/5.28.1/fields.pm 32657 +usr/share/perl5/Debconf/Encoding.pm 32656 +usr/lib/x86_64-linux-gnu/perl5/5.28/Text/Iconv.pm 32655 +usr/share/perl/5.28.1/AutoLoader.pm 32654 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Text/Iconv/Iconv.so 32653 +usr/bin/locale 32652 +usr/share/perl5/Text/WrapI18N.pm 32651 +usr/lib/x86_64-linux-gnu/perl5/5.28/Text/CharWidth.pm 32650 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Text/CharWidth/CharWidth.so 32649 +usr/share/perl/5.28.1/overload.pm 32648 +usr/share/perl5/Debconf/Priority.pm 32647 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Hash/Util.pm 32646 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Scalar/Util.pm 32645 +usr/lib/x86_64-linux-gnu/perl/5.28.1/List/Util.pm 32644 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/List/Util/Util.so 32643 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Hash/Util/Util.so 32642 +lib/x86_64-linux-gnu/libnss_files-2.28.so 32641 +usr/share/perl5/Debconf/DbDriver.pm 32638 +usr/share/perl/5.28.1/Getopt/Long.pm 32637 +etc/debconf.conf 32636 +usr/share/perl5/Debconf/DbDriver/File.pm 32635 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Cwd.pm 32634 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Cwd/Cwd.so 32633 +usr/share/perl5/Debconf/DbDriver/Cache.pm 32632 +usr/share/perl5/Debconf/Format/822.pm 32631 +usr/share/perl5/Debconf/Format.pm 32630 +usr/share/perl5/Debconf/DbDriver/Stack.pm 32627 +usr/share/perl5/Debconf/DbDriver/Copy.pm 32626 +bin/rm 32621 +usr/lib/user-setup/user-setup-apply 32620 +usr/share/debconf/confmodule 32619 +usr/share/debconf/frontend 32618 +usr/share/perl5/Debconf/AutoSelect.pm 32617 +usr/share/perl5/Debconf/ConfModule.pm 32616 +usr/share/perl/5.28.1/IPC/Open2.pm 32615 +usr/share/perl/5.28.1/IPC/Open3.pm 32614 +usr/share/perl5/Debconf/FrontEnd/Noninteractive.pm 32613 +usr/share/perl5/Debconf/FrontEnd.pm 32612 +usr/lib/x86_64-linux-gnu/perl5/5.28/Glib/Object/Introspection.pm 32611 +usr/lib/x86_64-linux-gnu/perl5/5.28/Glib.pm 32610 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Glib/Glib.so 32609 +usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5800.3 32608 +usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5800.3 32607 +usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0.5800.3 32606 +usr/lib/x86_64-linux-gnu/libffi.so.6.0.4 32605 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Glib/Object/Introspection/Introspection.so 32604 +usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0 32603 +usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5800.3 32602 +usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5800.3 32601 +lib/x86_64-linux-gnu/libz.so.1.2.11 32600 +lib/x86_64-linux-gnu/libmount.so.1.1.0 32599 +lib/x86_64-linux-gnu/libresolv-2.28.so 32598 +lib/x86_64-linux-gnu/libblkid.so.1.1.0 32597 +lib/x86_64-linux-gnu/librt-2.28.so 32596 +lib/x86_64-linux-gnu/libuuid.so.1.3.0 32595 +usr/lib/user-setup/functions.sh 32594 +sbin/shadowconfig 32593 +usr/sbin/pwck 32592 +etc/login.defs 32591 +usr/sbin/grpck 32590 +usr/sbin/pwconv 32585 +etc/.pwd.lock 32584 +usr/sbin/grpconv 32579 +bin/chown 32566 +bin/chmod 32565 +usr/bin/dpkg-query 32564 +var/lib/dpkg/status 32563 +var/lib/dpkg/triggers/File 32562 +var/lib/dpkg/triggers/Unincorp 32561 +usr/bin/dpkg 32560 +etc/dpkg/dpkg.cfg 32559 +usr/sbin/usermod 32558 +lib/x86_64-linux-gnu/libaudit.so.1.0.0 32557 +usr/lib/x86_64-linux-gnu/libsemanage.so.1 32556 +lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 32555 +lib/x86_64-linux-gnu/libsepol.so.1 32554 +lib/x86_64-linux-gnu/libbz2.so.1.0.4 32553 +usr/sbin/adduser 32540 +usr/share/perl5/Debian/AdduserCommon.pm 32539 +usr/lib/x86_64-linux-gnu/perl/5.28.1/I18N/Langinfo.pm 32538 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/I18N/Langinfo/Langinfo.so 32537 +etc/adduser.conf 32536 +usr/sbin/groupadd 32535 +usr/sbin/useradd 32530 +etc/default/useradd 32529 +var/log/faillog 32514 +var/log/lastlog 32512 +sbin/pam_tally2 32502 +lib/x86_64-linux-gnu/libpam.so.0.84.2 32501 +usr/bin/find 32500 +etc/skel/.config/Trolltech.conf 32497 +etc/skel/.config/keepassxc/keepassxc.ini 32496 +etc/skel/.config/onionshare/onionshare.json 32495 +etc/skel/.bash_logout 32494 +etc/skel/.bashrc 32493 +etc/skel/.electrum/config 32492 +etc/skel/.gnome2/accels/.placeholder 32491 +etc/skel/.gnome2/keyrings/default 32490 +etc/skel/.gnome2/keyrings/tails.keyring 32489 +etc/skel/.gnome2_private/.placeholder 32488 +etc/skel/.gnupg/dirmngr.conf 32487 +etc/skel/.gnupg/gpg-agent.conf 32486 +etc/skel/.gnupg/gpg.conf 32485 +etc/skel/.local/share/applications/mimeapps.list 32484 +etc/skel/.monkeysphere/monkeysphere.conf 32483 +etc/skel/.poedit/config 32482 +etc/skel/.profile 32481 +etc/skel/.purple/prefs.xml 32480 +etc/skel/.tor-browser/profile.default/bookmarks.html 32479 +etc/skel/.tor-browser/profile.default/chrome/userChrome.css 32478 +etc/skel/.tor-browser/profile.default/prefs.js 32477 +etc/skel/.xsessionrc 32476 +etc/skel/Desktop/Report_an_error.desktop 32475 +etc/skel/Desktop/tails-documentation.desktop 32474 +usr/bin/chfn 32469 +lib/x86_64-linux-gnu/libpam_misc.so.0.82.1 32468 +etc/pam.d/chfn 32467 +lib/x86_64-linux-gnu/security/pam_rootok.so 32466 +etc/pam.d/common-auth 32465 +lib/x86_64-linux-gnu/security/pam_unix.so 32464 +lib/x86_64-linux-gnu/libnsl-2.28.so 32463 +lib/x86_64-linux-gnu/security/pam_deny.so 32462 +lib/x86_64-linux-gnu/security/pam_permit.so 32461 +etc/pam.d/common-account 32460 +etc/pam.d/common-session 32459 +lib/x86_64-linux-gnu/security/pam_systemd.so 32458 +etc/pam.d/other 32457 +etc/pam.d/common-password 32456 +usr/bin/gpasswd 32449 +lib/live/config/0040-sudo 32407 +lib/live/config/0050-locales 32406 +etc/default/locale 32405 +bin/which 32404 +bin/systemctl 32403 +lib/x86_64-linux-gnu/liblzma.so.5.2.4 32402 +lib/x86_64-linux-gnu/libgcrypt.so.20.2.4 32401 +lib/x86_64-linux-gnu/libgpg-error.so.0.26.1 32400 +lib/live/config/0070-tzdata 32398 +etc/timezone 32397 +usr/sbin/dpkg-reconfigure 32395 +var/lib/dpkg/info/format 32394 +var/lib/dpkg/info/tzdata.templates 32393 +var/lib/dpkg/info/tzdata.config 32392 +usr/bin/head 32391 +usr/share/perl5/Debconf/Element/Noninteractive/Select.pm 32390 +usr/share/perl5/Debconf/Element/Noninteractive.pm 32389 +usr/share/perl5/Debconf/Element.pm 32388 +var/lib/dpkg/info/tzdata.postinst 32387 +bin/ln 32386 +bin/mv 32385 +lib/live/config/0080-gdm3 32383 +lib/live/config/0085-sddm 32382 +lib/live/config/0090-kdm 32381 +lib/live/config/0100-lightdm 32380 +lib/live/config/0110-lxdm 32379 +lib/live/config/0120-nodm 32378 +lib/live/config/0130-slim 32377 +lib/live/config/0140-xinit 32376 +lib/live/config/0150-keyboard-configuration 32375 +lib/live/config/1000-remount-procfs 32374 +bin/mount 32373 +etc/fstab 32371 +lib/live/config/1020-gnome-panel-data 32368 +lib/live/config/1030-gnome-power-manager 32367 +usr/bin/sudo 32366 +lib/x86_64-linux-gnu/libutil-2.28.so 32365 +usr/lib/sudo/libsudo_util.so.0.0.0 32364 +usr/lib/sudo/sudoers.so 32363 +etc/sudoers 32362 +etc/sudoers.d/README 32361 +etc/sudoers.d/always-ask-password 32360 +etc/sudoers.d/tails-greeter-cryptsetup 32359 +etc/sudoers.d/tails-greeter-live-persist 32358 +etc/sudoers.d/tails-greeter-umount 32357 +etc/sudoers.d/zzz_boot_profile 32356 +etc/sudoers.d/zzz_gdm 32355 +etc/sudoers.d/zzz_halt 32354 +etc/sudoers.d/zzz_persistence-setup 32353 +etc/sudoers.d/zzz_tails-additional-software 32352 +etc/sudoers.d/zzz_tails-debugging-info 32351 +etc/sudoers.d/zzz_tails-kill-gdm-session 32350 +etc/sudoers.d/zzz_unsafe-browser 32349 +etc/sudoers.d/zzz_upgrade 32348 +etc/host.conf 32347 +etc/resolv.conf 32346 +etc/pam.d/sudo 32345 +etc/pam.d/common-session-noninteractive 32344 +lib/live/config/1040-gnome-screensaver 32342 +lib/live/config/1050-kaboom 32341 +lib/live/config/1060-kde-services 32340 +lib/live/config/1080-policykit 32339 +lib/live/config/1090-ssl-cert 32338 +usr/sbin/make-ssl-cert 32337 +bin/bash 32336 +lib/x86_64-linux-gnu/libtinfo.so.6.1 32335 +bin/mktemp 32334 +usr/share/ssl-cert/ssleay.cnf 32333 +usr/bin/openssl 32332 +etc/ssl/openssl.cnf 32331 +lib/live/config/1110-anacron 32327 +lib/live/config/1120-util-linux 32326 +lib/live/config/1130-login 32324 +lib/live/config/1140-xserver-xorg 32320 +usr/bin/lspci 32319 +lib/x86_64-linux-gnu/libpci.so.3.5.2 32318 +lib/x86_64-linux-gnu/libudev.so.1.6.13 32317 +lib/udev/hwdb.bin 32316 +usr/bin/mawk 32315 +bin/ls 32314 +usr/share/live/config/xserver-xorg/intel.ids 32313 +usr/share/live/config/xserver-xorg/qxl.ids 32312 +lib/live/config/1160-openssh-server 32311 +lib/live/config/1170-xfce4-panel 32310 +lib/live/config/1180-xscreensaver 32309 +lib/live/config/1190-broadcom-sta 32308 +lib/live/config/1500-reconfigure-APT 32307 +lib/live/config/1600-undivert-APT 32279 +usr/bin/dpkg-divert 32278 +usr/bin/apt-get.real 32274 +lib/live/config/2000-aesthetics 32272 +lib/live/config/2000-import-gnupg-key 32271 +usr/bin/gpg 32269 +usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6 32268 +lib/x86_64-linux-gnu/libreadline.so.7.0 32267 +usr/lib/x86_64-linux-gnu/libassuan.so.0.8.2 32266 +usr/share/doc/tails/website/tails-accounting.key 32265 +usr/bin/gpg-agent 32264 +usr/lib/x86_64-linux-gnu/libnpth.so.0.1.2 32263 +usr/share/doc/tails/website/tails-bugs.key 32262 +usr/share/doc/tails/website/tails-email.key 32261 +usr/share/doc/tails/website/tails-foundations.key 32260 +usr/share/doc/tails/website/tails-mirrors.key 32259 +usr/share/doc/tails/website/tails-press.key 32258 +usr/share/doc/tails/website/tails-signing-minimal.key 32257 +usr/share/doc/tails/website/tails-signing.key 32256 +usr/share/doc/tails/website/tails-sysadmins.key 32255 +usr/share/doc/tails/website/tails-translations.key 32254 +lib/live/config/2030-systemd 32247 +bin/systemd-machine-id-setup 32246 +lib/systemd/libsystemd-shared-241.so 32245 +lib/x86_64-linux-gnu/libcap.so.2.25 32244 +lib/x86_64-linux-gnu/libcryptsetup.so.12.4.0 32243 +usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0 32242 +usr/lib/x86_64-linux-gnu/libseccomp.so.2.3.3 32241 +lib/x86_64-linux-gnu/libidn.so.11.6.16 32240 +lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 32239 +usr/lib/x86_64-linux-gnu/libargon2.so.1 32238 +usr/lib/x86_64-linux-gnu/libjson-c.so.3.0.1 32237 +etc/machine-id 32235 +bin/journalctl 32234 +usr/lib/systemd/catalog/systemd.be.catalog 32233 +usr/lib/systemd/catalog/systemd.be@latin.catalog 32232 +usr/lib/systemd/catalog/systemd.bg.catalog 32231 +usr/lib/systemd/catalog/systemd.catalog 32230 +usr/lib/systemd/catalog/systemd.de.catalog 32229 +usr/lib/systemd/catalog/systemd.fr.catalog 32228 +usr/lib/systemd/catalog/systemd.it.catalog 32227 +usr/lib/systemd/catalog/systemd.pl.catalog 32226 +usr/lib/systemd/catalog/systemd.pt_BR.catalog 32225 +usr/lib/systemd/catalog/systemd.ru.catalog 32224 +usr/lib/systemd/catalog/systemd.zh_CN.catalog 32223 +usr/lib/systemd/catalog/systemd.zh_TW.catalog 32222 +lib/live/config/3000-tps-media-directory 32220 +usr/bin/install 32219 +lib/live/config/7000-debug 32217 +lib/live/config/8000-rootpw 32216 +lib/live/config/9000-hosts-file 32215 +etc/live/config.d/hostname.conf 32214 +lib/live/config/9980-permissions 32213 +lib/live/config/9990-hooks 32211 +lib/live/config/9995-nss-systemd 32210 +lib/live/config/9999-unset-user-account-comment 32209 +etc/adjtime 32204 +usr/lib/udisks2/udisksd 32201 +etc/default/cron 32200 +etc/init.d/rng-tools 32198 +etc/default/rng-tools 32197 +usr/local/lib/tails-set-wireless-devices-state 32192 +usr/sbin/alsactl 32191 +usr/lib/x86_64-linux-gnu/libasound.so.2.0.0 32190 +usr/share/alsa/alsa.conf 32188 +usr/share/alsa/alsa.conf.d/10-rate-lav.conf 32187 +usr/share/alsa/alsa.conf.d/10-samplerate.conf 32186 +usr/share/alsa/alsa.conf.d/10-speexrate.conf 32185 +usr/share/alsa/alsa.conf.d/50-arcam-av-ctl.conf 32184 +usr/share/alsa/alsa.conf.d/50-jack.conf 32183 +usr/share/alsa/alsa.conf.d/50-oss.conf 32182 +usr/share/alsa/alsa.conf.d/50-pulseaudio.conf 32181 +usr/share/alsa/alsa.conf.d/60-a52-encoder.conf 32180 +usr/share/alsa/alsa.conf.d/60-upmix.conf 32179 +usr/share/alsa/alsa.conf.d/60-vdownmix.conf 32178 +usr/share/alsa/alsa.conf.d/98-usb-stream.conf 32177 +usr/share/alsa/alsa.conf.d/pulse.conf 32176 +etc/asound.conf 32175 +usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_conf_pulse.so 32174 +usr/lib/x86_64-linux-gnu/libpulse.so.0.20.3 32173 +usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecommon-12.2.so 32172 +lib/x86_64-linux-gnu/libdbus-1.so.3.19.11 32171 +usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0 32170 +usr/lib/x86_64-linux-gnu/libX11.so.6.3.0 32169 +usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0 32168 +usr/lib/x86_64-linux-gnu/libICE.so.6.3.0 32167 +usr/lib/x86_64-linux-gnu/libSM.so.6.0.1 32166 +usr/lib/x86_64-linux-gnu/libXtst.so.6.1.0 32165 +lib/x86_64-linux-gnu/libsystemd.so.0.25.0 32164 +lib/x86_64-linux-gnu/libwrap.so.0.7.6 32163 +usr/lib/x86_64-linux-gnu/libsndfile.so.1.0.28 32162 +usr/lib/x86_64-linux-gnu/libasyncns.so.0.3.1 32161 +usr/lib/x86_64-linux-gnu/libXau.so.6.0.0 32160 +usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0 32159 +usr/lib/x86_64-linux-gnu/libbsd.so.0.9.1 32158 +usr/lib/x86_64-linux-gnu/libXext.so.6.4.0 32157 +usr/lib/x86_64-linux-gnu/libXi.so.6.1.0 32156 +usr/lib/x86_64-linux-gnu/libFLAC.so.8.3.0 32155 +usr/lib/x86_64-linux-gnu/libogg.so.0.8.2 32154 +usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.8 32153 +usr/lib/x86_64-linux-gnu/libvorbisenc.so.2.0.11 32152 +etc/pulse/client.conf 32151 +sbin/start-stop-daemon 32150 +etc/pulse/client.conf.d/00-disable-autospawn.conf 32149 +usr/sbin/rngd 32148 +usr/sbin/cron 32147 +usr/sbin/memlockd 32146 +usr/sbin/ModemManager 32145 +etc/crontab 32143 +usr/bin/dbus-daemon 32142 +lib/x86_64-linux-gnu/libexpat.so.1.6.8 32141 +lib/x86_64-linux-gnu/libapparmor.so.1.6.0 32140 +usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25 32137 +sbin/wpa_supplicant 32135 +usr/share/alsa/init/00main 32134 +usr/share/alsa/init/hda 32133 +usr/share/alsa/init/default 32131 +usr/lib/x86_64-linux-gnu/libgudev-1.0.so.0.2.0 32128 +usr/lib/x86_64-linux-gnu/libblockdev.so.2.0.0 32127 +usr/share/dbus-1/system.conf 32126 +usr/share/dbus-1/system.d/nm-dispatcher.conf 32124 +usr/share/dbus-1/system.d/org.freedesktop.ColorManager.conf 32123 +usr/share/dbus-1/system.d/org.freedesktop.NetworkManager.conf 32122 +usr/lib/x86_64-linux-gnu/libbd_utils.so.2.1.0 32119 +usr/lib/accountsservice/accounts-daemon 32117 +usr/lib/x86_64-linux-gnu/libatasmart.so.4.0.5 32116 +usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0 32115 +lib/udev/lmt-udev 32112 +usr/lib/x86_64-linux-gnu/libudisks2.so.0.0.0 32111 +usr/local/lib/initramfs-restore 32110 +lib/systemd/systemd-logind 32109 +usr/local/lib/onion-grater 32108 +usr/share/dbus-1/system.d/org.freedesktop.PolicyKit1.conf 32107 +usr/local/bin/tails-get-bootinfo 32106 +usr/bin/env 32105 +etc/systemd/logind.conf 32104 +usr/bin/python3.7 32103 +usr/lib/systemd/logind.conf.d/lower-NAutoVTs.conf 32072 +usr/share/dbus-1/system.d/org.freedesktop.UDisks2.conf 32071 +usr/share/dbus-1/system.d/org.freedesktop.UPower.conf 32060 +usr/share/dbus-1/system.d/org.freedesktop.hostname1.conf 32059 +usr/share/dbus-1/system.d/org.freedesktop.locale1.conf 32058 +usr/share/dbus-1/system.d/org.freedesktop.login1.conf 32057 +usr/share/dbus-1/system.d/org.freedesktop.network1.conf 32056 +usr/share/dbus-1/system.d/org.freedesktop.resolve1.conf 32055 +usr/share/dbus-1/system.d/org.freedesktop.systemd1.conf 32054 +usr/share/dbus-1/system.d/org.freedesktop.timedate1.conf 32053 +usr/share/dbus-1/system.d/org.freedesktop.timesync1.conf 32052 +etc/dbus-1/system.d/com.hp.hplip.conf 32051 +etc/dbus-1/system.d/com.redhat.NewPrinterNotification.conf 32050 +etc/dbus-1/system.d/com.redhat.PrinterDriversInstaller.conf 32047 +etc/dbus-1/system.d/gdm.conf 32046 +etc/dbus-1/system.d/org.freedesktop.Accounts.conf 32045 +etc/dbus-1/system.d/org.freedesktop.ModemManager1.conf 32044 +usr/lib/python3.7/argparse.py 32043 +usr/bin/unmkinitramfs 32042 +etc/dbus-1/system.d/org.freedesktop.bolt.conf 32039 +etc/dbus-1/system.d/org.opensuse.CupsPkHelper.Mechanism.conf 32038 +etc/dbus-1/system.d/pulseaudio-system.conf 32037 +etc/dbus-1/system.d/wpa_supplicant.conf 32036 +usr/share/dbus-1/system-services/com.hp.hplip.service 32035 +usr/share/dbus-1/system-services/fi.epitest.hostap.WPASupplicant.service 32034 +usr/share/dbus-1/system-services/fi.w1.wpa_supplicant1.service 32033 +usr/share/dbus-1/system-services/org.freedesktop.Accounts.service 32032 +usr/share/dbus-1/system-services/org.freedesktop.ColorManager.service 32031 +usr/share/dbus-1/system-services/org.freedesktop.ModemManager1.service 32030 +usr/share/dbus-1/system-services/org.freedesktop.PolicyKit1.service 32029 +usr/share/dbus-1/system-services/org.freedesktop.UDisks2.service 32028 +usr/share/dbus-1/system-services/org.freedesktop.UPower.service 32027 +usr/share/dbus-1/system-services/org.freedesktop.bolt.service 32026 +usr/share/dbus-1/system-services/org.freedesktop.hostname1.service 32025 +usr/share/dbus-1/system-services/org.freedesktop.locale1.service 32024 +usr/share/dbus-1/system-services/org.freedesktop.login1.service 32023 +usr/share/dbus-1/system-services/org.freedesktop.network1.service 32022 +usr/share/dbus-1/system-services/org.freedesktop.nm_dispatcher.service 32021 +usr/share/dbus-1/system-services/org.freedesktop.resolve1.service 32020 +usr/share/dbus-1/system-services/org.freedesktop.systemd1.service 32019 +usr/share/dbus-1/system-services/org.freedesktop.timedate1.service 32018 +usr/share/dbus-1/system-services/org.freedesktop.timesync1.service 32017 +usr/share/dbus-1/system-services/org.opensuse.CupsPkHelper.Mechanism.service 32016 +usr/lib/x86_64-linux-gnu/libmm-glib.so.0.4.0 32015 +usr/lib/x86_64-linux-gnu/libqmi-glib.so.5.4.0 32014 +lib/x86_64-linux-gnu/libgcc_s.so.1 32013 +etc/memlockd.cfg 32012 +usr/lib/x86_64-linux-gnu/gio/modules/giomodule.cache 32011 +usr/lib/x86_64-linux-gnu/gio/modules/libgvfsdbus.so 32010 +usr/lib/x86_64-linux-gnu/gvfs/libgvfscommon.so 32006 +etc/libblockdev/conf.d/00-default.cfg 32005 +usr/lib/x86_64-linux-gnu/libbd_swap.so.2.0.0 32004 +usr/lib/x86_64-linux-gnu/libbd_loop.so.2.0.0 32003 +usr/bin/getopt 32002 +usr/lib/x86_64-linux-gnu/libbd_crypto.so.2.0.0 32001 +etc/shells 32000 +usr/lib/x86_64-linux-gnu/libnss3.so 31999 +lib/x86_64-linux-gnu/libnl-3.so.200.26.0 31978 +lib/x86_64-linux-gnu/libnl-genl-3.so.200.26.0 31977 +usr/lib/x86_64-linux-gnu/libnl-route-3.so.200.26.0 31976 +var/log/wtmp 31968 +usr/lib/x86_64-linux-gnu/libpcsclite.so.1.0.0 31965 +usr/bin/ldd 31963 +lib/systemd/system/polkit.service 31962 +usr/lib/python3.7/gettext.py 31960 +bin/dd 31956 +usr/lib/x86_64-linux-gnu/libmbim-glib.so.4.4.0 31951 +bin/echo 31950 +etc/laptop-mode/conf.d/ac97-powersave.conf 31947 +etc/laptop-mode/conf.d/auto-hibernate.conf 31946 +etc/laptop-mode/conf.d/battery-level-polling.conf 31945 +etc/laptop-mode/conf.d/bluetooth.conf 31944 +etc/laptop-mode/conf.d/configuration-file-control.conf 31943 +etc/laptop-mode/conf.d/cpufreq.conf 31942 +etc/laptop-mode/conf.d/cpuhotplug.conf 31941 +etc/laptop-mode/conf.d/dpms-standby.conf 31940 +etc/laptop-mode/conf.d/eee-superhe.conf 31939 +etc/laptop-mode/conf.d/ethernet.conf 31938 +etc/laptop-mode/conf.d/exec-commands.conf 31937 +etc/laptop-mode/conf.d/hal-polling.conf 31936 +etc/laptop-mode/conf.d/intel-hda-powersave.conf 31935 +etc/laptop-mode/conf.d/intel-sata-powermgmt.conf 31934 +etc/laptop-mode/conf.d/intel_pstate.conf 31933 +etc/laptop-mode/conf.d/kbd-backlight.conf 31932 +etc/laptop-mode/conf.d/lcd-brightness.conf 31931 +etc/laptop-mode/conf.d/nmi-watchdog.conf 31930 +etc/laptop-mode/conf.d/pcie-aspm.conf 31929 +etc/laptop-mode/conf.d/radeon-dpm.conf 31928 +etc/laptop-mode/conf.d/runtime-pm.conf 31927 +etc/laptop-mode/conf.d/sched-mc-power-savings.conf 31926 +etc/laptop-mode/conf.d/sched-smt-power-savings.conf 31925 +etc/laptop-mode/conf.d/start-stop-programs.conf 31924 +etc/laptop-mode/conf.d/terminal-blanking.conf 31923 +etc/laptop-mode/conf.d/vgaswitcheroo.conf 31922 +etc/laptop-mode/conf.d/video-out.conf 31921 +etc/laptop-mode/conf.d/wireless-ipw-power.conf 31920 +etc/laptop-mode/conf.d/wireless-iwl-power.conf 31919 +etc/laptop-mode/conf.d/wireless-power.conf 31918 +etc/laptop-mode/laptop-mode.conf 31917 +usr/lib/policykit-1/polkitd 31916 +usr/lib/python3.7/ipaddress.py 31915 +lib/systemd/systemd-user-sessions 31914 +usr/lib/x86_64-linux-gnu/libnssutil3.so 31911 +usr/lib/x86_64-linux-gnu/libpolkit-backend-1.so.0.0.0 31910 +usr/lib/x86_64-linux-gnu/libsmime3.so 31909 +usr/lib/x86_64-linux-gnu/libssl3.so 31908 +usr/lib/python3/dist-packages/psutil/__init__.py 31907 +bin/plymouth 31906 +usr/lib/python3.7/__future__.py 31904 +lib/x86_64-linux-gnu/libply.so.4.0.0 31903 +usr/lib/python3.7/contextlib.py 31902 +usr/share/gdm/generate-config 31895 +bin/uname 31894 +usr/lib/x86_64-linux-gnu/libplds4.so 31873 +usr/lib/python3/dist-packages/psutil/_common.py 31872 +usr/lib/x86_64-linux-gnu/libplc4.so 31871 +usr/lib/x86_64-linux-gnu/libnspr4.so 31870 +usr/lib/x86_64-linux-gnu/libvolume_key.so.1.2.3 31869 +usr/lib/x86_64-linux-gnu/libgpgme.so.11.21.0 31868 usr/lib/python3/dist-packages/psutil/_compat.py 31865 -usr/lib/python3.7/lib-dynload/_bz2.cpython-37m-x86_64-linux-gnu.so 31858 -usr/lib/python3.7/lib-dynload/_lzma.cpython-37m-x86_64-linux-gnu.so 31855 -usr/lib/python3/dist-packages/psutil/_pslinux.py 31854 -usr/lib/x86_64-linux-gnu/libpolkit-backend-1.so.0.0.0 31853 -bin/loginctl 31852 -bin/uname 31851 -usr/lib/x86_64-linux-gnu/polkit-1/extensions/libnullbackend.so 31850 -etc/polkit-1/nullbackend.conf.d/50-nullbackend.conf 31848 -lib/systemd/systemd-user-sessions 31847 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-altair-lte.so 31846 -etc/gdm3/daemon.conf 31845 -bin/plymouth 31843 -lib/x86_64-linux-gnu/libply.so.4.0.0 31842 -usr/lib/python3.7/base64.py 31839 -usr/share/gdm/generate-config 31838 +usr/lib/x86_64-linux-gnu/libbd_part.so.2.0.0 31863 +usr/lib/x86_64-linux-gnu/libbd_part_err.so.2.0.0 31862 +lib/x86_64-linux-gnu/libparted.so.2.0.1 31861 +usr/lib/python3.7/lib-dynload/_bz2.cpython-37m-x86_64-linux-gnu.so 31854 +usr/lib/python3.7/lib-dynload/_lzma.cpython-37m-x86_64-linux-gnu.so 31851 +usr/lib/python3/dist-packages/psutil/_pslinux.py 31850 +usr/lib/x86_64-linux-gnu/polkit-1/extensions/libnullbackend.so 31849 +usr/bin/dconf 31848 +bin/kill 31846 +usr/lib/python3.7/base64.py 31845 +usr/lib/x86_64-linux-gnu/libdconf.so.1.0.0 31844 +etc/polkit-1/nullbackend.conf.d/50-nullbackend.conf 31842 +lib/x86_64-linux-gnu/libparted-fs-resize.so.0.0.1 31840 +lib/x86_64-linux-gnu/libprocps.so.7.1.0 31837 +bin/loginctl 31836 usr/lib/python3/dist-packages/psutil/_psposix.py 31834 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-anydata.so 31833 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-cinterion.so 31832 -usr/lib/python3/dist-packages/psutil/_psutil_linux.cpython-37m-x86_64-linux-gnu.so 31831 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-dell.so 31830 -usr/lib/python3/dist-packages/psutil/_psutil_posix.cpython-37m-x86_64-linux-gnu.so 31829 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-ericsson-mbm.so 31828 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-fibocom.so 31827 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-generic.so 31826 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-haier.so 31825 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-huawei.so 31824 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-iridium.so 31823 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-linktop.so 31822 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-longcheer.so 31821 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-motorola.so 31820 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-mtk.so 31819 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-nokia-icera.so 31818 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-nokia.so 31817 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-novatel-lte.so 31816 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-novatel.so 31815 -usr/bin/flock 31814 -usr/bin/dconf 31813 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-option-hso.so 31812 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-option.so 31811 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-pantech.so 31810 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-quectel.so 31809 -usr/lib/x86_64-linux-gnu/libnssutil3.so 31806 -usr/lib/x86_64-linux-gnu/libdconf.so.1.0.0 31805 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-samsung.so 31804 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-sierra-legacy.so 31803 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-sierra.so 31802 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-simtech.so 31801 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-telit.so 31800 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-thuraya.so 31799 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-ublox.so 31798 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-via.so 31797 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-wavecom.so 31796 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-x22x.so 31795 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-zte.so 31794 -usr/lib/x86_64-linux-gnu/libsmime3.so 31787 -usr/lib/x86_64-linux-gnu/libssl3.so 31786 -usr/lib/x86_64-linux-gnu/libplds4.so 31785 -usr/lib/x86_64-linux-gnu/libplc4.so 31784 -etc/gdm3/greeter.dconf-defaults 31783 -usr/share/gdm/dconf/50-tails 31782 -usr/share/gdm/dconf/00-upstream-settings 31781 -usr/share/gdm/dconf/locks/00-upstream-settings-locks 31780 -usr/lib/python3.7/socketserver.py 31712 -usr/lib/x86_64-linux-gnu/libnspr4.so 31711 -usr/lib/x86_64-linux-gnu/libvolume_key.so.1.2.3 31710 -usr/lib/x86_64-linux-gnu/libgpgme.so.11.21.0 31709 -bin/mkdir 31708 -usr/lib/python3/dist-packages/stem/__init__.py 31707 -usr/lib/x86_64-linux-gnu/libbd_part.so.2.0.0 31705 -usr/lib/x86_64-linux-gnu/libbd_part_err.so.2.0.0 31704 -lib/x86_64-linux-gnu/libparted.so.2.0.1 31703 -lib/x86_64-linux-gnu/libparted-fs-resize.so.0.0.1 31702 -usr/bin/pgrep 31696 -usr/sbin/dmidecode 31682 -usr/lib/python3/dist-packages/stem/util/__init__.py 31681 -usr/lib/python3/dist-packages/stem/prereq.py 31680 -usr/lib/python3.7/inspect.py 31679 -usr/lib/x86_64-linux-gnu/libbd_fs.so.2.0.0 31678 -etc/udisks2/udisks2.conf 31676 -bin/chgrp 31638 -usr/lib/python3.7/dis.py 31637 -usr/lib/python3.7/opcode.py 31636 -usr/lib/python3.7/lib-dynload/_opcode.cpython-37m-x86_64-linux-gnu.so 31635 -usr/lib/python3.7/importlib/__init__.py 31634 -usr/lib/python3.7/importlib/machinery.py 31633 -sbin/dumpe2fs 31632 -usr/lib/python3.7/platform.py 31631 -lib/x86_64-linux-gnu/libext2fs.so.2.4 31630 -lib/x86_64-linux-gnu/libcom_err.so.2.1 31629 -usr/sbin/gdm3 31625 -usr/lib/python3/dist-packages/stem/util/enum.py 31624 -usr/bin/logger 31623 -usr/lib/x86_64-linux-gnu/libaccountsservice.so.0.0.0 31622 -usr/lib/python3/dist-packages/stem/util/str_tools.py 31621 -usr/share/gdm/gdm.schemas 31620 -usr/bin/basename 31619 +etc/gdm3/greeter.dconf-defaults 31833 +usr/share/gdm/dconf/50-tails 31832 +usr/share/gdm/dconf/00-upstream-settings 31831 +usr/share/gdm/dconf/locks/00-upstream-settings-locks 31830 +usr/lib/python3/dist-packages/psutil/_psutil_linux.cpython-37m-x86_64-linux-gnu.so 31828 +usr/lib/python3/dist-packages/psutil/_psutil_posix.cpython-37m-x86_64-linux-gnu.so 31827 +usr/bin/pgrep 31826 +usr/sbin/dmidecode 31825 +usr/lib/python3.7/socketserver.py 31824 +usr/lib/x86_64-linux-gnu/libbd_fs.so.2.0.0 31823 +usr/lib/python3/dist-packages/stem/__init__.py 31820 +bin/chgrp 31818 +usr/lib/python3/dist-packages/stem/util/__init__.py 31817 +etc/udisks2/udisks2.conf 31816 +usr/lib/python3/dist-packages/stem/prereq.py 31815 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-altair-lte.so 31814 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-anydata.so 31813 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-cinterion.so 31812 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-dell.so 31811 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-ericsson-mbm.so 31810 +usr/lib/python3.7/inspect.py 31809 +etc/gdm3/daemon.conf 31808 +usr/lib/python3.7/dis.py 31770 +usr/lib/python3.7/opcode.py 31768 +usr/sbin/gdm3 31767 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-fibocom.so 31766 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-generic.so 31765 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-haier.so 31764 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-huawei.so 31763 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-iridium.so 31762 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-linktop.so 31761 +bin/mkdir 31760 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-longcheer.so 31759 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-motorola.so 31758 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-mtk.so 31757 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-nokia-icera.so 31756 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-nokia.so 31755 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-novatel-lte.so 31754 +usr/lib/x86_64-linux-gnu/libaccountsservice.so.0.0.0 31752 +usr/lib/python3.7/lib-dynload/_opcode.cpython-37m-x86_64-linux-gnu.so 31751 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-novatel.so 31750 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-option-hso.so 31749 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-option.so 31748 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-pantech.so 31747 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-quectel.so 31746 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-samsung.so 31745 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-sierra-legacy.so 31744 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-sierra.so 31743 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-simtech.so 31742 +usr/share/gdm/gdm.schemas 31741 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-telit.so 31740 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-thuraya.so 31739 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-ublox.so 31738 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-via.so 31737 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-wavecom.so 31736 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-x22x.so 31735 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-zte.so 31734 +sbin/dumpe2fs 31733 +usr/lib/python3.7/importlib/__init__.py 31642 +usr/lib/python3.7/importlib/machinery.py 31641 +usr/lib/python3.7/platform.py 31640 +lib/x86_64-linux-gnu/libext2fs.so.2.4 31639 +usr/share/laptop-mode-tools/modules/ac97-powersave 31633 +lib/x86_64-linux-gnu/libcom_err.so.2.1 31632 +usr/lib/python3/dist-packages/stem/util/enum.py 31631 +usr/share/laptop-mode-tools/modules/battery-level-polling 31630 +usr/lib/python3/dist-packages/stem/util/str_tools.py 31629 +etc/pam.d/gdm-launch-environment 31628 +usr/lib/python3/dist-packages/stem/util/connection.py 31627 +usr/lib/python3.7/lib-dynload/_hashlib.cpython-37m-x86_64-linux-gnu.so 31624 +lib/x86_64-linux-gnu/security/pam_nologin.so 31623 +lib/x86_64-linux-gnu/security/pam_keyinit.so 31622 +lib/x86_64-linux-gnu/security/pam_limits.so 31621 +lib/x86_64-linux-gnu/security/pam_env.so 31620 +usr/lib/python3.7/hmac.py 31619 lib/x86_64-linux-gnu/libe2p.so.2.3 31618 -usr/lib/python3/dist-packages/stem/util/connection.py 31617 -usr/share/laptop-mode-tools/modules/ac97-powersave 31615 -usr/lib/python3.7/lib-dynload/_hashlib.cpython-37m-x86_64-linux-gnu.so 31612 -usr/lib/python3.7/hmac.py 31610 -usr/lib/python3/dist-packages/stem/util/proc.py 31609 -usr/lib/python3/dist-packages/stem/util/log.py 31608 -usr/lib/python3/dist-packages/stem/util/system.py 31601 -usr/share/laptop-mode-tools/modules/battery-level-polling 31600 -usr/lib/python3.7/lib-dynload/_ctypes.cpython-37m-x86_64-linux-gnu.so 31597 -usr/lib/python3.7/mimetypes.py 31585 -usr/lib/python3.7/urllib/__init__.py 31581 -usr/lib/python3.7/urllib/parse.py 31580 -usr/share/laptop-mode-tools/modules/bluetooth 31579 -usr/lib/python3.7/multiprocessing/__init__.py 31578 -usr/lib/python3.7/multiprocessing/context.py 31577 -usr/lib/python3.7/multiprocessing/process.py 31576 -usr/lib/python3.7/multiprocessing/reduction.py 31575 -usr/lib/python3.7/pickle.py 31574 -usr/share/laptop-mode-tools/modules/configuration-file-control 31573 -usr/lib/python3.7/_compat_pickle.py 31572 -usr/lib/python3.7/tarfile.py 31571 -etc/pam.d/gdm-launch-environment 31570 -lib/x86_64-linux-gnu/security/pam_nologin.so 31569 -usr/lib/python3.7/copy.py 31568 -usr/lib/python3/dist-packages/stem/util/conf.py 31567 -usr/share/laptop-mode-tools/modules/cpufreq 31566 -lib/x86_64-linux-gnu/security/pam_keyinit.so 31565 -lib/x86_64-linux-gnu/security/pam_limits.so 31564 -lib/x86_64-linux-gnu/security/pam_env.so 31563 -usr/lib/python3/dist-packages/stem/control.py 31562 -usr/share/polkit-1/actions/com.hp.hplip.policy 31561 -usr/share/polkit-1/actions/com.ubuntu.pkexec.synaptic.policy 31560 -usr/share/polkit-1/actions/org.boum.tails.additional-software.policy 31559 -usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy 31558 -usr/share/polkit-1/actions/org.boum.tails.tor-launcher.policy 31557 -usr/share/polkit-1/actions/org.dpkg.pkexec.update-alternatives.policy 31556 -usr/share/polkit-1/actions/org.freedesktop.ModemManager1.policy 31555 -usr/share/polkit-1/actions/org.freedesktop.NetworkManager.policy 31554 -usr/share/laptop-mode-tools/modules/cpuhotplug 31553 -usr/lib/python3.7/calendar.py 31552 -usr/share/polkit-1/actions/org.freedesktop.UDisks2.policy 31551 -usr/lib/python3.7/queue.py 31550 -usr/lib/python3.7/lib-dynload/_queue.cpython-37m-x86_64-linux-gnu.so 31549 -usr/share/polkit-1/actions/org.freedesktop.accounts.policy 31548 -usr/share/polkit-1/actions/org.freedesktop.bolt.policy 31547 -usr/lib/python3/dist-packages/stem/descriptor/__init__.py 31546 -usr/share/polkit-1/actions/org.freedesktop.color.policy 31545 -usr/share/polkit-1/actions/org.freedesktop.hostname1.policy 31544 -usr/share/polkit-1/actions/org.freedesktop.locale1.policy 31543 -usr/share/polkit-1/actions/org.freedesktop.login1.policy 31542 -usr/share/polkit-1/actions/org.freedesktop.policykit.policy 31541 -usr/share/polkit-1/actions/org.freedesktop.resolve1.policy 31540 -usr/share/polkit-1/actions/org.freedesktop.systemd1.policy 31539 -usr/share/polkit-1/actions/org.freedesktop.timedate1.policy 31538 -usr/share/polkit-1/actions/org.gnome.controlcenter.datetime.policy 31537 -usr/share/polkit-1/actions/org.gnome.controlcenter.remote-login-helper.policy 31536 -usr/share/polkit-1/actions/org.gnome.controlcenter.user-accounts.policy 31535 -usr/share/polkit-1/actions/org.gnome.gnome-system-monitor.policy 31534 -usr/share/polkit-1/actions/org.gnome.settings-daemon.plugins.power.policy 31533 -usr/share/polkit-1/actions/org.gnome.settings-daemon.plugins.wacom.policy 31532 -usr/share/polkit-1/actions/org.gtk.vfs.file-operations.policy 31531 -usr/share/polkit-1/actions/org.linux.lmt.gui.policy 31530 -usr/share/polkit-1/actions/org.opensuse.cupspkhelper.mechanism.policy 31529 -usr/share/polkit-1/actions/org.x.xf86-video-intel.backlight-helper.policy 31528 -etc/security/limits.conf 31525 -etc/security/pam_env.conf 31524 -etc/environment 31523 +usr/share/polkit-1/actions/com.hp.hplip.policy 31617 +usr/lib/python3/dist-packages/stem/util/proc.py 31616 +usr/lib/python3/dist-packages/stem/util/log.py 31615 +usr/share/laptop-mode-tools/modules/bluetooth 31608 +usr/share/polkit-1/actions/com.ubuntu.pkexec.synaptic.policy 31607 +usr/share/polkit-1/actions/org.boum.tails.additional-software.policy 31606 +usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy 31605 +usr/share/polkit-1/actions/org.boum.tails.tor-launcher.policy 31604 +usr/share/polkit-1/actions/org.dpkg.pkexec.update-alternatives.policy 31603 +usr/share/polkit-1/actions/org.freedesktop.ModemManager1.policy 31602 +usr/share/polkit-1/actions/org.freedesktop.NetworkManager.policy 31601 +usr/share/polkit-1/actions/org.freedesktop.UDisks2.policy 31600 +usr/lib/python3/dist-packages/stem/util/system.py 31599 +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/lib/python3.7/lib-dynload/_ctypes.cpython-37m-x86_64-linux-gnu.so 31593 +usr/share/polkit-1/actions/org.freedesktop.hostname1.policy 31592 +usr/share/polkit-1/actions/org.freedesktop.locale1.policy 31591 +usr/share/polkit-1/actions/org.freedesktop.login1.policy 31590 +usr/share/polkit-1/actions/org.freedesktop.policykit.policy 31589 +usr/share/polkit-1/actions/org.freedesktop.resolve1.policy 31588 +usr/share/polkit-1/actions/org.freedesktop.systemd1.policy 31587 +usr/share/polkit-1/actions/org.freedesktop.timedate1.policy 31586 +usr/share/polkit-1/actions/org.gnome.controlcenter.datetime.policy 31585 +usr/share/polkit-1/actions/org.gnome.controlcenter.remote-login-helper.policy 31584 +usr/share/polkit-1/actions/org.gnome.controlcenter.user-accounts.policy 31583 +usr/share/polkit-1/actions/org.gnome.gnome-system-monitor.policy 31582 +usr/share/polkit-1/actions/org.gnome.settings-daemon.plugins.power.policy 31581 +usr/share/polkit-1/actions/org.gnome.settings-daemon.plugins.wacom.policy 31580 +usr/share/polkit-1/actions/org.gtk.vfs.file-operations.policy 31577 +usr/share/polkit-1/actions/org.linux.lmt.gui.policy 31574 +usr/share/polkit-1/actions/org.opensuse.cupspkhelper.mechanism.policy 31571 +usr/lib/python3.7/mimetypes.py 31566 +usr/share/polkit-1/actions/org.x.xf86-video-intel.backlight-helper.policy 31565 +usr/share/laptop-mode-tools/modules/configuration-file-control 31563 +etc/security/limits.conf 31561 +etc/security/pam_env.conf 31560 +etc/environment 31559 +lib/systemd/system/user@.service 31557 +lib/systemd/system/user-.slice.d/10-defaults.conf 31556 +lib/systemd/system/user-runtime-dir@.service 31555 +usr/share/laptop-mode-tools/modules/cpufreq 31553 +usr/lib/python3.7/urllib/__init__.py 31552 +usr/lib/python3.7/urllib/parse.py 31551 +usr/share/laptop-mode-tools/modules/cpuhotplug 31530 +lib/systemd/systemd-user-runtime-dir 31529 +bin/sleep 31527 +usr/lib/python3.7/multiprocessing/__init__.py 31526 +usr/lib/python3.7/multiprocessing/context.py 31525 +usr/lib/python3.7/multiprocessing/process.py 31524 +usr/lib/python3.7/multiprocessing/reduction.py 31523 usr/share/laptop-mode-tools/modules/dpms-standby 31522 -lib/systemd/system/user@.service 31520 -usr/lib/python3/dist-packages/stem/descriptor/server_descriptor.py 31519 -bin/sleep 31518 -lib/systemd/system/user-.slice.d/10-defaults.conf 31517 -lib/systemd/system/user-runtime-dir@.service 31516 -usr/lib/python3/dist-packages/stem/descriptor/certificate.py 31515 -usr/lib/python3/dist-packages/stem/descriptor/extrainfo_descriptor.py 31514 -usr/share/laptop-mode-tools/modules/eee-superhe 31512 -usr/lib/python3/dist-packages/stem/exit_policy.py 31495 -usr/lib/python3/dist-packages/stem/util/tor_tools.py 31491 -lib/systemd/systemd-user-runtime-dir 31489 -usr/lib/python3/dist-packages/stem/version.py 31488 -usr/share/laptop-mode-tools/modules/ethernet 31487 -lib/systemd/system-shutdown/tails 31486 -lib/systemd/systemd-shutdown 31485 -usr/lib/python3/dist-packages/stem/descriptor/router_status_entry.py 31484 -usr/share/laptop-mode-tools/modules/exec-commands 31482 -etc/pam.d/systemd-user 31481 -usr/lib/python3/dist-packages/stem/descriptor/networkstatus.py 31480 -lib/x86_64-linux-gnu/security/pam_selinux.so 31479 -lib/x86_64-linux-gnu/security/pam_loginuid.so 31478 -lib/systemd/systemd 31477 -etc/systemd/user.conf 31476 -usr/share/laptop-mode-tools/modules/hal-polling 31475 -usr/lib/python3/dist-packages/stem/descriptor/microdescriptor.py 31474 -usr/lib/python3/dist-packages/stem/descriptor/tordnsel.py 31473 -usr/lib/python3/dist-packages/stem/descriptor/hidden_service_descriptor.py 31472 -usr/lib/python3/dist-packages/stem/descriptor/reader.py 31471 -usr/lib/python3/dist-packages/stem/response/__init__.py 31470 -usr/lib/python3/dist-packages/stem/socket.py 31469 -usr/bin/eject 31468 -usr/lib/python3.7/ssl.py 31467 -usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator 31465 -usr/lib/python3.7/lib-dynload/_ssl.cpython-37m-x86_64-linux-gnu.so 31464 -etc/environment.d/90atk-adaptor.conf 31463 -usr/lib/python3/dist-packages/stem/response/events.py 31462 -etc/environment.d/90qt-a11y.conf 31461 -usr/lib/systemd/user-environment-generators/90gpg-agent 31460 -usr/share/laptop-mode-tools/modules/hdparm 31459 -usr/lib/python3/dist-packages/stem/connection.py 31458 -usr/lib/python3.7/getpass.py 31457 -usr/bin/gpgconf 31456 -usr/lib/python3.7/lib-dynload/termios.cpython-37m-x86_64-linux-gnu.so 31455 -usr/lib/python3.7/textwrap.py 31454 -usr/lib/python3/dist-packages/yaml/__init__.py 31453 -bin/udevadm 31452 -usr/lib/python3/dist-packages/yaml/error.py 31451 -etc/udev/udev.conf 31450 -usr/share/laptop-mode-tools/modules/intel-hda-powersave 31449 -usr/local/sbin/udev-watchdog 31448 -usr/lib/systemd/user/default.target 31445 -usr/lib/systemd/user/shutdown.target 31444 -usr/lib/systemd/user/basic.target 31443 -usr/lib/systemd/user/tails-create-tor-browser-directories.service 31442 -usr/lib/systemd/user/paths.target 31441 -usr/lib/systemd/user/timers.target 31440 -usr/lib/systemd/user/sockets.target 31439 -usr/lib/systemd/user/pulseaudio.socket 31438 -usr/lib/systemd/user/pulseaudio.service 31437 -usr/lib/systemd/user/gpg-agent.socket 31436 -usr/lib/systemd/user/gpg-agent.service 31435 -usr/lib/systemd/user/gpg-agent-ssh.socket 31434 -usr/lib/systemd/user/gpg-agent-extra.socket 31433 -usr/lib/systemd/user/gpg-agent-browser.socket 31432 -usr/lib/systemd/user/dirmngr.socket 31431 -usr/lib/systemd/user/dirmngr.service 31430 -usr/lib/systemd/user/dbus.socket 31429 -usr/lib/systemd/user/dbus.service 31428 -usr/bin/pulseaudio 31426 -usr/bin/dirmngr 31425 -usr/lib/python3/dist-packages/yaml/tokens.py 31424 -usr/lib/python3/dist-packages/yaml/events.py 31423 -usr/lib/python3/dist-packages/yaml/nodes.py 31422 -usr/lib/python3/dist-packages/yaml/loader.py 31421 -usr/lib/python3/dist-packages/yaml/reader.py 31420 -bin/egrep 31418 -usr/share/laptop-mode-tools/modules/intel-sata-powermgmt 31417 -usr/lib/python3/dist-packages/yaml/scanner.py 31411 -usr/lib/gdm3/gdm-x-session.tails 31410 -usr/lib/python3/dist-packages/yaml/parser.py 31407 -usr/lib/gdm3/gdm-x-session.real 31406 -usr/lib/python3/dist-packages/yaml/composer.py 31405 -usr/share/laptop-mode-tools/modules/intel_pstate 31404 -usr/lib/python3/dist-packages/yaml/constructor.py 31403 -usr/bin/Xorg 31402 -usr/lib/xorg/Xorg.wrap 31401 -etc/X11/Xwrapper.config 31400 -usr/lib/python3/dist-packages/yaml/resolver.py 31399 -usr/lib/python3/dist-packages/yaml/dumper.py 31398 -usr/lib/python3/dist-packages/yaml/emitter.py 31397 -usr/lib/xorg/Xorg 31396 -usr/lib/python3/dist-packages/yaml/serializer.py 31395 -usr/lib/python3/dist-packages/yaml/representer.py 31394 -usr/share/laptop-mode-tools/modules/kbd-backlight 31393 -usr/lib/python3/dist-packages/yaml/cyaml.py 31392 -usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1 31391 -usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1 31390 -usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0 31389 -usr/lib/x86_64-linux-gnu/libpixman-1.so.0.36.0 31388 -usr/lib/python3/dist-packages/_yaml.cpython-37m-x86_64-linux-gnu.so 31387 -usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5 31386 -usr/lib/x86_64-linux-gnu/libXfont2.so.2.0.0 31385 -usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0 31384 -bin/cpio 31383 -usr/lib/x86_64-linux-gnu/libfontenc.so.1.0.0 31382 -usr/lib/x86_64-linux-gnu/libfreetype.so.6.16.1 31381 -usr/share/laptop-mode-tools/modules/laptop-mode 31380 -sbin/blockdev 31379 -usr/share/laptop-mode-tools/modules/lcd-brightness 31378 -usr/lib/x86_64-linux-gnu/libpng16.so.16.36.0 31377 -usr/lib/xorg/protocol.txt 31376 -usr/share/X11/xorg.conf.d/10-amdgpu.conf 31375 -usr/share/X11/xorg.conf.d/10-quirks.conf 31374 -usr/share/X11/xorg.conf.d/10-radeon.conf 31373 -usr/share/X11/xorg.conf.d/40-libinput.conf 31372 -usr/share/X11/xorg.conf.d/90-tails.conf 31371 -usr/share/laptop-mode-tools/modules/nmi-watchdog 31370 -usr/lib/xorg/modules/extensions/libglx.so 31367 -usr/lib/x86_64-linux-gnu/libGL.so.1.7.0 31366 -usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0 31365 -usr/lib/x86_64-linux-gnu/libGLdispatch.so.0.0.0 31364 -usr/share/laptop-mode-tools/modules/pcie-aspm 31363 -usr/lib/xorg/modules/drivers/modesetting_drv.so 31362 -usr/lib/xorg/modules/drivers/fbdev_drv.so 31361 -usr/lib/xorg/modules/drivers/vesa_drv.so 31360 -usr/lib/xorg/modules/libfbdevhw.so 31359 -usr/lib/xorg/modules/libglamoregl.so 31358 -usr/lib/x86_64-linux-gnu/libgbm.so.1.0.0 31357 -usr/lib/x86_64-linux-gnu/libepoxy.so.0.0.0 31356 -usr/share/laptop-mode-tools/modules/radeon-dpm 31355 -usr/lib/x86_64-linux-gnu/libwayland-server.so.0.1.0 31354 -usr/share/drirc.d/00-mesa-defaults.conf 31353 -usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0 31352 -usr/lib/x86_64-linux-gnu/dri/i965_dri.so 31351 -usr/share/laptop-mode-tools/modules/runtime-pm 31350 -usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0 31349 -usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1 31348 -usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0 31347 -usr/share/laptop-mode-tools/modules/sched-mc-power-savings 31346 -usr/share/laptop-mode-tools/modules/sched-smt-power-savings 31345 -usr/share/laptop-mode-tools/modules/start-stop-programs 31344 -usr/share/laptop-mode-tools/modules/syslog-conf 31342 -usr/lib/x86_64-linux-gnu/libEGL.so.1.1.0 31341 -usr/share/glvnd/egl_vendor.d/50_mesa.json 31340 -usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0 31339 -usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0 31338 -usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0.0.0 31337 -usr/lib/x86_64-linux-gnu/libwayland-client.so.0.3.0 31336 -usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0 31335 -usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0 31334 -usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0 31333 -usr/share/laptop-mode-tools/modules/terminal-blanking 31332 -usr/share/laptop-mode-tools/modules/vgaswitcheroo 31331 -usr/share/laptop-mode-tools/modules/video-out 31330 -usr/share/laptop-mode-tools/modules/wireless-ipw-power 31329 -usr/share/laptop-mode-tools/modules/wireless-iwl-power 31328 -usr/share/laptop-mode-tools/modules/wireless-power 31327 -sbin/iw 31326 -usr/lib/xorg/modules/libfb.so 31324 -usr/share/fonts/X11/Type1/fonts.dir 31323 -usr/share/X11/xkb/rules/evdev 31322 -usr/bin/xkbcomp 31321 -usr/lib/x86_64-linux-gnu/libxkbfile.so.1.0.2 31320 -usr/share/X11/xkb/keycodes/evdev 31319 -usr/share/X11/xkb/keycodes/aliases 31318 -usr/share/X11/xkb/geometry/pc 31317 -usr/share/X11/xkb/types/complete 31316 -usr/share/X11/xkb/types/basic 31315 -usr/share/X11/xkb/types/mousekeys 31314 -usr/share/X11/xkb/types/pc 31313 -usr/share/X11/xkb/types/iso9995 31312 -usr/share/X11/xkb/types/level5 31311 -usr/share/X11/xkb/types/extra 31310 -usr/share/X11/xkb/types/numpad 31309 -usr/share/X11/xkb/compat/complete 31308 -usr/share/X11/xkb/compat/basic 31307 -usr/share/X11/xkb/compat/ledcaps 31306 -usr/share/X11/xkb/compat/lednum 31305 -usr/share/X11/xkb/compat/iso9995 31304 -usr/share/X11/xkb/compat/mousekeys 31303 -usr/share/X11/xkb/compat/accessx 31302 -usr/share/X11/xkb/compat/misc 31301 -usr/share/X11/xkb/compat/ledscroll 31300 -usr/share/X11/xkb/compat/xfree86 31299 -usr/share/X11/xkb/compat/level5 31298 -usr/share/X11/xkb/compat/caps 31297 -usr/share/X11/xkb/symbols/pc 31296 -usr/share/X11/xkb/symbols/srvr_ctrl 31295 -usr/share/X11/xkb/symbols/keypad 31294 -usr/share/X11/xkb/symbols/altwin 31293 -usr/share/X11/xkb/symbols/us 31292 -usr/share/X11/xkb/symbols/inet 31291 -usr/lib/xorg/modules/input/libinput_drv.so 31267 -usr/lib/x86_64-linux-gnu/libinput.so.10.13.0 31266 -usr/lib/x86_64-linux-gnu/libmtdev.so.1.0.0 31265 -usr/lib/x86_64-linux-gnu/libevdev.so.2.2.0 31264 -usr/lib/x86_64-linux-gnu/libwacom.so.2.6.1 31263 -usr/share/libinput/10-generic-keyboard.quirks 31261 -usr/share/libinput/10-generic-lid.quirks 31260 -usr/share/libinput/10-generic-trackball.quirks 31259 -usr/share/libinput/30-vendor-aiptek.quirks 31258 -usr/share/libinput/30-vendor-alps.quirks 31257 -usr/share/libinput/30-vendor-contour.quirks 31256 -usr/share/libinput/30-vendor-cyapa.quirks 31255 -usr/share/libinput/30-vendor-elantech.quirks 31254 -usr/share/libinput/30-vendor-huion.quirks 31253 -usr/share/libinput/30-vendor-ibm.quirks 31252 -usr/share/libinput/30-vendor-kensington.quirks 31251 -usr/share/libinput/30-vendor-logitech.quirks 31250 -usr/share/libinput/30-vendor-microsoft.quirks 31249 -usr/share/libinput/30-vendor-razer.quirks 31248 -usr/share/libinput/30-vendor-synaptics.quirks 31247 -usr/share/libinput/30-vendor-vmware.quirks 31246 -usr/share/libinput/30-vendor-wacom.quirks 31245 -usr/share/libinput/50-system-acer.quirks 31244 -usr/share/libinput/50-system-apple.quirks 31243 -usr/share/libinput/50-system-asus.quirks 31242 -usr/share/libinput/50-system-chicony.quirks 31241 -usr/share/libinput/50-system-cyborg.quirks 31240 -usr/share/libinput/50-system-dell.quirks 31239 -usr/share/libinput/50-system-google.quirks 31238 -usr/share/libinput/50-system-hp.quirks 31237 -usr/share/libinput/50-system-lenovo.quirks 31236 -usr/share/libinput/50-system-system76.quirks 31235 -usr/share/dbus-1/session.conf 31219 -etc/dbus-1/session.d/im.pidgin.purple.PurpleService.conf 31218 -usr/share/dbus-1/services/ca.desrt.dconf.service 31217 -usr/share/dbus-1/services/org.a11y.Bus.service 31216 -usr/share/dbus-1/services/org.fedoraproject.Config.Printing.service 31215 -usr/share/dbus-1/services/org.freedesktop.ColorHelper.service 31214 -usr/share/dbus-1/services/org.freedesktop.FileManager1.service 31213 -usr/share/dbus-1/services/org.freedesktop.IBus.service 31212 -usr/share/dbus-1/services/org.freedesktop.Tracker1.service 31211 -usr/share/dbus-1/services/org.freedesktop.impl.portal.PermissionStore.service 31210 -usr/share/dbus-1/services/org.freedesktop.portal.Desktop.service 31209 -usr/share/dbus-1/services/org.freedesktop.portal.Documents.service 31208 -usr/share/dbus-1/services/org.freedesktop.portal.IBus.service 31207 -usr/share/dbus-1/services/org.freedesktop.secrets.service 31206 -usr/share/dbus-1/services/org.gnome.Calculator.SearchProvider.service 31205 -usr/share/dbus-1/services/org.gnome.ControlCenter.SearchProvider.service 31204 -usr/share/dbus-1/services/org.gnome.ControlCenter.service 31203 -usr/share/dbus-1/services/org.gnome.DiskUtility.service 31202 -usr/share/dbus-1/services/org.gnome.FileRoller.ArchiveManager1.service 31201 -usr/share/dbus-1/services/org.gnome.FileRoller.service 31200 -usr/share/dbus-1/services/org.gnome.Nautilus.service 31199 -usr/share/dbus-1/services/org.gnome.Screenshot.service 31198 -usr/share/dbus-1/services/org.gnome.Shell.CalendarServer.service 31197 -usr/share/dbus-1/services/org.gnome.Shell.HotplugSniffer.service 31196 -usr/share/dbus-1/services/org.gnome.Shell.PortalHelper.service 31195 -usr/share/dbus-1/services/org.gnome.SoundJuicer.service 31194 -usr/share/dbus-1/services/org.gnome.Terminal.service 31193 -usr/share/dbus-1/services/org.gnome.Totem.service 31192 -usr/share/dbus-1/services/org.gnome.evince.Daemon.service 31191 -usr/share/dbus-1/services/org.gnome.evolution.dataserver.AddressBook.service 31190 -usr/share/dbus-1/services/org.gnome.evolution.dataserver.Calendar.service 31189 -usr/share/dbus-1/services/org.gnome.evolution.dataserver.Sources.service 31188 -usr/share/dbus-1/services/org.gnome.evolution.dataserver.UserPrompter.service 31187 -usr/share/dbus-1/services/org.gnome.gedit.service 31186 -usr/share/dbus-1/services/org.gnome.keyring.PrivatePrompter.service 31185 -usr/share/dbus-1/services/org.gnome.keyring.SystemPrompter.service 31184 -usr/share/dbus-1/services/org.gnome.keyring.service 31183 -usr/share/dbus-1/services/org.gnome.seahorse.Application.service 31182 -usr/share/dbus-1/services/org.gnome.seahorse.service 31181 -usr/share/dbus-1/services/org.gtk.GLib.PACRunner.service 31180 -usr/share/dbus-1/services/org.gtk.vfs.AfcVolumeMonitor.service 31179 -usr/share/dbus-1/services/org.gtk.vfs.Daemon.service 31178 -usr/share/dbus-1/services/org.gtk.vfs.GPhoto2VolumeMonitor.service 31177 -usr/share/dbus-1/services/org.gtk.vfs.GoaVolumeMonitor.service 31176 -usr/share/dbus-1/services/org.gtk.vfs.MTPVolumeMonitor.service 31175 -usr/share/dbus-1/services/org.gtk.vfs.Metadata.service 31174 -usr/share/dbus-1/services/org.gtk.vfs.UDisks2VolumeMonitor.service 31173 -usr/bin/gnome-session 31171 -bin/gzip 31170 -usr/bin/xz 31169 -usr/bin/gsettings 31168 -usr/share/glib-2.0/schemas/gschemas.compiled 31167 -usr/lib/x86_64-linux-gnu/gio/modules/libdconfsettings.so 31166 -usr/share/dconf/profile/gdm 31165 -usr/lib/gnome-session/gnome-session-binary 31163 -usr/lib/x86_64-linux-gnu/libgnome-desktop-3.so.17.0.3 31162 -usr/lib/x86_64-linux-gnu/libjson-glib-1.0.so.0.400.4 31161 -usr/lib/x86_64-linux-gnu/libgtk-3.so.0.2404.1 31160 -usr/lib/x86_64-linux-gnu/libgdk-3.so.0.2404.1 31159 -usr/lib/x86_64-linux-gnu/libcairo.so.2.11600.0 31158 -usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.3800.1 31157 -usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0.4200.3 31156 -usr/lib/x86_64-linux-gnu/libXcomposite.so.1.0.0 31155 -usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0 31154 -usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0 31153 -usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2.11600.0 31152 -usr/lib/x86_64-linux-gnu/libatk-1.0.so.0.23009.1 31151 -usr/lib/x86_64-linux-gnu/libatk-bridge-2.0.so.0.0.0 31150 -usr/lib/x86_64-linux-gnu/libxkbcommon.so.0.0.0 31149 -usr/lib/x86_64-linux-gnu/libwayland-cursor.so.0.0.0 31148 -usr/lib/x86_64-linux-gnu/libwayland-egl.so.1.0.0 31147 -usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.20301.0 31146 -usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0.4200.3 31145 -usr/lib/x86_64-linux-gnu/libpango-1.0.so.0.4200.3 31144 -usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0 31143 -usr/lib/x86_64-linux-gnu/libXinerama.so.1.0.0 31142 -usr/lib/x86_64-linux-gnu/libXrandr.so.2.2.0 31141 -usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2 31140 -usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0 31139 -usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0 31138 -usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0 31137 -usr/lib/x86_64-linux-gnu/libatspi.so.0.0.1 31136 -usr/lib/x86_64-linux-gnu/libgraphite2.so.3.2.1 31135 -usr/lib/x86_64-linux-gnu/libthai.so.0.3.1 31134 -usr/lib/x86_64-linux-gnu/libfribidi.so.0.4.0 31133 -usr/lib/x86_64-linux-gnu/libdatrie.so.1.3.5 31132 -usr/lib/gnome-session/gnome-session-check-accelerated 31130 -usr/share/locale/en/LC_MESSAGES/gtk30.mo 31129 -usr/share/locale/en/LC_MESSAGES/gtk30-properties.mo 31128 -usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 31127 -usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0 31126 -usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0 31125 -usr/lib/systemd/user/at-spi-dbus-bus.service 31124 -usr/lib/at-spi2-core/at-spi-bus-launcher 31122 -etc/dconf/profile/user 31121 -usr/share/defaults/at-spi2/accessibility.conf 31119 -usr/share/dbus-1/accessibility-services/org.a11y.atspi.Registry.service 31118 -usr/lib/at-spi2-core/at-spi2-registryd 31117 -usr/lib/gnome-session/gnome-session-check-accelerated-gl-helper 31116 -usr/share/gnome-session/hardware-compatibility 31115 -usr/share/gnome-session/sessions/gdm-tails.session 31112 -usr/share/gdm/greeter/applications/gdm-shell-tails.desktop 31111 -usr/share/applications/tails-greeter.desktop 31110 -etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop 31109 -etc/xdg/autostart/org.gnome.SettingsDaemon.Clipboard.desktop 31108 -etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop 31107 -etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop 31106 -etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop 31105 -etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop 31104 -etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop 31103 -etc/xdg/autostart/org.gnome.SettingsDaemon.Mouse.desktop 31102 -etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop 31101 -etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop 31100 -etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop 31099 -etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop 31098 -etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop 31097 -etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop 31096 -etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop 31095 -etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop 31094 -etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop 31093 -usr/share/gdm/greeter/autostart/orca-autostart.desktop 31092 -etc/xdg/autostart/spice-vdagent.desktop 31091 -usr/lib/x86_64-linux-gnu/glib-2.0/gio-launch-desktop 31088 -usr/bin/gnome-shell 31087 -usr/lib/gnome-shell/libgnome-shell.so 31086 -usr/lib/libgjs.so.0.0.0 31085 -usr/lib/x86_64-linux-gnu/mutter/libmutter-clutter-3.so 31084 -usr/lib/x86_64-linux-gnu/mutter/libmutter-cogl-pango-3.so 31083 -usr/lib/x86_64-linux-gnu/libmutter-3.so.0.0.0 31082 -usr/lib/gnome-shell/libgnome-shell-menu.so 31081 -usr/lib/gnome-shell/libst-1.0.so 31080 -usr/lib/x86_64-linux-gnu/mutter/libmutter-cogl-3.so 31079 -usr/lib/x86_64-linux-gnu/libstartup-notification-1.so.0.0.0 31078 -usr/lib/x86_64-linux-gnu/libcanberra.so.0.2.5 31077 -usr/lib/x86_64-linux-gnu/libcanberra-gtk3.so.0.1.9 31076 -usr/lib/x86_64-linux-gnu/libpolkit-agent-1.so.0.0.0 31075 -usr/lib/x86_64-linux-gnu/libgcr-base-3.so.1.0.0 31074 -usr/lib/x86_64-linux-gnu/libnm.so.0.1.0 31073 -usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0 31072 -usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0.1404.0 31071 -usr/lib/x86_64-linux-gnu/libgstbase-1.0.so.0.1404.0 31070 -usr/lib/x86_64-linux-gnu/libmozjs-60.so.0.0.0 31069 -usr/lib/x86_64-linux-gnu/mutter/libmutter-cogl-path-3.so 31068 -usr/lib/x86_64-linux-gnu/libxkbcommon-x11.so.0.0.0 31067 -usr/lib/x86_64-linux-gnu/libxcb-randr.so.0.1.0 31066 -usr/lib/x86_64-linux-gnu/libxcb-res.so.0.0.0 31065 -usr/lib/x86_64-linux-gnu/libpipewire-0.2.so.1.205.0 31064 -usr/lib/x86_64-linux-gnu/libcroco-0.6.so.3.0.1 31063 -usr/lib/x86_64-linux-gnu/libxcb-util.so.0.0.0 31062 -usr/lib/x86_64-linux-gnu/libvorbisfile.so.3.3.7 31061 -usr/lib/x86_64-linux-gnu/libtdb.so.1.3.16 31060 -usr/lib/x86_64-linux-gnu/libltdl.so.7.3.1 31059 -usr/lib/x86_64-linux-gnu/libgck-1.so.0.0.0 31058 -usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0 31057 -usr/lib/x86_64-linux-gnu/libgnutls.so.30.23.2 31056 -usr/lib/x86_64-linux-gnu/libicui18n.so.63.1 31055 -usr/lib/x86_64-linux-gnu/libicuuc.so.63.1 31054 -usr/lib/x86_64-linux-gnu/libicudata.so.63.1 31053 -usr/lib/x86_64-linux-gnu/libxcb-xkb.so.1.0.0 31052 -usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4 31051 -usr/lib/x86_64-linux-gnu/libidn2.so.0.3.4 31050 -usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0 31049 -usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5 31048 -usr/lib/x86_64-linux-gnu/libnettle.so.6.5 31047 -usr/lib/x86_64-linux-gnu/libhogweed.so.4.5 31046 -usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2 31045 -usr/share/libwacom/xp-pen-star03.tablet 31044 -usr/share/libwacom/serial-wacf004.tablet 31043 -usr/share/libwacom/one-by-wacom-s-p.tablet 31042 -usr/share/libwacom/one-by-wacom-s-p2.tablet 31041 -usr/share/libwacom/one-by-wacom-m-p.tablet 31040 -usr/share/libwacom/one-by-wacom-m-p2.tablet 31039 -usr/share/libwacom/n-trig-pen.tablet 31038 -usr/share/libwacom/mobilestudio-pro-16.tablet 31037 -usr/share/libwacom/mobilestudio-pro-13.tablet 31036 -usr/share/libwacom/isdv4-ef.tablet 31035 -usr/share/libwacom/isdv4-ed.tablet 31034 -usr/share/libwacom/isdv4-ec.tablet 31033 -usr/share/libwacom/isdv4-e6.tablet 31032 -usr/share/libwacom/isdv4-e5.tablet 31031 -usr/share/libwacom/isdv4-e3.tablet 31030 -usr/share/libwacom/isdv4-e2.tablet 31029 -usr/share/libwacom/isdv4-93.tablet 31028 -usr/share/libwacom/isdv4-90.tablet 31027 -usr/share/libwacom/isdv4-516b.tablet 31026 -usr/share/libwacom/isdv4-5150.tablet 31025 -usr/share/libwacom/isdv4-5146.tablet 31024 -usr/share/libwacom/isdv4-5122.tablet 31023 -usr/share/libwacom/isdv4-5110.tablet 31022 -usr/share/libwacom/isdv4-50fd.tablet 31021 -usr/share/libwacom/isdv4-50f8.tablet 31020 -usr/share/libwacom/isdv4-50f1.tablet 31019 -usr/share/libwacom/isdv4-50b8.tablet 31018 -usr/share/libwacom/isdv4-50b6.tablet 31017 -usr/share/libwacom/isdv4-50b4.tablet 31016 -usr/share/libwacom/isdv4-509d.tablet 31015 -usr/share/libwacom/isdv4-5099.tablet 31014 -usr/share/libwacom/isdv4-5090.tablet 31013 -usr/share/libwacom/isdv4-504a.tablet 31012 -usr/share/libwacom/isdv4-5048.tablet 31011 -usr/share/libwacom/isdv4-5044.tablet 31010 -usr/share/libwacom/isdv4-5040.tablet 31009 -usr/share/libwacom/isdv4-503f.tablet 31008 -usr/share/libwacom/isdv4-503e.tablet 31007 -usr/share/libwacom/isdv4-502a.tablet 31006 -usr/share/libwacom/isdv4-5014.tablet 31005 -usr/share/libwacom/isdv4-5013.tablet 31004 -usr/share/libwacom/isdv4-5010.tablet 31003 -usr/share/libwacom/isdv4-5002.tablet 31002 -usr/share/libwacom/isdv4-5000.tablet 31001 -usr/share/libwacom/isdv4-486a.tablet 31000 -usr/share/libwacom/isdv4-485e.tablet 30999 -usr/share/libwacom/isdv4-484c.tablet 30998 -usr/share/libwacom/isdv4-4831.tablet 30997 -usr/share/libwacom/isdv4-4824.tablet 30996 -usr/share/libwacom/isdv4-4822.tablet 30995 -usr/share/libwacom/isdv4-481a.tablet 30994 -usr/share/libwacom/isdv4-4814.tablet 30993 -usr/share/libwacom/isdv4-4809.tablet 30992 -usr/share/libwacom/isdv4-4807.tablet 30991 -usr/share/libwacom/isdv4-4800.tablet 30990 -usr/share/libwacom/isdv4-4004.tablet 30989 -usr/share/libwacom/isdv4-12c.tablet 30988 -usr/share/libwacom/isdv4-124.tablet 30987 -usr/share/libwacom/isdv4-117.tablet 30986 -usr/share/libwacom/isdv4-116.tablet 30985 -usr/share/libwacom/isdv4-114.tablet 30984 -usr/share/libwacom/isdv4-10f.tablet 30983 -usr/share/libwacom/isdv4-10e.tablet 30982 -usr/share/libwacom/isdv4-10d.tablet 30981 -usr/share/libwacom/isdv4-104.tablet 30980 -usr/share/libwacom/isdv4-101.tablet 30979 -usr/share/libwacom/isdv4-100.tablet 30978 -usr/share/libwacom/intuos-s-pt.tablet 30977 -usr/share/libwacom/intuos-s-p.tablet 30976 -usr/share/libwacom/intuos-s-pt2.tablet 30975 -usr/share/libwacom/intuos-s-p3-wl.tablet 30974 -usr/share/libwacom/intuos-s-p3.tablet 30973 -usr/share/libwacom/intuos-s-p2.tablet 30972 -usr/share/libwacom/intuos-pro-s.tablet 30971 -usr/share/libwacom/intuos-pro-m.tablet 30970 -usr/share/libwacom/intuos-pro-l.tablet 30969 -usr/share/libwacom/intuos-pro-2-m-wl.tablet 30968 -usr/share/libwacom/intuos-pro-2-m.tablet 30967 -usr/share/libwacom/intuos-pro-2-l-wl.tablet 30966 -usr/share/libwacom/intuos-pro-2-l.tablet 30965 -usr/share/libwacom/intuos-m-pt.tablet 30964 -usr/share/libwacom/intuos-m-p.tablet 30963 -usr/share/libwacom/intuos-m-pt2.tablet 30962 -usr/share/libwacom/intuos-m-p3-wl.tablet 30961 -usr/share/libwacom/intuos-m-p3.tablet 30960 -usr/share/libwacom/intuos-m-p2.tablet 30959 -usr/share/libwacom/intuos-9x12.tablet 30958 -usr/share/libwacom/intuos-6x8.tablet 30957 -usr/share/libwacom/intuos5-touch-s.tablet 30956 -usr/share/libwacom/intuos5-touch-m.tablet 30955 -usr/share/libwacom/intuos5-touch-l.tablet 30954 -usr/share/libwacom/intuos5-s.tablet 30953 -usr/share/libwacom/intuos5-m.tablet 30952 -usr/share/libwacom/intuos-4x5.tablet 30951 -usr/share/libwacom/intuos4-8x13.tablet 30950 -usr/share/libwacom/intuos4-6x9-wl.tablet 30949 -usr/share/libwacom/intuos4-6x9.tablet 30948 -usr/share/libwacom/intuos4-4x6.tablet 30947 -usr/share/libwacom/intuos4-12x19.tablet 30946 -usr/share/libwacom/intuos3-9x12.tablet 30945 -usr/share/libwacom/intuos3-6x8.tablet 30944 -usr/share/libwacom/intuos3-6x11.tablet 30943 -usr/share/libwacom/intuos3-4x6.tablet 30942 -usr/share/libwacom/intuos3-4x5.tablet 30941 -usr/share/libwacom/intuos3-12x19.tablet 30940 -usr/share/libwacom/intuos3-12x12.tablet 30939 -usr/share/libwacom/intuos2-9x12.tablet 30938 -usr/share/libwacom/intuos2-6x8.tablet 30937 -usr/share/libwacom/intuos2-4x5.tablet 30936 -usr/share/libwacom/intuos2-12x18.tablet 30935 -usr/share/libwacom/intuos2-12x12.tablet 30934 -usr/share/libwacom/intuos-12x18.tablet 30933 -usr/share/libwacom/intuos-12x12.tablet 30932 -usr/share/libwacom/huion-h610-pro.tablet 30931 -usr/share/libwacom/graphire-wireless-8x6.tablet 30930 -usr/share/libwacom/graphire-usb.tablet 30929 -usr/share/libwacom/graphire4-6x8.tablet 30928 -usr/share/libwacom/graphire4-4x5.tablet 30927 -usr/share/libwacom/graphire3-6x8.tablet 30926 -usr/share/libwacom/graphire3-4x5.tablet 30925 -usr/share/libwacom/graphire2-5x7.tablet 30924 -usr/share/libwacom/graphire2-4x5.tablet 30923 -usr/share/libwacom/generic.tablet 30922 -usr/share/libwacom/elan-2537.tablet 30921 -usr/share/libwacom/elan-24db.tablet 30920 -usr/share/libwacom/elan-22e2.tablet 30919 -usr/share/libwacom/ek-remote.tablet 30918 -usr/share/libwacom/dtu-2231.tablet 30917 -usr/share/libwacom/dtu-1931.tablet 30916 -usr/share/libwacom/dtu-1631.tablet 30915 -usr/share/libwacom/dtu-1141.tablet 30914 -usr/share/libwacom/dtu-1141b.tablet 30913 -usr/share/libwacom/dtu-1031x.tablet 30912 -usr/share/libwacom/dtu-1031.tablet 30911 -usr/share/libwacom/dtk-2451.tablet 30910 -usr/share/libwacom/dtk-2241.tablet 30909 -usr/share/libwacom/dtk-1651.tablet 30908 -usr/share/libwacom/dti-520.tablet 30907 -usr/share/libwacom/dth-2452.tablet 30906 -usr/share/libwacom/dth-2242.tablet 30905 -usr/share/libwacom/dth-1152.tablet 30904 -usr/share/libwacom/dtf-720.tablet 30903 -usr/share/libwacom/dell-canvas-27.tablet 30902 -usr/share/libwacom/cintiq-pro-32.tablet 30901 -usr/share/libwacom/cintiq-pro-24-pt.tablet 30900 -usr/share/libwacom/cintiq-pro-24-p.tablet 30899 -usr/share/libwacom/cintiq-pro-16.tablet 30898 -usr/share/libwacom/cintiq-pro-13.tablet 30897 -usr/share/libwacom/cintiq-companion.tablet 30896 -usr/share/libwacom/cintiq-companion-hybrid.tablet 30895 -usr/share/libwacom/cintiq-companion-2.tablet 30894 -usr/share/libwacom/cintiq-27hdt.tablet 30893 -usr/share/libwacom/cintiq-27hd.tablet 30892 -usr/share/libwacom/cintiq-24hd-touch.tablet 30891 -usr/share/libwacom/cintiq-24hd.tablet 30890 -usr/share/libwacom/cintiq-22hdt.tablet 30889 -usr/share/libwacom/cintiq-22hd.tablet 30888 -usr/share/libwacom/cintiq-21ux.tablet 30887 -usr/share/libwacom/cintiq-21ux2.tablet 30886 -usr/share/libwacom/cintiq-20wsx.tablet 30885 -usr/share/libwacom/cintiq-13hdt.tablet 30884 -usr/share/libwacom/cintiq-13hd.tablet 30883 -usr/share/libwacom/cintiq-12wx.tablet 30882 -usr/share/libwacom/bamboo-pad-wireless.tablet 30881 -usr/share/libwacom/bamboo-pad.tablet 30880 -usr/share/libwacom/bamboo-one.tablet 30879 -usr/share/libwacom/bamboo-4fg-s-t.tablet 30878 -usr/share/libwacom/bamboo-4fg-s-pt.tablet 30877 -usr/share/libwacom/bamboo-4fg-se-s-pt.tablet 30876 -usr/share/libwacom/bamboo-4fg-se-m-pt.tablet 30875 -usr/share/libwacom/bamboo-4fg-fun-s.tablet 30874 -usr/share/libwacom/bamboo-4fg-fun-m.tablet 30873 -usr/share/libwacom/bamboo-2fg-s-t.tablet 30872 -usr/share/libwacom/bamboo-2fg-s-pt.tablet 30871 -usr/share/libwacom/bamboo-2fg-s-p.tablet 30870 -usr/share/libwacom/bamboo-2fg-m-p.tablet 30869 -usr/share/libwacom/bamboo-2fg-fun-s-pt.tablet 30868 -usr/share/libwacom/bamboo-2fg-fun-m-pt.tablet 30867 -usr/share/libwacom/bamboo-16fg-s-t.tablet 30866 -usr/share/libwacom/bamboo-16fg-s-pt.tablet 30865 -usr/share/libwacom/bamboo-16fg-s-p.tablet 30864 -usr/share/libwacom/bamboo-16fg-m-pt.tablet 30863 -usr/share/libwacom/bamboo-0fg-s-p.tablet 30862 -usr/share/libwacom/libwacom.stylus 30861 -usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders.cache 30860 -usr/lib/x86_64-linux-gnu/libcanberra-0.30/libcanberra-pulse.so 30859 -usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecore-12.2.so 30857 -usr/lib/x86_64-linux-gnu/liborc-0.4.so.0.28.0 30856 -usr/lib/x86_64-linux-gnu/libspeexdsp.so.1.5.0 30855 -usr/lib/x86_64-linux-gnu/libsoxr.so.0.1.1 30854 -usr/lib/x86_64-linux-gnu/libgomp.so.1.0.0 30853 -etc/pulse/daemon.conf 30852 -etc/pulse/default.pa 30851 -usr/lib/pulse-12.2/modules/module-device-restore.so 30850 -usr/lib/pulse-12.2/modules/libprotocol-native.so 30849 -usr/lib/pulse-12.2/modules/module-stream-restore.so 30848 -usr/lib/pulse-12.2/modules/module-card-restore.so 30847 -usr/lib/pulse-12.2/modules/module-augment-properties.so 30846 -usr/lib/pulse-12.2/modules/module-switch-on-port-available.so 30845 -usr/lib/pulse-12.2/modules/module-udev-detect.so 30844 -usr/lib/pulse-12.2/modules/module-alsa-card.so 30843 -usr/lib/pulse-12.2/modules/libalsa-util.so 30842 -usr/share/pulseaudio/alsa-mixer/profile-sets/default.conf 30841 -usr/share/alsa/cards/aliases.conf 30840 -usr/share/alsa/pcm/default.conf 30839 -usr/share/alsa/pcm/dmix.conf 30838 -usr/share/alsa/pcm/dsnoop.conf 30837 -usr/share/alsa/cards/HDA-Intel.conf 30836 -usr/share/alsa/pcm/front.conf 30835 -usr/share/alsa/pcm/surround21.conf 30834 -usr/share/alsa/pcm/surround40.conf 30833 -usr/share/alsa/pcm/surround41.conf 30832 -usr/share/alsa/pcm/surround50.conf 30831 -usr/share/alsa/pcm/surround51.conf 30830 -usr/share/alsa/pcm/surround71.conf 30829 -usr/share/alsa/pcm/iec958.conf 30828 -usr/share/alsa/pcm/hdmi.conf 30827 -usr/share/alsa/pcm/modem.conf 30826 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-front-mic.conf 30825 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-mic.conf.common 30824 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-rear-mic.conf 30823 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-internal-mic.conf 30822 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-dock-mic.conf 30821 -usr/share/pulseaudio/alsa-mixer/paths/analog-input.conf 30820 -usr/share/pulseaudio/alsa-mixer/paths/analog-input.conf.common 30819 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-mic.conf 30818 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-linein.conf 30817 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-aux.conf 30816 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-video.conf 30815 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-tvtuner.conf 30814 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-fm.conf 30813 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-mic-line.conf 30812 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-headphone-mic.conf 30811 -usr/share/pulseaudio/alsa-mixer/paths/analog-input-headset-mic.conf 30810 -usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf 30809 -usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf.common 30808 -usr/share/pulseaudio/alsa-mixer/paths/analog-output-lineout.conf 30807 -usr/share/pulseaudio/alsa-mixer/paths/analog-output-speaker.conf 30806 -usr/share/pulseaudio/alsa-mixer/paths/analog-output-headphones.conf 30805 -usr/share/pulseaudio/alsa-mixer/paths/analog-output-headphones-2.conf 30804 -usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_pcm_a52.so 30803 -usr/lib/x86_64-linux-gnu/libavcodec.so.58.35.100 30802 -usr/lib/x86_64-linux-gnu/libavutil.so.56.22.100 30801 -usr/lib/x86_64-linux-gnu/libavresample.so.4.0.0 30800 -usr/lib/x86_64-linux-gnu/libswresample.so.3.3.100 30799 -usr/lib/x86_64-linux-gnu/libvpx.so.5.0.0 30798 -usr/lib/x86_64-linux-gnu/libwebpmux.so.3.0.1 30797 -usr/lib/x86_64-linux-gnu/libwebp.so.6.0.2 30796 -usr/lib/x86_64-linux-gnu/libcrystalhd.so.3.6 30795 -usr/lib/x86_64-linux-gnu/librsvg-2.so.2.44.10 30794 -usr/lib/x86_64-linux-gnu/libzvbi.so.0.13.2 30793 -usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.7 30792 -usr/lib/x86_64-linux-gnu/libaom.so.0 30791 -usr/lib/x86_64-linux-gnu/libcodec2.so.0.8.1 30790 -usr/lib/x86_64-linux-gnu/libgsm.so.1.0.18 30789 -usr/lib/x86_64-linux-gnu/libmp3lame.so.0.0.0 30788 -usr/lib/x86_64-linux-gnu/libopenjp2.so.2.3.0 30787 -usr/lib/x86_64-linux-gnu/libopus.so.0.7.0 30786 -usr/lib/x86_64-linux-gnu/libshine.so.3.0.1 30785 -usr/lib/x86_64-linux-gnu/libspeex.so.1.5.0 30784 -usr/lib/x86_64-linux-gnu/libtheoraenc.so.1.1.2 30783 -usr/lib/x86_64-linux-gnu/libtheoradec.so.1.1.4 30782 -usr/lib/x86_64-linux-gnu/libtwolame.so.0.0.0 30781 -usr/lib/x86_64-linux-gnu/libwavpack.so.1.2.0 30780 -usr/lib/x86_64-linux-gnu/libx264.so.155 30779 -usr/lib/x86_64-linux-gnu/libx265.so.165 30778 -usr/lib/x86_64-linux-gnu/libxvidcore.so.4.3 30777 -usr/lib/x86_64-linux-gnu/libva.so.2.400.0 30776 -usr/lib/x86_64-linux-gnu/libva-drm.so.2.400.0 30775 -usr/lib/x86_64-linux-gnu/libva-x11.so.2.400.0 30774 -usr/lib/x86_64-linux-gnu/libvdpau.so.1.0.0 30773 -usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0 30772 -usr/share/pulseaudio/alsa-mixer/paths/hdmi-output-0.conf 30771 -usr/share/pulseaudio/alsa-mixer/paths/hdmi-output-1.conf 30770 -usr/share/pulseaudio/alsa-mixer/paths/hdmi-output-2.conf 30769 -usr/lib/pulse-12.2/modules/module-native-protocol-unix.so 30768 -usr/lib/pulse-12.2/modules/module-default-device-restore.so 30767 -usr/lib/pulse-12.2/modules/module-rescue-streams.so 30766 -usr/lib/pulse-12.2/modules/module-always-sink.so 30765 -usr/lib/pulse-12.2/modules/module-intended-roles.so 30764 -usr/lib/pulse-12.2/modules/module-suspend-on-idle.so 30763 -usr/lib/pulse-12.2/modules/module-console-kit.so 30762 -usr/lib/pulse-12.2/modules/module-systemd-login.so 30761 -usr/lib/pulse-12.2/modules/module-position-event-sounds.so 30760 -usr/lib/pulse-12.2/modules/module-role-cork.so 30759 -usr/lib/pulse-12.2/modules/module-filter-heuristics.so 30758 -usr/lib/pulse-12.2/modules/module-filter-apply.so 30757 -usr/share/icons/Adwaita/cursor.theme 30756 -usr/share/icons/Adwaita/cursors/left_ptr 30755 -usr/lib/x86_64-linux-gnu/mutter/Clutter-3.typelib 30754 -usr/lib/x86_64-linux-gnu/girepository-1.0/Clutter-1.0.typelib 30753 -usr/lib/x86_64-linux-gnu/girepository-1.0/cairo-1.0.typelib 30752 -usr/lib/x86_64-linux-gnu/girepository-1.0/Json-1.0.typelib 30751 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gio-2.0.typelib 30750 -usr/lib/x86_64-linux-gnu/girepository-1.0/GObject-2.0.typelib 30749 -usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib 30748 -usr/lib/x86_64-linux-gnu/girepository-1.0/GL-1.0.typelib 30747 -usr/lib/x86_64-linux-gnu/mutter/CoglPango-3.typelib 30746 -usr/lib/x86_64-linux-gnu/girepository-1.0/PangoCairo-1.0.typelib 30745 -usr/lib/x86_64-linux-gnu/girepository-1.0/Pango-1.0.typelib 30744 -usr/lib/x86_64-linux-gnu/mutter/Cogl-3.typelib 30743 -usr/lib/x86_64-linux-gnu/girepository-1.0/Atk-1.0.typelib 30742 -usr/lib/gjs/girepository-1.0/GjsPrivate-1.0.typelib 30741 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gtk-3.0.typelib 30740 -usr/lib/x86_64-linux-gnu/girepository-1.0/xlib-2.0.typelib 30739 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gdk-3.0.typelib 30738 -usr/lib/x86_64-linux-gnu/girepository-1.0/GdkPixbuf-2.0.typelib 30737 -usr/lib/x86_64-linux-gnu/girepository-1.0/GModule-2.0.typelib 30736 -usr/lib/gnome-shell/Shell-0.1.typelib 30735 -usr/lib/gnome-shell/St-1.0.typelib 30734 -usr/lib/x86_64-linux-gnu/mutter/Cally-3.typelib 30733 -usr/lib/gnome-shell/ShellMenu-0.1.typelib 30732 -usr/lib/x86_64-linux-gnu/girepository-1.0/PolkitAgent-1.0.typelib 30731 -usr/lib/x86_64-linux-gnu/girepository-1.0/Polkit-1.0.typelib 30730 -usr/lib/x86_64-linux-gnu/girepository-1.0/NM-1.0.typelib 30729 -usr/lib/x86_64-linux-gnu/mutter/Meta-3.typelib 30728 -usr/lib/x86_64-linux-gnu/girepository-1.0/xfixes-4.0.typelib 30727 -usr/lib/x86_64-linux-gnu/girepository-1.0/GDesktopEnums-3.0.typelib 30726 -usr/lib/gnome-shell/Gvc-1.0.typelib 30725 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gcr-3.typelib 30724 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gck-1.typelib 30723 -usr/lib/x86_64-linux-gnu/mutter/ClutterX11-3.typelib 30722 -usr/lib/x86_64-linux-gnu/girepository-1.0/GnomeDesktop-3.0.typelib 30721 -usr/share/gnome-shell/gnome-shell-dbus-interfaces.gresource 30720 -usr/lib/girepository-1.0/AccountsService-1.0.typelib 30719 -usr/lib/x86_64-linux-gnu/girepository-1.0/Soup-2.4.typelib 30718 -usr/lib/x86_64-linux-gnu/girepository-1.0/IBus-1.0.typelib 30717 -usr/lib/x86_64-linux-gnu/girepository-1.0/Atspi-2.0.typelib 30716 -usr/lib/x86_64-linux-gnu/girepository-1.0/DBus-1.0.typelib 30715 -usr/lib/x86_64-linux-gnu/girepository-1.0/Rsvg-2.0.typelib 30714 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gdm-1.0.typelib 30713 -usr/lib/x86_64-linux-gnu/girepository-1.0/GWeather-3.0.typelib 30712 -usr/lib/x86_64-linux-gnu/girepository-1.0/Geoclue-2.0.typelib 30711 -usr/lib/x86_64-linux-gnu/girepository-1.0/Cogl-1.0.typelib 30710 -usr/lib/x86_64-linux-gnu/girepository-1.0/Cogl-2.0.typelib 30709 -usr/share/gnome-shell/modes/classic.json 30708 -usr/share/gnome-shell/modes/gdm-tails.json 30707 -etc/xdg/gnome-mimeapps.list 30706 -usr/local/share/mime/mime.cache 30705 -usr/share/mime/mime.cache 30704 -usr/share/gdm/greeter/applications/mimeapps.list 30703 -usr/share/applications/gnome-mimeapps.list 30702 -usr/share/applications/mimeinfo.cache 30701 -usr/share/gdm/greeter/applications/mime-dummy-handler.desktop 30700 -usr/share/applications/gnome-bluetooth-panel.desktop 30699 -usr/share/applications/gnome-info-overview-panel.desktop 30698 -usr/share/applications/gnome-wifi-panel.desktop 30697 -usr/share/applications/libreoffice-xsltfilter.desktop 30696 -usr/share/applications/org.gnome.Screenshot.desktop 30695 -usr/share/applications/org.gnome.Evince.desktop 30694 -usr/share/applications/pidgin.desktop 30693 -usr/share/applications/seahorse-pgp-keys.desktop 30692 -usr/share/applications/org.gnome.Evolution-alarm-notify.desktop 30691 -usr/share/applications/simple-scan.desktop 30690 -usr/share/applications/org.gnome.Shell.desktop 30689 -usr/share/applications/python3.7.desktop 30688 -usr/share/applications/gnome-sound-panel.desktop 30687 -usr/share/applications/synaptic.desktop 30686 -usr/share/applications/tails-persistence-delete.desktop 30685 -usr/share/applications/gnome-disk-image-mounter.desktop 30684 -usr/share/applications/thunderbird.desktop 30683 -usr/share/applications/org.gnome.Totem.desktop 30682 -usr/share/applications/ibus-setup-chewing.desktop 30681 -usr/share/applications/ibus-setup-anthy.desktop 30680 -usr/share/applications/gcr-prompter.desktop 30679 -usr/share/applications/net.poedit.PoeditURI.desktop 30678 -usr/share/applications/gcr-viewer.desktop 30677 -usr/share/applications/gnome-wacom-panel.desktop 30676 -usr/share/applications/tails-about.desktop 30675 -usr/share/applications/org.gnome.PowerStats.desktop 30674 -usr/share/applications/python2.7.desktop 30673 -usr/share/applications/gnome-thunderbolt-panel.desktop 30672 -usr/share/applications/libreoffice-startcenter.desktop 30671 -usr/share/applications/tails-documentation.desktop 30670 -usr/share/applications/gnome-control-center.desktop 30669 -usr/share/applications/org.freedesktop.IBus.Panel.Extension.Gtk3.desktop 30668 -usr/share/applications/gnome-search-panel.desktop 30667 -usr/share/applications/org.gnome.FileRoller.desktop 30666 -usr/share/applications/tails-installer.desktop 30665 -usr/share/applications/vim.desktop 30664 -usr/share/applications/unlock-veracrypt-volumes.desktop 30663 -usr/share/applications/yelp.desktop 30662 -usr/share/applications/tor-browser.desktop 30661 -usr/share/applications/brasero.desktop 30660 -usr/share/applications/unsafe-browser.desktop 30659 -usr/share/applications/org.gnome.Terminal.desktop 30658 -usr/share/applications/org.gnome.SoundJuicer.desktop 30657 -usr/share/applications/org.gnome.Shell.PortalHelper.desktop 30656 -usr/share/applications/gnome-power-panel.desktop 30655 -usr/share/applications/audacity.desktop 30654 -usr/share/applications/org.gnome.gedit.desktop 30653 -usr/share/applications/ibus-setup-libpinyin.desktop 30652 -usr/share/applications/tails-persistence-setup.desktop 30651 -usr/share/applications/nm-applet.desktop 30650 -usr/share/applications/gnome-region-panel.desktop 30649 -usr/share/applications/ibus-setup.desktop 30648 -usr/share/applications/gnome-keyboard-panel.desktop 30647 -usr/share/applications/gnome-notifications-panel.desktop 30646 -usr/share/applications/gkbd-keyboard-display.desktop 30645 -usr/share/applications/seahorse.desktop 30644 -usr/share/applications/libreoffice-calc.desktop 30643 -usr/share/applications/brasero-nautilus.desktop 30642 -usr/share/applications/gnome-shell-extension-prefs.desktop 30641 -usr/share/applications/bookletimposer.desktop 30640 -usr/share/applications/libreoffice-impress.desktop 30639 -usr/share/applications/ibus-setup-hangul.desktop 30638 -usr/share/applications/gnome-datetime-panel.desktop 30637 -usr/share/applications/org.gnome.SoundRecorder.desktop 30636 -usr/share/applications/gnome-universal-access-panel.desktop 30635 -usr/share/applications/eog.desktop 30634 -usr/share/applications/electrum.desktop 30633 -usr/share/applications/onioncircuits.desktop 30632 -usr/share/applications/org.keepassxc.KeePassXC.desktop 30631 -usr/share/applications/gnome-color-panel.desktop 30630 -usr/share/applications/dasher.desktop 30629 -usr/share/applications/gnome-mouse-panel.desktop 30628 -usr/share/applications/gnome-system-monitor.desktop 30627 -usr/share/applications/libreoffice-writer.desktop 30626 -usr/share/applications/seahorse-pgp-encrypted.desktop 30625 -usr/share/applications/gnome-disk-image-writer.desktop 30624 -usr/share/applications/gnome-printers-panel.desktop 30623 -usr/share/applications/org.gnome.Calculator.desktop 30622 -usr/share/applications/gtkhash.desktop 30621 -usr/share/applications/ibus-setup-libbopomofo.desktop 30620 -usr/share/applications/gnome-default-apps-panel.desktop 30619 -usr/share/applications/seahorse-pgp-signature.desktop 30618 -usr/share/applications/gimp.desktop 30617 -usr/share/applications/whisperback.desktop 30616 -usr/share/applications/gnome-removable-media-panel.desktop 30615 -usr/share/applications/gnome-display-panel.desktop 30614 -usr/share/applications/gnome-sharing-panel.desktop 30613 -usr/share/applications/evolution-calendar.desktop 30612 -usr/share/applications/libreoffice-draw.desktop 30611 -usr/share/applications/org.boum.tails.additional-software-config.desktop 30610 -usr/share/applications/gnome-network-panel.desktop 30609 -usr/share/applications/gnome-privacy-panel.desktop 30608 -usr/share/applications/net.poedit.Poedit.desktop 30607 -usr/share/applications/gnome-background-panel.desktop 30606 -usr/share/applications/inkscape.desktop 30605 -usr/share/applications/nautilus-autorun-software.desktop 30604 -usr/share/applications/gnome-user-accounts-panel.desktop 30603 -usr/share/applications/gnome-system-monitor-kde.desktop 30602 -usr/share/applications/org.gnome.Nautilus.desktop 30601 -usr/share/applications/org.freedesktop.IBus.Panel.Emojier.desktop 30600 -usr/share/applications/org.gnome.DiskUtility.desktop 30599 -usr/share/applications/mutter.desktop 30598 -usr/share/applications/org.gnome.Evince-previewer.desktop 30597 -usr/share/applications/onionshare.desktop 30596 -usr/share/applications/root-terminal.desktop 30595 -usr/share/gnome-shell/gnome-shell-theme.gresource 30594 -usr/share/gnome-shell/gnome-shell-osk-layouts.gresource 30593 -usr/share/gnome-shell/theme/gnome-classic.css 30592 -usr/share/locale/en/LC_MESSAGES/gnome-desktop-3.0.mo 30591 -usr/share/tails/desktop_wallpaper.png 30590 -usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so 30589 -etc/fonts/fonts.conf 30588 -usr/share/fontconfig/conf.avail/10-hinting-slight.conf 30587 -usr/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf 30586 -usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf 30585 -etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans-mono.conf 30584 -etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans.conf 30583 -etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-serif.conf 30582 -etc/fonts/conf.avail/20-unhint-small-dejavu-sans-mono.conf 30581 -etc/fonts/conf.avail/20-unhint-small-dejavu-sans.conf 30580 -etc/fonts/conf.avail/20-unhint-small-dejavu-serif.conf 30579 -usr/share/fontconfig/conf.avail/20-unhint-small-vera.conf 30578 -usr/share/fontconfig/conf.avail/30-metric-aliases.conf 30577 -usr/share/fontconfig/conf.avail/30-opensymbol.conf 30576 -usr/share/fontconfig/conf.avail/40-nonlatin.conf 30575 -usr/share/fontconfig/conf.avail/45-generic.conf 30574 -usr/share/fontconfig/conf.avail/45-latin.conf 30573 -usr/share/fontconfig/conf.avail/49-sansserif.conf 30572 -usr/share/fontconfig/conf.avail/50-user.conf 30571 -usr/share/fontconfig/conf.avail/51-local.conf 30570 -etc/fonts/conf.avail/57-dejavu-sans-mono.conf 30569 -etc/fonts/conf.avail/57-dejavu-sans.conf 30568 -etc/fonts/conf.avail/57-dejavu-serif.conf 30567 -etc/fonts/conf.avail/58-dejavu-lgc-sans-mono.conf 30566 -etc/fonts/conf.avail/58-dejavu-lgc-sans.conf 30565 -etc/fonts/conf.avail/58-dejavu-lgc-serif.conf 30564 -usr/share/fontconfig/conf.avail/60-generic.conf 30563 -usr/share/fontconfig/conf.avail/60-latin.conf 30562 -etc/fonts/conf.avail/65-culmus.conf 30561 -usr/share/fontconfig/conf.avail/65-fonts-persian.conf 30560 -usr/share/fontconfig/conf.avail/65-nonlatin.conf 30559 -usr/share/fontconfig/conf.avail/69-unifont.conf 30558 -usr/share/fontconfig/conf.avail/70-fonts-noto-cjk.conf 30557 -usr/share/fontconfig/conf.avail/70-no-bitmaps.conf 30556 -usr/share/fontconfig/conf.avail/80-delicious.conf 30555 -usr/share/fontconfig/conf.avail/90-fonts-linux-libertine.conf 30554 -usr/share/fontconfig/conf.avail/90-synthetic.conf 30553 -usr/share/fontconfig/conf.avail/10-autohint.conf 30552 -usr/share/fontconfig/conf.avail/10-hinting-full.conf 30551 -usr/share/fontconfig/conf.avail/10-hinting-medium.conf 30550 -usr/share/fontconfig/conf.avail/10-hinting-none.conf 30549 -usr/share/fontconfig/conf.avail/10-no-sub-pixel.conf 30548 -usr/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf 30547 -usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf 30546 -usr/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf 30545 -usr/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf 30544 -usr/share/fontconfig/conf.avail/10-unhinted.conf 30543 -usr/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf 30542 -usr/share/fontconfig/conf.avail/11-lcdfilter-light.conf 30541 -usr/share/fontconfig/conf.avail/25-unhint-nonlatin.conf 30540 -usr/share/fontconfig/conf.avail/65-khmer.conf 30539 -usr/share/fontconfig/conf.avail/70-force-bitmaps.conf 30538 -usr/share/fontconfig/conf.avail/70-yes-bitmaps.conf 30537 -usr/share/fonts/.uuid 30536 -var/cache/fontconfig/ad3800a6-0853-5900-ac2b-6a45e906a034-le64.cache-7 30535 -usr/local/share/fonts/.uuid 30534 -var/cache/fontconfig/a19c77ef-2b6e-5d56-80fa-aa461c22a33c-le64.cache-7 30533 -usr/share/fonts/X11/.uuid 30532 -var/cache/fontconfig/635775a3-6681-5500-bfb3-fc75bae7ab71-le64.cache-7 30531 -usr/share/fonts/cMap/.uuid 30530 -var/cache/fontconfig/e0df4ba7-1e1e-53f4-99ac-034e136dea90-le64.cache-7 30529 -usr/share/fonts/cmap/.uuid 30528 -var/cache/fontconfig/8c262b76-19e2-5a0e-970a-3c6be641c3de-le64.cache-7 30527 -usr/share/fonts/opentype/.uuid 30526 -var/cache/fontconfig/c53c919e-4688-5813-a778-9497aaad292b-le64.cache-7 30525 -usr/share/fonts/truetype/.uuid 30524 -var/cache/fontconfig/ad91de03-2bc9-5cbd-baed-449447b4cef2-le64.cache-7 30523 -usr/share/fonts/X11/100dpi/.uuid 30522 -var/cache/fontconfig/c3eb68e6-f2df-5253-bdea-96baf8b64c94-le64.cache-7 30521 -usr/share/fonts/X11/75dpi/.uuid 30520 -var/cache/fontconfig/9b10e8b4-c6f7-5d9a-b62d-df9dfe9f040e-le64.cache-7 30519 -usr/share/fonts/X11/Type1/.uuid 30518 -var/cache/fontconfig/7037cf17-dab7-5805-ac14-89407957a70b-le64.cache-7 30517 -usr/share/fonts/X11/encodings/.uuid 30516 -var/cache/fontconfig/932c83c7-a3fe-5e2e-af19-99a73a1218b0-le64.cache-7 30515 -usr/share/fonts/X11/misc/.uuid 30514 -var/cache/fontconfig/0573c588-4384-5d77-a629-20cf4267681a-le64.cache-7 30513 -usr/share/fonts/X11/util/.uuid 30512 -var/cache/fontconfig/d6a528ca-d9d3-528a-bbf0-657522efbfb9-le64.cache-7 30511 -usr/share/poppler/cMap/Adobe-CNS1/.uuid 30510 -var/cache/fontconfig/fe110b8d-52e9-50d6-93d5-7350b6dc3ffc-le64.cache-7 30509 -usr/share/poppler/cMap/Adobe-GB1/.uuid 30508 -var/cache/fontconfig/cba3b8e3-c250-50f8-9d30-dd9cdff6726c-le64.cache-7 30507 -usr/share/poppler/cMap/Adobe-Japan1/.uuid 30506 -var/cache/fontconfig/209cd66f-9cd8-59b1-a557-ee9a5b16532d-le64.cache-7 30505 -usr/share/poppler/cMap/Adobe-Japan2/.uuid 30504 -var/cache/fontconfig/79b9b38c-66eb-5231-ac1a-75f0230ccdac-le64.cache-7 30503 -usr/share/poppler/cMap/Adobe-Korea1/.uuid 30502 -var/cache/fontconfig/977ff0f2-7245-568d-9f74-ec94f3fe3b0c-le64.cache-7 30501 -usr/share/fonts/opentype/cantarell/.uuid 30500 -var/cache/fontconfig/be6c95a9-9096-58da-8f8e-7737a63fdb01-le64.cache-7 30499 -usr/share/fonts/opentype/linux-libertine/.uuid 30498 -var/cache/fontconfig/a4e606c3-ee03-5a47-a10f-679845537ed9-le64.cache-7 30497 -usr/share/fonts/opentype/noto/.uuid 30496 -var/cache/fontconfig/7b04aff5-85ee-51c9-95e7-77727a319b86-le64.cache-7 30495 -usr/share/fonts/truetype/culmus/.uuid 30494 -var/cache/fontconfig/806bd331-c6ac-5da7-b38d-caee6037f4ad-le64.cache-7 30493 -usr/share/fonts/truetype/dejavu/.uuid 30492 -var/cache/fontconfig/8f19a5e0-002f-559a-908f-50a33ba095ed-le64.cache-7 30491 -usr/share/fonts/truetype/liberation/.uuid 30490 -var/cache/fontconfig/d9291cff-b790-56da-811c-af0e14399de4-le64.cache-7 30489 -usr/share/fonts/truetype/noto/.uuid 30488 -var/cache/fontconfig/891027b1-67fe-5175-bb2b-a5d071b33c64-le64.cache-7 30487 -usr/share/fonts/truetype/openoffice/.uuid 30486 -var/cache/fontconfig/b8caebf3-f9ac-5ac9-90ed-cc558bb5e64e-le64.cache-7 30485 -usr/share/fonts/truetype/quicksand/.uuid 30484 -var/cache/fontconfig/aa54cff1-1622-5d6d-b9ef-589d2941d6ad-le64.cache-7 30483 -usr/share/fonts/truetype/ttf-dejavu/.uuid 30482 -var/cache/fontconfig/d36ee6b2-cc19-5653-9dd7-39240bf3fae0-le64.cache-7 30481 -usr/share/fonts/truetype/unifont/.uuid 30480 -var/cache/fontconfig/8037c361-ee31-5e54-bc56-f9ba74a0ef52-le64.cache-7 30479 -usr/share/fonts/X11/encodings/large/.uuid 30478 -var/cache/fontconfig/e8b11c96-1f85-5c63-8bb8-ae0627615d20-le64.cache-7 30477 -usr/share/fonts/truetype/dejavu/DejaVuSans.ttf 30476 -usr/lib/x86_64-linux-gnu/girepository-1.0/Cally-1.0.typelib 30475 -usr/share/desktop-base/futureprototype-theme/lockscreen/gnome-background.xml 30474 -usr/lib/x86_64-linux-gnu/libibus-1.0.so.5.0.519 30473 -usr/share/X11/xkb/rules/evdev.xml 30472 -usr/share/xml/iso-codes/iso_639-2.xml 30471 -usr/share/xml/iso-codes/iso_639-3.xml 30470 -usr/share/xml/iso-codes/iso_3166-1.xml 30469 -usr/bin/ibus-daemon 30468 -usr/share/ibus/keymaps/us 30467 -usr/share/ibus/keymaps/common 30466 -usr/share/ibus/keymaps/modifiers 30465 -usr/share/ibus/component/anthy.xml 30464 -usr/lib/ibus/ibus-engine-anthy 30463 -usr/lib/x86_64-linux-gnu/libgweather-3.so.15.0.0 30462 -usr/lib/systemd/user/xdg-permission-store.service 30461 -usr/lib/x86_64-linux-gnu/libsoup-2.4.so.1.8.0 30460 -usr/lib/x86_64-linux-gnu/libgeocode-glib.so.0.0.0 30459 -usr/share/ibus-anthy/engine/main.py 30457 -usr/libexec/xdg-permission-store 30456 -usr/lib/python3.7/getopt.py 30455 -usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2 30454 -usr/lib/x86_64-linux-gnu/libpsl.so.5.3.1 30453 -usr/lib/x86_64-linux-gnu/libkrb5.so.3.3 30452 -usr/lib/python3.7/xml/__init__.py 30451 -usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1 30450 -usr/lib/python3.7/xml/dom/__init__.py 30449 -usr/lib/python3.7/xml/dom/domreg.py 30448 -usr/lib/python3.7/xml/dom/minidom.py 30447 -usr/lib/python3.7/xml/dom/minicompat.py 30446 -usr/lib/python3.7/xml/dom/xmlbuilder.py 30445 -usr/lib/python3.7/xml/dom/NodeFilter.py 30444 -usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1 30443 -lib/x86_64-linux-gnu/libkeyutils.so.1.8 30442 -usr/share/libgweather/Locations.xml 30441 -usr/share/zoneinfo/Etc/GMT+12 30440 -usr/share/zoneinfo/Africa/Algiers 30439 -usr/share/zoneinfo/Africa/Bangui 30438 -usr/share/zoneinfo/Africa/Blantyre 30437 -usr/share/zoneinfo/Africa/Abidjan 30436 -usr/share/zoneinfo/Atlantic/Cape_Verde 30435 -usr/share/zoneinfo/Africa/Ndjamena 30434 -usr/share/zoneinfo/Africa/Addis_Ababa 30433 -usr/share/zoneinfo/Egypt 30432 -usr/share/zoneinfo/Indian/Kerguelen 30431 -usr/share/zoneinfo/Africa/Accra 30430 -usr/share/zoneinfo/Africa/Bissau 30429 -usr/share/zoneinfo/Africa/Johannesburg 30428 -usr/share/zoneinfo/Africa/Monrovia 30427 -usr/share/zoneinfo/Libya 30426 -usr/share/zoneinfo/Indian/Mauritius 30425 -usr/share/zoneinfo/Africa/Casablanca 30424 -usr/share/zoneinfo/Africa/Windhoek 30423 -usr/share/zoneinfo/Indian/Reunion 30422 -usr/share/zoneinfo/Africa/Sao_Tome 30421 -usr/share/zoneinfo/Indian/Mahe 30420 -usr/share/zoneinfo/Africa/Khartoum 30419 -usr/share/zoneinfo/Africa/Tunis 30418 -usr/share/zoneinfo/Africa/El_Aaiun 30417 -usr/share/zoneinfo/Antarctica/Palmer 30416 -usr/share/zoneinfo/Antarctica/Rothera 30415 -usr/share/zoneinfo/Antarctica/Syowa 30414 -usr/share/zoneinfo/Antarctica/Mawson 30413 -usr/share/zoneinfo/Antarctica/Vostok 30412 -usr/share/zoneinfo/Antarctica/Davis 30411 -usr/share/zoneinfo/Antarctica/Casey 30410 -usr/share/zoneinfo/Antarctica/DumontDUrville 30409 -usr/share/zoneinfo/NZ 30408 -usr/share/zoneinfo/Asia/Kabul 30407 -usr/share/zoneinfo/Asia/Yerevan 30406 -usr/share/zoneinfo/Asia/Baku 30405 -usr/share/zoneinfo/Asia/Dacca 30404 -usr/share/zoneinfo/Asia/Thimbu 30403 -usr/share/zoneinfo/Asia/Brunei 30402 -usr/share/zoneinfo/Asia/Bangkok 30401 -usr/share/zoneinfo/PRC 30400 -usr/share/zoneinfo/Asia/Tbilisi 30399 -usr/share/zoneinfo/Hongkong 30398 -usr/share/zoneinfo/Asia/Calcutta 30397 -usr/share/zoneinfo/Japan 30396 -usr/share/zoneinfo/Asia/Almaty 30395 -usr/share/zoneinfo/Asia/Aqtobe 30394 -usr/share/zoneinfo/Asia/Bishkek 30393 -usr/share/zoneinfo/Asia/Macao 30392 -usr/share/zoneinfo/Asia/Kuala_Lumpur 30391 -usr/share/zoneinfo/Indian/Maldives 30390 -usr/share/zoneinfo/Asia/Choibalsan 30389 -usr/share/zoneinfo/Asia/Hovd 30388 -usr/share/zoneinfo/Asia/Ulaanbaatar 30387 -usr/share/zoneinfo/Asia/Rangoon 30386 -usr/share/zoneinfo/Asia/Kathmandu 30385 -usr/share/zoneinfo/Asia/Pyongyang 30384 -usr/share/zoneinfo/Asia/Karachi 30383 -usr/share/zoneinfo/Asia/Manila 30382 -usr/share/zoneinfo/Singapore 30381 -usr/share/zoneinfo/ROK 30380 -usr/share/zoneinfo/Asia/Colombo 30379 -usr/share/zoneinfo/ROC 30378 -usr/share/zoneinfo/Asia/Dushanbe 30377 -usr/share/zoneinfo/Asia/Ashgabat 30376 -usr/share/zoneinfo/Asia/Tashkent 30375 -usr/share/zoneinfo/Asia/Ho_Chi_Minh 30374 -usr/lib/python3/dist-packages/gi/__init__.py 30373 -usr/share/zoneinfo/America/Anguilla 30372 -usr/share/zoneinfo/America/Barbados 30371 -usr/share/zoneinfo/Atlantic/Bermuda 30370 -usr/share/zoneinfo/America/Danmarkshavn 30369 -usr/share/zoneinfo/America/Godthab 30368 -usr/share/zoneinfo/America/Scoresbysund 30367 -usr/share/zoneinfo/America/Thule 30366 -usr/share/zoneinfo/America/Puerto_Rico 30365 -usr/share/zoneinfo/Pacific/Midway 30364 -usr/share/zoneinfo/Australia/Perth 30363 -usr/share/zoneinfo/Australia/Eucla 30362 -usr/share/zoneinfo/Australia/Adelaide 30361 -usr/share/zoneinfo/Australia/Broken_Hill 30360 -usr/share/zoneinfo/Australia/Darwin 30359 -usr/share/zoneinfo/Australia/Hobart 30358 -usr/share/zoneinfo/Australia/Melbourne 30357 -usr/share/zoneinfo/Australia/ACT 30356 -usr/share/zoneinfo/Australia/Brisbane 30355 -usr/share/zoneinfo/Australia/LHI 30354 -usr/lib/python3.7/pkgutil.py 30353 -usr/share/zoneinfo/Indian/Chagos 30352 -usr/share/zoneinfo/Indian/Christmas 30351 -usr/share/zoneinfo/Indian/Cocos 30350 -usr/share/zoneinfo/Pacific/Rarotonga 30349 -usr/share/zoneinfo/Pacific/Fiji 30348 -usr/share/zoneinfo/Pacific/Tahiti 30347 -usr/share/zoneinfo/Pacific/Marquesas 30346 -usr/share/zoneinfo/Pacific/Gambier 30345 -usr/share/zoneinfo/Pacific/Guam 30344 -usr/share/zoneinfo/Asia/Jakarta 30343 -usr/share/zoneinfo/Asia/Makassar 30342 -usr/share/zoneinfo/Asia/Jayapura 30341 -usr/share/zoneinfo/Pacific/Tarawa 30340 -usr/share/zoneinfo/Pacific/Enderbury 30339 -usr/share/zoneinfo/Pacific/Kiritimati 30338 -usr/share/zoneinfo/Pacific/Majuro 30337 -usr/share/zoneinfo/Pacific/Pohnpei 30336 -usr/share/zoneinfo/Pacific/Chuuk 30335 -usr/share/zoneinfo/Pacific/Nauru 30334 -usr/share/zoneinfo/Pacific/Noumea 30333 -usr/share/zoneinfo/NZ-CHAT 30332 -usr/share/zoneinfo/Pacific/Niue 30331 -usr/share/zoneinfo/Pacific/Norfolk 30330 -usr/share/zoneinfo/Pacific/Palau 30329 -usr/share/zoneinfo/Pacific/Port_Moresby 30328 -usr/share/zoneinfo/Pacific/Pitcairn 30327 -usr/share/zoneinfo/Pacific/Apia 30326 -usr/share/zoneinfo/Pacific/Guadalcanal 30325 -usr/share/zoneinfo/Asia/Dili 30324 -usr/share/zoneinfo/Pacific/Fakaofo 30323 -usr/share/zoneinfo/Pacific/Tongatapu 30322 -usr/share/zoneinfo/Pacific/Funafuti 30321 -usr/share/zoneinfo/Pacific/Honolulu 30320 -usr/share/zoneinfo/Pacific/Wake 30319 -usr/share/zoneinfo/Pacific/Efate 30318 -usr/share/zoneinfo/Pacific/Wallis 30317 -usr/share/zoneinfo/America/Buenos_Aires 30316 -usr/share/zoneinfo/America/Aruba 30315 -usr/share/zoneinfo/America/Nassau 30314 -usr/share/zoneinfo/America/Belize 30313 -usr/share/zoneinfo/America/La_Paz 30312 -usr/share/zoneinfo/America/Araguaina 30311 -usr/share/zoneinfo/America/Bahia 30310 -usr/share/zoneinfo/America/Belem 30309 -usr/share/zoneinfo/America/Boa_Vista 30308 -usr/share/zoneinfo/America/Campo_Grande 30307 -usr/share/zoneinfo/America/Cuiaba 30306 -usr/share/zoneinfo/America/Eirunepe 30305 -usr/share/zoneinfo/America/Fortaleza 30304 -usr/share/zoneinfo/America/Maceio 30303 -usr/share/zoneinfo/America/Manaus 30302 -usr/share/zoneinfo/America/Noronha 30301 -usr/share/zoneinfo/America/Porto_Velho 30300 -usr/share/zoneinfo/America/Recife 30299 -usr/share/zoneinfo/America/Porto_Acre 30298 -usr/share/zoneinfo/America/Sao_Paulo 30297 -usr/lib/python3.7/importlib/util.py 30296 -usr/share/zoneinfo/America/Cayman 30295 -usr/share/zoneinfo/America/Santiago 30294 -usr/share/zoneinfo/Chile/EasterIsland 30293 -usr/share/zoneinfo/America/Bogota 30292 -usr/lib/python3.7/importlib/abc.py 30291 -usr/share/zoneinfo/America/Costa_Rica 30290 -usr/share/zoneinfo/Cuba 30289 -usr/share/zoneinfo/America/Santo_Domingo 30288 -usr/share/zoneinfo/America/Guayaquil 30287 -usr/share/zoneinfo/Pacific/Galapagos 30286 -usr/share/zoneinfo/America/El_Salvador 30285 -usr/share/zoneinfo/Atlantic/Stanley 30284 -usr/share/zoneinfo/America/Cayenne 30283 -usr/share/zoneinfo/America/Guatemala 30282 -usr/share/zoneinfo/America/Guyana 30281 -usr/share/zoneinfo/America/Port-au-Prince 30280 -usr/share/zoneinfo/America/Tegucigalpa 30279 -usr/share/zoneinfo/Jamaica 30278 -usr/share/zoneinfo/America/Martinique 30277 -usr/share/zoneinfo/America/Managua 30276 -usr/share/zoneinfo/America/Asuncion 30275 -usr/share/zoneinfo/America/Lima 30274 -usr/share/zoneinfo/Atlantic/South_Georgia 30273 -usr/share/zoneinfo/America/Paramaribo 30272 -usr/share/zoneinfo/America/Grand_Turk 30271 -usr/share/zoneinfo/America/Montevideo 30270 -usr/share/zoneinfo/America/Caracas 30269 -usr/share/zoneinfo/Europe/Tirane 30268 -usr/share/zoneinfo/Europe/Andorra 30267 -usr/share/zoneinfo/Europe/Vienna 30266 -usr/share/zoneinfo/Europe/Minsk 30265 -usr/share/zoneinfo/Europe/Brussels 30264 -usr/share/zoneinfo/Europe/Belgrade 30263 -usr/share/zoneinfo/Europe/Sofia 30262 -usr/share/zoneinfo/Asia/Nicosia 30261 -usr/share/zoneinfo/Europe/Bratislava 30260 -usr/share/zoneinfo/Europe/Copenhagen 30259 -usr/share/zoneinfo/Europe/Tallinn 30258 -usr/share/zoneinfo/Atlantic/Faeroe 30257 -usr/share/zoneinfo/Europe/Helsinki 30256 -usr/share/zoneinfo/Europe/Paris 30255 -usr/share/zoneinfo/Europe/Berlin 30254 -usr/share/zoneinfo/Europe/Gibraltar 30253 -usr/share/zoneinfo/Europe/Athens 30252 -usr/share/zoneinfo/GB 30251 -usr/share/zoneinfo/Europe/Budapest 30250 -usr/share/zoneinfo/Iceland 30249 -usr/share/zoneinfo/Eire 30248 -usr/share/zoneinfo/Europe/Rome 30247 -usr/share/zoneinfo/CET 30246 -usr/share/zoneinfo/Europe/Riga 30245 -usr/share/zoneinfo/Europe/Busingen 30244 -usr/share/zoneinfo/Europe/Vilnius 30243 -usr/share/zoneinfo/Europe/Luxembourg 30242 -usr/share/zoneinfo/Europe/Malta 30241 -usr/share/zoneinfo/Europe/Chisinau 30240 -usr/share/zoneinfo/Europe/Monaco 30239 -usr/share/zoneinfo/Europe/Amsterdam 30238 -usr/share/zoneinfo/Arctic/Longyearbyen 30237 -usr/share/zoneinfo/Poland 30236 -usr/share/zoneinfo/Atlantic/Azores 30235 -usr/share/zoneinfo/Atlantic/Madeira 30234 -usr/share/zoneinfo/Portugal 30233 -usr/share/zoneinfo/Europe/Bucharest 30232 -usr/share/zoneinfo/Europe/Kaliningrad 30231 -usr/share/zoneinfo/W-SU 30230 -usr/share/zoneinfo/Europe/Samara 30229 -usr/share/zoneinfo/Asia/Yekaterinburg 30228 -usr/share/zoneinfo/Asia/Omsk 30227 -usr/share/zoneinfo/Asia/Novosibirsk 30226 -usr/share/zoneinfo/Asia/Krasnoyarsk 30225 -usr/share/zoneinfo/Asia/Irkutsk 30224 -usr/share/zoneinfo/Asia/Yakutsk 30223 -usr/share/zoneinfo/Asia/Vladivostok 30222 -usr/share/zoneinfo/Asia/Magadan 30221 -usr/share/zoneinfo/Asia/Kamchatka 30220 -usr/share/zoneinfo/Atlantic/Canary 30219 -usr/share/zoneinfo/Europe/Madrid 30218 -usr/share/zoneinfo/Africa/Ceuta 30217 -usr/share/zoneinfo/Europe/Stockholm 30216 -usr/share/zoneinfo/Turkey 30215 -usr/share/zoneinfo/Europe/Kiev 30214 -usr/share/zoneinfo/Asia/Bahrain 30213 -usr/share/zoneinfo/Iran 30212 -usr/share/zoneinfo/Asia/Baghdad 30211 -usr/share/zoneinfo/Israel 30210 -usr/share/zoneinfo/Asia/Amman 30209 -usr/share/zoneinfo/Asia/Aden 30208 -usr/share/zoneinfo/Asia/Beirut 30207 -usr/share/zoneinfo/Asia/Dubai 30206 -usr/share/zoneinfo/Asia/Gaza 30205 -usr/share/zoneinfo/Asia/Damascus 30204 -usr/share/zoneinfo/America/Vancouver 30203 -usr/share/zoneinfo/America/Edmonton 30202 -usr/share/zoneinfo/America/Dawson_Creek 30201 -usr/share/zoneinfo/America/Winnipeg 30200 -usr/share/zoneinfo/America/Regina 30199 -usr/share/zoneinfo/America/Montreal 30198 -usr/share/zoneinfo/America/Atikokan 30197 -usr/share/zoneinfo/America/Halifax 30196 -usr/share/zoneinfo/America/Blanc-Sablon 30195 -usr/share/zoneinfo/America/St_Johns 30194 -usr/lib/python3/dist-packages/gi/_gi.cpython-37m-x86_64-linux-gnu.so 30193 -usr/share/zoneinfo/America/Ensenada 30192 -usr/share/zoneinfo/America/Mazatlan 30191 -usr/share/zoneinfo/America/Mexico_City 30190 -usr/lib/python3/dist-packages/gi/_error.py 30189 -usr/share/zoneinfo/America/Miquelon 30188 -usr/share/zoneinfo/America/Adak 30187 -usr/share/zoneinfo/America/Anchorage 30186 -usr/share/zoneinfo/America/Los_Angeles 30185 -usr/share/zoneinfo/Navajo 30184 -usr/share/zoneinfo/America/Phoenix 30183 -usr/share/zoneinfo/America/Chicago 30182 -usr/share/zoneinfo/posixrules 30181 -usr/lib/python3/dist-packages/gi/_compat.py 30180 -usr/lib/python3/dist-packages/gi/_gi_cairo.cpython-37m-x86_64-linux-gnu.so 30179 -usr/lib/python3/dist-packages/cairo/__init__.py 30178 -usr/lib/python3/dist-packages/cairo/_cairo.cpython-37m-x86_64-linux-gnu.so 30177 -usr/lib/python3/dist-packages/gi/repository/__init__.py 30176 -usr/lib/python3/dist-packages/gi/importer.py 30175 -usr/lib/python3/dist-packages/gi/module.py 30174 -usr/lib/python3/dist-packages/gi/types.py 30173 -usr/lib/python3/dist-packages/gi/_constants.py 30172 -usr/lib/python3/dist-packages/gi/docstring.py 30171 -usr/lib/python3/dist-packages/gi/_propertyhelper.py 30170 -usr/lib/python3/dist-packages/gi/_signalhelper.py 30169 -usr/lib/python3/dist-packages/gi/overrides/__init__.py 30168 -usr/lib/python3/dist-packages/gi/overrides/GLib.py 30167 -usr/lib/python3/dist-packages/gi/_ossighelper.py 30166 -usr/lib/python3/dist-packages/gi/_option.py 30165 -usr/lib/python3.7/optparse.py 30164 -usr/lib/python3/dist-packages/gi/overrides/GObject.py 30163 -usr/lib/python3/dist-packages/gi/overrides/Gio.py 30162 -usr/lib/python3/dist-packages/gi/overrides/IBus.py 30161 -usr/share/ibus-anthy/engine/_config.py 30160 -usr/share/ibus-anthy/engine/factory.py 30159 -usr/share/ibus-anthy/engine/engine.py 30158 -usr/share/X11/xkb/rules/evdev.lst 30157 -usr/lib/girepository-1.0/Anthy-9000.typelib 30156 -usr/share/ibus-anthy/engine/tables.py 30155 -usr/share/ibus-anthy/engine/jastring.py 30154 -usr/share/ibus-anthy/engine/romaji.py 30153 -usr/share/ibus-anthy/engine/segment.py 30152 -usr/share/ibus-anthy/engine/kana.py 30151 -usr/share/ibus-anthy/engine/thumb.py 30150 -usr/lib/x86_64-linux-gnu/girepository-1.0/NMA-1.0.typelib 30149 -usr/share/ibus-anthy/setup/anthyprefs.py 30148 -usr/share/ibus-anthy/setup/prefs.py 30147 -usr/lib/x86_64-linux-gnu/girepository-1.0/GnomeBluetooth-1.0.typelib 30146 -usr/share/ibus-anthy/engine/default.xml 30145 -usr/lib/x86_64-linux-gnu/libgnome-bluetooth.so.13.0.1 30144 -usr/lib/x86_64-linux-gnu/libnotify.so.4.0.0 30143 -usr/share/ibus/component/chewing.xml 30142 -usr/share/ibus/component/dconf.xml 30141 -usr/share/ibus/component/gtkextension.xml 30140 -usr/share/ibus/component/gtkpanel.xml 30139 -usr/share/ibus/component/hangul.xml 30138 -usr/share/ibus/component/libpinyin.xml 30137 -usr/share/ibus/component/simple.xml 30136 -usr/share/ibus/component/unikey.xml 30135 -usr/lib/ibus/ibus-engine-unikey 30134 -usr/lib/x86_64-linux-gnu/girepository-1.0/UPowerGlib-1.0.typelib 30133 -lib/systemd/system/upower.service 30132 -usr/lib/ibus/ibus-dconf 30131 -usr/lib/gnome-shell/libgvc.so 30129 -usr/lib/ibus/ibus-extension-gtk3 30128 -usr/lib/ibus/ibus-x11 30127 -usr/lib/x86_64-linux-gnu/libpulse-mainloop-glib.so.0.0.5 30126 -usr/lib/upower/upowerd 30125 -usr/lib/x86_64-linux-gnu/libupower-glib.so.3.0.1 30122 -lib/x86_64-linux-gnu/libusb-1.0.so.0.1.0 30121 -usr/lib/x86_64-linux-gnu/libimobiledevice.so.6.0.0 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 -usr/lib/ibus/ibus-portal 30117 -usr/lib/x86_64-linux-gnu/libgdm.so.1.0.0 30116 -etc/systemd/sleep.conf 30115 -usr/share/xsessions/gnome-classic.desktop 30114 -lib/systemd/system/suspend.target 30113 -usr/share/xsessions/gnome.desktop 30112 -usr/share/gdm/BuiltInSessions/default.desktop 30111 -lib/systemd/system/systemd-suspend.service 30110 -lib/systemd/system/sleep.target 30109 -var/lib/polkit-1/localauthority/10-vendor.d/systemd-networkd.pkla 30108 -var/lib/polkit-1/localauthority/10-vendor.d/org.freedesktop.NetworkManager.pkla 30107 -var/lib/polkit-1/localauthority/10-vendor.d/gnome-control-center.pkla 30106 -etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.pkla 30105 -etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.cups.pkla 30104 -etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.accounts.pkla 30103 -etc/UPower/UPower.conf 30102 -usr/share/ibus/dicts/emoji-en.dict 30101 -usr/lib/x86_64-linux-gnu/gio/modules/libgiognutls.so 30100 -etc/ssl/certs/ca-certificates.crt 30099 -usr/lib/gnome-settings-daemon/gsd-wacom 30096 -usr/lib/gnome-settings-daemon-3.0/libgsd.so 30095 -usr/lib/gnome-settings-daemon/gsd-xsettings 30090 -usr/lib/gnome-settings-daemon/gsd-a11y-settings 30089 -usr/lib/x86_64-linux-gnu/gio/modules/libgiolibproxy.so 30086 -usr/lib/gnome-settings-daemon/gsd-clipboard 30085 -usr/lib/gnome-settings-daemon/gsd-color 30082 -usr/lib/x86_64-linux-gnu/libcolord.so.2.0.5 30081 -usr/lib/gnome-settings-daemon/gsd-datetime 30078 -usr/lib/gnome-settings-daemon/gsd-housekeeping 30075 -usr/lib/x86_64-linux-gnu/libgeoclue-2.so.0.0.0 30072 -usr/lib/gnome-settings-daemon/gsd-keyboard 30071 -usr/lib/gnome-settings-daemon/gsd-media-keys 30068 -usr/lib/x86_64-linux-gnu/libproxy.so.1.0.0 30067 -usr/lib/x86_64-linux-gnu/gio/modules/libgiognomeproxy.so 30066 -usr/lib/gnome-settings-daemon/gsd-mouse 30063 -usr/lib/x86_64-linux-gnu/gio/modules/libgioremote-volume-monitor.so 30061 -usr/lib/gnome-settings-daemon/gsd-power 30059 -usr/lib/gnome-settings-daemon/gsd-print-notifications 30056 -usr/lib/x86_64-linux-gnu/libcups.so.2 30055 -usr/lib/x86_64-linux-gnu/libavahi-common.so.3.5.3 30054 -usr/lib/x86_64-linux-gnu/libavahi-client.so.3.2.9 30053 -usr/lib/gnome-settings-daemon/gsd-rfkill 30050 -usr/lib/x86_64-linux-gnu/liblcms2.so.2.0.8 30047 -usr/lib/gnome-settings-daemon/gsd-screensaver-proxy 30046 -usr/lib/gnome-settings-daemon/gsd-sharing 30043 -usr/lib/gnome-settings-daemon/gsd-smartcard 30040 -usr/lib/gnome-settings-daemon-3.0/gtk-modules/at-spi2-atk.desktop 30035 -usr/lib/gnome-settings-daemon/gsd-sound 30034 -usr/share/X11/locale/locale.alias 30033 -usr/share/X11/locale/locale.dir 30032 -usr/share/X11/locale/en_US.UTF-8/XLC_LOCALE 30031 -usr/lib/dconf/dconf-service 30030 -lib/systemd/system/systemd-localed.service 30029 -usr/lib/x86_64-linux-gnu/gconv/ISO8859-1.so 30028 -usr/lib/x86_64-linux-gnu/nss/libsoftokn3.so 30026 -usr/lib/x86_64-linux-gnu/nss/libfreeblpriv3.so 30025 -lib/systemd/system/colord.service 30022 -lib/systemd/system/systemd-hostnamed.service 30021 -usr/lib/colord/colord 30019 -usr/bin/spice-vdagent 30016 -lib/systemd/systemd-localed 30015 -usr/lib/x86_64-linux-gnu/libcolordprivate.so.2.0.5 30014 -usr/lib/x86_64-linux-gnu/libgusb.so.2.0.10 30013 -etc/default/keyboard 30012 -usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_camera.so 30007 -usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_sane.so 30006 -usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_scanner.so 30005 -usr/share/color/icc/colord/BestRGB.icc 30003 -usr/share/color/icc/colord/BetaRGB.icc 30000 -usr/local/lib/tails-greeter 29999 -usr/share/tails/greeter/set-cursor.py 29998 -usr/share/color/icc/colord/BruceRGB.icc 29997 -usr/share/color/icc/colord/Crayons.icc 29996 -usr/share/color/icc/colord/DonRGB4.icc 29995 -usr/share/color/icc/colord/ECI-RGBv1.icc 29994 -usr/share/color/icc/colord/ECI-RGBv2.icc 29993 -usr/share/color/icc/colord/EktaSpacePS5.icc 29992 -usr/share/color/icc/colord/Gamma5000K.icc 29991 -usr/share/color/icc/colord/Gamma5500K.icc 29990 -lib/systemd/systemd-hostnamed 29989 -etc/os-release 29988 -usr/share/icons/Adwaita/index.theme 29987 -usr/share/color/icc/colord/Gamma6500K.icc 29986 -usr/share/icons/gnome/index.theme 29985 -usr/share/color/icc/colord/Rec709.icc 29984 -usr/lib/python3/dist-packages/gi/overrides/Pango.py 29983 -usr/lib/python3/dist-packages/gi/overrides/GdkPixbuf.py 29982 -usr/lib/python3/dist-packages/gi/overrides/Gdk.py 29981 -usr/lib/x86_64-linux-gnu/girepository-1.0/GdkX11-3.0.typelib 29980 -usr/share/icons/hicolor/index.theme 29979 -usr/share/color/icc/colord/WideGamutRGB.icc 29978 -usr/share/color/icc/ghostscript/a98.icc 29977 -usr/share/color/icc/ghostscript/default_cmyk.icc 29976 -usr/lib/python3/dist-packages/gi/overrides/Gtk.py 29975 -usr/share/color/icc/ghostscript/default_gray.icc 29974 -usr/share/color/icc/ghostscript/default_rgb.icc 29973 -usr/share/color/icc/ghostscript/esrgb.icc 29972 -usr/lib/python3/dist-packages/gi/_gtktemplate.py 29971 -usr/share/color/icc/ghostscript/gray_to_k.icc 29970 -usr/share/color/icc/ghostscript/lab.icc 29969 -usr/share/color/icc/ghostscript/ps_cmyk.icc 29968 -usr/share/color/icc/ghostscript/ps_gray.icc 29967 -usr/share/color/icc/ghostscript/ps_rgb.icc 29966 -usr/share/color/icc/ghostscript/rommrgb.icc 29965 -usr/share/color/icc/ghostscript/scrgb.icc 29964 -usr/share/color/icc/ghostscript/sgray.icc 29963 -usr/share/color/icc/ghostscript/srgb.icc 29962 -usr/share/icons/Adwaita/cursors/watch 29961 -usr/lib/colord/colord-sane 29960 -usr/lib/x86_64-linux-gnu/libsane.so.1.0.27 29959 -usr/lib/x86_64-linux-gnu/libieee1284.so.3.2.2 29958 -usr/share/icons/Adwaita/16x16/apps/preferences-desktop-accessibility-symbolic.symbolic.png 29957 -usr/share/icons/Adwaita/48x48/actions/pan-down-symbolic.symbolic.png 29956 -usr/share/icons/Adwaita/16x16/actions/find-location-symbolic.symbolic.png 29955 -usr/lib/x86_64-linux-gnu/libtiff.so.5.4.0 29954 -usr/lib/x86_64-linux-gnu/libjpeg.so.62.2.0 29953 -usr/lib/x86_64-linux-gnu/libgphoto2.so.6.1.0 29952 -usr/share/tails/greeter/tails-greeter.py 29951 -usr/share/fonts/opentype/cantarell/Cantarell-Regular.otf 29950 -usr/lib/x86_64-linux-gnu/libgphoto2_port.so.12.0.0 29949 -usr/lib/x86_64-linux-gnu/libzstd.so.1.3.8 29948 -usr/lib/x86_64-linux-gnu/libjbig.so.0 29947 -usr/lib/x86_64-linux-gnu/libexif.so.12.3.3 29946 -usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf 29945 -etc/sane.d/dll.d/hplip 29944 -usr/lib/python3.7/logging/config.py 29943 -etc/sane.d/dll.conf 29942 -usr/lib/x86_64-linux-gnu/sane/libsane-xerox_mfp.so.1.0.27 29941 -etc/sane.d/xerox_mfp.conf 29940 -usr/lib/x86_64-linux-gnu/sane/libsane-umax1220u.so.1.0.27 29939 -etc/sane.d/umax1220u.conf 29938 -usr/lib/x86_64-linux-gnu/sane/libsane-umax.so.1.0.27 29937 -etc/sane.d/umax.conf 29936 -usr/lib/python3.7/logging/handlers.py 29935 -usr/lib/x86_64-linux-gnu/sane/libsane-u12.so.1.0.27 29934 -etc/sane.d/u12.conf 29933 -usr/lib/x86_64-linux-gnu/sane/libsane-teco3.so.1.0.27 29932 -etc/sane.d/teco3.conf 29931 -usr/lib/x86_64-linux-gnu/sane/libsane-teco2.so.1.0.27 29930 -etc/sane.d/teco2.conf 29929 -usr/lib/x86_64-linux-gnu/sane/libsane-teco1.so.1.0.27 29928 -etc/sane.d/teco1.conf 29927 -usr/lib/x86_64-linux-gnu/sane/libsane-tamarack.so.1.0.27 29926 -etc/sane.d/tamarack.conf 29925 -usr/lib/x86_64-linux-gnu/sane/libsane-sp15c.so.1.0.27 29924 -etc/sane.d/sp15c.conf 29923 -usr/lib/x86_64-linux-gnu/sane/libsane-snapscan.so.1.0.27 29922 -etc/sane.d/snapscan.conf 29921 -usr/lib/x86_64-linux-gnu/sane/libsane-sm3840.so.1.0.27 29920 -usr/lib/x86_64-linux-gnu/sane/libsane-sm3600.so.1.0.27 29919 -usr/lib/x86_64-linux-gnu/sane/libsane-sharp.so.1.0.27 29918 -etc/sane.d/sharp.conf 29917 -usr/lib/x86_64-linux-gnu/sane/libsane-sceptre.so.1.0.27 29916 -etc/sane.d/sceptre.conf 29915 -usr/lib/x86_64-linux-gnu/sane/libsane-s9036.so.1.0.27 29914 -etc/sane.d/s9036.conf 29913 -usr/lib/x86_64-linux-gnu/sane/libsane-rts8891.so.1.0.27 29912 -etc/sane.d/rts8891.conf 29911 -usr/lib/x86_64-linux-gnu/sane/libsane-ricoh.so.1.0.27 29910 -etc/sane.d/ricoh.conf 29909 -usr/lib/x86_64-linux-gnu/sane/libsane-qcam.so.1.0.27 29908 -etc/sane.d/qcam.conf 29907 -usr/lib/x86_64-linux-gnu/sane/libsane-plustek.so.1.0.27 29906 -etc/sane.d/plustek.conf 29905 -usr/lib/x86_64-linux-gnu/sane/libsane-pixma.so.1.0.27 29904 -etc/sane.d/pixma.conf 29903 -usr/share/themes/Default/gtk-3.0/gtk-keys.css 29902 -usr/lib/ibus/ibus-engine-simple 29901 -usr/lib/python3/dist-packages/tailsgreeter/__init__.py 29900 -usr/lib/python3/dist-packages/tailsgreeter/errors.py 29899 -usr/lib/python3/dist-packages/tailsgreeter/greeter.py 29898 -usr/lib/python3/dist-packages/tailsgreeter/gdmclient.py 29897 -usr/share/icons/Adwaita/48x48/status/battery-full-symbolic.symbolic.png 29896 -usr/share/icons/Adwaita/16x16/status/battery-full-symbolic.symbolic.png 29895 -usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/1920x1080.svg 29894 -usr/share/icons/Adwaita/48x48/devices/audio-speakers-symbolic.symbolic.png 29893 -usr/lib/gnome-settings-daemon/gsd-backlight-helper 29892 -usr/share/icons/Adwaita/16x16/status/audio-volume-medium-symbolic.symbolic.png 29891 -usr/lib/python3/dist-packages/tailsgreeter/config.py 29890 -usr/lib/python3/dist-packages/tailsgreeter/settings/__init__.py 29889 -usr/lib/python3/dist-packages/tailsgreeter/settings/localization.py 29888 -usr/lib/python3/dist-packages/pycountry/__init__.py 29887 -usr/lib/python3/dist-packages/pycountry/db.py 29886 -usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so 29885 -usr/lib/x86_64-linux-gnu/sane/libsane-pie.so.1.0.27 29884 -etc/sane.d/pie.conf 29883 -usr/lib/x86_64-linux-gnu/sane/libsane-niash.so.1.0.27 29882 -usr/lib/x86_64-linux-gnu/sane/libsane-nec.so.1.0.27 29881 -etc/sane.d/nec.conf 29880 -usr/lib/python3.7/json/__init__.py 29879 -usr/lib/python3.7/json/decoder.py 29878 -usr/lib/python3.7/json/scanner.py 29877 -usr/lib/python3.7/lib-dynload/_json.cpython-37m-x86_64-linux-gnu.so 29876 -usr/lib/python3.7/json/encoder.py 29875 -usr/lib/python3/dist-packages/pkg_resources/__init__.py 29874 -usr/lib/x86_64-linux-gnu/sane/libsane-mustek_usb2.so.1.0.27 29873 -usr/lib/x86_64-linux-gnu/sane/libsane-mustek_usb.so.1.0.27 29872 -etc/sane.d/mustek_usb.conf 29871 -usr/lib/x86_64-linux-gnu/sane/libsane-mustek.so.1.0.27 29870 -etc/sane.d/mustek.conf 29869 -usr/lib/x86_64-linux-gnu/sane/libsane-microtek2.so.1.0.27 29868 -etc/sane.d/microtek2.conf 29867 -usr/lib/x86_64-linux-gnu/sane/libsane-microtek.so.1.0.27 29866 -etc/sane.d/microtek.conf 29865 -usr/lib/x86_64-linux-gnu/sane/libsane-matsushita.so.1.0.27 29864 -etc/sane.d/matsushita.conf 29863 -usr/lib/x86_64-linux-gnu/sane/libsane-magicolor.so.1.0.27 29862 -usr/lib/x86_64-linux-gnu/libnetsnmp.so.30.0.3 29861 -etc/sane.d/magicolor.conf 29860 -etc/snmp/snmp.conf 29859 -usr/share/snmp/mibs/GNOME-SMI.txt 29858 -usr/share/snmp/mibs/IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt 29857 -usr/share/snmp/mibs/IANA-LANGUAGE-MIB.txt 29856 -usr/share/snmp/mibs/IANA-RTPROTO-MIB.txt 29855 -usr/share/snmp/mibs/IANAifType-MIB.txt 29854 -usr/share/snmp/mibs/LM-SENSORS-MIB.txt 29853 -usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt 29852 -usr/share/snmp/mibs/NET-SNMP-EXAMPLES-MIB.txt 29851 -usr/share/snmp/mibs/NET-SNMP-EXTEND-MIB.txt 29850 -usr/share/snmp/mibs/NET-SNMP-MIB.txt 29849 -usr/share/snmp/mibs/NET-SNMP-MONITOR-MIB.txt 29848 -usr/share/snmp/mibs/NET-SNMP-PASS-MIB.txt 29847 -usr/share/snmp/mibs/NET-SNMP-PERIODIC-NOTIFY-MIB.txt 29846 -usr/share/snmp/mibs/NET-SNMP-SYSTEM-MIB.txt 29845 -usr/share/snmp/mibs/NET-SNMP-TC.txt 29844 -usr/share/snmp/mibs/NET-SNMP-VACM-MIB.txt 29843 -usr/share/snmp/mibs/RFC-1215.txt 29842 -usr/share/snmp/mibs/SNMP-TLS-TM-MIB.txt 29841 -usr/lib/python3.7/zipfile.py 29840 -usr/share/snmp/mibs/SNMP-TSM-MIB.txt 29839 -usr/share/snmp/mibs/UCD-DEMO-MIB.txt 29838 -usr/share/snmp/mibs/UCD-DISKIO-MIB.txt 29837 -usr/share/snmp/mibs/UCD-DLMOD-MIB.txt 29836 -usr/share/snmp/mibs/UCD-IPFILTER-MIB.txt 29835 -usr/share/snmp/mibs/UCD-IPFWACC-MIB.txt 29834 -usr/share/snmp/mibs/UCD-SNMP-MIB-OLD.txt 29833 -usr/share/snmp/mibs/UCD-SNMP-MIB.txt 29832 -usr/share/snmp/mibs/miblist.txt 29831 -usr/lib/x86_64-linux-gnu/sane/libsane-ma1509.so.1.0.27 29830 -etc/sane.d/ma1509.conf 29829 -usr/lib/x86_64-linux-gnu/sane/libsane-lexmark.so.1.0.27 29828 -etc/sane.d/lexmark.conf 29827 -usr/lib/x86_64-linux-gnu/sane/libsane-leo.so.1.0.27 29826 -etc/sane.d/leo.conf 29825 -usr/lib/x86_64-linux-gnu/sane/libsane-kvs20xx.so.1.0.27 29824 -usr/lib/x86_64-linux-gnu/sane/libsane-kvs1025.so.1.0.27 29823 -usr/lib/x86_64-linux-gnu/sane/libsane-kodakaio.so.1.0.27 29822 -etc/sane.d/kodakaio.conf 29821 -usr/lib/x86_64-linux-gnu/sane/libsane-kodak.so.1.0.27 29820 -etc/sane.d/kodak.conf 29819 -usr/lib/x86_64-linux-gnu/sane/libsane-ibm.so.1.0.27 29818 -etc/sane.d/ibm.conf 29817 -usr/lib/x86_64-linux-gnu/sane/libsane-hs2p.so.1.0.27 29816 -usr/lib/python3.7/plistlib.py 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 -etc/sane.d/hp3900.conf 29803 -usr/lib/x86_64-linux-gnu/sane/libsane-hp.so.1.0.27 29802 -usr/lib/python3.7/xml/parsers/__init__.py 29801 -etc/sane.d/hp.conf 29800 -usr/lib/x86_64-linux-gnu/sane/libsane-gt68xx.so.1.0.27 29799 -etc/sane.d/gt68xx.conf 29798 -usr/lib/x86_64-linux-gnu/sane/libsane-genesys.so.1.0.27 29797 -etc/sane.d/genesys.conf 29796 -usr/lib/x86_64-linux-gnu/sane/libsane-fujitsu.so.1.0.27 29795 -usr/lib/python3.7/xml/parsers/expat.py 29794 -usr/lib/python3.7/email/__init__.py 29793 -usr/lib/python3.7/email/parser.py 29792 -usr/lib/python3.7/email/feedparser.py 29791 -usr/lib/python3.7/email/errors.py 29790 -usr/lib/python3.7/email/_policybase.py 29789 +usr/lib/python3.7/pickle.py 31521 +etc/pam.d/systemd-user 31519 +usr/lib/python3.7/_compat_pickle.py 31518 +usr/lib/python3.7/tarfile.py 31517 +usr/share/laptop-mode-tools/modules/eee-superhe 31516 +lib/x86_64-linux-gnu/security/pam_selinux.so 31515 +lib/x86_64-linux-gnu/security/pam_loginuid.so 31514 +usr/lib/python3.7/copy.py 31513 +lib/systemd/systemd 31512 +usr/lib/python3/dist-packages/stem/util/conf.py 31511 +etc/systemd/user.conf 31510 +usr/lib/python3/dist-packages/stem/control.py 31509 +usr/share/laptop-mode-tools/modules/ethernet 31507 +usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator 31506 +lib/systemd/system-shutdown/tails 31505 +lib/systemd/systemd-shutdown 31504 +etc/environment.d/90atk-adaptor.conf 31503 +etc/environment.d/90qt-a11y.conf 31502 +usr/lib/systemd/user-environment-generators/90gpg-agent 31501 +usr/lib/python3.7/calendar.py 31500 +usr/lib/python3.7/queue.py 31499 +usr/share/laptop-mode-tools/modules/exec-commands 31498 +usr/lib/python3.7/lib-dynload/_queue.cpython-37m-x86_64-linux-gnu.so 31497 +usr/lib/python3/dist-packages/stem/descriptor/__init__.py 31496 +usr/bin/gpgconf 31495 +usr/lib/python3/dist-packages/stem/descriptor/server_descriptor.py 31494 +usr/bin/eject 31493 +usr/lib/python3/dist-packages/stem/descriptor/certificate.py 31492 +usr/lib/python3/dist-packages/stem/descriptor/extrainfo_descriptor.py 31491 +usr/share/laptop-mode-tools/modules/hal-polling 31490 +usr/lib/python3/dist-packages/stem/exit_policy.py 31487 +usr/lib/python3/dist-packages/stem/util/tor_tools.py 31486 +usr/lib/python3/dist-packages/stem/version.py 31485 +usr/lib/systemd/user/default.target 31484 +usr/lib/python3/dist-packages/stem/descriptor/router_status_entry.py 31483 +usr/lib/python3/dist-packages/stem/descriptor/networkstatus.py 31482 +usr/share/laptop-mode-tools/modules/hdparm 31481 +usr/lib/python3/dist-packages/stem/descriptor/microdescriptor.py 31480 +usr/lib/python3/dist-packages/stem/descriptor/tordnsel.py 31479 +usr/lib/python3/dist-packages/stem/descriptor/hidden_service_descriptor.py 31478 +usr/lib/python3/dist-packages/stem/descriptor/reader.py 31477 +usr/lib/python3/dist-packages/stem/response/__init__.py 31476 +usr/lib/python3/dist-packages/stem/socket.py 31475 +usr/share/laptop-mode-tools/modules/intel-hda-powersave 31474 +usr/lib/systemd/user/shutdown.target 31473 +usr/lib/systemd/user/basic.target 31472 +usr/lib/systemd/user/tails-create-tor-browser-directories.service 31471 +usr/lib/systemd/user/paths.target 31470 +usr/lib/systemd/user/timers.target 31469 +usr/lib/systemd/user/sockets.target 31468 +usr/lib/systemd/user/pulseaudio.socket 31467 +usr/lib/systemd/user/pulseaudio.service 31466 +usr/lib/systemd/user/gpg-agent.socket 31465 +usr/lib/systemd/user/gpg-agent.service 31464 +usr/lib/systemd/user/gpg-agent-ssh.socket 31463 +usr/lib/systemd/user/gpg-agent-extra.socket 31462 +usr/lib/systemd/user/gpg-agent-browser.socket 31461 +usr/lib/systemd/user/dirmngr.socket 31460 +usr/lib/systemd/user/dirmngr.service 31459 +usr/lib/systemd/user/dbus.socket 31458 +usr/lib/systemd/user/dbus.service 31457 +bin/udevadm 31455 +etc/udev/udev.conf 31454 +usr/lib/python3.7/ssl.py 31453 +usr/bin/pulseaudio 31452 +usr/lib/python3.7/lib-dynload/_ssl.cpython-37m-x86_64-linux-gnu.so 31451 +usr/bin/dirmngr 31450 +usr/lib/python3/dist-packages/stem/response/events.py 31448 +usr/lib/python3/dist-packages/stem/connection.py 31442 +usr/lib/python3.7/getpass.py 31441 +usr/lib/gdm3/gdm-x-session.tails 31440 +usr/lib/python3.7/lib-dynload/termios.cpython-37m-x86_64-linux-gnu.so 31437 +usr/local/sbin/udev-watchdog 31436 +usr/lib/python3.7/textwrap.py 31435 +usr/lib/python3/dist-packages/yaml/__init__.py 31434 +usr/share/laptop-mode-tools/modules/intel-sata-powermgmt 31433 +usr/lib/python3/dist-packages/yaml/error.py 31432 +usr/lib/python3/dist-packages/yaml/tokens.py 31431 +usr/lib/gdm3/gdm-x-session.real 31430 +bin/egrep 31429 +usr/lib/python3/dist-packages/yaml/events.py 31428 +usr/lib/python3/dist-packages/yaml/nodes.py 31427 +usr/lib/python3/dist-packages/yaml/loader.py 31426 +usr/lib/python3/dist-packages/yaml/reader.py 31425 +usr/lib/python3/dist-packages/yaml/scanner.py 31424 +usr/share/laptop-mode-tools/modules/intel_pstate 31423 +usr/bin/Xorg 31422 +usr/lib/python3/dist-packages/yaml/parser.py 31421 +usr/lib/xorg/Xorg.wrap 31420 +etc/X11/Xwrapper.config 31419 +usr/lib/python3/dist-packages/yaml/composer.py 31418 +usr/lib/xorg/Xorg 31417 +usr/lib/python3/dist-packages/yaml/constructor.py 31416 +usr/lib/python3/dist-packages/yaml/resolver.py 31415 +usr/lib/python3/dist-packages/yaml/dumper.py 31414 +usr/lib/python3/dist-packages/yaml/emitter.py 31413 +usr/lib/python3/dist-packages/yaml/serializer.py 31412 +usr/share/laptop-mode-tools/modules/kbd-backlight 31411 +usr/lib/python3/dist-packages/yaml/representer.py 31410 +usr/lib/python3/dist-packages/yaml/cyaml.py 31409 +usr/lib/python3/dist-packages/_yaml.cpython-37m-x86_64-linux-gnu.so 31408 +usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1 31407 +usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1 31406 +usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0 31405 +usr/lib/x86_64-linux-gnu/libpixman-1.so.0.36.0 31404 +usr/lib/x86_64-linux-gnu/libXfont2.so.2.0.0 31403 +usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5 31402 +usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0 31401 +usr/lib/x86_64-linux-gnu/libfontenc.so.1.0.0 31400 +usr/lib/x86_64-linux-gnu/libfreetype.so.6.16.1 31399 +usr/lib/x86_64-linux-gnu/libpng16.so.16.36.0 31398 +usr/share/laptop-mode-tools/modules/laptop-mode 31397 +sbin/blockdev 31396 +usr/share/laptop-mode-tools/modules/lcd-brightness 31395 +usr/lib/xorg/protocol.txt 31394 +usr/share/X11/xorg.conf.d/10-amdgpu.conf 31393 +usr/share/X11/xorg.conf.d/10-quirks.conf 31392 +usr/share/X11/xorg.conf.d/10-radeon.conf 31391 +usr/share/X11/xorg.conf.d/40-libinput.conf 31390 +usr/share/X11/xorg.conf.d/90-tails.conf 31389 +usr/lib/xorg/modules/extensions/libglx.so 31386 +usr/share/laptop-mode-tools/modules/nmi-watchdog 31385 +usr/lib/x86_64-linux-gnu/libGL.so.1.7.0 31384 +usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0 31383 +usr/lib/x86_64-linux-gnu/libGLdispatch.so.0.0.0 31382 +usr/lib/xorg/modules/drivers/modesetting_drv.so 31381 +usr/lib/xorg/modules/drivers/fbdev_drv.so 31380 +usr/lib/xorg/modules/drivers/vesa_drv.so 31379 +usr/lib/xorg/modules/libfbdevhw.so 31378 +usr/lib/xorg/modules/libglamoregl.so 31377 +usr/lib/x86_64-linux-gnu/libgbm.so.1.0.0 31376 +usr/share/laptop-mode-tools/modules/pcie-aspm 31375 +usr/lib/x86_64-linux-gnu/libepoxy.so.0.0.0 31374 +usr/lib/x86_64-linux-gnu/libwayland-server.so.0.1.0 31373 +usr/share/drirc.d/00-mesa-defaults.conf 31372 +usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0 31371 +usr/lib/x86_64-linux-gnu/dri/i965_dri.so 31370 +usr/share/laptop-mode-tools/modules/radeon-dpm 31369 +usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0 31368 +usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1 31367 +usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0 31366 +usr/share/laptop-mode-tools/modules/runtime-pm 31365 +usr/share/laptop-mode-tools/modules/sched-mc-power-savings 31364 +usr/share/laptop-mode-tools/modules/sched-smt-power-savings 31363 +usr/share/laptop-mode-tools/modules/start-stop-programs 31362 +usr/lib/x86_64-linux-gnu/libEGL.so.1.1.0 31360 +usr/share/glvnd/egl_vendor.d/50_mesa.json 31359 +usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0 31358 +usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0 31357 +usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0.0.0 31356 +bin/cpio 31355 +usr/lib/x86_64-linux-gnu/libwayland-client.so.0.3.0 31354 +usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0 31353 +usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0 31352 +usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0 31351 +usr/share/laptop-mode-tools/modules/syslog-conf 31350 +usr/share/laptop-mode-tools/modules/terminal-blanking 31349 +usr/share/laptop-mode-tools/modules/vgaswitcheroo 31348 +usr/share/laptop-mode-tools/modules/video-out 31347 +usr/share/laptop-mode-tools/modules/wireless-ipw-power 31346 +usr/share/laptop-mode-tools/modules/wireless-iwl-power 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/lib/x86_64-linux-gnu/libwacom.so.2.6.1 31280 +usr/share/libinput/10-generic-keyboard.quirks 31278 +usr/share/libinput/10-generic-lid.quirks 31277 +usr/share/libinput/10-generic-trackball.quirks 31276 +usr/share/libinput/30-vendor-aiptek.quirks 31275 +usr/share/libinput/30-vendor-alps.quirks 31274 +usr/share/libinput/30-vendor-contour.quirks 31273 +usr/share/libinput/30-vendor-cyapa.quirks 31272 +usr/share/libinput/30-vendor-elantech.quirks 31271 +usr/share/libinput/30-vendor-huion.quirks 31270 +usr/share/libinput/30-vendor-ibm.quirks 31269 +usr/share/libinput/30-vendor-kensington.quirks 31268 +usr/share/libinput/30-vendor-logitech.quirks 31267 +usr/share/libinput/30-vendor-microsoft.quirks 31266 +usr/share/libinput/30-vendor-razer.quirks 31265 +usr/share/libinput/30-vendor-synaptics.quirks 31264 +usr/share/libinput/30-vendor-vmware.quirks 31263 +usr/share/libinput/30-vendor-wacom.quirks 31262 +usr/share/libinput/50-system-acer.quirks 31261 +usr/share/libinput/50-system-apple.quirks 31260 +usr/share/libinput/50-system-asus.quirks 31259 +usr/share/libinput/50-system-chicony.quirks 31258 +usr/share/libinput/50-system-cyborg.quirks 31257 +usr/share/libinput/50-system-dell.quirks 31256 +usr/share/libinput/50-system-google.quirks 31255 +usr/share/libinput/50-system-hp.quirks 31254 +usr/share/libinput/50-system-lenovo.quirks 31253 +usr/share/libinput/50-system-system76.quirks 31252 +bin/gzip 31237 +usr/bin/xz 31236 +usr/share/dbus-1/session.conf 31234 +etc/dbus-1/session.d/im.pidgin.purple.PurpleService.conf 31233 +usr/share/dbus-1/services/ca.desrt.dconf.service 31232 +usr/share/dbus-1/services/org.a11y.Bus.service 31231 +usr/share/dbus-1/services/org.fedoraproject.Config.Printing.service 31230 +usr/share/dbus-1/services/org.freedesktop.ColorHelper.service 31229 +usr/share/dbus-1/services/org.freedesktop.FileManager1.service 31228 +usr/share/dbus-1/services/org.freedesktop.IBus.service 31227 +usr/share/dbus-1/services/org.freedesktop.Tracker1.service 31226 +usr/share/dbus-1/services/org.freedesktop.impl.portal.PermissionStore.service 31225 +usr/share/dbus-1/services/org.freedesktop.portal.Desktop.service 31224 +usr/share/dbus-1/services/org.freedesktop.portal.Documents.service 31223 +usr/share/dbus-1/services/org.freedesktop.portal.IBus.service 31222 +usr/share/dbus-1/services/org.freedesktop.secrets.service 31221 +usr/share/dbus-1/services/org.gnome.Calculator.SearchProvider.service 31220 +usr/share/dbus-1/services/org.gnome.ControlCenter.SearchProvider.service 31219 +usr/share/dbus-1/services/org.gnome.ControlCenter.service 31218 +usr/share/dbus-1/services/org.gnome.DiskUtility.service 31217 +usr/share/dbus-1/services/org.gnome.FileRoller.ArchiveManager1.service 31216 +usr/share/dbus-1/services/org.gnome.FileRoller.service 31215 +usr/share/dbus-1/services/org.gnome.Nautilus.service 31214 +usr/share/dbus-1/services/org.gnome.Screenshot.service 31213 +usr/share/dbus-1/services/org.gnome.Shell.CalendarServer.service 31212 +usr/share/dbus-1/services/org.gnome.Shell.HotplugSniffer.service 31211 +usr/share/dbus-1/services/org.gnome.Shell.PortalHelper.service 31210 +usr/share/dbus-1/services/org.gnome.SoundJuicer.service 31209 +usr/share/dbus-1/services/org.gnome.Terminal.service 31208 +usr/share/dbus-1/services/org.gnome.Totem.service 31207 +usr/share/dbus-1/services/org.gnome.evince.Daemon.service 31206 +usr/share/dbus-1/services/org.gnome.evolution.dataserver.AddressBook.service 31205 +usr/share/dbus-1/services/org.gnome.evolution.dataserver.Calendar.service 31204 +usr/share/dbus-1/services/org.gnome.evolution.dataserver.Sources.service 31203 +usr/share/dbus-1/services/org.gnome.evolution.dataserver.UserPrompter.service 31202 +usr/share/dbus-1/services/org.gnome.gedit.service 31201 +usr/share/dbus-1/services/org.gnome.keyring.PrivatePrompter.service 31200 +usr/share/dbus-1/services/org.gnome.keyring.SystemPrompter.service 31199 +usr/share/dbus-1/services/org.gnome.keyring.service 31198 +usr/share/dbus-1/services/org.gnome.seahorse.Application.service 31197 +usr/share/dbus-1/services/org.gnome.seahorse.service 31196 +usr/share/dbus-1/services/org.gtk.GLib.PACRunner.service 31195 +usr/share/dbus-1/services/org.gtk.vfs.AfcVolumeMonitor.service 31194 +usr/share/dbus-1/services/org.gtk.vfs.Daemon.service 31193 +usr/share/dbus-1/services/org.gtk.vfs.GPhoto2VolumeMonitor.service 31192 +usr/share/dbus-1/services/org.gtk.vfs.GoaVolumeMonitor.service 31191 +usr/share/dbus-1/services/org.gtk.vfs.MTPVolumeMonitor.service 31190 +usr/share/dbus-1/services/org.gtk.vfs.Metadata.service 31189 +usr/share/dbus-1/services/org.gtk.vfs.UDisks2VolumeMonitor.service 31188 +usr/bin/gnome-session 31186 +usr/bin/gsettings 31185 +usr/share/glib-2.0/schemas/gschemas.compiled 31184 +usr/lib/x86_64-linux-gnu/gio/modules/libdconfsettings.so 31183 +usr/share/dconf/profile/gdm 31182 +usr/lib/gnome-session/gnome-session-binary 31180 +usr/lib/x86_64-linux-gnu/libgnome-desktop-3.so.17.0.3 31179 +usr/lib/x86_64-linux-gnu/libjson-glib-1.0.so.0.400.4 31178 +usr/lib/x86_64-linux-gnu/libgtk-3.so.0.2404.1 31177 +usr/lib/x86_64-linux-gnu/libgdk-3.so.0.2404.1 31176 +usr/lib/x86_64-linux-gnu/libcairo.so.2.11600.0 31175 +usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.3800.1 31174 +usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0.4200.3 31173 +usr/lib/x86_64-linux-gnu/libXcomposite.so.1.0.0 31172 +usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0 31171 +usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0 31170 +usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2.11600.0 31169 +usr/lib/x86_64-linux-gnu/libatk-1.0.so.0.23009.1 31168 +usr/lib/x86_64-linux-gnu/libatk-bridge-2.0.so.0.0.0 31167 +usr/lib/x86_64-linux-gnu/libxkbcommon.so.0.0.0 31166 +usr/lib/x86_64-linux-gnu/libwayland-cursor.so.0.0.0 31165 +usr/lib/x86_64-linux-gnu/libwayland-egl.so.1.0.0 31164 +usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.20301.0 31163 +usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0.4200.3 31162 +usr/lib/x86_64-linux-gnu/libpango-1.0.so.0.4200.3 31161 +usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0 31160 +usr/lib/x86_64-linux-gnu/libXinerama.so.1.0.0 31159 +usr/lib/x86_64-linux-gnu/libXrandr.so.2.2.0 31158 +usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2 31157 +usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0 31156 +usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0 31155 +usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0 31154 +usr/lib/x86_64-linux-gnu/libatspi.so.0.0.1 31153 +usr/lib/x86_64-linux-gnu/libgraphite2.so.3.2.1 31152 +usr/lib/x86_64-linux-gnu/libthai.so.0.3.1 31151 +usr/lib/x86_64-linux-gnu/libfribidi.so.0.4.0 31150 +usr/lib/x86_64-linux-gnu/libdatrie.so.1.3.5 31149 +usr/lib/gnome-session/gnome-session-check-accelerated 31147 +usr/share/locale/en/LC_MESSAGES/gtk30.mo 31146 +usr/share/locale/en/LC_MESSAGES/gtk30-properties.mo 31145 +usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 31144 +usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0 31143 +usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0 31142 +usr/lib/systemd/user/at-spi-dbus-bus.service 31141 +usr/lib/at-spi2-core/at-spi-bus-launcher 31139 +etc/dconf/profile/user 31138 +usr/share/defaults/at-spi2/accessibility.conf 31136 +usr/share/dbus-1/accessibility-services/org.a11y.atspi.Registry.service 31135 +usr/lib/at-spi2-core/at-spi2-registryd 31134 +usr/lib/gnome-session/gnome-session-check-accelerated-gl-helper 31133 +usr/share/gnome-session/hardware-compatibility 31132 +usr/share/gnome-session/sessions/gdm-tails.session 31129 +usr/share/gdm/greeter/applications/gdm-shell-tails.desktop 31128 +usr/share/applications/tails-greeter.desktop 31127 +etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop 31126 +etc/xdg/autostart/org.gnome.SettingsDaemon.Clipboard.desktop 31125 +etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop 31124 +etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop 31123 +etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop 31122 +etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop 31121 +etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop 31120 +etc/xdg/autostart/org.gnome.SettingsDaemon.Mouse.desktop 31119 +etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop 31118 +etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop 31117 +etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop 31116 +etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop 31115 +etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop 31114 +etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop 31113 +etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop 31112 +etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop 31111 +etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop 31110 +usr/share/gdm/greeter/autostart/orca-autostart.desktop 31109 +etc/xdg/autostart/spice-vdagent.desktop 31108 +usr/lib/x86_64-linux-gnu/glib-2.0/gio-launch-desktop 31105 +usr/bin/gnome-shell 31104 +usr/lib/gnome-shell/libgnome-shell.so 31103 +usr/lib/libgjs.so.0.0.0 31102 +usr/lib/x86_64-linux-gnu/mutter/libmutter-clutter-3.so 31101 +usr/lib/x86_64-linux-gnu/mutter/libmutter-cogl-pango-3.so 31100 +usr/lib/x86_64-linux-gnu/libmutter-3.so.0.0.0 31099 +usr/lib/gnome-shell/libgnome-shell-menu.so 31098 +usr/lib/gnome-shell/libst-1.0.so 31097 +usr/lib/x86_64-linux-gnu/mutter/libmutter-cogl-3.so 31096 +usr/lib/x86_64-linux-gnu/libstartup-notification-1.so.0.0.0 31095 +usr/lib/x86_64-linux-gnu/libcanberra.so.0.2.5 31094 +usr/lib/x86_64-linux-gnu/libcanberra-gtk3.so.0.1.9 31093 +usr/lib/x86_64-linux-gnu/libpolkit-agent-1.so.0.0.0 31092 +usr/lib/x86_64-linux-gnu/libgcr-base-3.so.1.0.0 31091 +usr/lib/x86_64-linux-gnu/libnm.so.0.1.0 31090 +usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0 31089 +usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0.1404.0 31088 +usr/lib/x86_64-linux-gnu/libgstbase-1.0.so.0.1404.0 31087 +usr/lib/x86_64-linux-gnu/libmozjs-60.so.0.0.0 31086 +usr/lib/x86_64-linux-gnu/mutter/libmutter-cogl-path-3.so 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/systemd/user/xdg-permission-store.service 30478 +usr/lib/x86_64-linux-gnu/libgweather-3.so.15.0.0 30477 +usr/lib/x86_64-linux-gnu/libsoup-2.4.so.1.8.0 30476 +usr/lib/x86_64-linux-gnu/libgeocode-glib.so.0.0.0 30474 +usr/libexec/xdg-permission-store 30473 +usr/share/ibus-anthy/engine/main.py 30472 +usr/lib/python3.7/getopt.py 30471 +usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2 30470 +usr/lib/x86_64-linux-gnu/libpsl.so.5.3.1 30469 +usr/lib/x86_64-linux-gnu/libkrb5.so.3.3 30468 +usr/lib/python3.7/xml/__init__.py 30467 +usr/lib/python3.7/xml/dom/__init__.py 30466 +usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1 30465 +usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1 30464 +lib/x86_64-linux-gnu/libkeyutils.so.1.8 30463 +usr/lib/python3.7/xml/dom/domreg.py 30462 +usr/lib/python3.7/xml/dom/minidom.py 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/lib/python3/dist-packages/gi/__init__.py 30455 +usr/lib/python3.7/pkgutil.py 30454 +usr/share/zoneinfo/Africa/Algiers 30453 +usr/share/zoneinfo/Africa/Bangui 30452 +usr/share/zoneinfo/Africa/Blantyre 30451 +usr/share/zoneinfo/Africa/Abidjan 30450 +usr/share/zoneinfo/Atlantic/Cape_Verde 30449 +usr/share/zoneinfo/Africa/Ndjamena 30448 +usr/share/zoneinfo/Africa/Addis_Ababa 30447 +usr/share/zoneinfo/Egypt 30446 +usr/share/zoneinfo/Indian/Kerguelen 30445 +usr/share/zoneinfo/Africa/Accra 30444 +usr/share/zoneinfo/Africa/Bissau 30443 +usr/share/zoneinfo/Africa/Johannesburg 30442 +usr/share/zoneinfo/Africa/Monrovia 30441 +usr/share/zoneinfo/Libya 30440 +usr/share/zoneinfo/Indian/Mauritius 30439 +usr/share/zoneinfo/Africa/Casablanca 30438 +usr/share/zoneinfo/Africa/Windhoek 30437 +usr/share/zoneinfo/Indian/Reunion 30436 +usr/share/zoneinfo/Africa/Sao_Tome 30435 +usr/share/zoneinfo/Indian/Mahe 30434 +usr/share/zoneinfo/Africa/Khartoum 30433 +usr/share/zoneinfo/Africa/Tunis 30432 +usr/share/zoneinfo/Africa/El_Aaiun 30431 +usr/share/zoneinfo/Antarctica/Palmer 30430 +usr/share/zoneinfo/Antarctica/Rothera 30429 +usr/share/zoneinfo/Antarctica/Syowa 30428 +usr/share/zoneinfo/Antarctica/Mawson 30427 +usr/share/zoneinfo/Antarctica/Vostok 30426 +usr/share/zoneinfo/Antarctica/Davis 30425 +usr/share/zoneinfo/Antarctica/Casey 30424 +usr/share/zoneinfo/Antarctica/DumontDUrville 30423 +usr/share/zoneinfo/NZ 30422 +usr/share/zoneinfo/Asia/Kabul 30421 +usr/share/zoneinfo/Asia/Yerevan 30420 +usr/share/zoneinfo/Asia/Baku 30419 +usr/share/zoneinfo/Asia/Dacca 30418 +usr/share/zoneinfo/Asia/Thimbu 30417 +usr/share/zoneinfo/Asia/Brunei 30416 +usr/share/zoneinfo/Asia/Bangkok 30415 +usr/share/zoneinfo/PRC 30414 +usr/share/zoneinfo/Asia/Tbilisi 30413 +usr/share/zoneinfo/Hongkong 30412 +usr/share/zoneinfo/Asia/Calcutta 30411 +usr/share/zoneinfo/Japan 30410 +usr/share/zoneinfo/Asia/Almaty 30409 +usr/share/zoneinfo/Asia/Aqtobe 30408 +usr/share/zoneinfo/Asia/Bishkek 30407 +usr/share/zoneinfo/Asia/Macao 30406 +usr/share/zoneinfo/Asia/Kuala_Lumpur 30405 +usr/share/zoneinfo/Indian/Maldives 30404 +usr/share/zoneinfo/Asia/Choibalsan 30403 +usr/share/zoneinfo/Asia/Hovd 30402 +usr/share/zoneinfo/Asia/Ulaanbaatar 30401 +usr/share/zoneinfo/Asia/Rangoon 30400 +usr/share/zoneinfo/Asia/Kathmandu 30399 +usr/share/zoneinfo/Asia/Pyongyang 30398 +usr/share/zoneinfo/Asia/Karachi 30397 +usr/share/zoneinfo/Asia/Manila 30396 +usr/share/zoneinfo/Singapore 30395 +usr/share/zoneinfo/ROK 30394 +usr/share/zoneinfo/Asia/Colombo 30393 +usr/share/zoneinfo/ROC 30392 +usr/share/zoneinfo/Asia/Dushanbe 30391 +usr/lib/python3.7/importlib/util.py 30390 +usr/lib/python3.7/importlib/abc.py 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/lib/python3/dist-packages/gi/_error.py 30309 +usr/share/zoneinfo/America/Cayman 30308 +usr/share/zoneinfo/America/Santiago 30307 +usr/share/zoneinfo/Chile/EasterIsland 30306 +usr/share/zoneinfo/America/Bogota 30305 +usr/share/zoneinfo/America/Costa_Rica 30304 +usr/share/zoneinfo/Cuba 30303 +usr/share/zoneinfo/America/Santo_Domingo 30302 +usr/share/zoneinfo/America/Guayaquil 30301 +usr/share/zoneinfo/Pacific/Galapagos 30300 +usr/share/zoneinfo/America/El_Salvador 30299 +usr/share/zoneinfo/Atlantic/Stanley 30298 +usr/share/zoneinfo/America/Cayenne 30297 +usr/share/zoneinfo/America/Guatemala 30296 +usr/share/zoneinfo/America/Guyana 30295 +usr/share/zoneinfo/America/Port-au-Prince 30294 +usr/share/zoneinfo/America/Tegucigalpa 30293 +usr/share/zoneinfo/Jamaica 30292 +usr/share/zoneinfo/America/Martinique 30291 +usr/share/zoneinfo/America/Managua 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/lib/python3/dist-packages/gi/_compat.py 30261 +usr/lib/python3/dist-packages/gi/_gi_cairo.cpython-37m-x86_64-linux-gnu.so 30260 +usr/lib/python3/dist-packages/cairo/__init__.py 30259 +usr/lib/python3/dist-packages/cairo/_cairo.cpython-37m-x86_64-linux-gnu.so 30258 +usr/lib/python3/dist-packages/gi/repository/__init__.py 30257 +usr/lib/python3/dist-packages/gi/importer.py 30256 +usr/lib/python3/dist-packages/gi/module.py 30255 +usr/share/zoneinfo/Europe/Rome 30254 +usr/share/zoneinfo/CET 30253 +usr/share/zoneinfo/Europe/Riga 30252 +usr/share/zoneinfo/Europe/Busingen 30251 +usr/share/zoneinfo/Europe/Vilnius 30250 +usr/share/zoneinfo/Europe/Luxembourg 30249 +usr/share/zoneinfo/Europe/Malta 30248 +usr/share/zoneinfo/Europe/Chisinau 30247 +usr/share/zoneinfo/Europe/Monaco 30246 +usr/share/zoneinfo/Europe/Amsterdam 30245 +usr/share/zoneinfo/Arctic/Longyearbyen 30244 +usr/share/zoneinfo/Poland 30243 +usr/share/zoneinfo/Atlantic/Azores 30242 +usr/share/zoneinfo/Atlantic/Madeira 30241 +usr/share/zoneinfo/Portugal 30240 +usr/share/zoneinfo/Europe/Bucharest 30239 +usr/share/zoneinfo/Europe/Kaliningrad 30238 +usr/share/zoneinfo/W-SU 30237 +usr/share/zoneinfo/Europe/Samara 30236 +usr/share/zoneinfo/Asia/Yekaterinburg 30235 +usr/share/zoneinfo/Asia/Omsk 30234 +usr/share/zoneinfo/Asia/Novosibirsk 30233 +usr/share/zoneinfo/Asia/Krasnoyarsk 30232 +usr/share/zoneinfo/Asia/Irkutsk 30231 +usr/share/zoneinfo/Asia/Yakutsk 30230 +usr/share/zoneinfo/Asia/Vladivostok 30229 +usr/share/zoneinfo/Asia/Magadan 30228 +usr/share/zoneinfo/Asia/Kamchatka 30227 +usr/share/zoneinfo/Atlantic/Canary 30226 +usr/share/zoneinfo/Europe/Madrid 30225 +usr/share/zoneinfo/Africa/Ceuta 30224 +usr/share/zoneinfo/Europe/Stockholm 30223 +usr/lib/python3/dist-packages/gi/types.py 30222 +usr/lib/python3/dist-packages/gi/_constants.py 30221 +usr/lib/python3/dist-packages/gi/docstring.py 30220 +usr/lib/python3/dist-packages/gi/_propertyhelper.py 30219 +usr/lib/python3/dist-packages/gi/_signalhelper.py 30218 +usr/share/zoneinfo/Turkey 30217 +usr/share/zoneinfo/Europe/Kiev 30216 +usr/share/zoneinfo/Asia/Bahrain 30215 +usr/share/zoneinfo/Iran 30214 +usr/share/zoneinfo/Asia/Baghdad 30213 +usr/share/zoneinfo/Israel 30212 +usr/share/zoneinfo/Asia/Amman 30211 +usr/share/zoneinfo/Asia/Aden 30210 +usr/share/zoneinfo/Asia/Beirut 30209 +usr/share/zoneinfo/Asia/Dubai 30208 +usr/share/zoneinfo/Asia/Gaza 30207 +usr/share/zoneinfo/Asia/Damascus 30206 +usr/share/zoneinfo/America/Vancouver 30205 +usr/share/zoneinfo/America/Edmonton 30204 +usr/share/zoneinfo/America/Dawson_Creek 30203 +usr/share/zoneinfo/America/Winnipeg 30202 +usr/share/zoneinfo/America/Regina 30201 +usr/share/zoneinfo/America/Montreal 30200 +usr/share/zoneinfo/America/Atikokan 30199 +usr/share/zoneinfo/America/Halifax 30198 +usr/share/zoneinfo/America/Blanc-Sablon 30197 +usr/share/zoneinfo/America/St_Johns 30196 +usr/lib/python3/dist-packages/gi/overrides/__init__.py 30195 +usr/lib/python3/dist-packages/gi/overrides/GLib.py 30194 +usr/share/zoneinfo/America/Ensenada 30193 +usr/share/zoneinfo/America/Mazatlan 30192 +usr/share/zoneinfo/America/Mexico_City 30191 +usr/share/zoneinfo/America/Miquelon 30190 +usr/share/zoneinfo/America/Adak 30189 +usr/share/zoneinfo/America/Anchorage 30188 +usr/share/zoneinfo/America/Los_Angeles 30187 +usr/share/zoneinfo/Navajo 30186 +usr/share/zoneinfo/America/Phoenix 30185 +usr/share/zoneinfo/America/Chicago 30184 +usr/share/zoneinfo/posixrules 30183 +usr/lib/python3/dist-packages/gi/_ossighelper.py 30182 +usr/lib/python3/dist-packages/gi/_option.py 30181 +usr/lib/python3.7/optparse.py 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/share/X11/xkb/rules/evdev.lst 30155 +usr/lib/ibus/ibus-engine-unikey 30154 +usr/lib/ibus/ibus-dconf 30153 +usr/lib/ibus/ibus-extension-gtk3 30152 +usr/lib/x86_64-linux-gnu/girepository-1.0/NMA-1.0.typelib 30151 +usr/lib/ibus/ibus-x11 30150 +usr/lib/x86_64-linux-gnu/girepository-1.0/GnomeBluetooth-1.0.typelib 30147 +usr/lib/ibus/ibus-portal 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/lib/gnome-shell/libgvc.so 30140 +usr/lib/x86_64-linux-gnu/libpulse-mainloop-glib.so.0.0.5 30139 +usr/lib/upower/upowerd 30138 +usr/share/ibus/dicts/emoji-en.dict 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/libplist.so.3.1.0 30133 +usr/lib/x86_64-linux-gnu/libusbmuxd.so.4.1.0 30132 +etc/UPower/UPower.conf 30131 +usr/lib/x86_64-linux-gnu/libgdm.so.1.0.0 30130 +var/lib/polkit-1/localauthority/10-vendor.d/systemd-networkd.pkla 30129 +var/lib/polkit-1/localauthority/10-vendor.d/org.freedesktop.NetworkManager.pkla 30128 +var/lib/polkit-1/localauthority/10-vendor.d/gnome-control-center.pkla 30127 +etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.pkla 30126 +etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.cups.pkla 30125 +etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.accounts.pkla 30124 +etc/systemd/sleep.conf 30123 +usr/share/xsessions/gnome-classic.desktop 30122 +lib/systemd/system/suspend.target 30121 +lib/systemd/system/systemd-suspend.service 30120 +lib/systemd/system/sleep.target 30119 +usr/share/xsessions/gnome.desktop 30118 +usr/share/gdm/BuiltInSessions/default.desktop 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/gnome-settings-daemon/gsd-xsettings 30108 +usr/lib/gnome-settings-daemon/gsd-a11y-settings 30105 +usr/lib/x86_64-linux-gnu/gio/modules/libgiolibproxy.so 30102 +usr/lib/x86_64-linux-gnu/libproxy.so.1.0.0 30101 +usr/lib/x86_64-linux-gnu/gio/modules/libgiognomeproxy.so 30100 +usr/lib/gnome-settings-daemon/gsd-clipboard 30097 +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/gnome-settings-daemon/gsd-datetime 30091 +usr/lib/x86_64-linux-gnu/libgeoclue-2.so.0.0.0 30088 +usr/lib/gnome-settings-daemon/gsd-housekeeping 30087 +usr/lib/gnome-settings-daemon/gsd-keyboard 30084 +usr/lib/gnome-settings-daemon/gsd-media-keys 30081 +usr/lib/gnome-settings-daemon/gsd-mouse 30078 +usr/lib/gnome-settings-daemon/gsd-power 30075 +usr/lib/gnome-settings-daemon/gsd-print-notifications 30072 +usr/lib/gnome-settings-daemon/gsd-rfkill 30069 +usr/lib/x86_64-linux-gnu/libcups.so.2 30068 +usr/lib/x86_64-linux-gnu/libavahi-common.so.3.5.3 30065 +usr/lib/x86_64-linux-gnu/libavahi-client.so.3.2.9 30064 +usr/lib/gnome-settings-daemon/gsd-screensaver-proxy 30063 +usr/lib/gnome-settings-daemon/gsd-sharing 30060 +usr/lib/x86_64-linux-gnu/gio/modules/libgioremote-volume-monitor.so 30059 +usr/lib/gnome-settings-daemon/gsd-smartcard 30056 +usr/lib/gnome-settings-daemon/gsd-sound 30053 +usr/share/X11/locale/locale.alias 30050 +lib/systemd/system/colord.service 30049 +usr/lib/gnome-settings-daemon-3.0/gtk-modules/at-spi2-atk.desktop 30048 +usr/share/X11/locale/locale.dir 30047 +usr/share/X11/locale/en_US.UTF-8/XLC_LOCALE 30046 +usr/lib/x86_64-linux-gnu/gconv/ISO8859-1.so 30045 +usr/lib/dconf/dconf-service 30044 +usr/lib/x86_64-linux-gnu/nss/libsoftokn3.so 30043 +usr/lib/x86_64-linux-gnu/nss/libfreeblpriv3.so 30042 +lib/systemd/system/systemd-localed.service 30040 +lib/systemd/system/systemd-hostnamed.service 30038 +usr/bin/spice-vdagent 30035 +usr/local/lib/tails-greeter 30029 +usr/lib/colord/colord 30028 +usr/lib/x86_64-linux-gnu/libcolordprivate.so.2.0.5 30027 +usr/lib/x86_64-linux-gnu/libgusb.so.2.0.10 30026 +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/color/icc/colord/BestRGB.icc 30018 +usr/share/color/icc/colord/BetaRGB.icc 30017 +usr/share/tails/greeter/set-cursor.py 30016 +usr/share/color/icc/colord/BruceRGB.icc 30015 +lib/systemd/systemd-hostnamed 30014 +lib/systemd/systemd-localed 30013 +usr/share/color/icc/colord/Crayons.icc 30012 +etc/os-release 30011 +usr/share/color/icc/colord/DonRGB4.icc 30010 +etc/default/keyboard 30009 +usr/share/color/icc/colord/ECI-RGBv1.icc 30008 +usr/share/icons/Adwaita/index.theme 30007 +usr/share/color/icc/colord/ECI-RGBv2.icc 30006 +usr/share/color/icc/colord/EktaSpacePS5.icc 30005 +usr/share/color/icc/colord/Gamma5000K.icc 30004 +usr/share/color/icc/colord/Gamma5500K.icc 30003 +usr/share/color/icc/colord/Gamma6500K.icc 30002 +usr/share/icons/gnome/index.theme 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/share/color/icc/ghostscript/default_rgb.icc 29990 +usr/share/color/icc/ghostscript/esrgb.icc 29989 +usr/lib/python3/dist-packages/gi/overrides/Gtk.py 29988 +usr/share/color/icc/ghostscript/gray_to_k.icc 29987 +usr/share/color/icc/ghostscript/lab.icc 29986 +usr/share/color/icc/ghostscript/ps_cmyk.icc 29985 +usr/share/color/icc/ghostscript/ps_gray.icc 29984 +usr/share/color/icc/ghostscript/ps_rgb.icc 29983 +usr/share/color/icc/ghostscript/rommrgb.icc 29982 +usr/share/color/icc/ghostscript/scrgb.icc 29981 +usr/share/color/icc/ghostscript/sgray.icc 29980 +usr/share/color/icc/ghostscript/srgb.icc 29979 +usr/lib/python3/dist-packages/gi/_gtktemplate.py 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/lib/x86_64-linux-gnu/libtiff.so.5.4.0 29971 +usr/lib/x86_64-linux-gnu/libjpeg.so.62.2.0 29970 +usr/lib/x86_64-linux-gnu/libgphoto2.so.6.1.0 29969 +usr/lib/x86_64-linux-gnu/libgphoto2_port.so.12.0.0 29968 +usr/share/fonts/opentype/cantarell/Cantarell-Regular.otf 29967 +usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf 29966 +usr/share/icons/Adwaita/cursors/watch 29965 +usr/lib/x86_64-linux-gnu/libzstd.so.1.3.8 29964 +usr/lib/x86_64-linux-gnu/libjbig.so.0 29963 +usr/lib/ibus/ibus-engine-simple 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 +usr/lib/gnome-settings-daemon/gsd-backlight-helper 29957 +etc/sane.d/xerox_mfp.conf 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 +usr/share/tails/greeter/tails-greeter.py 29952 +etc/sane.d/umax.conf 29951 +usr/lib/x86_64-linux-gnu/sane/libsane-u12.so.1.0.27 29950 +etc/sane.d/u12.conf 29949 +usr/lib/x86_64-linux-gnu/sane/libsane-teco3.so.1.0.27 29948 +etc/sane.d/teco3.conf 29947 +usr/lib/x86_64-linux-gnu/sane/libsane-teco2.so.1.0.27 29946 +etc/sane.d/teco2.conf 29945 +usr/lib/x86_64-linux-gnu/sane/libsane-teco1.so.1.0.27 29944 +etc/sane.d/teco1.conf 29943 +usr/lib/x86_64-linux-gnu/sane/libsane-tamarack.so.1.0.27 29942 +etc/sane.d/tamarack.conf 29941 +usr/lib/x86_64-linux-gnu/sane/libsane-sp15c.so.1.0.27 29940 +etc/sane.d/sp15c.conf 29939 +usr/lib/x86_64-linux-gnu/sane/libsane-snapscan.so.1.0.27 29938 +etc/sane.d/snapscan.conf 29937 +usr/lib/x86_64-linux-gnu/sane/libsane-sm3840.so.1.0.27 29936 +usr/lib/x86_64-linux-gnu/sane/libsane-sm3600.so.1.0.27 29935 +usr/lib/x86_64-linux-gnu/sane/libsane-sharp.so.1.0.27 29934 +etc/sane.d/sharp.conf 29933 +usr/lib/x86_64-linux-gnu/sane/libsane-sceptre.so.1.0.27 29932 +etc/sane.d/sceptre.conf 29931 +usr/lib/x86_64-linux-gnu/sane/libsane-s9036.so.1.0.27 29930 +etc/sane.d/s9036.conf 29929 +usr/lib/x86_64-linux-gnu/sane/libsane-rts8891.so.1.0.27 29928 +usr/share/icons/Adwaita/16x16/status/battery-good-symbolic.symbolic.png 29927 +usr/share/icons/Adwaita/48x48/status/battery-good-symbolic.symbolic.png 29926 +usr/share/desktop-base/futureprototype-theme/wallpaper/contents/images/1920x1080.svg 29925 +usr/share/themes/Default/gtk-3.0/gtk-keys.css 29924 +usr/lib/python3.7/logging/config.py 29923 +usr/share/icons/Adwaita/48x48/devices/audio-speakers-symbolic.symbolic.png 29920 +usr/share/icons/Adwaita/16x16/status/audio-volume-medium-symbolic.symbolic.png 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.7/logging/handlers.py 29909 +usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so 29908 +usr/lib/python3/dist-packages/tailsgreeter/__init__.py 29907 +usr/lib/python3/dist-packages/tailsgreeter/errors.py 29906 +usr/lib/python3/dist-packages/tailsgreeter/greeter.py 29905 +usr/lib/python3/dist-packages/tailsgreeter/gdmclient.py 29904 +usr/lib/python3/dist-packages/tailsgreeter/config.py 29903 +usr/lib/python3/dist-packages/tailsgreeter/settings/__init__.py 29901 +usr/lib/python3/dist-packages/tailsgreeter/settings/localization.py 29900 +usr/lib/python3/dist-packages/pycountry/__init__.py 29899 +usr/lib/python3/dist-packages/pycountry/db.py 29898 +usr/lib/python3.7/json/__init__.py 29897 +usr/lib/python3.7/json/decoder.py 29896 +usr/local/lib/udev-watchdog-wrapper 29895 +usr/lib/python3.7/json/scanner.py 29894 +usr/lib/python3.7/lib-dynload/_json.cpython-37m-x86_64-linux-gnu.so 29893 +usr/lib/python3.7/json/encoder.py 29892 +usr/lib/python3/dist-packages/pkg_resources/__init__.py 29891 +usr/lib/x86_64-linux-gnu/sane/libsane-pie.so.1.0.27 29890 +etc/sane.d/pie.conf 29889 +usr/lib/x86_64-linux-gnu/sane/libsane-niash.so.1.0.27 29888 +usr/lib/x86_64-linux-gnu/sane/libsane-nec.so.1.0.27 29887 +etc/sane.d/nec.conf 29886 +usr/lib/python3.7/zipfile.py 29885 +usr/lib/x86_64-linux-gnu/sane/libsane-mustek_usb2.so.1.0.27 29884 +usr/lib/x86_64-linux-gnu/sane/libsane-mustek_usb.so.1.0.27 29883 +etc/sane.d/mustek_usb.conf 29882 +usr/lib/x86_64-linux-gnu/sane/libsane-mustek.so.1.0.27 29881 +etc/sane.d/mustek.conf 29880 +usr/lib/x86_64-linux-gnu/sane/libsane-microtek2.so.1.0.27 29879 +etc/sane.d/microtek2.conf 29878 +usr/lib/x86_64-linux-gnu/sane/libsane-microtek.so.1.0.27 29877 +etc/sane.d/microtek.conf 29876 +usr/lib/x86_64-linux-gnu/sane/libsane-matsushita.so.1.0.27 29875 +etc/sane.d/matsushita.conf 29874 +usr/lib/x86_64-linux-gnu/sane/libsane-magicolor.so.1.0.27 29873 +usr/lib/x86_64-linux-gnu/libnetsnmp.so.30.0.3 29872 +etc/sane.d/magicolor.conf 29871 +etc/snmp/snmp.conf 29870 +usr/share/snmp/mibs/GNOME-SMI.txt 29869 +usr/share/snmp/mibs/IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt 29868 +usr/share/snmp/mibs/IANA-LANGUAGE-MIB.txt 29867 +usr/share/snmp/mibs/IANA-RTPROTO-MIB.txt 29866 +usr/share/snmp/mibs/IANAifType-MIB.txt 29865 +usr/share/snmp/mibs/LM-SENSORS-MIB.txt 29864 +usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt 29863 +usr/share/snmp/mibs/NET-SNMP-EXAMPLES-MIB.txt 29862 +usr/share/snmp/mibs/NET-SNMP-EXTEND-MIB.txt 29861 +usr/share/snmp/mibs/NET-SNMP-MIB.txt 29860 +usr/share/snmp/mibs/NET-SNMP-MONITOR-MIB.txt 29859 +usr/share/snmp/mibs/NET-SNMP-PASS-MIB.txt 29858 +usr/share/snmp/mibs/NET-SNMP-PERIODIC-NOTIFY-MIB.txt 29857 +usr/share/snmp/mibs/NET-SNMP-SYSTEM-MIB.txt 29856 +usr/share/snmp/mibs/NET-SNMP-TC.txt 29855 +usr/share/snmp/mibs/NET-SNMP-VACM-MIB.txt 29854 +usr/share/snmp/mibs/RFC-1215.txt 29853 +usr/share/snmp/mibs/SNMP-TLS-TM-MIB.txt 29852 +usr/share/snmp/mibs/SNMP-TSM-MIB.txt 29851 +usr/share/snmp/mibs/UCD-DEMO-MIB.txt 29850 +usr/share/snmp/mibs/UCD-DISKIO-MIB.txt 29849 +usr/share/snmp/mibs/UCD-DLMOD-MIB.txt 29848 +usr/share/snmp/mibs/UCD-IPFILTER-MIB.txt 29847 +usr/share/snmp/mibs/UCD-IPFWACC-MIB.txt 29846 +usr/share/snmp/mibs/UCD-SNMP-MIB-OLD.txt 29845 +usr/share/snmp/mibs/UCD-SNMP-MIB.txt 29844 +usr/share/snmp/mibs/miblist.txt 29843 +usr/lib/x86_64-linux-gnu/sane/libsane-ma1509.so.1.0.27 29842 +usr/lib/python3.7/plistlib.py 29841 +usr/lib/python3.7/xml/parsers/__init__.py 29840 +usr/lib/python3.7/xml/parsers/expat.py 29839 +etc/sane.d/ma1509.conf 29838 +usr/lib/x86_64-linux-gnu/sane/libsane-lexmark.so.1.0.27 29837 +etc/sane.d/lexmark.conf 29836 +usr/lib/x86_64-linux-gnu/sane/libsane-leo.so.1.0.27 29835 +etc/sane.d/leo.conf 29834 +usr/lib/x86_64-linux-gnu/sane/libsane-kvs20xx.so.1.0.27 29833 +usr/lib/x86_64-linux-gnu/sane/libsane-kvs1025.so.1.0.27 29832 +usr/lib/python3.7/email/__init__.py 29831 +usr/lib/x86_64-linux-gnu/sane/libsane-kodakaio.so.1.0.27 29830 +etc/sane.d/kodakaio.conf 29829 +usr/lib/x86_64-linux-gnu/sane/libsane-kodak.so.1.0.27 29828 +etc/sane.d/kodak.conf 29827 +usr/lib/x86_64-linux-gnu/sane/libsane-ibm.so.1.0.27 29826 +etc/sane.d/ibm.conf 29825 +usr/lib/x86_64-linux-gnu/sane/libsane-hs2p.so.1.0.27 29824 +etc/sane.d/hs2p.conf 29823 +usr/lib/x86_64-linux-gnu/sane/libsane-hpljm1005.so.1.0.27 29822 +usr/lib/x86_64-linux-gnu/sane/libsane-hp5590.so.1.0.27 29821 +usr/lib/x86_64-linux-gnu/sane/libsane-hp5400.so.1.0.27 29820 +usr/lib/python3.7/email/parser.py 29819 +usr/lib/python3.7/email/feedparser.py 29818 +usr/lib/python3.7/email/errors.py 29817 +usr/lib/python3.7/email/_policybase.py 29816 +usr/lib/python3.7/email/header.py 29815 +usr/lib/python3.7/email/quoprimime.py 29814 +usr/lib/python3.7/email/base64mime.py 29813 +usr/lib/python3.7/email/charset.py 29812 +usr/lib/python3.7/email/encoders.py 29811 +usr/lib/python3.7/quopri.py 29810 +usr/lib/python3.7/email/utils.py 29809 +usr/lib/python3.7/email/_parseaddr.py 29808 +etc/sane.d/hp5400.conf 29807 +usr/lib/x86_64-linux-gnu/sane/libsane-hp4200.so.1.0.27 29806 +etc/sane.d/hp4200.conf 29805 +usr/lib/x86_64-linux-gnu/sane/libsane-hp3500.so.1.0.27 29804 +usr/lib/x86_64-linux-gnu/sane/libsane-hpsj5s.so.1.0.27 29803 +etc/sane.d/hpsj5s.conf 29802 +usr/lib/x86_64-linux-gnu/sane/libsane-hp3900.so.1.0.27 29801 +etc/sane.d/hp3900.conf 29800 +usr/lib/x86_64-linux-gnu/sane/libsane-hp.so.1.0.27 29799 +etc/sane.d/hp.conf 29798 +usr/lib/x86_64-linux-gnu/sane/libsane-gt68xx.so.1.0.27 29797 +usr/lib/python3.7/ntpath.py 29796 +usr/lib/python3/dist-packages/pkg_resources/extern/__init__.py 29795 +etc/sane.d/gt68xx.conf 29794 +usr/lib/x86_64-linux-gnu/sane/libsane-genesys.so.1.0.27 29793 +usr/lib/python3/dist-packages/pkg_resources/_vendor/__init__.py 29792 +usr/lib/python3/dist-packages/pkg_resources/_vendor/six.py 29791 +etc/sane.d/genesys.conf 29790 +usr/lib/x86_64-linux-gnu/sane/libsane-fujitsu.so.1.0.27 29789 etc/sane.d/fujitsu.conf 29788 usr/lib/x86_64-linux-gnu/sane/libsane-epsonds.so.1.0.27 29787 etc/sane.d/epsonds.conf 29786 -usr/lib/python3.7/email/header.py 29785 -usr/lib/python3.7/email/quoprimime.py 29784 -usr/lib/python3.7/email/base64mime.py 29783 -usr/lib/python3.7/email/charset.py 29782 -usr/lib/python3.7/email/encoders.py 29781 -usr/lib/python3.7/quopri.py 29780 -usr/lib/python3.7/email/utils.py 29779 -usr/lib/python3.7/email/_parseaddr.py 29778 -usr/lib/python3.7/ntpath.py 29777 -usr/lib/python3/dist-packages/pkg_resources/extern/__init__.py 29776 -usr/lib/python3/dist-packages/pkg_resources/_vendor/__init__.py 29775 -usr/lib/python3/dist-packages/pkg_resources/_vendor/six.py 29774 -usr/lib/python3/dist-packages/pkg_resources/py31compat.py 29773 -usr/lib/python3/dist-packages/pkg_resources/_vendor/appdirs.py 29772 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/__init__.py 29771 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/__about__.py 29770 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/version.py 29769 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_structures.py 29768 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/specifiers.py 29767 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_compat.py 29766 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/requirements.py 29765 -usr/lib/python3/dist-packages/pkg_resources/_vendor/pyparsing.py 29764 -usr/lib/python3.7/pprint.py 29763 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/markers.py 29762 -usr/lib/python3.7/sysconfig.py 29761 -usr/lib/python3/dist-packages/yarl-1.3.0.egg-info/PKG-INFO 29760 -usr/lib/python3/dist-packages/whisperback-1.8.1.egg-info 29759 -usr/lib/python3/dist-packages/Werkzeug-0.14.1.egg-info/PKG-INFO 29758 -usr/lib/python3/dist-packages/urllib3-1.24.1.egg-info/PKG-INFO 29757 -usr/lib/python3/dist-packages/trezor-0.9.0.egg-info/PKG-INFO 29756 -usr/lib/python3/dist-packages/systemd_python-234.egg-info 29755 -usr/lib/python3/dist-packages/stem-1.7.1.egg-info 29754 -usr/lib/python3/dist-packages/six-1.12.0.egg-info/PKG-INFO 29753 -usr/lib/python3/dist-packages/sh-1.12.14.egg-info/PKG-INFO 29752 -usr/lib/python3/dist-packages/requests-2.21.0.egg-info/PKG-INFO 29751 -usr/lib/python3/dist-packages/reportlab-3.5.13.egg-info/PKG-INFO 29750 -usr/lib/python3/dist-packages/regex-2019.02.07.egg-info 29749 -usr/lib/python3/dist-packages/qrcode-6.1.egg-info/PKG-INFO 29748 -usr/lib/python3/dist-packages/PyYAML-3.13.egg-info 29747 -usr/lib/python3/dist-packages/pyxdg-0.25.egg-info 29746 -usr/lib/python3/dist-packages/pytz-2019.1.egg-info/PKG-INFO 29745 -usr/lib/python3/dist-packages/python_pam-1.8.4.egg-info/PKG-INFO 29744 -usr/lib/python3/dist-packages/python_gnupg-0.4.4.egg-info 29743 -usr/lib/python3/dist-packages/python_apt-1.8.4.egg-info 29742 -usr/lib/python3/dist-packages/PySocks-1.6.8.egg-info/PKG-INFO 29741 -usr/lib/python3/dist-packages/pyserial-3.4.egg-info/PKG-INFO 29740 -usr/lib/python3/dist-packages/pyinotify-0.9.6.egg-info 29739 -usr/lib/python3/dist-packages/PyGObject-3.30.4.egg-info/PKG-INFO 29738 -usr/lib/python3/dist-packages/pydbus-0.6.0.egg-info/PKG-INFO 29737 -usr/lib/python3/dist-packages/pycups-1.9.73.egg-info 29736 -usr/lib/python3/dist-packages/pycountry-17.5.14.egg-info/PKG-INFO 29735 -usr/lib/python3/dist-packages/pycairo-1.16.2.egg-info 29734 -usr/lib/python3/dist-packages/pyaes-1.6.1.egg-info 29733 -usr/lib/python3/dist-packages/psutil-5.5.1.egg-info 29732 -usr/lib/python3/dist-packages/protobuf-3.6.1.egg-info/PKG-INFO 29731 -usr/lib/python3/dist-packages/Pillow-5.4.1.egg-info/PKG-INFO 29730 -usr/lib/python3/dist-packages/pexpect-4.6.0.egg-info 29729 -usr/lib/python3/dist-packages/pbkdf2-1.3.egg-info/PKG-INFO 29728 -usr/lib/python3/dist-packages/onionshare-1.3.2.egg-info 29727 -usr/lib/python3/dist-packages/onioncircuits-0.6.egg-info 29726 -usr/lib/python3/dist-packages/mutagen-1.40.0.egg-info 29725 -usr/lib/python3/dist-packages/multidict-4.5.2.egg-info/PKG-INFO 29724 -usr/lib/python3/dist-packages/mnemonic-0.18.egg-info/PKG-INFO 29723 -usr/lib/python3/dist-packages/MarkupSafe-1.1.0.egg-info/PKG-INFO 29722 -usr/lib/python3/dist-packages/louis-3.8.0.egg-info 29721 -usr/lib/python3/dist-packages/libusb1-1.7.egg-info/PKG-INFO 29720 -usr/lib/python3/dist-packages/jsonrpclib_pelix-0.3.1.egg-info/PKG-INFO 29719 -usr/lib/python3/dist-packages/Jinja2-2.10.egg-info/PKG-INFO 29718 -usr/lib/python3/dist-packages/itsdangerous-0.24.egg-info/PKG-INFO 29717 -usr/lib/python3/dist-packages/idna-2.6.egg-info/PKG-INFO 29716 -usr/lib/python3/dist-packages/hidapi-0.7.99.post21.egg-info/PKG-INFO 29715 -usr/lib/python3/dist-packages/Flask-1.0.2.egg-info/PKG-INFO 29714 -usr/lib/python3/dist-packages/Electrum-3.3.8.egg-info/PKG-INFO 29713 -usr/lib/python3/dist-packages/ecdsa-0.13.egg-info 29712 -usr/lib/python3/dist-packages/dogtail-0.9.11.egg-info/PKG-INFO 29711 -usr/lib/python3/dist-packages/dnspython-1.16.0.egg-info/PKG-INFO 29710 -usr/lib/python3/dist-packages/distro-1.3.0.egg-info/PKG-INFO 29709 -usr/lib/python3/dist-packages/cupshelpers-1.0.egg-info 29708 -usr/lib/python3/dist-packages/colorama-0.3.7.egg-info/PKG-INFO 29707 -usr/lib/python3/dist-packages/Click-7.0.egg-info/PKG-INFO 29706 -usr/lib/python3/dist-packages/chardet-3.0.4.egg-info/PKG-INFO 29705 -usr/lib/python3/dist-packages/certifi-2018.8.24.egg-info/PKG-INFO 29704 -usr/lib/python3/dist-packages/Brlapi-0.6.7.egg-info 29703 -usr/lib/python3/dist-packages/attrs-18.2.0.egg-info/PKG-INFO 29702 -usr/lib/python3/dist-packages/atomicwrites-1.1.5.egg-info/PKG-INFO 29701 -usr/lib/python3/dist-packages/async_timeout-3.0.1.egg-info/PKG-INFO 29700 -usr/lib/python3/dist-packages/aiorpcX-0.18.3.egg-info/PKG-INFO 29699 -usr/lib/python3/dist-packages/aiohttp-3.5.1.egg-info/PKG-INFO 29698 -usr/lib/python3/dist-packages/aiohttp_socks-0.2.2.egg-info/PKG-INFO 29697 -usr/lib/python3/dist-packages/protobuf-3.6.1.egg-info/namespace_packages.txt 29696 -usr/lib/python3.7/typing.py 29695 -usr/lib/python3/dist-packages/tailsgreeter/settings/admin.py 29694 -usr/lib/python3.7/pipes.py 29693 -usr/lib/python3.7/shlex.py 29692 -usr/lib/python3/dist-packages/tailsgreeter/settings/localization_settings.py 29691 -usr/lib/python3/dist-packages/tailsgreeter/settings/formats.py 29690 -usr/lib/python3/dist-packages/tailsgreeter/settings/keyboard.py 29689 -usr/lib/python3/dist-packages/tailsgreeter/settings/language.py 29688 -usr/lib/python3/dist-packages/tailsgreeter/settings/macspoof.py 29687 -usr/lib/python3/dist-packages/tailsgreeter/settings/network.py 29686 -usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py 29685 -usr/lib/python3/dist-packages/tailsgreeter/utils.py 29684 -usr/lib/python3/dist-packages/tailsgreeter/translatable_window.py 29683 -usr/lib/python3/dist-packages/tailsgreeter/ui/__init__.py 29682 -usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py 29681 -usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py 29680 -usr/lib/python3/dist-packages/tailsgreeter/ui/popover.py 29679 -usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py 29678 -usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py 29677 -usr/lib/python3/dist-packages/tailsgreeter/ui/help_window.py 29676 -usr/lib/python3.7/webbrowser.py 29675 -usr/lib/x86_64-linux-gnu/girepository-1.0/WebKit2-4.0.typelib 29674 -usr/lib/x86_64-linux-gnu/girepository-1.0/JavaScriptCore-4.0.typelib 29673 -usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py 29672 -usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py 29671 -usr/lib/python3/dist-packages/tailsgreeter/ui/settings_collection.py 29670 -usr/lib/python3.7/configparser.py 29669 -usr/share/tails/greeter/tails-logging.conf 29668 -usr/share/tails/greeter/supported_locales 29667 -usr/lib/locale/af_ZA/LC_MESSAGES/SYS_LC_MESSAGES 29665 -usr/share/locale/nl/LC_MESSAGES/iso_639-2.mo 29664 -usr/lib/locale/cs_CZ/LC_MESSAGES/SYS_LC_MESSAGES 29663 -usr/share/locale/cs/LC_MESSAGES/iso_639-2.mo 29662 -usr/lib/locale/mk_MK/LC_MESSAGES/SYS_LC_MESSAGES 29661 -usr/share/locale/mk/LC_MESSAGES/iso_639-2.mo 29660 -usr/lib/locale/fr_CA/LC_MESSAGES/SYS_LC_MESSAGES 29659 -usr/share/locale/fr/LC_MESSAGES/iso_639-2.mo 29658 -usr/lib/locale/zh_CN/LC_MESSAGES/SYS_LC_MESSAGES 29657 -usr/share/locale/zh_CN/LC_MESSAGES/iso_639-2.mo 29656 -usr/lib/locale/lt_LT/LC_MESSAGES/SYS_LC_MESSAGES 29655 -usr/share/locale/lt/LC_MESSAGES/iso_639-2.mo 29654 -usr/lib/locale/fa_IR/LC_MESSAGES/SYS_LC_MESSAGES 29653 -usr/share/locale/fa/LC_MESSAGES/iso_639-2.mo 29652 -usr/lib/locale/km_KH/LC_MESSAGES/SYS_LC_MESSAGES 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/pl_PL/LC_MESSAGES/SYS_LC_MESSAGES 29648 -usr/share/locale/pl/LC_MESSAGES/iso_639-2.mo 29647 -usr/lib/locale/el_CY/LC_MESSAGES/SYS_LC_MESSAGES 29646 -usr/share/locale/el/LC_MESSAGES/iso_639-2.mo 29645 -usr/lib/locale/sv_FI/LC_MESSAGES/SYS_LC_MESSAGES 29644 -usr/share/locale/sv/LC_MESSAGES/iso_639-2.mo 29643 -usr/lib/locale/he_IL/LC_MESSAGES/SYS_LC_MESSAGES 29642 -usr/share/locale/he/LC_MESSAGES/iso_639-2.mo 29641 -usr/lib/locale/id_ID/LC_MESSAGES/SYS_LC_MESSAGES 29640 -usr/share/locale/id/LC_MESSAGES/iso_639-2.mo 29639 -usr/lib/locale/zh_TW/LC_MESSAGES/SYS_LC_MESSAGES 29638 -usr/share/locale/zh_TW/LC_MESSAGES/iso_639-2.mo 29637 -usr/lib/locale/fi_FI/LC_MESSAGES/SYS_LC_MESSAGES 29636 -usr/share/locale/fi/LC_MESSAGES/iso_639-2.mo 29635 -usr/lib/locale/it_IT/LC_MESSAGES/SYS_LC_MESSAGES 29634 -usr/share/locale/it/LC_MESSAGES/iso_639-2.mo 29633 -usr/lib/locale/ar_AE/LC_MESSAGES/SYS_LC_MESSAGES 29632 -usr/share/locale/ar/LC_MESSAGES/iso_639-2.mo 29631 -usr/lib/locale/es_AR/LC_MESSAGES/SYS_LC_MESSAGES 29630 -usr/share/locale/es/LC_MESSAGES/iso_639-2.mo 29629 -usr/lib/locale/bho_IN/LC_MESSAGES/SYS_LC_MESSAGES 29628 -usr/share/locale/hi/LC_MESSAGES/iso_639-2.mo 29627 -usr/lib/locale/pt_BR/LC_MESSAGES/SYS_LC_MESSAGES 29626 -usr/share/locale/pt/LC_MESSAGES/iso_639-2.mo 29625 -usr/lib/locale/tr_CY/LC_MESSAGES/SYS_LC_MESSAGES 29624 -usr/share/locale/tr/LC_MESSAGES/iso_639-2.mo 29623 -usr/lib/locale/ga_IE/LC_MESSAGES/SYS_LC_MESSAGES 29622 -usr/share/locale/ga/LC_MESSAGES/iso_639-2.mo 29621 -usr/lib/locale/hu_HU/LC_MESSAGES/SYS_LC_MESSAGES 29620 -usr/share/locale/hu/LC_MESSAGES/iso_639-2.mo 29619 -usr/lib/locale/ca_ES/LC_MESSAGES/SYS_LC_MESSAGES 29618 -usr/share/locale/ca/LC_MESSAGES/iso_639-2.mo 29617 -usr/lib/locale/ru_RU/LC_MESSAGES/SYS_LC_MESSAGES 29616 -usr/share/locale/ru/LC_MESSAGES/iso_639-2.mo 29615 -usr/lib/locale/en_AU/LC_MESSAGES/SYS_LC_MESSAGES 29614 -usr/lib/locale/de_AT/LC_MESSAGES/SYS_LC_MESSAGES 29613 -usr/share/locale/de/LC_MESSAGES/iso_639-2.mo 29612 -usr/share/tails/greeter/setting.ui 29611 -usr/share/locale/id/LC_MESSAGES/iso_3166-1.mo 29610 -usr/share/locale/ca/LC_MESSAGES/iso_3166-1.mo 29609 -usr/lib/locale/an_ES/LC_MESSAGES/SYS_LC_MESSAGES 29608 -usr/share/locale/km/LC_MESSAGES/iso_3166-1.mo 29607 -usr/share/locale/de/LC_MESSAGES/iso_3166-1.mo 29606 -usr/lib/locale/en_CA/LC_MESSAGES/SYS_LC_MESSAGES 29605 -usr/lib/locale/en_DK/LC_MESSAGES/SYS_LC_MESSAGES 29604 -usr/lib/locale/bem_ZM/LC_MESSAGES/SYS_LC_MESSAGES 29603 -usr/share/locale/es/LC_MESSAGES/iso_3166-1.mo 29602 -usr/lib/locale/an_ES.utf8/LC_MESSAGES/SYS_LC_MESSAGES 29601 -usr/share/locale/fr/LC_MESSAGES/iso_3166-1.mo 29600 -usr/lib/locale/fr_BE/LC_MESSAGES/SYS_LC_MESSAGES 29599 -usr/lib/locale/fr_CH/LC_MESSAGES/SYS_LC_MESSAGES 29598 -usr/share/locale/ga/LC_MESSAGES/iso_3166-1.mo 29597 -usr/share/locale/it/LC_MESSAGES/iso_3166-1.mo 29596 -usr/lib/locale/it_CH/LC_MESSAGES/SYS_LC_MESSAGES 29595 -usr/share/locale/lt/LC_MESSAGES/iso_3166-1.mo 29594 -usr/share/locale/hu/LC_MESSAGES/iso_3166-1.mo 29593 -usr/share/locale/nl/LC_MESSAGES/iso_3166-1.mo 29592 -usr/lib/locale/af_ZA.utf8/LC_MESSAGES/SYS_LC_MESSAGES 29591 -usr/share/locale/pl/LC_MESSAGES/iso_3166-1.mo 29590 -usr/share/locale/pt_BR/LC_MESSAGES/iso_639-2.mo 29589 -usr/share/locale/pt_BR/LC_MESSAGES/iso_3166-1.mo 29588 -usr/share/locale/pt/LC_MESSAGES/iso_3166-1.mo 29587 -usr/share/locale/ro/LC_MESSAGES/iso_3166-1.mo 29586 -usr/share/locale/fi/LC_MESSAGES/iso_3166-1.mo 29585 -usr/share/locale/sv/LC_MESSAGES/iso_3166-1.mo 29584 -usr/share/locale/tr/LC_MESSAGES/iso_3166-1.mo 29583 -usr/share/locale/cs/LC_MESSAGES/iso_3166-1.mo 29582 -usr/share/locale/el/LC_MESSAGES/iso_3166-1.mo 29581 -usr/share/locale/mk/LC_MESSAGES/iso_3166-1.mo 29580 -usr/share/locale/ru/LC_MESSAGES/iso_3166-1.mo 29579 -usr/lib/locale/ru_UA/LC_MESSAGES/SYS_LC_MESSAGES 29578 -usr/share/locale/he/LC_MESSAGES/iso_3166-1.mo 29577 -usr/share/locale/ar/LC_MESSAGES/iso_3166-1.mo 29576 -usr/lib/locale/ar_AE.utf8/LC_MESSAGES/SYS_LC_MESSAGES 29575 -usr/share/locale/fa/LC_MESSAGES/iso_3166-1.mo 29574 -usr/share/locale/hi/LC_MESSAGES/iso_3166-1.mo 29573 -usr/share/locale/zh_CN/LC_MESSAGES/iso_3166-1.mo 29572 -usr/lib/locale/zh_HK/LC_MESSAGES/SYS_LC_MESSAGES 29571 -usr/share/locale/zh_HK/LC_MESSAGES/iso_639-2.mo 29570 -usr/share/locale/zh_HK/LC_MESSAGES/iso_3166-1.mo 29569 -usr/share/locale/zh_TW/LC_MESSAGES/iso_3166-1.mo 29568 -usr/share/tails/greeter/region_settings.ui 29567 -usr/lib/x86_64-linux-gnu/sane/libsane-epson2.so.1.0.27 29566 -etc/sane.d/epson2.conf 29565 -usr/share/tails/greeter/additional_settings.ui 29564 -usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules.cache 29563 -usr/share/tails/greeter/greeter.css 29562 -usr/share/tails/greeter/main.ui 29561 -usr/local/sbin/live-persist 29560 -lib/live/boot/9990-cmdline-old 29557 -lib/live/boot/9990-misc-helpers.sh 29556 -lib/systemd/systemd-update-utmp 29551 -usr/local/lib/udev-watchdog-wrapper 29550 -sbin/cryptsetup 29549 -usr/lib/x86_64-linux-gnu/libpopt.so.0.0.0 29548 -usr/share/fonts/opentype/cantarell/Cantarell-Bold.otf 29545 -usr/share/icons/hicolor/scalable/actions/tails-help.svg 29544 -usr/share/icons/hicolor/scalable/actions/tails-language.svg 29543 -usr/share/icons/hicolor/scalable/actions/tails-keyboard-layout.svg 29542 -usr/share/icons/hicolor/scalable/actions/tails-formats.svg 29541 -usr/share/icons/Adwaita/16x16/actions/list-add-symbolic.symbolic.png 29540 -usr/share/icons/Adwaita/cursors/top_left_corner 29539 -usr/share/icons/Adwaita/cursors/top_side 29538 -usr/share/icons/Adwaita/cursors/top_right_corner 29537 -usr/share/icons/Adwaita/cursors/left_side 29536 -usr/share/icons/Adwaita/cursors/right_side 29535 -usr/share/icons/Adwaita/cursors/bottom_left_corner 29534 -usr/share/icons/Adwaita/cursors/bottom_side 29533 -usr/share/icons/Adwaita/cursors/bottom_right_corner 29532 -usr/share/icons/hicolor/32x32/apps/gdm-setup.png 29531 -usr/share/icons/Adwaita/cursors/hand2 29530 -usr/lib/x86_64-linux-gnu/sane/libsane-epjitsu.so.1.0.27 29528 -etc/sane.d/epjitsu.conf 29527 -usr/lib/x86_64-linux-gnu/sane/libsane-dmc.so.1.0.27 29526 -etc/sane.d/dmc.conf 29525 -usr/lib/x86_64-linux-gnu/sane/libsane-dell1600n_net.so.1.0.27 29524 -etc/sane.d/dell1600n_net.conf 29523 -usr/lib/x86_64-linux-gnu/sane/libsane-coolscan3.so.1.0.27 29522 -etc/sane.d/coolscan3.conf 29521 -usr/lib/x86_64-linux-gnu/sane/libsane-coolscan.so.1.0.27 29520 -etc/sane.d/coolscan.conf 29519 -usr/lib/x86_64-linux-gnu/sane/libsane-cardscan.so.1.0.27 29518 -etc/sane.d/cardscan.conf 29517 -usr/lib/x86_64-linux-gnu/sane/libsane-canon_dr.so.1.0.27 29516 -etc/sane.d/canon_dr.conf 29515 -usr/lib/x86_64-linux-gnu/sane/libsane-canon630u.so.1.0.27 29514 -etc/sane.d/canon630u.conf 29513 -usr/lib/x86_64-linux-gnu/sane/libsane-canon.so.1.0.27 29512 -etc/sane.d/canon.conf 29511 -usr/lib/x86_64-linux-gnu/sane/libsane-bh.so.1.0.27 29510 -etc/sane.d/bh.conf 29509 -usr/lib/x86_64-linux-gnu/sane/libsane-as6e.so.1.0.27 29508 -usr/lib/x86_64-linux-gnu/sane/libsane-artec_eplus48u.so.1.0.27 29507 -etc/sane.d/artec_eplus48u.conf 29506 -usr/lib/x86_64-linux-gnu/sane/libsane-artec.so.1.0.27 29505 -etc/sane.d/artec.conf 29504 -usr/lib/x86_64-linux-gnu/sane/libsane-avision.so.1.0.27 29503 -etc/sane.d/avision.conf 29502 -usr/lib/x86_64-linux-gnu/sane/libsane-apple.so.1.0.27 29501 -etc/sane.d/apple.conf 29500 -usr/lib/x86_64-linux-gnu/sane/libsane-agfafocus.so.1.0.27 29499 -etc/sane.d/agfafocus.conf 29498 -usr/lib/x86_64-linux-gnu/sane/libsane-abaton.so.1.0.27 29497 -etc/sane.d/abaton.conf 29496 -usr/lib/x86_64-linux-gnu/sane/libsane-net.so.1.0.27 29495 -etc/sane.d/net.conf 29494 -usr/lib/x86_64-linux-gnu/sane/libsane-hpaio.so.1.0.0 29493 -usr/lib/x86_64-linux-gnu/libhpip.so.0.0.1 29492 -usr/lib/x86_64-linux-gnu/libhpmud.so.0.0.6 29491 -usr/lib/x86_64-linux-gnu/libhpdiscovery.so.0.0.1 29490 -etc/pam.d/gdm-password 29484 -usr/share/xsessions/gnome-xorg.desktop 29483 -lib/x86_64-linux-gnu/security/pam_succeed_if.so 29482 -etc/securetty 29481 -usr/local/lib/create-tor-browser-directories 29463 -usr/local/lib/tails-shell-library/tails-greeter.sh 29462 -etc/gdm3/PostLogin/Default 29461 -etc/live/config.d/username.conf 29460 -usr/local/lib/tails-unblock-network 29459 -lib/systemd/system/tails-unblock-network.service 29453 -bin/sync 29448 -bin/kmod 29445 -lib/modules/5.3.0-2-amd64/modules.softdep 29444 -lib/modprobe.d/aliases.conf 29441 -etc/modprobe.d/amd64-microcode-blacklist.conf 29440 -lib/modprobe.d/fbdev-blacklist.conf 29439 -etc/modprobe.d/intel-microcode-blacklist.conf 29438 -etc/modprobe.d/loop.conf 29437 -etc/modprobe.d/no-bluetooth.conf 29436 -etc/modprobe.d/no-conntrack-helper.conf 29435 -etc/modprobe.d/no-mei.conf 29434 -etc/modprobe.d/no-n-hdlc.conf 29433 -etc/modprobe.d/no-pc-speaker.conf 29432 -lib/modprobe.d/systemd.conf 29431 -etc/modprobe.d/uncommon-network-protocols.conf 29430 -lib/modules/5.3.0-2-amd64/modules.dep.bin 29429 -lib/modules/5.3.0-2-amd64/modules.alias.bin 29428 -lib/modules/5.3.0-2-amd64/modules.symbols.bin 29427 -lib/modules/5.3.0-2-amd64/modules.builtin.bin 29426 -lib/systemd/network/99-default.link 29425 -etc/udev/rules.d/00-mac-spoof.rules 29424 -lib/udev/rules.d/39-usbmuxd.rules 29423 -lib/udev/rules.d/40-usb_modeswitch.rules 29422 -lib/udev/rules.d/50-firmware.rules 29421 -lib/udev/rules.d/50-udev-default.rules 29420 -lib/udev/rules.d/55-dm.rules 29419 -lib/udev/rules.d/56-hpmud.rules 29418 -lib/udev/rules.d/56-lvm.rules 29417 -lib/udev/rules.d/60-block.rules 29416 -lib/udev/rules.d/60-cdrom_id.rules 29415 -lib/udev/rules.d/60-crda.rules 29414 -lib/udev/rules.d/60-drm.rules 29413 -lib/udev/rules.d/60-evdev.rules 29412 -lib/udev/rules.d/60-gobi-loader.rules 29411 -lib/udev/rules.d/60-input-id.rules 29410 -lib/udev/rules.d/60-libgphoto2-6.rules 29409 -lib/udev/rules.d/60-libsane.rules 29408 -lib/udev/rules.d/60-open-vm-tools.rules 29407 -lib/udev/rules.d/60-persistent-alsa.rules 29406 -lib/udev/rules.d/60-persistent-input.rules 29405 -lib/udev/rules.d/60-persistent-storage-dm.rules 29404 -lib/udev/rules.d/60-persistent-storage-tape.rules 29403 -lib/udev/rules.d/60-persistent-storage.rules 29402 -lib/udev/rules.d/60-persistent-v4l.rules 29401 -lib/udev/rules.d/60-scdaemon.rules 29400 -lib/udev/rules.d/60-sensor.rules 29399 -lib/udev/rules.d/60-serial.rules 29398 -lib/udev/rules.d/60-virtualbox-guest-utils.rules 29397 -lib/udev/rules.d/61-gdm.rules 29396 -lib/udev/rules.d/61-gnome-settings-daemon-rfkill.rules 29395 -lib/udev/rules.d/64-btrfs.rules 29394 -lib/udev/rules.d/64-xorg-xkb.rules 29393 -lib/udev/rules.d/65-libwacom.rules 29392 -lib/udev/rules.d/66-bilibop.rules 29391 -lib/udev/rules.d/69-cd-sensors.rules 29390 -lib/udev/rules.d/69-libmtp.rules 29389 -lib/udev/rules.d/69-lvm-metad.rules 29373 -lib/udev/rules.d/70-joystick.rules 29371 -lib/udev/rules.d/70-mouse.rules 29370 -lib/udev/rules.d/70-power-switch.rules 29368 -etc/udev/rules.d/70-protect-boot-medium-for-udisks.rules 29367 -lib/udev/rules.d/70-spice-vdagentd.rules 29366 -lib/udev/rules.d/70-touchpad.rules 29364 -lib/udev/rules.d/70-uaccess.rules 29363 -lib/udev/rules.d/71-seat.rules 29362 -lib/udev/rules.d/73-seat-late.rules 29361 -lib/udev/rules.d/73-special-net-names.rules 29360 -lib/udev/rules.d/73-usb-net-by-mac.rules 29359 -lib/udev/rules.d/75-net-description.rules 29358 -lib/udev/rules.d/75-probe_mtd.rules 29357 -lib/udev/rules.d/77-mm-cinterion-port-types.rules 29356 -lib/udev/rules.d/77-mm-dell-port-types.rules 29355 -lib/udev/rules.d/77-mm-ericsson-mbm.rules 29354 -lib/udev/rules.d/77-mm-fibocom-port-types.rules 29353 -lib/udev/rules.d/77-mm-haier-port-types.rules 29352 -lib/udev/rules.d/77-mm-huawei-net-port-types.rules 29351 -lib/udev/rules.d/77-mm-longcheer-port-types.rules 29350 -lib/udev/rules.d/77-mm-mtk-port-types.rules 29349 -lib/udev/rules.d/77-mm-nokia-port-types.rules 29348 -lib/udev/rules.d/77-mm-pcmcia-device-blacklist.rules 29347 -lib/udev/rules.d/77-mm-qdl-device-blacklist.rules 29346 -lib/udev/rules.d/77-mm-sierra.rules 29345 -lib/udev/rules.d/77-mm-simtech-port-types.rules 29344 -lib/udev/rules.d/77-mm-telit-port-types.rules 29343 -lib/udev/rules.d/77-mm-ublox-port-types.rules 29342 -lib/udev/rules.d/77-mm-usb-device-blacklist.rules 29341 -lib/udev/rules.d/77-mm-usb-serial-adapters-greylist.rules 29340 -lib/udev/rules.d/77-mm-x22x-port-types.rules 29339 -lib/udev/rules.d/77-mm-zte-port-types.rules 29338 -lib/udev/rules.d/78-sound-card.rules 29337 -lib/udev/rules.d/80-debian-compat.rules 29336 -lib/udev/rules.d/80-drivers.rules 29335 -lib/udev/rules.d/80-ifupdown.rules 29334 -lib/udev/rules.d/80-libinput-device-groups.rules 29333 -lib/udev/rules.d/80-mm-candidate.rules 29332 -lib/udev/rules.d/80-udisks2.rules 29331 -lib/udev/rules.d/84-nm-drivers.rules 29330 -lib/udev/rules.d/85-hdparm.rules 29329 -lib/udev/rules.d/85-hwclock.rules 29328 -lib/udev/rules.d/85-nm-unmanaged.rules 29327 -lib/udev/rules.d/85-regulatory.rules 29326 -lib/udev/rules.d/89-alsa-ucm.rules 29325 -lib/udev/rules.d/90-alsa-restore.rules 29324 -lib/udev/rules.d/90-bolt.rules 29323 -lib/udev/rules.d/90-console-setup.rules 29322 -lib/udev/rules.d/90-iphone-tether.rules 29321 -lib/udev/rules.d/90-libinput-model-quirks.rules 29320 -lib/udev/rules.d/90-nm-thunderbolt.rules 29319 -lib/udev/rules.d/90-pulseaudio.rules 29318 -lib/udev/rules.d/92-libccid.rules 29317 -lib/udev/rules.d/95-cd-devices.rules 29316 -lib/udev/rules.d/95-dm-notify.rules 29315 -lib/udev/rules.d/95-upower-csr.rules 29314 -lib/udev/rules.d/95-upower-hid.rules 29313 -lib/udev/rules.d/95-upower-wup.rules 29312 -etc/udev/rules.d/99-hide-TailsData.rules 29311 -lib/udev/rules.d/99-laptop-mode.rules 29310 -etc/udev/rules.d/99-make-removable-devices-user-writable.rules 29309 -lib/udev/rules.d/99-systemd.rules 29308 -lib/udev/rules.d/99-vmware-scsi-udev.rules 29307 -lib/modules/5.3.0-2-amd64/kernel/drivers/cpufreq/acpi-cpufreq.ko 29208 -lib/modules/5.3.0-2-amd64/kernel/drivers/cpufreq/pcc-cpufreq.ko 29188 -lib/udev/libinput-device-group 29172 -lib/modules/5.3.0-2-amd64/kernel/drivers/net/ethernet/intel/e1000e/e1000e.ko 29151 -bin/true 29089 -lib/modules/5.3.0-2-amd64/kernel/drivers/net/wireless/intel/iwlwifi/iwlwifi.ko 29047 -lib/udev/ata_id 29025 -lib/systemd/system/systemd-udev-settle.service 28996 -lib/udev/hwclock-set 28989 -lib/udev/hdparm 28988 -lib/hdparm/hdparm-functions 28982 -lib/firmware/iwlwifi-6000g2a-6.ucode 28981 -lib/udev/libinput-model-quirks 28977 -etc/hdparm.conf 28971 -lib/modules/5.3.0-2-amd64/kernel/lib/crypto/libarc4.ko 28850 -sbin/ethtool 28796 -lib/udev/ifupdown-hotplug 28759 -etc/console-setup/cached_setup_terminal.sh 28714 -etc/console-setup/cached_setup_font.sh 28711 -bin/setfont 28710 -usr/share/consolefonts/Uni1-Fixed16.psf.gz 28703 -lib/modules/5.3.0-2-amd64/kernel/net/mac80211/mac80211.ko 28702 -usr/local/lib/tails-spoof-mac 28692 -usr/local/lib/tails-shell-library/hardware.sh 28691 -usr/local/lib/tails-shell-library/log.sh 28690 -usr/bin/gettext.sh 28689 -usr/bin/macchanger 28686 -usr/share/macchanger/OUI.list 28685 -lib/modules/5.3.0-2-amd64/kernel/drivers/net/wireless/intel/iwlwifi/dvm/iwldvm.ko 28683 -usr/share/macchanger/wireless.list 28682 -lib/crda/setregdomain 28679 -etc/default/crda 28678 -lib/systemd/systemd-rfkill 28675 -bin/readlink 28671 -lib/bilibop/test 28664 -lib/bilibop/common.sh 28663 -bin/df 28662 -etc/bilibop/bilibop.conf 28661 -lib/systemd/system/NetworkManager.service 28644 -lib/systemd/system/NetworkManager-wait-online.service 28643 -lib/systemd/system/NetworkManager-dispatcher.service 28642 -etc/systemd/system.conf 28641 -lib/systemd/system.conf.d/lower-DefaultTimeoutStopSec.conf 28640 -lib/systemd/system-generators/systemd-cryptsetup-generator 28639 -lib/systemd/system-generators/systemd-fstab-generator 28638 -lib/systemd/system-generators/systemd-debug-generator 28637 -lib/systemd/system-generators/systemd-getty-generator 28636 -lib/systemd/system-generators/systemd-hibernate-resume-generator 28635 -lib/systemd/system-generators/systemd-bless-boot-generator 28634 -lib/systemd/system-generators/systemd-run-generator 28633 -lib/systemd/system-generators/systemd-sysv-generator 28632 -lib/systemd/system-generators/systemd-veritysetup-generator 28631 -lib/systemd/system-generators/systemd-gpt-auto-generator 28630 -lib/systemd/system-generators/lvm2-activation-generator 28629 -lib/systemd/system-generators/tor-generator 28628 -lib/systemd/system-generators/live-config-getty-generator 28627 +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.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.3.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.2.2.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/mk_MK/LC_MESSAGES/SYS_LC_MESSAGES 29677 +usr/share/locale/mk/LC_MESSAGES/iso_639-2.mo 29676 +usr/lib/locale/ga_IE/LC_MESSAGES/SYS_LC_MESSAGES 29675 +usr/share/locale/ga/LC_MESSAGES/iso_639-2.mo 29674 +usr/lib/locale/km_KH/LC_MESSAGES/SYS_LC_MESSAGES 29673 +usr/lib/locale/el_CY/LC_MESSAGES/SYS_LC_MESSAGES 29672 +usr/share/locale/el/LC_MESSAGES/iso_639-2.mo 29671 +usr/lib/locale/fr_CA/LC_MESSAGES/SYS_LC_MESSAGES 29670 +usr/share/locale/fr/LC_MESSAGES/iso_639-2.mo 29669 +usr/lib/locale/es_AR/LC_MESSAGES/SYS_LC_MESSAGES 29668 +usr/share/locale/es/LC_MESSAGES/iso_639-2.mo 29667 +usr/lib/locale/ru_RU/LC_MESSAGES/SYS_LC_MESSAGES 29666 +usr/share/locale/ru/LC_MESSAGES/iso_639-2.mo 29665 +usr/lib/locale/ro_RO/LC_MESSAGES/SYS_LC_MESSAGES 29664 +usr/share/locale/ro/LC_MESSAGES/iso_639-2.mo 29663 +usr/lib/locale/sv_FI/LC_MESSAGES/SYS_LC_MESSAGES 29662 +usr/share/locale/sv/LC_MESSAGES/iso_639-2.mo 29661 +usr/lib/locale/af_ZA/LC_MESSAGES/SYS_LC_MESSAGES 29660 +usr/share/locale/nl/LC_MESSAGES/iso_639-2.mo 29659 +usr/lib/locale/fi_FI/LC_MESSAGES/SYS_LC_MESSAGES 29658 +usr/share/locale/fi/LC_MESSAGES/iso_639-2.mo 29657 +usr/lib/locale/lt_LT/LC_MESSAGES/SYS_LC_MESSAGES 29656 +usr/share/locale/lt/LC_MESSAGES/iso_639-2.mo 29655 +usr/lib/locale/pl_PL/LC_MESSAGES/SYS_LC_MESSAGES 29654 +usr/share/locale/pl/LC_MESSAGES/iso_639-2.mo 29653 +usr/lib/locale/fa_IR/LC_MESSAGES/SYS_LC_MESSAGES 29652 +usr/share/locale/fa/LC_MESSAGES/iso_639-2.mo 29651 +usr/lib/locale/cs_CZ/LC_MESSAGES/SYS_LC_MESSAGES 29650 +usr/share/locale/cs/LC_MESSAGES/iso_639-2.mo 29649 +usr/lib/locale/zh_TW/LC_MESSAGES/SYS_LC_MESSAGES 29648 +usr/share/locale/zh_TW/LC_MESSAGES/iso_639-2.mo 29647 +usr/lib/locale/ar_AE/LC_MESSAGES/SYS_LC_MESSAGES 29646 +usr/share/locale/ar/LC_MESSAGES/iso_639-2.mo 29645 +usr/lib/locale/tr_CY/LC_MESSAGES/SYS_LC_MESSAGES 29644 +usr/share/locale/tr/LC_MESSAGES/iso_639-2.mo 29643 +usr/lib/locale/bho_IN/LC_MESSAGES/SYS_LC_MESSAGES 29642 +usr/share/locale/hi/LC_MESSAGES/iso_639-2.mo 29641 +usr/lib/locale/zh_CN/LC_MESSAGES/SYS_LC_MESSAGES 29640 +usr/share/locale/zh_CN/LC_MESSAGES/iso_639-2.mo 29639 +usr/lib/locale/pt_BR/LC_MESSAGES/SYS_LC_MESSAGES 29638 +usr/share/locale/pt/LC_MESSAGES/iso_639-2.mo 29637 +usr/lib/locale/de_AT/LC_MESSAGES/SYS_LC_MESSAGES 29636 +usr/share/locale/de/LC_MESSAGES/iso_639-2.mo 29635 +usr/lib/locale/ca_ES/LC_MESSAGES/SYS_LC_MESSAGES 29634 +usr/share/locale/ca/LC_MESSAGES/iso_639-2.mo 29633 +usr/lib/locale/he_IL/LC_MESSAGES/SYS_LC_MESSAGES 29632 +usr/share/locale/he/LC_MESSAGES/iso_639-2.mo 29631 +usr/lib/locale/id_ID/LC_MESSAGES/SYS_LC_MESSAGES 29630 +usr/share/locale/id/LC_MESSAGES/iso_639-2.mo 29629 +usr/lib/locale/hu_HU/LC_MESSAGES/SYS_LC_MESSAGES 29628 +usr/share/locale/hu/LC_MESSAGES/iso_639-2.mo 29627 +lib/systemd/systemd-update-utmp 29626 +usr/lib/locale/it_IT/LC_MESSAGES/SYS_LC_MESSAGES 29624 +usr/share/locale/it/LC_MESSAGES/iso_639-2.mo 29623 +usr/lib/locale/en_AU/LC_MESSAGES/SYS_LC_MESSAGES 29622 +usr/share/tails/greeter/setting.ui 29621 +usr/share/locale/id/LC_MESSAGES/iso_3166-1.mo 29620 +usr/share/locale/ca/LC_MESSAGES/iso_3166-1.mo 29619 +usr/lib/locale/an_ES/LC_MESSAGES/SYS_LC_MESSAGES 29618 +usr/share/locale/km/LC_MESSAGES/iso_3166-1.mo 29617 +usr/share/locale/de/LC_MESSAGES/iso_3166-1.mo 29616 +usr/lib/locale/en_CA/LC_MESSAGES/SYS_LC_MESSAGES 29615 +usr/lib/locale/en_DK/LC_MESSAGES/SYS_LC_MESSAGES 29614 +usr/lib/locale/bem_ZM/LC_MESSAGES/SYS_LC_MESSAGES 29613 +usr/share/locale/es/LC_MESSAGES/iso_3166-1.mo 29612 +usr/lib/locale/an_ES.utf8/LC_MESSAGES/SYS_LC_MESSAGES 29611 +usr/share/locale/fr/LC_MESSAGES/iso_3166-1.mo 29610 +usr/lib/locale/fr_BE/LC_MESSAGES/SYS_LC_MESSAGES 29609 +usr/lib/locale/fr_CH/LC_MESSAGES/SYS_LC_MESSAGES 29608 +usr/share/locale/ga/LC_MESSAGES/iso_3166-1.mo 29607 +usr/share/locale/it/LC_MESSAGES/iso_3166-1.mo 29606 +usr/lib/locale/it_CH/LC_MESSAGES/SYS_LC_MESSAGES 29605 +usr/share/locale/lt/LC_MESSAGES/iso_3166-1.mo 29604 +usr/share/locale/hu/LC_MESSAGES/iso_3166-1.mo 29603 +usr/share/locale/nl/LC_MESSAGES/iso_3166-1.mo 29602 +usr/lib/locale/af_ZA.utf8/LC_MESSAGES/SYS_LC_MESSAGES 29601 +usr/share/locale/pl/LC_MESSAGES/iso_3166-1.mo 29600 +usr/share/locale/pt_BR/LC_MESSAGES/iso_639-2.mo 29599 +usr/share/locale/pt_BR/LC_MESSAGES/iso_3166-1.mo 29598 +usr/share/locale/pt/LC_MESSAGES/iso_3166-1.mo 29597 +usr/share/locale/ro/LC_MESSAGES/iso_3166-1.mo 29596 +usr/share/locale/fi/LC_MESSAGES/iso_3166-1.mo 29595 +usr/share/locale/sv/LC_MESSAGES/iso_3166-1.mo 29594 +usr/share/locale/tr/LC_MESSAGES/iso_3166-1.mo 29593 +usr/share/locale/cs/LC_MESSAGES/iso_3166-1.mo 29592 +usr/share/locale/el/LC_MESSAGES/iso_3166-1.mo 29591 +usr/share/locale/mk/LC_MESSAGES/iso_3166-1.mo 29590 +usr/share/locale/ru/LC_MESSAGES/iso_3166-1.mo 29589 +usr/lib/locale/ru_UA/LC_MESSAGES/SYS_LC_MESSAGES 29588 +usr/share/locale/he/LC_MESSAGES/iso_3166-1.mo 29587 +usr/share/locale/ar/LC_MESSAGES/iso_3166-1.mo 29586 +usr/lib/locale/ar_AE.utf8/LC_MESSAGES/SYS_LC_MESSAGES 29585 +usr/share/locale/fa/LC_MESSAGES/iso_3166-1.mo 29584 +usr/share/locale/hi/LC_MESSAGES/iso_3166-1.mo 29583 +usr/share/locale/zh_CN/LC_MESSAGES/iso_3166-1.mo 29582 +usr/lib/locale/zh_HK/LC_MESSAGES/SYS_LC_MESSAGES 29581 +usr/share/locale/zh_HK/LC_MESSAGES/iso_639-2.mo 29580 +usr/share/locale/zh_HK/LC_MESSAGES/iso_3166-1.mo 29579 +usr/share/locale/zh_TW/LC_MESSAGES/iso_3166-1.mo 29578 +usr/share/tails/greeter/region_settings.ui 29577 +usr/share/tails/greeter/additional_settings.ui 29576 +usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules.cache 29575 +usr/share/tails/greeter/greeter.css 29574 +usr/share/tails/greeter/main.ui 29573 +usr/local/sbin/live-persist 29572 +lib/live/boot/9990-cmdline-old 29571 +lib/live/boot/9990-misc-helpers.sh 29570 +sbin/cryptsetup 29567 +usr/lib/x86_64-linux-gnu/libpopt.so.0.0.0 29566 +usr/share/fonts/opentype/cantarell/Cantarell-Bold.otf 29563 +usr/share/icons/hicolor/scalable/actions/tails-help.svg 29562 +usr/share/icons/hicolor/scalable/actions/tails-language.svg 29561 +usr/share/icons/hicolor/scalable/actions/tails-keyboard-layout.svg 29560 +usr/share/icons/hicolor/scalable/actions/tails-formats.svg 29559 +usr/share/icons/Adwaita/16x16/actions/list-add-symbolic.symbolic.png 29558 +usr/share/icons/Adwaita/cursors/top_left_corner 29557 +usr/share/icons/Adwaita/cursors/top_side 29556 +usr/share/icons/Adwaita/cursors/top_right_corner 29555 +usr/share/icons/Adwaita/cursors/left_side 29554 +usr/share/icons/Adwaita/cursors/right_side 29553 +usr/share/icons/Adwaita/cursors/bottom_left_corner 29552 +usr/share/icons/Adwaita/cursors/bottom_side 29551 +usr/share/icons/Adwaita/cursors/bottom_right_corner 29550 +usr/share/icons/hicolor/32x32/apps/gdm-setup.png 29549 +usr/share/icons/Adwaita/cursors/hand2 29548 +usr/lib/x86_64-linux-gnu/sane/libsane-epson2.so.1.0.27 29546 +etc/sane.d/epson2.conf 29545 +usr/lib/x86_64-linux-gnu/sane/libsane-epjitsu.so.1.0.27 29544 +etc/sane.d/epjitsu.conf 29543 +usr/lib/x86_64-linux-gnu/sane/libsane-dmc.so.1.0.27 29542 +etc/sane.d/dmc.conf 29541 +usr/lib/x86_64-linux-gnu/sane/libsane-dell1600n_net.so.1.0.27 29540 +etc/sane.d/dell1600n_net.conf 29539 +usr/lib/x86_64-linux-gnu/sane/libsane-coolscan3.so.1.0.27 29538 +etc/sane.d/coolscan3.conf 29537 +usr/lib/x86_64-linux-gnu/sane/libsane-coolscan.so.1.0.27 29536 +etc/sane.d/coolscan.conf 29535 +usr/lib/x86_64-linux-gnu/sane/libsane-cardscan.so.1.0.27 29534 +etc/sane.d/cardscan.conf 29533 +usr/lib/x86_64-linux-gnu/sane/libsane-canon_dr.so.1.0.27 29532 +etc/sane.d/canon_dr.conf 29531 +usr/lib/x86_64-linux-gnu/sane/libsane-canon630u.so.1.0.27 29530 +etc/sane.d/canon630u.conf 29529 +usr/lib/x86_64-linux-gnu/sane/libsane-canon.so.1.0.27 29528 +etc/sane.d/canon.conf 29527 +usr/lib/x86_64-linux-gnu/sane/libsane-bh.so.1.0.27 29526 +etc/sane.d/bh.conf 29525 +usr/lib/x86_64-linux-gnu/sane/libsane-as6e.so.1.0.27 29524 +usr/lib/x86_64-linux-gnu/sane/libsane-artec_eplus48u.so.1.0.27 29523 +etc/sane.d/artec_eplus48u.conf 29522 +usr/lib/x86_64-linux-gnu/sane/libsane-artec.so.1.0.27 29521 +etc/sane.d/artec.conf 29520 +usr/lib/x86_64-linux-gnu/sane/libsane-avision.so.1.0.27 29519 +etc/sane.d/avision.conf 29518 +usr/lib/x86_64-linux-gnu/sane/libsane-apple.so.1.0.27 29517 +etc/sane.d/apple.conf 29516 +usr/lib/x86_64-linux-gnu/sane/libsane-agfafocus.so.1.0.27 29515 +etc/sane.d/agfafocus.conf 29514 +usr/lib/x86_64-linux-gnu/sane/libsane-abaton.so.1.0.27 29513 +etc/sane.d/abaton.conf 29512 +usr/lib/x86_64-linux-gnu/sane/libsane-net.so.1.0.27 29511 +etc/sane.d/net.conf 29510 +usr/lib/x86_64-linux-gnu/sane/libsane-hpaio.so.1.0.0 29509 +usr/lib/x86_64-linux-gnu/libhpip.so.0.0.1 29508 +usr/lib/x86_64-linux-gnu/libhpmud.so.0.0.6 29507 +usr/lib/x86_64-linux-gnu/libhpdiscovery.so.0.0.1 29506 +usr/share/xsessions/gnome-xorg.desktop 29500 +etc/pam.d/gdm-password 29499 +lib/x86_64-linux-gnu/security/pam_succeed_if.so 29498 +etc/securetty 29497 +usr/local/lib/create-tor-browser-directories 29483 +usr/local/lib/tails-shell-library/tails-greeter.sh 29478 +etc/gdm3/PostLogin/Default 29477 +etc/live/config.d/username.conf 29476 +usr/local/lib/tails-unblock-network 29475 +lib/systemd/system/tails-unblock-network.service 29474 +bin/sync 29464 +bin/kmod 29461 +lib/modules/5.3.0-3-amd64/modules.softdep 29460 +lib/modprobe.d/aliases.conf 29457 +etc/modprobe.d/amd64-microcode-blacklist.conf 29456 +lib/modprobe.d/fbdev-blacklist.conf 29455 +etc/modprobe.d/intel-microcode-blacklist.conf 29454 +etc/modprobe.d/loop.conf 29453 +etc/modprobe.d/no-bluetooth.conf 29452 +etc/modprobe.d/no-conntrack-helper.conf 29451 +etc/modprobe.d/no-mei.conf 29450 +etc/modprobe.d/no-n-hdlc.conf 29449 +etc/modprobe.d/no-pc-speaker.conf 29448 +lib/modprobe.d/systemd.conf 29447 +etc/modprobe.d/uncommon-network-protocols.conf 29446 +lib/modules/5.3.0-3-amd64/modules.dep.bin 29445 +lib/modules/5.3.0-3-amd64/modules.alias.bin 29444 +lib/modules/5.3.0-3-amd64/modules.symbols.bin 29443 +lib/modules/5.3.0-3-amd64/modules.builtin.bin 29442 +lib/systemd/network/99-default.link 29441 +etc/udev/rules.d/00-mac-spoof.rules 29440 +lib/udev/rules.d/39-usbmuxd.rules 29439 +lib/udev/rules.d/40-usb_modeswitch.rules 29438 +lib/udev/rules.d/50-firmware.rules 29437 +lib/udev/rules.d/50-udev-default.rules 29436 +lib/udev/rules.d/55-dm.rules 29435 +lib/udev/rules.d/56-hpmud.rules 29434 +lib/udev/rules.d/56-lvm.rules 29433 +lib/udev/rules.d/60-block.rules 29432 +lib/udev/rules.d/60-cdrom_id.rules 29431 +lib/udev/rules.d/60-crda.rules 29430 +lib/udev/rules.d/60-drm.rules 29429 +lib/udev/rules.d/60-evdev.rules 29428 +lib/udev/rules.d/60-gobi-loader.rules 29427 +lib/udev/rules.d/60-input-id.rules 29426 +lib/udev/rules.d/60-libgphoto2-6.rules 29425 +lib/udev/rules.d/60-libsane.rules 29424 +lib/udev/rules.d/60-open-vm-tools.rules 29423 +lib/udev/rules.d/60-persistent-alsa.rules 29422 +lib/udev/rules.d/60-persistent-input.rules 29421 +lib/udev/rules.d/60-persistent-storage-dm.rules 29420 +lib/udev/rules.d/60-persistent-storage-tape.rules 29419 +lib/udev/rules.d/60-persistent-storage.rules 29418 +lib/udev/rules.d/60-persistent-v4l.rules 29417 +lib/udev/rules.d/60-scdaemon.rules 29416 +lib/udev/rules.d/60-sensor.rules 29415 +lib/udev/rules.d/60-serial.rules 29414 +lib/udev/rules.d/60-virtualbox-guest-utils.rules 29413 +lib/udev/rules.d/61-gdm.rules 29412 +lib/udev/rules.d/61-gnome-settings-daemon-rfkill.rules 29411 +lib/udev/rules.d/64-btrfs.rules 29410 +lib/udev/rules.d/64-xorg-xkb.rules 29409 +lib/udev/rules.d/65-libwacom.rules 29408 +lib/udev/rules.d/66-bilibop.rules 29406 +lib/udev/rules.d/69-cd-sensors.rules 29405 +lib/udev/rules.d/69-libmtp.rules 29404 +lib/udev/rules.d/69-lvm-metad.rules 29386 +lib/udev/rules.d/70-joystick.rules 29385 +lib/udev/rules.d/70-mouse.rules 29384 +lib/udev/rules.d/70-power-switch.rules 29383 +etc/udev/rules.d/70-protect-boot-medium-for-udisks.rules 29382 +lib/udev/rules.d/70-spice-vdagentd.rules 29381 +lib/udev/rules.d/70-touchpad.rules 29380 +lib/udev/rules.d/70-uaccess.rules 29379 +lib/udev/rules.d/71-seat.rules 29378 +lib/udev/rules.d/73-seat-late.rules 29377 +lib/udev/rules.d/73-special-net-names.rules 29376 +lib/udev/rules.d/73-usb-net-by-mac.rules 29375 +lib/udev/rules.d/75-net-description.rules 29374 +lib/udev/rules.d/75-probe_mtd.rules 29373 +lib/udev/rules.d/77-mm-cinterion-port-types.rules 29372 +lib/udev/rules.d/77-mm-dell-port-types.rules 29371 +lib/udev/rules.d/77-mm-ericsson-mbm.rules 29370 +lib/udev/rules.d/77-mm-fibocom-port-types.rules 29369 +lib/udev/rules.d/77-mm-haier-port-types.rules 29368 +lib/udev/rules.d/77-mm-huawei-net-port-types.rules 29367 +lib/udev/rules.d/77-mm-longcheer-port-types.rules 29365 +lib/udev/rules.d/77-mm-mtk-port-types.rules 29364 +lib/udev/rules.d/77-mm-nokia-port-types.rules 29363 +lib/udev/rules.d/77-mm-pcmcia-device-blacklist.rules 29362 +lib/udev/rules.d/77-mm-qdl-device-blacklist.rules 29361 +lib/udev/rules.d/77-mm-sierra.rules 29360 +lib/udev/rules.d/77-mm-simtech-port-types.rules 29359 +lib/udev/rules.d/77-mm-telit-port-types.rules 29358 +lib/udev/rules.d/77-mm-ublox-port-types.rules 29357 +lib/udev/rules.d/77-mm-usb-device-blacklist.rules 29356 +lib/udev/rules.d/77-mm-usb-serial-adapters-greylist.rules 29355 +lib/udev/rules.d/77-mm-x22x-port-types.rules 29354 +lib/udev/rules.d/77-mm-zte-port-types.rules 29353 +lib/udev/rules.d/78-sound-card.rules 29352 +lib/udev/rules.d/80-debian-compat.rules 29351 +lib/udev/rules.d/80-drivers.rules 29350 +lib/udev/rules.d/80-ifupdown.rules 29349 +lib/udev/rules.d/80-libinput-device-groups.rules 29348 +lib/udev/rules.d/80-mm-candidate.rules 29347 +lib/udev/rules.d/80-udisks2.rules 29346 +lib/udev/rules.d/84-nm-drivers.rules 29345 +lib/udev/rules.d/85-hdparm.rules 29344 +lib/udev/rules.d/85-hwclock.rules 29343 +lib/udev/rules.d/85-nm-unmanaged.rules 29342 +lib/udev/rules.d/85-regulatory.rules 29341 +lib/udev/rules.d/89-alsa-ucm.rules 29340 +lib/udev/rules.d/90-alsa-restore.rules 29339 +lib/udev/rules.d/90-bolt.rules 29338 +lib/udev/rules.d/90-console-setup.rules 29337 +lib/udev/rules.d/90-iphone-tether.rules 29336 +lib/udev/rules.d/90-libinput-model-quirks.rules 29335 +lib/udev/rules.d/90-nm-thunderbolt.rules 29334 +lib/udev/rules.d/90-pulseaudio.rules 29333 +lib/udev/rules.d/92-libccid.rules 29330 +lib/udev/rules.d/95-cd-devices.rules 29329 +lib/udev/rules.d/95-dm-notify.rules 29328 +lib/udev/rules.d/95-upower-csr.rules 29327 +lib/udev/rules.d/95-upower-hid.rules 29326 +lib/udev/rules.d/95-upower-wup.rules 29325 +etc/udev/rules.d/99-hide-TailsData.rules 29324 +lib/udev/rules.d/99-laptop-mode.rules 29323 +etc/udev/rules.d/99-make-removable-devices-user-writable.rules 29322 +lib/udev/rules.d/99-systemd.rules 29320 +lib/udev/rules.d/99-vmware-scsi-udev.rules 29319 +lib/modules/5.3.0-3-amd64/kernel/drivers/cpufreq/acpi-cpufreq.ko 29223 +lib/modules/5.3.0-3-amd64/kernel/drivers/cpufreq/pcc-cpufreq.ko 29186 +lib/udev/libinput-device-group 29178 +lib/modules/5.3.0-3-amd64/kernel/drivers/net/ethernet/intel/e1000e/e1000e.ko 29113 +bin/true 29065 +lib/modules/5.3.0-3-amd64/kernel/drivers/net/wireless/intel/iwlwifi/iwlwifi.ko 29061 +lib/udev/ata_id 29044 +lib/udev/hdparm 29024 +lib/systemd/system/systemd-udev-settle.service 29023 +lib/hdparm/hdparm-functions 29022 +lib/firmware/iwlwifi-6000g2a-6.ucode 28998 +lib/udev/hwclock-set 28993 +etc/hdparm.conf 28992 +lib/udev/libinput-model-quirks 28982 +lib/modules/5.3.0-3-amd64/kernel/lib/crypto/libarc4.ko 28946 +sbin/ethtool 28801 +lib/udev/ifupdown-hotplug 28725 +etc/console-setup/cached_setup_terminal.sh 28723 +etc/console-setup/cached_setup_font.sh 28721 +bin/setfont 28719 +lib/modules/5.3.0-3-amd64/kernel/net/mac80211/mac80211.ko 28718 +usr/share/consolefonts/Uni1-Fixed16.psf.gz 28714 +usr/local/lib/tails-spoof-mac 28709 +usr/local/lib/tails-shell-library/hardware.sh 28708 +usr/local/lib/tails-shell-library/log.sh 28707 +usr/bin/gettext.sh 28706 +usr/bin/macchanger 28703 +usr/share/macchanger/OUI.list 28702 +lib/modules/5.3.0-3-amd64/kernel/drivers/net/wireless/intel/iwlwifi/dvm/iwldvm.ko 28701 +usr/share/macchanger/wireless.list 28700 +lib/systemd/systemd-rfkill 28696 +lib/crda/setregdomain 28695 +lib/bilibop/test 28692 +lib/bilibop/common.sh 28691 +sbin/ifup 28690 +etc/network/interfaces 28688 +lib/systemd/systemd-sysctl 28687 +etc/sysctl.conf 28686 +etc/sysctl.d/disable_ipv6.conf 28685 +etc/default/crda 28684 +bin/readlink 28683 +etc/bilibop/bilibop.conf 28682 +bin/df 28674 +lib/udev/v4l_id 28655 +lib/systemd/system/NetworkManager.service 28635 +lib/systemd/system/NetworkManager-wait-online.service 28634 +lib/systemd/system/NetworkManager-dispatcher.service 28633 +etc/systemd/system.conf 28632 +lib/systemd/system.conf.d/lower-DefaultTimeoutStopSec.conf 28631 +lib/systemd/system-generators/systemd-bless-boot-generator 28630 +lib/systemd/system-generators/live-config-getty-generator 28629 +lib/systemd/system-generators/systemd-debug-generator 28628 +lib/systemd/system-generators/systemd-fstab-generator 28627 lib/live/init-config.sh 28626 etc/live/config.d/noroot.conf 28625 etc/live/config.d/user-default-groups.conf 28624 lib/systemd/system-generators/systemd-system-update-generator 28623 lib/systemd/system-generators/systemd-rc-local-generator 28622 -sbin/lvm 28621 -lib/x86_64-linux-gnu/libdevmapper-event.so.1.02.1 28620 -lib/x86_64-linux-gnu/libreadline.so.5.2 28619 -usr/lib/x86_64-linux-gnu/libaio.so.1.0.1 28618 -etc/lvm/lvm.conf 28617 -etc/lvm/lvmlocal.conf 28616 -etc/init.d/gdomap 28615 -lib/systemd/system/systemd-backlight@.service 28614 -lib/systemd/system/systemd-journald.socket 28613 -lib/systemd/system/systemd-journald.service 28612 -lib/systemd/system/syslog.socket 28611 -lib/systemd/system/emergency.service 28610 -lib/systemd/system/rescue.service 28609 -lib/systemd/system/plymouth-start.service 28608 -lib/systemd/system/systemd-ask-password-plymouth.service 28607 -lib/systemd/system/keyboard-setup.service 28606 -lib/systemd/system/local-fs-pre.target 28605 -lib/systemd/system/systemd-udevd.service 28604 -lib/systemd/system/systemd-udevd-kernel.socket 28603 -lib/systemd/system/systemd-udevd-control.socket 28602 -lib/systemd/system/systemd-hwdb-update.service 28601 -lib/systemd/system/systemd-sysusers.service 28600 -lib/systemd/system/systemd-udev-trigger.service 28599 -lib/systemd/system/systemd-ask-password-plymouth.path 28598 -lib/systemd/system/basic.target 28597 -lib/systemd/system/var-tmp.mount 28596 -lib/systemd/system/local-fs.target 28595 -lib/systemd/system/run-initramfs.mount 28594 -lib/systemd/system/initramfs-shutdown.service 28593 -lib/systemd/system/emergency.target 28592 -lib/systemd/system/umount.target 28591 -lib/systemd/system/live-config.service 28590 -lib/systemd/system/live-config.service.d/after-tmpfiles.conf 28589 -lib/systemd/system/systemd-tmpfiles-setup.service 28588 -lib/systemd/system/swap.target 28587 -lib/systemd/system/slices.target 28586 -lib/systemd/system/paths.target 28585 -lib/systemd/system/timers.target 28584 -lib/systemd/system/systemd-tmpfiles-clean.timer 28583 -lib/systemd/system/systemd-tmpfiles-clean.service 28582 -lib/systemd/system/time-sync.target 28581 -lib/systemd/system/logrotate.timer 28580 -lib/systemd/system/logrotate.service 28579 -lib/systemd/system/apt-daily-upgrade.timer 28578 -lib/systemd/system/apt-daily-upgrade.service 28577 -lib/systemd/system/dbus.socket 28576 -lib/systemd/system/dbus.service 28575 -lib/systemd/system/network-pre.target 28574 -lib/systemd/system/network-online.target 28573 -lib/systemd/system/networking.service 28572 -lib/systemd/system/systemd-modules-load.service 28571 -lib/systemd/system/systemd-sysctl.service 28570 -lib/systemd/system/apparmor.service 28569 -lib/systemd/system/ifupdown-pre.service 28568 -lib/systemd/system/network.target 28567 -lib/systemd/system/apt-daily.service 28566 -lib/systemd/system/systemd-journald-audit.socket 28565 -lib/systemd/system/systemd-journald-dev-log.socket 28564 -lib/systemd/system/sockets.target 28563 -lib/systemd/system/systemd-initctl.socket 28562 -lib/systemd/system/systemd-initctl.service 28561 -lib/systemd/system/spice-vdagentd.socket 28560 -lib/systemd/system/spice-vdagentd.service 28559 -lib/systemd/system/pcscd.socket 28558 -lib/systemd/system/pcscd.service 28557 -lib/systemd/system/dm-event.socket 28556 -lib/systemd/system/dm-event.service 28555 -lib/systemd/system/cups.socket 28554 -lib/systemd/system/cups.service 28553 -lib/systemd/system/cups.service.d/after-AppArmor.conf 28552 -lib/systemd/system/sysinit.target 28551 -lib/systemd/system/systemd-update-utmp.service 28550 -lib/systemd/system/systemd-tmpfiles-setup-dev.service 28549 -lib/systemd/system/systemd-random-seed.service 28548 -lib/systemd/system/systemd-machine-id-commit.service 28547 -lib/systemd/system/systemd-journal-flush.service 28546 -lib/systemd/system/systemd-binfmt.service 28545 -lib/systemd/system/systemd-ask-password-console.path 28544 -lib/systemd/system/systemd-ask-password-console.service 28543 -lib/systemd/system/sys-kernel-debug.mount 28542 -lib/systemd/system/sys-kernel-config.mount 28541 -lib/systemd/system/sys-fs-fuse-connections.mount 28540 -lib/systemd/system/proc-sys-fs-binfmt_misc.automount 28539 -lib/systemd/system/proc-sys-fs-binfmt_misc.mount 28538 -lib/systemd/system/plymouth-read-write.service 28537 -lib/systemd/system/lvm2-monitor.service 28536 -lib/systemd/system/lvm2-lvmpolld.socket 28535 -lib/systemd/system/lvm2-lvmpolld.service 28534 -lib/systemd/system/kmod-static-nodes.service 28533 -lib/systemd/system/ferm.service 28532 -lib/systemd/system/dev-mqueue.mount 28531 -lib/systemd/system/dev-hugepages.mount 28530 -lib/systemd/system/cryptsetup.target 28529 -lib/systemd/system/blk-availability.service 28528 -lib/systemd/system/systemd-remount-fs.service 28527 -lib/systemd/system/systemd-fsck-root.service 28526 -lib/systemd/system/systemd-fsckd.socket 28525 -lib/systemd/system/systemd-fsckd.service 28524 -lib/systemd/system/shutdown.target 28523 -lib/systemd/system/sound.target 28521 -lib/systemd/system/alsa-state.service 28520 -lib/systemd/system/alsa-restore.service 28519 -lib/systemd/system/alsa-restore.service.d/dont-store-state-on-shutdown.conf 28518 -lib/systemd/system/systemd-rfkill.socket 28516 -lib/systemd/system/systemd-rfkill.service 28515 -lib/systemd/system/user.slice 28514 -lib/systemd/system/systemd-user-sessions.service 28513 -lib/systemd/system/nss-user-lookup.target 28512 -lib/systemd/system/remote-fs.target 28511 -lib/systemd/system/remote-fs-pre.target 28510 -lib/systemd/system/getty@.service 28509 -lib/systemd/system/getty.target 28508 -lib/systemd/system/getty-static.service 28507 -lib/systemd/system/rc-local.service 28506 -lib/systemd/system/rc-local.service.d/debian.conf 28505 -lib/systemd/system/getty-pre.target 28504 -lib/systemd/system/plymouth-quit-wait.service 28503 -lib/systemd/system/udisks2.service 28502 -lib/systemd/system/gdm.service 28501 -lib/systemd/system/gdm.service.d/failure.conf 28500 -lib/systemd/system/gdm.service.d/permissions.conf 28499 -lib/systemd/system/gdm.service.d/restart.conf 28498 -lib/systemd/system/tails-gdm-failed-to-start.service 28497 -lib/systemd/system/plymouth-quit.service 28496 -lib/systemd/system/graphical.target 28495 -lib/systemd/system/systemd-update-utmp-runlevel.service 28494 -lib/systemd/system/multi-user.target 28493 -lib/systemd/system/wpa_supplicant.service 28492 -lib/systemd/system/virtualbox-guest-utils.service 28491 -lib/systemd/system/tails-synchronize-data-to-new-persistent-volume-on-shutdown.service 28490 -lib/systemd/system/tails-shutdown-on-media-removal.service 28489 -lib/systemd/system/tails-set-wireless-devices-state.service 28488 -lib/systemd/system/tails-autotest-remote-shell.service 28487 +lib/systemd/system-generators/systemd-cryptsetup-generator 28621 +lib/systemd/system-generators/systemd-getty-generator 28620 +lib/systemd/system-generators/systemd-run-generator 28619 +lib/systemd/system-generators/systemd-gpt-auto-generator 28618 +lib/systemd/system-generators/lvm2-activation-generator 28617 +lib/systemd/system-generators/systemd-hibernate-resume-generator 28616 +lib/systemd/system-generators/systemd-sysv-generator 28615 +sbin/lvm 28614 +lib/x86_64-linux-gnu/libdevmapper-event.so.1.02.1 28613 +lib/x86_64-linux-gnu/libreadline.so.5.2 28612 +usr/lib/x86_64-linux-gnu/libaio.so.1.0.1 28611 +etc/lvm/lvm.conf 28610 +etc/lvm/lvmlocal.conf 28609 +lib/systemd/system-generators/tor-generator 28608 +lib/systemd/system-generators/systemd-veritysetup-generator 28607 +etc/init.d/gdomap 28606 +lib/systemd/system/systemd-backlight@.service 28605 +lib/systemd/system/systemd-journald.socket 28604 +lib/systemd/system/systemd-journald.service 28603 +lib/systemd/system/syslog.socket 28602 +lib/systemd/system/emergency.service 28601 +lib/systemd/system/rescue.service 28600 +lib/systemd/system/plymouth-start.service 28599 +lib/systemd/system/systemd-ask-password-plymouth.service 28598 +lib/systemd/system/keyboard-setup.service 28597 +lib/systemd/system/local-fs-pre.target 28596 +lib/systemd/system/systemd-udevd.service 28595 +lib/systemd/system/systemd-udevd-kernel.socket 28594 +lib/systemd/system/systemd-udevd-control.socket 28593 +lib/systemd/system/systemd-hwdb-update.service 28592 +lib/systemd/system/systemd-sysusers.service 28591 +lib/systemd/system/systemd-udev-trigger.service 28590 +lib/systemd/system/systemd-ask-password-plymouth.path 28589 +lib/systemd/system/basic.target 28588 +lib/systemd/system/var-tmp.mount 28587 +lib/systemd/system/local-fs.target 28586 +lib/systemd/system/run-initramfs.mount 28585 +lib/systemd/system/initramfs-shutdown.service 28584 +lib/systemd/system/emergency.target 28583 +lib/systemd/system/umount.target 28582 +lib/systemd/system/live-config.service 28581 +lib/systemd/system/live-config.service.d/after-tmpfiles.conf 28580 +lib/systemd/system/systemd-tmpfiles-setup.service 28579 +lib/systemd/system/swap.target 28578 +lib/systemd/system/slices.target 28577 +lib/systemd/system/paths.target 28576 +lib/systemd/system/timers.target 28575 +lib/systemd/system/systemd-tmpfiles-clean.timer 28574 +lib/systemd/system/systemd-tmpfiles-clean.service 28573 +lib/systemd/system/time-sync.target 28572 +lib/systemd/system/logrotate.timer 28571 +lib/systemd/system/logrotate.service 28570 +lib/systemd/system/apt-daily-upgrade.timer 28569 +lib/systemd/system/apt-daily-upgrade.service 28568 +lib/systemd/system/dbus.socket 28567 +lib/systemd/system/dbus.service 28566 +lib/systemd/system/network-pre.target 28565 +lib/systemd/system/network-online.target 28564 +lib/systemd/system/networking.service 28563 +lib/systemd/system/systemd-modules-load.service 28562 +lib/systemd/system/systemd-sysctl.service 28561 +lib/systemd/system/apparmor.service 28560 +lib/systemd/system/ifupdown-pre.service 28559 +lib/systemd/system/network.target 28558 +lib/systemd/system/apt-daily.service 28557 +lib/systemd/system/systemd-journald-audit.socket 28556 +lib/systemd/system/systemd-journald-dev-log.socket 28555 +lib/systemd/system/sockets.target 28554 +lib/systemd/system/systemd-initctl.socket 28553 +lib/systemd/system/systemd-initctl.service 28552 +lib/systemd/system/spice-vdagentd.socket 28551 +lib/systemd/system/spice-vdagentd.service 28550 +lib/systemd/system/pcscd.socket 28549 +lib/systemd/system/pcscd.service 28548 +lib/systemd/system/dm-event.socket 28547 +lib/systemd/system/dm-event.service 28546 +lib/systemd/system/cups.socket 28545 +lib/systemd/system/cups.service 28544 +lib/systemd/system/cups.service.d/after-AppArmor.conf 28543 +lib/systemd/system/sysinit.target 28542 +lib/systemd/system/systemd-update-utmp.service 28541 +lib/systemd/system/systemd-tmpfiles-setup-dev.service 28540 +lib/systemd/system/systemd-random-seed.service 28539 +lib/systemd/system/systemd-machine-id-commit.service 28538 +lib/systemd/system/systemd-journal-flush.service 28537 +lib/systemd/system/systemd-binfmt.service 28536 +lib/systemd/system/systemd-ask-password-console.path 28535 +lib/systemd/system/systemd-ask-password-console.service 28534 +lib/systemd/system/sys-kernel-debug.mount 28533 +lib/systemd/system/sys-kernel-config.mount 28532 +lib/systemd/system/sys-fs-fuse-connections.mount 28531 +lib/systemd/system/proc-sys-fs-binfmt_misc.automount 28530 +lib/systemd/system/proc-sys-fs-binfmt_misc.mount 28529 +lib/systemd/system/plymouth-read-write.service 28528 +lib/systemd/system/lvm2-monitor.service 28527 +lib/systemd/system/lvm2-lvmpolld.socket 28526 +lib/systemd/system/lvm2-lvmpolld.service 28525 +lib/systemd/system/kmod-static-nodes.service 28524 +lib/systemd/system/ferm.service 28523 +lib/systemd/system/dev-mqueue.mount 28522 +lib/systemd/system/dev-hugepages.mount 28521 +lib/systemd/system/cryptsetup.target 28520 +lib/systemd/system/blk-availability.service 28519 +lib/systemd/system/systemd-remount-fs.service 28518 +lib/systemd/system/systemd-fsck-root.service 28517 +lib/systemd/system/systemd-fsckd.socket 28516 +lib/systemd/system/systemd-fsckd.service 28515 +lib/systemd/system/shutdown.target 28514 +lib/systemd/system/sound.target 28512 +lib/systemd/system/alsa-state.service 28511 +lib/systemd/system/alsa-restore.service 28510 +lib/systemd/system/alsa-restore.service.d/dont-store-state-on-shutdown.conf 28509 +lib/systemd/system/systemd-rfkill.socket 28507 +lib/systemd/system/systemd-rfkill.service 28506 +lib/systemd/system/graphical.target 28505 +lib/systemd/system/udisks2.service 28504 +lib/systemd/system/systemd-update-utmp-runlevel.service 28503 +lib/systemd/system/multi-user.target 28502 +lib/systemd/system/wpa_supplicant.service 28501 +lib/systemd/system/virtualbox-guest-utils.service 28500 +lib/systemd/system/tails-synchronize-data-to-new-persistent-volume-on-shutdown.service 28499 +lib/systemd/system/tails-shutdown-on-media-removal.service 28498 +lib/systemd/system/tails-set-wireless-devices-state.service 28497 +lib/systemd/system/tails-autotest-remote-shell.service 28496 +lib/systemd/system/gdm.service 28495 +lib/systemd/system/gdm.service.d/failure.conf 28494 +lib/systemd/system/gdm.service.d/permissions.conf 28493 +lib/systemd/system/gdm.service.d/restart.conf 28492 +lib/systemd/system/tails-gdm-failed-to-start.service 28491 +lib/systemd/system/rc-local.service 28490 +lib/systemd/system/rc-local.service.d/debian.conf 28489 +lib/systemd/system/getty@.service 28488 +lib/systemd/system/getty-pre.target 28487 lib/systemd/system/tails-autotest-broken-Xorg.service 28486 -lib/systemd/system/systemd-logind.service 28485 -lib/systemd/system/systemd-ask-password-wall.path 28484 -lib/systemd/system/systemd-ask-password-wall.service 28483 -lib/systemd/system/rsync.service 28482 -lib/systemd/system/open-vm-tools.service 28481 -lib/systemd/system/vgauth.service 28480 -lib/systemd/system/onion-grater.service 28479 -lib/systemd/system/memlockd.service 28478 -lib/systemd/system/memlockd.service.d/oom.conf 28477 -lib/systemd/system/lmt-poll.service 28476 -lib/systemd/system/laptop-mode.timer 28475 -lib/systemd/system/laptop-mode.service 28474 -lib/systemd/system/cron.service 28473 -lib/systemd/system/console-setup.service 28472 -lib/systemd/system/ModemManager.service 28471 -lib/systemd/system/rescue.target 28470 -lib/systemd/system/accounts-daemon.service 28469 -lib/systemd/system/haveged.service 28468 -usr/lib/NetworkManager/nm-dispatcher 28465 -usr/sbin/NetworkManager 28464 -usr/lib/x86_64-linux-gnu/libndp.so.0.1.0 28463 -usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4.5.0 28462 -usr/lib/x86_64-linux-gnu/libnghttp2.so.14.17.1 28461 -usr/lib/x86_64-linux-gnu/librtmp.so.1 28460 -usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1 28459 -usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10 28458 -usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10 28457 -usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25 28456 -usr/lib/NetworkManager/conf.d/no-mac-addr-change.conf 28455 -etc/NetworkManager/NetworkManager.conf 28454 -etc/NetworkManager/conf.d/dns.conf 28453 -etc/NetworkManager/conf.d/spoof-mac.conf 28452 -usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-settings-plugin-ifupdown.so 28450 -etc/network/interfaces 28448 -usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-adsl.so 28446 -usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-bluetooth.so 28445 -usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-wwan.so 28444 -usr/lib/x86_64-linux-gnu/libbluetooth.so.3.18.16 28443 -usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-team.so 28442 -usr/lib/x86_64-linux-gnu/libteamdctl.so.0.1.5 28441 -usr/lib/x86_64-linux-gnu/libjansson.so.4.11.1 28440 -usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-wifi.so 28439 -usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-wwan.so 28438 -etc/NetworkManager/dispatcher.d/00-firewall.sh 28437 -usr/bin/nm-online 28436 -usr/bin/localectl 28435 -etc/NetworkManager/dispatcher.d/00-resolv-over-clearnet 28434 -etc/NetworkManager/dispatcher.d/01-ifupdown 28431 -usr/share/systemd/language-fallback-map 28430 -etc/NetworkManager/dispatcher.d/01-wait-for-notification-recipient.sh 28429 -etc/NetworkManager/dispatcher.d/10-tor.sh 28427 -etc/NetworkManager/dispatcher.d/20-time.sh 28426 -etc/dconf/db/ibus.d/00-upstream-settings 28425 -usr/local/lib/tails-shell-library/gnome.sh 28422 -usr/local/lib/tails-shell-library/tor.sh 28421 -etc/dconf/db/local.d/00_Tails_defaults 28420 -etc/NetworkManager/dispatcher.d/60-tor-ready.sh 28419 -etc/NetworkManager/dispatcher.d/70-upgrade-additional-software.sh 28417 -usr/sbin/deluser 28415 -usr/share/perl/5.28.1/File/Find.pm 28414 -usr/share/perl/5.28.1/File/Basename.pm 28413 -usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Spec.pm 28412 -usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Spec/Unix.pm 28411 -usr/share/perl/5.28.1/File/Temp.pm 28410 -usr/share/perl/5.28.1/File/Path.pm 28409 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Errno.pm 28408 -usr/share/perl/5.28.1/Carp/Heavy.pm 28407 -etc/deluser.conf 28406 -usr/bin/passwd 28405 -etc/gdm3/PreSession/Default 28401 -etc/gdm3/Xsession 28387 -etc/profile 28386 -usr/bin/id 28385 -etc/profile.d/bash_completion.sh 28384 -etc/profile.d/vte-2.91.sh 28383 -usr/bin/expr 28382 -etc/X11/Xsession.d/20dbus_xdg-runtime 28381 -usr/bin/dbus-update-activation-environment 28380 -etc/X11/Xsession.d/20x11-common_process-args 28379 -etc/X11/Xsession.options 28378 -etc/X11/Xsession.d/30x11-common_xresources 28377 -bin/run-parts 28376 -usr/bin/xrdb 28375 -usr/lib/x86_64-linux-gnu/libXmuu.so.1.0.0 28374 -etc/X11/Xresources/x11-common 28373 -usr/bin/x86_64-linux-gnu-cpp-8 28372 -usr/lib/gcc/x86_64-linux-gnu/8/cc1 28371 -usr/lib/x86_64-linux-gnu/libisl.so.19.1.0 28370 -usr/lib/x86_64-linux-gnu/libmpc.so.3.1.0 28369 -usr/lib/x86_64-linux-gnu/libmpfr.so.6.0.2 28368 -etc/X11/Xsession.d/35x11-common_xhost-local 28366 -usr/bin/xhost 28365 -etc/X11/Xsession.d/40x11-common_xsessionrc 28364 -etc/amnesia/environment 28363 -etc/X11/Xsession.d/50x11-common_determine-startup 28362 -etc/X11/Xsession.d/55gnome-session_gnomerc 28361 -etc/X11/Xsession.d/75dbus_dbus-launch 28360 -etc/X11/Xsession.d/90atk-adaptor 28359 -etc/X11/Xsession.d/90gpg-agent 28358 -etc/X11/Xsession.d/90qt-a11y 28357 -etc/X11/Xsession.d/90x11-common_ssh-agent 28356 -etc/X11/Xsession.d/92tails-set-SSH_AUTH_SOCK 28355 -etc/X11/Xsession.d/95dbus_update-activation-env 28354 -etc/X11/Xsession.d/98vboxadd-xclient 28353 -etc/X11/Xsession.d/99x11-common_start 28352 -usr/share/gnome-session/sessions/gnome.session 28349 -etc/xdg/autostart/at-spi-dbus-bus.desktop 28348 -etc/xdg/autostart/gnome-keyring-pkcs11.desktop 28347 -etc/xdg/autostart/gnome-keyring-secrets.desktop 28346 -etc/xdg/autostart/gnome-keyring-ssh.desktop 28345 -etc/xdg/autostart/gnome-shell-overrides-migration.desktop 28344 -etc/xdg/autostart/nm-applet.desktop 28343 -etc/xdg/autostart/openpgp-applet.desktop 28342 -etc/xdg/autostart/orca-autostart.desktop 28341 -etc/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop 28340 -etc/xdg/autostart/org.gnome.SettingsDaemon.DiskUtilityNotify.desktop 28339 -etc/xdg/autostart/pulseaudio.desktop 28338 -etc/xdg/autostart/systemd-desktop-target.desktop 28337 -etc/xdg/autostart/systemd-gnome-early-initialization-target.desktop 28336 -etc/xdg/autostart/tracker-store.desktop 28335 -etc/xdg/autostart/user-dirs-update-gtk.desktop 28334 -etc/xdg/autostart/xdg-user-dirs.desktop 28333 -usr/lib/systemd/user/gnome-early-initialization.target 28330 -usr/lib/systemd/user/tails-configure-keyboard.service 28329 -usr/lib/systemd/user/tails-add-GNOME-bookmarks.service 28328 -usr/lib/systemd/user/gvfs-metadata.service 28327 -usr/local/lib/tails-configure-keyboard 28325 -usr/lib/gvfs/gvfsd-metadata 28323 -usr/local/lib/add-GNOME-bookmarks 28319 -usr/bin/dirname 28318 -usr/bin/gio 28317 -usr/lib/systemd/user/gvfs-daemon.service 28316 -usr/lib/gvfs/gvfsd 28314 -usr/lib/x86_64-linux-gnu/gvfs/libgvfsdaemon.so 28313 -usr/share/gvfs/mounts/admin.mount 28312 -usr/share/gvfs/mounts/afc.mount 28311 -usr/share/gvfs/mounts/afp-browse.mount 28310 -usr/share/gvfs/mounts/afp.mount 28309 -usr/share/gvfs/mounts/archive.mount 28308 -usr/share/gvfs/mounts/burn.mount 28307 -usr/share/gvfs/mounts/cdda.mount 28306 -usr/share/gvfs/mounts/computer.mount 28305 -usr/share/gvfs/mounts/dav+sd.mount 28304 -usr/share/gvfs/mounts/dav.mount 28303 -usr/share/gvfs/mounts/dns-sd.mount 28302 -usr/share/gvfs/mounts/ftp.mount 28301 -usr/share/gvfs/mounts/ftpis.mount 28300 -usr/share/gvfs/mounts/ftps.mount 28299 -usr/share/gvfs/mounts/google.mount 28298 -usr/share/gvfs/mounts/gphoto2.mount 28297 -usr/share/gvfs/mounts/http.mount 28296 -usr/share/gvfs/mounts/localtest.mount 28295 -usr/share/gvfs/mounts/mtp.mount 28294 -usr/share/gvfs/mounts/network.mount 28293 -usr/share/gvfs/mounts/nfs.mount 28292 -usr/share/gvfs/mounts/recent.mount 28291 -usr/share/gvfs/mounts/sftp.mount 28290 -usr/share/gvfs/mounts/smb-browse.mount 28289 -usr/share/gvfs/mounts/smb.mount 28288 -usr/share/gvfs/mounts/trash.mount 28287 -usr/bin/gnome-keyring-daemon 28284 -usr/share/gnome/applications/vim.desktop 28276 -usr/share/tails/screensaver_background.png 28275 -bin/false 28271 -etc/dconf/profile/ibus 28268 -usr/share/wayland-sessions/gnome.desktop 28267 -usr/share/gvfs/remote-volume-monitors/afc.monitor 28266 -usr/share/gvfs/remote-volume-monitors/goa.monitor 28265 -usr/share/gvfs/remote-volume-monitors/gphoto2.monitor 28264 -usr/share/gvfs/remote-volume-monitors/mtp.monitor 28263 -usr/share/gvfs/remote-volume-monitors/udisks2.monitor 28262 -usr/lib/systemd/user/gvfs-udisks2-volume-monitor.service 28261 -usr/lib/gvfs/gvfs-udisks2-volume-monitor 28259 -usr/lib/x86_64-linux-gnu/libbluray.so.2.1.0 28258 -usr/lib/systemd/user/gvfs-mtp-volume-monitor.service 28257 -usr/lib/gvfs/gvfs-mtp-volume-monitor 28255 -usr/lib/systemd/user/gvfs-gphoto2-volume-monitor.service 28254 -usr/lib/gvfs/gvfs-gphoto2-volume-monitor 28252 -usr/lib/systemd/user/gvfs-goa-volume-monitor.service 28251 -usr/lib/gvfs/gvfs-goa-volume-monitor 28249 -usr/lib/x86_64-linux-gnu/libgoa-1.0.so.0.0.0 28248 -usr/lib/systemd/user/gvfs-afc-volume-monitor.service 28247 -usr/lib/gvfs/gvfs-afc-volume-monitor 28245 -usr/share/gnome-shell/search-providers/gnome-control-center-search-provider.ini 28244 -usr/share/gnome-shell/search-providers/gnome-terminal-search-provider.ini 28243 -usr/share/gnome-shell/search-providers/org.gnome.Calculator-search-provider.ini 28242 -usr/share/gnome-shell/search-providers/org.gnome.Nautilus.search-provider.ini 28241 -usr/share/gnome-shell/search-providers/seahorse-search-provider.ini 28240 -usr/share/gnome-shell/extensions/TopIcons@phocean.net/metadata.json 28223 -usr/share/gnome-shell/extensions/TopIcons@phocean.net/extension.js 28220 -usr/share/gnome-shell/extensions/TopIcons@phocean.net/convenience.js 28219 -usr/share/gnome-shell/extensions/alternate-tab@gnome-shell-extensions.gcampax.github.com/metadata.json 28215 -usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 28213 -usr/bin/xdg-user-dirs-update 28212 -etc/xdg/user-dirs.conf 28211 -etc/xdg/user-dirs.defaults 28210 +lib/systemd/system/systemd-user-sessions.service 28485 +lib/systemd/system/nss-user-lookup.target 28484 +lib/systemd/system/systemd-logind.service 28483 +lib/systemd/system/user.slice 28482 +lib/systemd/system/systemd-ask-password-wall.path 28481 +lib/systemd/system/systemd-ask-password-wall.service 28480 +lib/systemd/system/rsync.service 28479 +lib/systemd/system/remote-fs.target 28478 +lib/systemd/system/remote-fs-pre.target 28477 +lib/systemd/system/plymouth-quit.service 28476 +lib/systemd/system/plymouth-quit-wait.service 28475 +lib/systemd/system/open-vm-tools.service 28474 +lib/systemd/system/vgauth.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/lmt-poll.service 28469 +lib/systemd/system/laptop-mode.timer 28468 +lib/systemd/system/laptop-mode.service 28467 +lib/systemd/system/getty.target 28466 +lib/systemd/system/getty-static.service 28465 +lib/systemd/system/cron.service 28464 +lib/systemd/system/console-setup.service 28463 +lib/systemd/system/ModemManager.service 28462 +lib/systemd/system/rescue.target 28461 +lib/systemd/system/accounts-daemon.service 28460 +lib/systemd/system/haveged.service 28459 +usr/lib/NetworkManager/nm-dispatcher 28457 +usr/sbin/NetworkManager 28455 +usr/lib/x86_64-linux-gnu/libndp.so.0.1.0 28454 +usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4.5.0 28453 +usr/lib/x86_64-linux-gnu/libnghttp2.so.14.17.1 28452 +usr/lib/x86_64-linux-gnu/librtmp.so.1 28451 +usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1 28450 +usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10 28449 +usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10 28448 +usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25 28447 +usr/lib/NetworkManager/conf.d/no-mac-addr-change.conf 28446 +etc/NetworkManager/NetworkManager.conf 28445 +etc/NetworkManager/conf.d/dns.conf 28444 +etc/NetworkManager/conf.d/spoof-mac.conf 28443 +usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-settings-plugin-ifupdown.so 28439 +usr/bin/nm-online 28438 +usr/bin/localectl 28437 +usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-adsl.so 28436 +usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-bluetooth.so 28435 +etc/NetworkManager/dispatcher.d/00-firewall.sh 28434 +usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-wwan.so 28433 +usr/lib/x86_64-linux-gnu/libbluetooth.so.3.18.16 28432 +usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-team.so 28431 +usr/lib/x86_64-linux-gnu/libteamdctl.so.0.1.5 28430 +usr/lib/x86_64-linux-gnu/libjansson.so.4.11.1 28429 +usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-wifi.so 28428 +usr/lib/x86_64-linux-gnu/NetworkManager/1.14.6/libnm-device-plugin-wwan.so 28427 +etc/NetworkManager/dispatcher.d/00-resolv-over-clearnet 28426 +usr/share/systemd/language-fallback-map 28423 +etc/NetworkManager/dispatcher.d/01-ifupdown 28421 +etc/NetworkManager/dispatcher.d/01-wait-for-notification-recipient.sh 28420 +etc/dconf/db/ibus.d/00-upstream-settings 28419 +etc/NetworkManager/dispatcher.d/10-tor.sh 28416 +etc/NetworkManager/dispatcher.d/20-time.sh 28415 +etc/dconf/db/local.d/00_Tails_defaults 28414 +usr/local/lib/tails-shell-library/gnome.sh 28412 +usr/local/lib/tails-shell-library/tor.sh 28411 +etc/NetworkManager/dispatcher.d/60-tor-ready.sh 28409 +etc/NetworkManager/dispatcher.d/70-upgrade-additional-software.sh 28408 +usr/sbin/deluser 28407 +usr/share/perl/5.28.1/File/Find.pm 28406 +usr/share/perl/5.28.1/File/Basename.pm 28405 +usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Spec.pm 28404 +usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Spec/Unix.pm 28403 +usr/share/perl/5.28.1/File/Temp.pm 28402 +usr/share/perl/5.28.1/File/Path.pm 28401 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Errno.pm 28400 +usr/share/perl/5.28.1/Carp/Heavy.pm 28399 +etc/deluser.conf 28398 +usr/bin/passwd 28397 +etc/gdm3/PreSession/Default 28393 +etc/gdm3/Xsession 28379 +etc/profile 28378 +usr/bin/id 28377 +etc/profile.d/bash_completion.sh 28376 +etc/profile.d/vte-2.91.sh 28375 +usr/bin/expr 28374 +etc/X11/Xsession.d/20dbus_xdg-runtime 28373 +usr/bin/dbus-update-activation-environment 28372 +etc/X11/Xsession.d/20x11-common_process-args 28371 +etc/X11/Xsession.options 28370 +etc/X11/Xsession.d/30x11-common_xresources 28369 +bin/run-parts 28368 +usr/bin/xrdb 28367 +usr/lib/x86_64-linux-gnu/libXmuu.so.1.0.0 28366 +etc/X11/Xresources/x11-common 28365 +usr/bin/x86_64-linux-gnu-cpp-8 28364 +usr/lib/gcc/x86_64-linux-gnu/8/cc1 28363 +usr/lib/x86_64-linux-gnu/libisl.so.19.1.0 28362 +usr/lib/x86_64-linux-gnu/libmpc.so.3.1.0 28361 +usr/lib/x86_64-linux-gnu/libmpfr.so.6.0.2 28360 +etc/X11/Xsession.d/35x11-common_xhost-local 28358 +usr/bin/xhost 28357 +etc/X11/Xsession.d/40x11-common_xsessionrc 28356 +etc/amnesia/environment 28355 +etc/X11/Xsession.d/50x11-common_determine-startup 28354 +etc/X11/Xsession.d/55gnome-session_gnomerc 28353 +etc/X11/Xsession.d/75dbus_dbus-launch 28352 +etc/X11/Xsession.d/90atk-adaptor 28351 +etc/X11/Xsession.d/90gpg-agent 28350 +etc/X11/Xsession.d/90qt-a11y 28349 +etc/X11/Xsession.d/90x11-common_ssh-agent 28348 +etc/X11/Xsession.d/92tails-set-SSH_AUTH_SOCK 28347 +etc/X11/Xsession.d/95dbus_update-activation-env 28346 +etc/X11/Xsession.d/98vboxadd-xclient 28345 +etc/X11/Xsession.d/99x11-common_start 28344 +usr/share/gnome-session/sessions/gnome.session 28341 +etc/xdg/autostart/at-spi-dbus-bus.desktop 28340 +etc/xdg/autostart/gnome-keyring-pkcs11.desktop 28339 +etc/xdg/autostart/gnome-keyring-secrets.desktop 28338 +etc/xdg/autostart/gnome-keyring-ssh.desktop 28337 +etc/xdg/autostart/gnome-shell-overrides-migration.desktop 28336 +etc/xdg/autostart/nm-applet.desktop 28335 +etc/xdg/autostart/openpgp-applet.desktop 28334 +etc/xdg/autostart/orca-autostart.desktop 28333 +etc/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop 28332 +etc/xdg/autostart/org.gnome.SettingsDaemon.DiskUtilityNotify.desktop 28331 +etc/xdg/autostart/pulseaudio.desktop 28330 +etc/xdg/autostart/systemd-desktop-target.desktop 28329 +etc/xdg/autostart/systemd-gnome-early-initialization-target.desktop 28328 +etc/xdg/autostart/tracker-store.desktop 28327 +etc/xdg/autostart/user-dirs-update-gtk.desktop 28326 +etc/xdg/autostart/xdg-user-dirs.desktop 28325 +usr/lib/systemd/user/gnome-early-initialization.target 28322 +usr/lib/systemd/user/tails-configure-keyboard.service 28321 +usr/lib/systemd/user/tails-add-GNOME-bookmarks.service 28320 +usr/lib/systemd/user/gvfs-metadata.service 28319 +usr/lib/gvfs/gvfsd-metadata 28317 +usr/local/lib/tails-configure-keyboard 28315 +usr/local/lib/add-GNOME-bookmarks 28313 +usr/bin/dirname 28312 +usr/bin/gio 28309 +usr/lib/systemd/user/gvfs-daemon.service 28308 +usr/lib/gvfs/gvfsd 28306 +usr/lib/x86_64-linux-gnu/gvfs/libgvfsdaemon.so 28305 +usr/share/gvfs/mounts/admin.mount 28304 +usr/share/gvfs/mounts/afc.mount 28303 +usr/share/gvfs/mounts/afp-browse.mount 28302 +usr/share/gvfs/mounts/afp.mount 28301 +usr/share/gvfs/mounts/archive.mount 28300 +usr/share/gvfs/mounts/burn.mount 28299 +usr/share/gvfs/mounts/cdda.mount 28298 +usr/share/gvfs/mounts/computer.mount 28297 +usr/share/gvfs/mounts/dav+sd.mount 28296 +usr/share/gvfs/mounts/dav.mount 28295 +usr/share/gvfs/mounts/dns-sd.mount 28294 +usr/share/gvfs/mounts/ftp.mount 28293 +usr/share/gvfs/mounts/ftpis.mount 28292 +usr/share/gvfs/mounts/ftps.mount 28291 +usr/share/gvfs/mounts/google.mount 28290 +usr/share/gvfs/mounts/gphoto2.mount 28289 +usr/share/gvfs/mounts/http.mount 28288 +usr/share/gvfs/mounts/localtest.mount 28287 +usr/share/gvfs/mounts/mtp.mount 28286 +usr/share/gvfs/mounts/network.mount 28285 +usr/share/gvfs/mounts/nfs.mount 28284 +usr/share/gvfs/mounts/recent.mount 28283 +usr/share/gvfs/mounts/sftp.mount 28282 +usr/share/gvfs/mounts/smb-browse.mount 28281 +usr/share/gvfs/mounts/smb.mount 28280 +usr/share/gvfs/mounts/trash.mount 28279 +usr/bin/gnome-keyring-daemon 28276 +usr/share/gnome/applications/vim.desktop 28268 +usr/share/gnome/applications/display-im6.q16.desktop 28267 +usr/share/tails/screensaver_background.png 28266 +etc/dhcp/dhclient.conf 28265 +sbin/dhclient 28262 +lib/x86_64-linux-gnu/libdns-export.so.1104.0.2 28261 +lib/x86_64-linux-gnu/libisc-export.so.1100.0.0 28260 +bin/false 28257 +etc/services 28256 +usr/lib/NetworkManager/nm-dhcp-helper 28253 +etc/dconf/profile/ibus 28249 +usr/share/wayland-sessions/gnome.desktop 28248 +usr/share/gvfs/remote-volume-monitors/afc.monitor 28247 +usr/share/gvfs/remote-volume-monitors/goa.monitor 28246 +usr/share/gvfs/remote-volume-monitors/gphoto2.monitor 28245 +usr/share/gvfs/remote-volume-monitors/mtp.monitor 28244 +usr/share/gvfs/remote-volume-monitors/udisks2.monitor 28243 +usr/lib/systemd/user/gvfs-udisks2-volume-monitor.service 28242 +usr/lib/gvfs/gvfs-udisks2-volume-monitor 28240 +usr/lib/x86_64-linux-gnu/libbluray.so.2.1.0 28239 +usr/lib/systemd/user/gvfs-mtp-volume-monitor.service 28238 +usr/lib/gvfs/gvfs-mtp-volume-monitor 28236 +usr/lib/systemd/user/gvfs-gphoto2-volume-monitor.service 28235 +usr/lib/gvfs/gvfs-gphoto2-volume-monitor 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 +usr/lib/systemd/user/gvfs-afc-volume-monitor.service 28228 +usr/lib/gvfs/gvfs-afc-volume-monitor 28226 +usr/share/gnome-shell/search-providers/gnome-control-center-search-provider.ini 28225 +usr/share/gnome-shell/search-providers/gnome-terminal-search-provider.ini 28224 +usr/share/gnome-shell/search-providers/org.gnome.Calculator-search-provider.ini 28223 +usr/share/gnome-shell/search-providers/org.gnome.Nautilus.search-provider.ini 28222 +usr/share/gnome-shell/search-providers/seahorse-search-provider.ini 28221 +usr/share/gnome-shell/extensions/TopIcons@phocean.net/metadata.json 28216 +usr/share/gnome-shell/extensions/TopIcons@phocean.net/extension.js 28215 +usr/share/gnome-shell/extensions/TopIcons@phocean.net/convenience.js 28214 +usr/share/gnome-shell/extensions/alternate-tab@gnome-shell-extensions.gcampax.github.com/metadata.json 28209 +usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 28208 usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/extension.js 28207 -etc/dhcp/dhclient.conf 28204 -usr/lib/x86_64-linux-gnu/girepository-1.0/GMenu-3.0.typelib 28203 -usr/bin/start-pulseaudio-x11 28198 -usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/convenience.js 28197 -usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/stylesheet.css 28196 -usr/bin/pactl 28193 -sbin/dhclient 28189 -usr/lib/pulse-12.2/modules/module-x11-publish.so 28184 -usr/lib/x86_64-linux-gnu/libgnome-menu-3.so.0.0.1 28183 -etc/xdg/menus/gnome-applications.menu 28180 -etc/xdg/menus/applications-merged/Tails.menu 28179 -usr/sbin/cupsd 28177 -usr/lib/pulse-12.2/modules/module-x11-cork-request.so 28176 -usr/lib/pulse-12.2/modules/module-x11-xsmp.so 28175 -usr/lib/x86_64-linux-gnu/libpaper.so.1.1.2 28174 -lib/x86_64-linux-gnu/libdns-export.so.1104.0.2 28173 -usr/share/desktop-directories/ActionGames.directory 28172 -usr/share/desktop-directories/AdventureGames.directory 28171 -usr/share/desktop-directories/ArcadeGames.directory 28170 -usr/share/desktop-directories/AudioVideo.directory 28169 -usr/share/desktop-directories/BlocksGames.directory 28168 -usr/share/desktop-directories/BoardGames.directory 28167 -usr/share/desktop-directories/CardGames.directory 28166 -usr/share/desktop-directories/Debian.directory 28165 -usr/share/desktop-directories/Development.directory 28164 -usr/share/desktop-directories/Education.directory 28163 -usr/share/desktop-directories/Game.directory 28162 -usr/share/desktop-directories/GnomeScience.directory 28161 -usr/share/desktop-directories/Graphics.directory 28160 -usr/share/desktop-directories/KidsGames.directory 28159 -usr/share/desktop-directories/LogicGames.directory 28158 -usr/share/desktop-directories/Network.directory 28157 -usr/share/desktop-directories/Office.directory 28156 -usr/share/desktop-directories/RolePlayingGames.directory 28155 -usr/share/desktop-directories/Settings-System.directory 28154 -usr/share/desktop-directories/Settings.directory 28153 -usr/share/desktop-directories/SimulationGames.directory 28152 -usr/share/desktop-directories/SportsGames.directory 28151 -usr/share/desktop-directories/StrategyGames.directory 28150 -usr/share/desktop-directories/System-Tools.directory 28149 -usr/share/desktop-directories/Tails.directory 28148 -usr/share/desktop-directories/Utility-Accessibility.directory 28147 -usr/share/desktop-directories/Utility.directory 28146 -usr/share/desktop-directories/X-GNOME-Menu-Applications.directory 28145 -usr/share/desktop-directories/X-GNOME-Other.directory 28144 -etc/cups/cups-files.conf 28143 -etc/cups/cupsd.conf 28142 -usr/share/desktop-directories/X-GNOME-SystemSettings.directory 28141 -usr/share/desktop-directories/X-GNOME-Utilities.directory 28140 -usr/share/desktop-directories/X-GNOME-WebApplications.directory 28139 -etc/papersize 28138 -usr/share/cups/mime/braille.types 28137 -usr/share/cups/mime/command.types 28136 -usr/share/cups/mime/cupsfilters.types 28135 -usr/share/cups/mime/mime.types 28134 -usr/share/cups/mime/pstotiff.types 28133 -etc/cups/raw.types 28132 -usr/share/cups/mime/braille.convs 28131 -usr/share/cups/mime/cupsfilters-ghostscript.convs 28130 -usr/share/cups/mime/cupsfilters-mupdf.convs 28129 -usr/share/cups/mime/cupsfilters-poppler.convs 28128 -usr/share/cups/mime/cupsfilters.convs 28127 -usr/share/cups/mime/mime.convs 28126 -usr/share/cups/mime/pstotiff.convs 28125 -etc/cups/raw.convs 28124 -usr/share/cups/banners/classified 28121 -usr/share/cups/banners/confidential 28120 -usr/share/cups/banners/form 28119 -usr/share/cups/banners/secret 28118 -usr/share/cups/banners/standard 28117 -usr/share/cups/banners/topsecret 28116 -usr/share/cups/banners/unclassified 28115 -usr/lib/gnome-settings-daemon/gsd-printer 28111 -lib/x86_64-linux-gnu/libisc-export.so.1100.0.0 28110 -usr/local/lib/end-profile 28107 -usr/lib/gnome-disk-utility/gsd-disk-utility-notify 28104 -usr/bin/gdbus 28101 -usr/bin/xdg-user-dirs-gtk-update 28098 -usr/lib/gnome-shell/gnome-shell-overrides-migration.sh 28095 -usr/bin/torsocks 28092 -usr/lib/systemd/user/tracker-store.service 28091 -usr/share/gnome-shell/extensions/auto-move-windows@gnome-shell-extensions.gcampax.github.com/metadata.json 28090 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/metadata.json 28089 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/extension.js 28088 -usr/lib/tracker/tracker-store 28086 -usr/lib/evolution/evolution-data-server/evolution-alarm-notify 28085 -usr/lib/x86_64-linux-gnu/libedataserverui-1.2.so.2.0.0 28082 -usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0 28081 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/prefs.js 28080 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopManager.js 28079 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopGrid.js 28076 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/createFolderDialog.js 28075 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopIconsUtil.js 28074 -usr/local/lib/start-systemd-desktop-target 28073 -etc/services 28072 -sbin/getcap 28069 -usr/bin/openpgp-applet 28068 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/fileItem.js 28067 -usr/lib/NetworkManager/nm-dhcp-helper 28066 -usr/bin/xargs 28065 -usr/lib/x86_64-linux-gnu/tracker-2.0/libtracker-data.so.0.0.0 28064 -usr/lib/x86_64-linux-gnu/libical.so.3.0.4 28063 -usr/lib/systemd/user/desktop.target 28062 -usr/lib/x86_64-linux-gnu/torsocks/libtorsocks.so.0.0.0 28061 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/dbusUtils.js 28060 -usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.23.0.0 28059 -usr/lib/x86_64-linux-gnu/tracker-2.0/libtracker-common.so.0.0.0 28058 -etc/tor/torsocks.conf 28057 -usr/lib/x86_64-linux-gnu/libtracker-sparql-2.0.so.0.108.0 28056 -usr/lib/systemd/user/tails-wait-until-tor-has-bootstrapped.service 28055 -usr/lib/systemd/user/tails-virt-notify-user.service 28054 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/stylesheet.css 28053 -usr/lib/systemd/user/tails-upgrade-frontend.service 28051 -usr/lib/x86_64-linux-gnu/libstemmer.so.0d.0.0 28050 -usr/lib/x86_64-linux-gnu/libgcr-ui-3.so.1.0.0 28049 -usr/share/gnome-shell/extensions/drive-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 28048 -usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com/metadata.json 28047 -usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-extensions.gcampax.github.com/metadata.json 28046 -usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 28045 -usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/extension.js 28044 -usr/share/perl5/Gtk3.pm 28043 -usr/lib/x86_64-linux-gnu/perl5/5.28/Cairo/GObject.pm 28042 -usr/lib/systemd/user/tails-security-check.service 28041 -usr/lib/x86_64-linux-gnu/perl5/5.28/Cairo.pm 28040 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Cairo/Cairo.so 28039 -usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/convenience.js 28038 -usr/share/tracker/domain-ontologies/default.rule 28037 -usr/lib/x86_64-linux-gnu/libwebkit2gtk-4.0.so.37.39.3 28036 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Cairo/GObject/GObject.so 28035 -usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/placeDisplay.js 28034 -usr/lib/x86_64-linux-gnu/libcamel-1.2.so.62.0.0 28033 -usr/share/tracker/ontologies/nepomuk/30-nie.ontology 28032 -usr/lib/systemd/user/tails-kill-gdm-session.service 28031 -usr/share/tracker/ontologies/nepomuk/32-nco.ontology 28030 -usr/share/tracker/ontologies/nepomuk/33-nfo.ontology 28029 -usr/share/tracker/ontologies/nepomuk/34-nmo.ontology 28028 -usr/share/tracker/ontologies/nepomuk/35-ncal.ontology 28027 -usr/share/tracker/ontologies/nepomuk/36-scal.ontology 28026 -usr/share/tracker/ontologies/nepomuk/37-nid3.ontology 28025 -usr/share/tracker/ontologies/nepomuk/38-nmm.ontology 28024 -usr/share/tracker/ontologies/nepomuk/39-mto.ontology 28023 -usr/share/tracker/ontologies/nepomuk/40-mlo.ontology 28022 -usr/share/tracker/ontologies/nepomuk/41-mfo.ontology 28021 -usr/share/tracker/ontologies/nepomuk/89-mtp.ontology 28020 -usr/share/tracker/ontologies/nepomuk/90-tracker.ontology 28019 -usr/share/tracker/ontologies/nepomuk/91-maemo.ontology 28018 -usr/share/tracker/ontologies/nepomuk/92-slo.ontology 28017 -usr/share/tracker/ontologies/nepomuk/93-libosinfo.ontology 28016 -usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/stylesheet.css 28015 -usr/lib/systemd/user/tails-additional-software-install.service 28014 -usr/lib/x86_64-linux-gnu/libgdata.so.22.3.0 28010 -usr/lib/x86_64-linux-gnu/libxslt.so.1.1.32 28009 -usr/lib/x86_64-linux-gnu/libjavascriptcoregtk-4.0.so.18.14.7 28008 -usr/local/lib/tails-virt-notify-user 28006 -usr/share/gnome-shell/extensions/screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com/metadata.json 28005 -usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/metadata.json 28004 -usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js 28003 -usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/lib.js 28002 -usr/share/perl5/Desktop/Notify.pm 28001 -usr/local/lib/tails-kill-gdm-session 28000 -usr/share/gnome-shell/extensions/torstatus@tails.boum.org/metadata.json 27999 -lib/systemd/system/tails-additional-software-install.service 27998 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus.pm 27997 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/DBus/DBus.so 27996 -usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js 27995 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Bus.pm 27994 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Connection.pm 27993 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message/MethodCall.pm 27992 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message.pm 27991 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Iterator.pm 27990 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message/Signal.pm 27989 -usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/metadata.json 27988 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message/MethodReturn.pm 27987 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message/Error.pm 27986 -usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/metadata.json 27985 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/PendingCall.pm 27984 -bin/cp 27983 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Service.pm 27982 -usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/extension.js 27981 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/RemoteService.pm 27980 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/RemoteObject.pm 27979 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Introspector.pm 27978 -usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/convenience.js 27977 -usr/lib/gdm3/gdm-session-worker-only-reauth 27976 -usr/share/perl5/XML/Twig.pm 27975 -usr/lib/x86_64-linux-gnu/girepository-1.0/GdkPixdata-2.0.typelib 27974 -usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/stylesheet.css 27973 -usr/share/perl/5.28.1/UNIVERSAL.pm 27969 -usr/share/perl/5.28.1/utf8.pm 27968 -usr/share/gnome-shell/extensions/windowsNavigator@gnome-shell-extensions.gcampax.github.com/metadata.json 27967 -usr/lib/x86_64-linux-gnu/libwoff2dec.so.1.0.2 27966 -usr/lib/x86_64-linux-gnu/libharfbuzz-icu.so.0.20301.0 27965 -usr/lib/x86_64-linux-gnu/libgstapp-1.0.so.0.1404.0 27964 -usr/lib/x86_64-linux-gnu/libgstpbutils-1.0.so.0.1404.0 27963 -usr/lib/x86_64-linux-gnu/libgstaudio-1.0.so.0.1404.0 27962 -usr/share/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gcampax.github.com/metadata.json 27961 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/Parser.pm 27960 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/Parser/Expat.pm 27959 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/XML/Parser/Expat/Expat.so 27958 -usr/lib/x86_64-linux-gnu/libgsttag-1.0.so.0.1404.0 27955 -usr/lib/x86_64-linux-gnu/libgstvideo-1.0.so.0.1404.0 27954 -usr/share/perl5/Gtk3/SimpleList.pm 27953 -usr/share/perl5/Crypt/OpenPGP_Applet/GnuPG/Interface.pm 27952 -usr/share/perl5/Moo.pm 27951 -usr/lib/x86_64-linux-gnu/libgstgl-1.0.so.0.1404.0 27950 -usr/lib/x86_64-linux-gnu/libgstfft-1.0.so.0.1404.0 27949 -usr/lib/x86_64-linux-gnu/libwebpdemux.so.2.0.3 27948 -usr/lib/x86_64-linux-gnu/libenchant.so.1.6.0 27947 -usr/lib/x86_64-linux-gnu/libhyphen.so.0.3.0 27946 -usr/lib/x86_64-linux-gnu/liboauth.so.0.8.7 27945 -usr/lib/x86_64-linux-gnu/libwoff2common.so.1.0.2 27944 -usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.7 27943 -usr/lib/x86_64-linux-gnu/libgstallocators-1.0.so.0.1404.0 27942 -usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.7 27941 -usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Glob.pm 27940 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/File/Glob/Glob.so 27939 -usr/share/perl5/Moo/_strictures.pm 27938 -usr/share/perl5/Moo/_mro.pm 27937 -usr/lib/x86_64-linux-gnu/perl/5.28.1/mro.pm 27936 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/mro/mro.so 27935 -usr/share/perl5/Moo/_Utils.pm 27934 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Sub/Util.pm 27933 -usr/share/perl5/Module/Runtime.pm 27932 -usr/share/perl5/Devel/GlobalDestruction.pm 27931 -usr/share/perl5/Sub/Exporter/Progressive.pm 27930 -usr/share/perl5/Moo/HandleMoose/_TypeMap.pm 27929 -usr/share/perl5/Moo/sification.pm 27928 -usr/share/perl5/Moo/Object.pm 27927 -usr/share/perl5/namespace/autoclean.pm 27926 -usr/share/perl5/B/Hooks/EndOfScope.pm 27925 -usr/share/perl5/Module/Implementation.pm 27924 -usr/share/perl5/Try/Tiny.pm 27923 -usr/share/perl5/B/Hooks/EndOfScope/XS.pm 27922 -usr/lib/x86_64-linux-gnu/perl5/5.28/Variable/Magic.pm 27921 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Variable/Magic/Magic.so 27920 -usr/share/perl5/namespace/clean.pm 27919 -usr/share/perl5/Package/Stash.pm 27918 -usr/lib/x86_64-linux-gnu/perl5/5.28/Package/Stash/XS.pm 27917 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Package/Stash/XS/XS.so 27916 -usr/share/perl5/namespace/clean/_Util.pm 27915 -bin/chvt 27914 -usr/lib/x86_64-linux-gnu/perl5/5.28/Sub/Identify.pm 27913 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Sub/Identify/Identify.so 27912 -usr/share/perl5/GnuPG/Interface.pm 27911 -usr/share/perl5/MooX/late.pm 27910 -usr/share/perl5/Method/Generate/Constructor.pm 27909 -usr/share/perl5/Sub/Quote.pm 27908 -usr/share/perl5/Sub/Defer.pm 27907 -usr/lib/x86_64-linux-gnu/perl/5.28.1/B.pm 27906 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/ASyncReply.pm 27905 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Annotation.pm 27904 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Test/MockConnection.pm 27903 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Error.pm 27902 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Test/MockMessage.pm 27901 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Test/MockIterator.pm 27900 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/B/B.so 27899 -usr/share/perl5/Method/Generate/Accessor.pm 27898 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/XSAccessor.pm 27897 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/XSAccessor/Heavy.pm 27896 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Value.pm 27895 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Data/Dumper.pm 27894 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Data/Dumper/Dumper.so 27893 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Class/XSAccessor/XSAccessor.so 27892 -usr/share/perl5/Desktop/Notify/Notification.pm 27891 -usr/share/perl5/Class/Accessor.pm 27890 -usr/lib/x86_64-linux-gnu/perl5/5.28/Sub/Name.pm 27889 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Sub/Name/Name.so 27888 -usr/share/perl/5.28.1/English.pm 27887 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Tie/Hash/NamedCapture.pm 27886 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Tie/Hash/NamedCapture/NamedCapture.so 27885 -usr/share/perl/5.28.1/Fatal.pm 27884 -usr/share/perl/5.28.1/Tie/RefHash.pm 27883 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl 27882 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_git.pl 27881 -usr/share/perl5/IPC/System/Simple.pm 27880 -usr/share/perl/5.28.1/autodie/Util.pm 27879 -usr/share/perl/5.28.1/autodie/Scope/GuardStack.pm 27878 -usr/share/perl/5.28.1/autodie/Scope/Guard.pm 27877 -usr/share/perl/5.28.1/Class/Struct.pm 27876 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Reactor.pm 27875 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Watch.pm 27874 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Callback.pm 27873 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Time/HiRes.pm 27872 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Time/HiRes/HiRes.so 27871 -usr/share/perl/5.28.1/Math/BigInt.pm 27870 -usr/bin/systemd-detect-virt 27869 -usr/share/perl/5.28.1/Math/BigInt/Calc.pm 27868 -usr/share/perl/5.28.1/Math/BigInt/Lib.pm 27867 -usr/share/perl/5.28.1/integer.pm 27866 -usr/share/perl5/GnuPG/Options.pm 27865 -usr/share/perl5/MooX/HandlesVia.pm 27864 -usr/share/perl5/Moo/Role.pm 27863 -usr/share/perl5/Role/Tiny.pm 27862 -usr/share/perl5/GnuPG/HashInit.pm 27861 -usr/share/tracker/stop-words/stopwords.en 27860 -usr/share/perl5/Type/Utils.pm 27859 -usr/share/perl5/Type/Library.pm 27858 -usr/share/perl5/Eval/TypeTiny.pm 27857 -usr/share/perl5/Exporter/Tiny.pm 27856 -usr/share/perl5/Type/Tiny.pm 27855 -usr/share/perl5/Types/TypeTiny.pm 27854 -usr/lib/x86_64-linux-gnu/perl5/5.28/Type/Tiny/XS.pm 27853 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Type/Tiny/XS/XS.so 27852 -usr/share/perl5/Type/Registry.pm 27851 -usr/share/perl5/Type/Parser.pm 27850 -usr/share/perl5/Types/Standard.pm 27849 -usr/share/perl5/Type/Coercion.pm 27848 -usr/share/perl5/Data/Perl/Collection/Array/MooseLike.pm 27847 -usr/share/icons/hicolor/scalable/status/tor-disconnected-symbolic.svg 27846 -usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf 27845 -usr/share/perl5/strictures.pm 27844 -usr/share/perl5/Role/Tiny/With.pm 27843 -usr/share/icons/Adwaita/16x16/places/user-home-symbolic.symbolic.png 27842 -usr/share/icons/Adwaita/16x16/places/folder-documents-symbolic.symbolic.png 27841 -usr/share/icons/Adwaita/16x16/places/folder-pictures-symbolic.symbolic.png 27840 -usr/share/icons/Adwaita/16x16/places/folder-music-symbolic.symbolic.png 27839 -usr/share/icons/Adwaita/16x16/places/folder-download-symbolic.symbolic.png 27838 -usr/share/icons/Adwaita/16x16/places/folder-videos-symbolic.symbolic.png 27837 -usr/share/icons/Adwaita/16x16/places/user-desktop-symbolic.symbolic.png 27836 -usr/share/icons/Adwaita/16x16/mimetypes/inode-directory-symbolic.symbolic.png 27835 -usr/share/perl5/Class/Method/Modifiers.pm 27834 -usr/share/perl5/Data/Perl/Role/Collection/Array.pm 27833 -usr/lib/x86_64-linux-gnu/perl5/5.28/List/MoreUtils.pm 27832 -usr/lib/x86_64-linux-gnu/perl5/5.28/List/MoreUtils/PP.pm 27831 -usr/lib/x86_64-linux-gnu/perl5/5.28/List/MoreUtils/XS.pm 27830 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/List/MoreUtils/MoreUtils.so 27829 -usr/share/perl5/GnuPG/Handles.pm 27828 -usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc 27824 -usr/share/perl5/Type/Tiny/Class.pm 27823 -usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime.pm 27822 -usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime/Duration.pm 27821 -usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime/Helpers.pm 27820 -usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime/Types.pm 27819 -usr/share/perl5/Specio/Exporter.pm 27818 -usr/share/perl5/Specio/Helpers.pm 27817 -usr/share/perl5/Specio/Registry.pm 27816 -usr/share/perl5/Specio.pm 27815 -usr/share/perl5/Specio/Declare.pm 27814 -usr/share/perl5/Specio/Coercion.pm 27813 -usr/share/perl5/Specio/OO.pm 27812 -usr/share/perl5/MRO/Compat.pm 27811 -usr/share/perl5/Specio/PartialDump.pm 27810 -usr/share/perl5/Specio/TypeChecks.pm 27809 -usr/share/perl5/Specio/Role/Inlinable.pm 27808 -usr/share/perl5/Eval/Closure.pm 27807 -usr/share/perl5/Specio/Constraint/Simple.pm 27806 -usr/share/perl5/Specio/Constraint/Role/Interface.pm 27805 -usr/share/perl5/Specio/Exception.pm 27804 -usr/share/perl5/Devel/StackTrace.pm 27803 -usr/share/perl5/Devel/StackTrace/Frame.pm 27802 -usr/share/perl5/Specio/DeclaredAt.pm 27801 -usr/share/perl5/Specio/Library/Builtins.pm 27800 -usr/share/perl5/Specio/Constraint/Parameterizable.pm 27799 -usr/share/perl5/Specio/Constraint/Parameterized.pm 27798 -usr/share/perl5/Specio/Library/Numeric.pm 27797 -usr/share/perl5/Specio/Library/String.pm 27796 -usr/share/perl5/Specio/Constraint/AnyCan.pm 27795 -usr/share/perl5/Specio/Constraint/Role/CanType.pm 27794 -usr/lib/systemd/user/evolution-source-registry.service 27792 -usr/lib/evolution/evolution-source-registry 27790 -usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0 27789 -usr/share/perl5/Specio/Constraint/ObjectIsa.pm 27788 -usr/sbin/ferm 27787 -usr/share/perl5/Specio/Constraint/Role/IsaType.pm 27786 -usr/share/perl5/Specio/Constraint/Enum.pm 27785 -usr/share/perl5/Specio/Constraint/Union.pm 27784 -usr/share/perl5/Specio/Constraint/ObjectCan.pm 27783 -usr/lib/x86_64-linux-gnu/libdb-5.3.so 27782 -usr/share/perl5/Params/ValidationCompiler.pm 27781 -usr/share/perl5/Params/ValidationCompiler/Compiler.pm 27780 -usr/share/perl5/Params/ValidationCompiler/Exceptions.pm 27779 -usr/share/perl5/Exception/Class.pm 27778 -usr/share/perl5/Exception/Class/Base.pm 27777 -usr/share/perl5/Class/Data/Inheritable.pm 27776 -etc/ferm/ferm.conf 27775 -usr/sbin/xtables-nft-multi 27774 -lib/x86_64-linux-gnu/libmnl.so.0.2.0 27773 -usr/lib/x86_64-linux-gnu/libnftnl.so.11.0.0 27772 -usr/lib/x86_64-linux-gnu/libnetfilter_conntrack.so.3.7.0 27771 -usr/lib/x86_64-linux-gnu/libnfnetlink.so.0.2.0 27770 -usr/lib/x86_64-linux-gnu/libxtables.so.12.2.0 27769 -usr/share/perl5/DateTime/Locale.pm 27768 -usr/share/perl5/DateTime/Locale/Data.pm 27767 -usr/share/perl5/File/ShareDir.pm 27766 -usr/share/perl5/Class/Inspector.pm 27765 -usr/lib/x86_64-linux-gnu/xtables/libxt_conntrack.so 27764 -usr/lib/x86_64-linux-gnu/perl5/5.28/Params/Util.pm 27763 -usr/lib/x86_64-linux-gnu/xtables/libxt_standard.so 27762 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Params/Util/Util.so 27761 -etc/protocols 27760 -usr/lib/x86_64-linux-gnu/xtables/libxt_tcp.so 27759 -usr/lib/x86_64-linux-gnu/xtables/libxt_owner.so 27758 -usr/lib/x86_64-linux-gnu/xtables/libxt_multiport.so 27757 -usr/lib/x86_64-linux-gnu/xtables/libxt_udp.so 27756 -usr/lib/x86_64-linux-gnu/xtables/libipt_LOG.so 27755 -usr/lib/x86_64-linux-gnu/xtables/libipt_REJECT.so 27754 -usr/lib/x86_64-linux-gnu/xtables/libipt_REDIRECT.so 27753 -usr/lib/x86_64-linux-gnu/xtables/libip6t_LOG.so 27752 -usr/lib/x86_64-linux-gnu/xtables/libip6t_REJECT.so 27751 -usr/lib/x86_64-linux-gnu/xtables/libxt_state.so 27750 -usr/share/perl5/DateTime/Locale/FromData.pm 27749 -usr/share/perl5/DateTime/Locale/Util.pm 27748 -usr/share/perl5/DateTime/TimeZone.pm 27747 -usr/share/perl5/DateTime/TimeZone/Catalog.pm 27746 -usr/share/perl5/DateTime/TimeZone/Floating.pm 27745 -usr/share/perl5/Class/Singleton.pm 27744 -usr/share/perl5/DateTime/TimeZone/OffsetOnly.pm 27743 -usr/share/perl5/DateTime/TimeZone/UTC.pm 27742 -usr/share/perl5/DateTime/TimeZone/Local.pm 27741 -usr/share/perl5/DateTime/TimeZone/OlsonDB/Change.pm 27740 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/DateTime/DateTime.so 27739 -usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime/Infinite.pm 27738 -etc/network/if-up.d/ethtool 27737 -usr/lib/evolution-data-server/registry-modules/module-cache-reaper.so 27736 -usr/lib/evolution-data-server/registry-modules/module-gnome-online-accounts.so 27735 -usr/lib/evolution-data-server/registry-modules/module-google-backend.so 27734 -usr/lib/evolution-data-server/registry-modules/module-oauth2-services.so 27733 -usr/lib/evolution-data-server/registry-modules/module-outlook-backend.so 27732 -usr/lib/evolution-data-server/registry-modules/module-secret-monitor.so 27731 -usr/lib/evolution-data-server/registry-modules/module-trust-prompt.so 27730 -usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Select.pm 27729 -usr/share/perl5/Locale/TextDomain.pm 27728 -usr/share/perl5/Locale/Messages.pm 27727 -usr/share/perl5/Locale/gettext_pp.pm 27726 -usr/share/perl/5.28.1/locale.pm 27725 -usr/share/perl5/Locale/Recode.pm 27724 -usr/share/perl5/Locale/Recode/_Conversions.pm 27723 -usr/lib/evolution-data-server/registry-modules/module-webdav-backend.so 27722 -usr/lib/evolution-data-server/registry-modules/module-yahoo-backend.so 27721 -usr/lib/evolution-data-server/credential-modules/module-credentials-goa.so 27720 -etc/wpa_supplicant/ifupdown.sh 27719 -etc/wpa_supplicant/functions.sh 27718 -usr/lib/evolution-data-server/camel-providers/libcamelimapx.urls 27717 -usr/lib/evolution-data-server/camel-providers/libcamellocal.urls 27716 -usr/lib/evolution-data-server/camel-providers/libcamelnntp.urls 27715 -usr/lib/evolution-data-server/camel-providers/libcamelpop3.urls 27714 -usr/lib/evolution-data-server/camel-providers/libcamelsendmail.urls 27713 -usr/lib/evolution-data-server/camel-providers/libcamelsmtp.urls 27712 -usr/lib/evolution-data-server/camel-providers/libcamellocal.so 27711 -usr/lib/evolution-data-server/camel-providers/libcamelimapx.so 27710 -usr/share/perl5/Method/Generate/BuildAll.pm 27709 -usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so 27708 -usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so 27707 -usr/lib/evolution-data-server/camel-providers/libcamelnntp.so 27706 -usr/lib/evolution-data-server/camel-providers/libcamelpop3.so 27705 -lib/systemd/system/tails-wait-until-tor-has-bootstrapped.service 27704 -usr/share/icons/hicolor/16x16/apps/seahorse.png 27703 -usr/lib/x86_64-linux-gnu/libedata-cal-1.2.so.29.0.0 27702 -lib/systemd/system/tails-tor-has-bootstrapped.target 27701 -lib/systemd/system/tails-tor-has-bootstrapped-flag-file.service 27700 -usr/share/perl5/auto/share/dist/OpenPGP_Applet/LocaleData/en/LC_MESSAGES/OpenPGP_Applet.mo 27699 -lib/systemd/system/tor.service 27698 -lib/systemd/system/nss-lookup.target 27697 -usr/share/perl5/auto/share/dist/OpenPGP_Applet/pixmaps/22x22/OpenPGP_Applet-text.png 27696 -usr/share/icons/Adwaita/16x16/status/network-wired-acquiring-symbolic.symbolic.png 27695 -usr/lib/evolution-data-server/calendar-backends/libecalbackendcaldav.so 27694 -usr/lib/evolution-data-server/calendar-backends/libecalbackendcontacts.so 27693 -usr/lib/x86_64-linux-gnu/libebook-1.2.so.19.1.3 27692 -usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0 27691 -lib/systemd/system/tor@default.service 27690 -lib/systemd/system/tor@default.service.d/fix-obfs4proxy.conf 27689 -lib/systemd/system/tor@default.service.d/writable-etc-tor.conf 27688 -usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0 27687 -usr/lib/x86_64-linux-gnu/libphonenumber.so.7.0 27686 -usr/lib/x86_64-linux-gnu/libprotobuf.so.17.0.0 27685 -usr/share/icons/Adwaita/16x16/status/network-wired-no-route-symbolic.symbolic.png 27682 -usr/lib/x86_64-linux-gnu/libboost_date_time.so.1.67.0 27681 -usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.67.0 27680 -usr/local/sbin/restart-tor 27679 -usr/lib/x86_64-linux-gnu/libboost_system.so.1.67.0 27678 -usr/lib/x86_64-linux-gnu/libboost_thread.so.1.67.0 27677 -usr/lib/x86_64-linux-gnu/libboost_chrono.so.1.67.0 27676 -usr/lib/x86_64-linux-gnu/libboost_atomic.so.1.67.0 27675 -usr/lib/locale/C.UTF-8/LC_CTYPE 27674 -bin/tempfile 27673 -usr/lib/evolution-data-server/calendar-backends/libecalbackendfile.so 27672 -usr/lib/evolution-data-server/calendar-backends/libecalbackendgtasks.so 27671 -usr/lib/evolution-data-server/calendar-backends/libecalbackendhttp.so 27670 -usr/lib/evolution-data-server/calendar-backends/libecalbackendweather.so 27669 -usr/lib/python3/dist-packages/sh.py 27668 -bin/su 27667 -etc/pam.d/su 27666 -lib/x86_64-linux-gnu/security/pam_mail.so 27665 -usr/share/tor/tor-service-defaults-torrc 27654 -usr/local/lib/tails-htp-notify-user 27653 -usr/bin/tail 27652 -usr/lib/systemd/user/evolution-addressbook-factory.service 27646 -usr/share/zoneinfo/zone.tab 27645 -usr/lib/evolution/evolution-addressbook-factory 27643 -usr/lib/python3.7/ast.py 27634 -usr/lib/evolution-data-server/addressbook-backends/libebookbackendcarddav.so 27633 -usr/lib/evolution-data-server/addressbook-backends/libebookbackendfile.so 27630 -usr/lib/evolution-data-server/addressbook-backends/libebookbackendgoogle.so 27629 -usr/lib/evolution-data-server/addressbook-backends/libebookbackendldap.so 27626 -usr/lib/python3.7/pty.py 27625 -usr/lib/python3.7/tty.py 27622 -usr/lib/python3.7/lib-dynload/resource.cpython-37m-x86_64-linux-gnu.so 27619 -usr/lib/python3/dist-packages/tailslib/__init__.py 27618 -usr/lib/python3/dist-packages/tailslib/systemd.py 27617 -usr/lib/python3/dist-packages/tailslib/exceptions.py 27616 -usr/share/icons/Adwaita/16x16/devices/network-wired-symbolic.symbolic.png 27615 -usr/bin/tor 27609 -usr/lib/x86_64-linux-gnu/libevent-2.1.so.6.0.2 27608 -usr/bin/nautilus 27607 -usr/share/tor/geoip 27603 -usr/lib/gvfs/gvfsd-trash 27602 -usr/lib/x86_64-linux-gnu/libnautilus-extension.so.1.5.0 27601 -usr/lib/x86_64-linux-gnu/libgnome-autoar-0.so.0.0.0 27600 -usr/lib/x86_64-linux-gnu/libarchive.so.13.3.3 27599 -usr/share/thumbnailers/evince.thumbnailer 27598 -usr/share/thumbnailers/gdk-pixbuf-thumbnailer.thumbnailer 27597 -usr/share/thumbnailers/librsvg.thumbnailer 27596 -usr/share/thumbnailers/totem.thumbnailer 27595 -usr/share/icons/Adwaita/48x48/places/user-trash.png 27594 -usr/share/icons/Adwaita/24x24/emblems/emblem-symbolic-link.png 27593 -usr/share/pixmaps/whisperback.svg 27592 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libevince-properties-page.so 27591 -usr/lib/x86_64-linux-gnu/libevdocument3.so.4.0.0 27590 -usr/lib/x86_64-linux-gnu/libsynctex.so.2.0.0 27589 -usr/lib/x86_64-linux-gnu/evince/4/backends/comicsdocument.evince-backend 27588 -usr/lib/x86_64-linux-gnu/evince/4/backends/djvudocument.evince-backend 27587 -usr/lib/x86_64-linux-gnu/evince/4/backends/dvidocument.evince-backend 27586 -usr/lib/x86_64-linux-gnu/evince/4/backends/pdfdocument.evince-backend 27585 -usr/lib/x86_64-linux-gnu/evince/4/backends/psdocument.evince-backend 27584 -usr/lib/x86_64-linux-gnu/evince/4/backends/tiffdocument.evince-backend 27583 -usr/lib/x86_64-linux-gnu/evince/4/backends/xpsdocument.evince-backend 27582 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libgtkhash-properties-nautilus.so 27581 -usr/lib/x86_64-linux-gnu/libb2.so.1.0.4 27580 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-fileroller.so 27579 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-image-properties.so 27578 -usr/lib/x86_64-linux-gnu/libgexiv2.so.2.0.0 27577 -usr/lib/x86_64-linux-gnu/libexiv2.so.14.0.0 27576 -usr/share/tor/geoip6 27575 -usr/bin/xxd 27574 -bin/nc.openbsd 27573 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-python.so 27572 -usr/lib/x86_64-linux-gnu/libpython2.7.so.1.0 27571 -usr/lib/python2.7/dist-packages/gi/overrides/GLib.py 27570 -usr/lib/python2.7/socket.py 27569 -usr/lib/python2.7/lib-dynload/_ssl.x86_64-linux-gnu.so 27568 -usr/lib/python2.7/dist-packages/gi/_ossighelper.py 27567 -usr/lib/python2.7/threading.py 27566 -usr/lib/python2.7/dist-packages/gi/_option.py 27565 -usr/lib/python2.7/optparse.py 27564 -usr/lib/python2.7/textwrap.py 27563 -usr/lib/python2.7/gettext.py 27562 -usr/lib/python2.7/locale.py 27561 -usr/lib/python2.7/copy.py 27560 -usr/lib/python2.7/weakref.py 27559 -usr/lib/python2.7/struct.py 27558 -usr/lib/python2.7/dist-packages/gi/overrides/GObject.py 27557 -usr/lib/python2.7/dist-packages/gi/overrides/Pango.py 27556 -usr/lib/python2.7/dist-packages/gi/overrides/Gio.py 27555 -usr/lib/python2.7/dist-packages/gi/overrides/GdkPixbuf.py 27554 -usr/lib/python2.7/dist-packages/gi/overrides/Gdk.py 27553 -usr/lib/python2.7/dist-packages/gi/overrides/Gtk.py 27552 -usr/lib/python2.7/dist-packages/gi/_gtktemplate.py 27551 -usr/share/nautilus-python/extensions/mat2.py 27550 -usr/lib/python2.7/Queue.py 27549 -usr/lib/python2.7/urlparse.py 27548 -usr/lib/x86_64-linux-gnu/girepository-1.0/Nautilus-3.0.typelib 27547 -usr/lib/python2.7/subprocess.py 27546 -usr/lib/python2.7/pickle.py 27545 -usr/lib/python2.7/mimetypes.py 27544 -usr/lib/python2.7/urllib.py 27543 -usr/lib/python2.7/base64.py 27542 -usr/lib/python2.7/ssl.py 27541 -usr/share/nautilus-python/extensions/onionshare-nautilus.py 27540 -usr/lib/python2.7/json/__init__.py 27539 -usr/lib/python2.7/json/decoder.py 27538 -usr/lib/python2.7/json/scanner.py 27537 -usr/lib/python2.7/lib-dynload/_json.x86_64-linux-gnu.so 27536 -usr/lib/python2.7/json/encoder.py 27535 -usr/share/onionshare/locale/cs.json 27534 -usr/share/onionshare/locale/da.json 27533 -usr/share/onionshare/locale/de.json 27532 -usr/share/onionshare/locale/en.json 27531 -usr/share/onionshare/locale/eo.json 27530 -usr/share/onionshare/locale/es.json 27529 -usr/share/onionshare/locale/fi.json 27528 -usr/share/onionshare/locale/fr.json 27527 -usr/share/onionshare/locale/it.json 27526 -usr/share/onionshare/locale/nl.json 27525 -usr/share/onionshare/locale/no.json 27524 -usr/share/onionshare/locale/pt.json 27523 -usr/share/onionshare/locale/ru.json 27522 -usr/share/onionshare/locale/tr.json 27521 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-seahorse.so 27520 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-sendto.so 27519 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-wipe.so 27518 -usr/lib/x86_64-linux-gnu/libgsecuredelete.so.0.1.0 27517 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libterminal-nautilus.so 27516 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libtotem-properties-page.so 27515 -usr/bin/sort 27509 -lib/systemd/system/htpdate.service 27506 -etc/default/htpdate.pools 27505 -usr/local/sbin/htpdate 27497 -usr/share/perl/5.28.1/version.pm 27496 -usr/share/perl/5.28.1/version/regex.pm 27495 -usr/share/icons/hicolor/scalable/status/tor-connected-symbolic.svg 27493 -usr/share/perl5/DateTime/Format/DateParse.pm 27491 -usr/share/perl5/Date/Parse.pm 27490 -usr/share/perl/5.28.1/Time/Local.pm 27489 -usr/share/perl5/Time/Zone.pm 27488 -usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Spec/Functions.pm 27487 -usr/share/perl5/Getopt/Long/Descriptive.pm 27486 -usr/lib/x86_64-linux-gnu/perl5/5.28/Params/Validate.pm 27485 -usr/lib/x86_64-linux-gnu/perl5/5.28/Params/Validate/Constants.pm 27484 -usr/lib/x86_64-linux-gnu/perl5/5.28/Params/Validate/XS.pm 27483 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Params/Validate/XS/XS.so 27482 -usr/share/perl5/Getopt/Long/Descriptive/Opts.pm 27481 -usr/share/perl5/Getopt/Long/Descriptive/Usage.pm 27480 -usr/share/perl5/Sub/Exporter/Util.pm 27479 -usr/share/perl5/Data/OptList.pm 27478 -usr/share/perl5/Sub/Install.pm 27477 -usr/share/perl5/Sub/Exporter.pm 27476 -usr/share/perl/5.28.1/open.pm 27475 -usr/lib/x86_64-linux-gnu/perl/5.28.1/threads.pm 27474 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/threads/threads.so 27473 -usr/bin/curl 27472 -usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0 27471 -usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R5.crt 27470 -usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt 27469 -usr/local/bin/tails-security-check 27466 -usr/local/bin/tails-upgrade-frontend-wrapper 27465 -usr/share/perl5/Carp/Assert/More.pm 27460 -usr/share/perl5/Carp/Assert.pm 27459 -usr/share/perl5/Tails/Download/HTTPS.pm 27438 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose.pm 27437 -usr/share/perl5/Class/Load.pm 27436 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/Load/XS.pm 27435 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Class/Load/XS/XS.so 27434 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Deprecated.pm 27433 -usr/share/perl5/Package/DeprecationManager.pm 27432 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Exporter.pm 27431 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP.pm 27430 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Mixin/AttributeCore.pm 27429 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Mixin.pm 27428 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Mixin/HasAttributes.pm 27427 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Mixin/HasMethods.pm 27426 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Method/Meta.pm 27425 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Method.pm 27424 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Object.pm 27423 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Mixin/HasOverloads.pm 27422 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Overload.pm 27421 -usr/share/perl5/Devel/OverloadInfo.pm 27420 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Class.pm 27419 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Instance.pm 27418 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Method/Wrapped.pm 27417 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Method/Accessor.pm 27416 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Method/Generated.pm 27415 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Method/Constructor.pm 27414 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Method/Inlined.pm 27413 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/MiniTrait.pm 27412 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Module.pm 27411 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Package.pm 27410 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Attribute.pm 27409 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Moose/Moose.so 27408 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Deprecated.pm 27407 -usr/lib/x86_64-linux-gnu/perl5/5.28/Class/MOP/Class/Immutable/Trait.pm 27406 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Util/MetaRole.pm 27405 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Util.pm 27404 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Class.pm 27403 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Overridden.pm 27402 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method.pm 27401 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Object/Trait.pm 27400 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Augmented.pm 27399 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Class/Immutable/Trait.pm 27398 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Constructor.pm 27397 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Destructor.pm 27396 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Meta.pm 27395 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/TypeConstraint.pm 27394 -usr/lib/x86_64-linux-gnu/perl5/5.28/metaclass.pm 27393 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/TypeCoercion.pm 27392 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Attribute.pm 27391 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Accessor.pm 27390 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Delegation.pm 27389 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Util/TypeConstraints.pm 27388 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/TypeConstraint/Union.pm 27387 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/TypeCoercion/Union.pm 27386 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/TypeConstraint/Parameterized.pm 27385 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/TypeConstraint/Parameterizable.pm 27384 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/TypeConstraint/Class.pm 27383 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/TypeConstraint/Role.pm 27382 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/TypeConstraint/Enum.pm 27381 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/TypeConstraint/DuckType.pm 27380 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/TypeConstraint/Registry.pm 27379 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Util/TypeConstraints/Builtins.pm 27378 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Mixin/AttributeCore.pm 27377 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Instance.pm 27376 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Object.pm 27375 -usr/share/perl/5.28.1/if.pm 27374 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Role.pm 27373 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Role/Attribute.pm 27372 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Role/Method.pm 27371 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Role/Method/Required.pm 27370 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Role/Method/Conflicting.pm 27369 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Role/Composite.pm 27368 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Role/Application.pm 27367 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Role/Application/RoleSummation.pm 27366 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Role/Application/ToClass.pm 27365 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Role/Application/ToRole.pm 27364 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Role/Application/ToInstance.pm 27363 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Attribute/Native.pm 27362 -usr/share/perl5/MooseX/Method/Signatures.pm 27361 -usr/lib/x86_64-linux-gnu/perl5/5.28/Devel/Declare.pm 27360 -usr/lib/x86_64-linux-gnu/perl5/5.28/B/Hooks/OP/Check.pm 27359 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/B/Hooks/OP/Check/Check.so 27358 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Devel/Declare/Declare.so 27357 -usr/share/perl5/MooseX/LazyRequire.pm 27356 -usr/share/perl5/aliased.pm 27355 -usr/share/perl5/MooseX/LazyRequire/Meta/Attribute/Trait/LazyRequire.pm 27354 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Role.pm 27353 -usr/share/perl5/MooseX/Types/Moose.pm 27352 -usr/share/perl5/MooseX/Types.pm 27351 -usr/share/perl5/MooseX/Types/TypeDecorator.pm 27350 -usr/share/perl5/Carp/Clan.pm 27349 -usr/share/perl5/MooseX/Types/Base.pm 27348 -usr/share/perl5/MooseX/Types/Util.pm 27347 -usr/share/perl5/MooseX/Types/UndefinedType.pm 27346 -usr/share/perl5/MooseX/Types/CheckedUtilExports.pm 27345 -usr/share/perl5/Sub/Exporter/ForMethods.pm 27344 -usr/share/perl/5.28.1/Text/Balanced.pm 27343 -usr/share/perl/5.28.1/SelfLoader.pm 27342 -usr/share/perl5/MooseX/Method/Signatures/Meta/Method.pm 27341 -usr/share/perl5/Context/Preserve.pm 27340 -usr/share/perl5/Parse/Method/Signatures.pm 27339 -usr/share/perl5/PPI.pm 27338 -usr/share/perl5/PPI/Util.pm 27337 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Digest/MD5.pm 27336 -usr/share/perl/5.28.1/Digest/base.pm 27335 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Digest/MD5/MD5.so 27334 -usr/share/perl5/PPI/Exception.pm 27333 -usr/share/perl5/PPI/Element.pm 27332 -usr/lib/x86_64-linux-gnu/perl5/5.28/Clone.pm 27331 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Clone/Clone.so 27330 -usr/share/perl5/PPI/Node.pm 27329 -usr/share/perl5/PPI/Token.pm 27328 -usr/share/perl5/PPI/Token/BOM.pm 27327 -usr/share/perl5/PPI/Token/Whitespace.pm 27326 -usr/share/perl5/PPI/Token/Comment.pm 27325 -usr/share/perl5/PPI/Token/Pod.pm 27324 -usr/share/perl5/PPI/Token/Number.pm 27323 -usr/share/perl5/PPI/Token/Number/Binary.pm 27322 -usr/share/perl5/PPI/Token/Number/Octal.pm 27321 -usr/share/perl5/PPI/Token/Number/Hex.pm 27320 -usr/share/perl5/PPI/Token/Number/Float.pm 27319 -usr/share/perl5/PPI/Token/Number/Exp.pm 27318 -usr/share/perl5/PPI/Token/Number/Version.pm 27317 -usr/share/perl5/PPI/Token/Word.pm 27316 -usr/share/perl5/PPI/Token/DashedWord.pm 27315 -usr/share/perl5/PPI/Token/Symbol.pm 27314 -usr/share/perl5/PPI/Token/ArrayIndex.pm 27313 -usr/share/perl5/PPI/Token/Magic.pm 27312 -usr/share/perl5/PPI/Token/Unknown.pm 27311 -usr/share/perl5/PPI/Token/Quote/Single.pm 27310 -usr/share/perl5/PPI/Token/Quote.pm 27309 -usr/share/perl5/PPI/Token/_QuoteEngine/Simple.pm 27308 -usr/share/perl5/PPI/Token/_QuoteEngine.pm 27307 -usr/share/perl5/PPI/Token/Quote/Double.pm 27306 -usr/share/perl5/PPI/Token/Quote/Literal.pm 27305 -usr/share/perl5/PPI/Token/_QuoteEngine/Full.pm 27304 -usr/share/perl5/PPI/Token/Quote/Interpolate.pm 27303 -usr/share/perl5/PPI/Token/QuoteLike/Backtick.pm 27302 -usr/share/perl5/PPI/Token/QuoteLike.pm 27301 -usr/share/perl5/PPI/Token/QuoteLike/Command.pm 27300 -usr/share/perl5/PPI/Token/QuoteLike/Regexp.pm 27299 -usr/share/perl5/PPI/Token/QuoteLike/Words.pm 27298 -usr/share/perl5/PPI/Token/QuoteLike/Readline.pm 27297 -usr/share/perl5/PPI/Token/Regexp/Match.pm 27296 -usr/share/perl5/PPI/Token/Regexp.pm 27295 -usr/share/perl5/PPI/Token/Regexp/Substitute.pm 27294 -usr/share/perl5/PPI/Token/Regexp/Transliterate.pm 27293 -usr/share/perl5/PPI/Token/Operator.pm 27292 -usr/share/perl5/PPI/Token/Cast.pm 27291 -usr/share/perl5/PPI/Token/Structure.pm 27290 -usr/share/perl5/PPI/Token/Label.pm 27289 -usr/share/perl5/PPI/Token/HereDoc.pm 27288 -usr/share/perl5/PPI/Token/Separator.pm 27287 -usr/share/perl5/PPI/Token/Data.pm 27286 -usr/share/perl5/IO/String.pm 27285 -usr/share/perl5/PPI/Token/End.pm 27284 -usr/share/perl5/PPI/Token/Prototype.pm 27283 -usr/share/perl5/PPI/Token/Attribute.pm 27282 -usr/share/perl5/PPI/Statement.pm 27281 -usr/share/perl5/PPI/Statement/Break.pm 27280 -usr/share/perl5/PPI/Statement/Compound.pm 27279 -usr/share/perl5/PPI/Statement/Data.pm 27278 -usr/share/perl5/PPI/Statement/End.pm 27277 -usr/share/perl5/PPI/Statement/Expression.pm 27276 -usr/share/perl5/PPI/Statement/Include.pm 27275 -usr/share/perl5/PPI/Statement/Include/Perl6.pm 27274 -usr/share/perl5/PPI/Statement/Null.pm 27273 -usr/share/perl5/PPI/Statement/Package.pm 27272 -usr/share/perl5/PPI/Statement/Scheduled.pm 27271 -usr/share/perl5/PPI/Statement/Sub.pm 27270 -usr/share/perl5/PPI/Statement/Given.pm 27269 -usr/share/perl5/PPI/Statement/UnmatchedBrace.pm 27268 -usr/share/perl5/PPI/Statement/Unknown.pm 27267 -usr/share/perl5/PPI/Statement/Variable.pm 27266 -usr/share/perl5/PPI/Statement/When.pm 27265 -usr/share/perl5/PPI/Structure.pm 27264 -usr/share/perl5/PPI/Structure/Block.pm 27263 -usr/share/perl5/PPI/Structure/Condition.pm 27262 -usr/share/perl5/PPI/Structure/Constructor.pm 27261 -usr/share/perl5/PPI/Structure/For.pm 27260 -usr/share/perl5/PPI/Structure/Given.pm 27259 -usr/share/perl5/PPI/Structure/List.pm 27258 -usr/share/perl5/PPI/Structure/Subscript.pm 27257 -usr/share/perl5/PPI/Structure/Unknown.pm 27256 -usr/share/perl5/PPI/Structure/When.pm 27255 -usr/share/perl5/PPI/Document.pm 27254 -usr/share/perl5/PPI/Document/Fragment.pm 27253 -usr/share/perl5/PPI/Document/File.pm 27252 -usr/share/perl5/PPI/Document/Normalized.pm 27251 -usr/share/perl5/PPI/Normal.pm 27250 -usr/share/perl5/PPI/Normal/Standard.pm 27249 -usr/share/perl5/PPI/Tokenizer.pm 27248 -usr/share/perl5/PPI/Exception/ParserRejection.pm 27247 -usr/share/perl5/PPI/Lexer.pm 27246 -usr/share/perl5/Parse/Method/Signatures/ParamCollection.pm 27245 -usr/share/perl5/Parse/Method/Signatures/Types.pm 27244 -usr/share/perl5/Parse/Method/Signatures/TypeConstraint.pm 27243 -usr/share/perl5/MooseX/Meta/TypeConstraint/ForceCoercion.pm 27242 -usr/share/perl5/MooseX/Types/Structured.pm 27241 -usr/share/perl5/MooseX/Meta/TypeConstraint/Structured.pm 27240 -usr/share/perl5/Devel/PartialDump.pm 27239 -usr/share/perl5/Class/Tiny.pm 27238 -usr/share/perl5/MooseX/Meta/TypeCoercion/Structured.pm 27237 -usr/share/perl5/MooseX/Meta/TypeConstraint/Structured/Optional.pm 27236 -usr/share/perl5/MooseX/Meta/TypeCoercion/Structured/Optional.pm 27235 -usr/share/perl5/MooseX/Types/Structured/OverflowHandler.pm 27234 -usr/share/perl5/MooseX/Types/Structured/MessageStack.pm 27233 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Attribute/Native/Trait/Counter.pm 27232 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Attribute/Native/Trait.pm 27231 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Accessor/Native/Counter/dec.pm 27230 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Accessor/Native/Writer.pm 27229 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Accessor/Native.pm 27228 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Accessor/Native/Counter/inc.pm 27227 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Attribute/Native/Trait/Array.pm 27226 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Accessor/Native/Array/push.pm 27225 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Accessor/Native/Array/Writer.pm 27224 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Accessor/Native/Array.pm 27223 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Accessor/Native/Collection.pm 27222 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Accessor/Native/Array/count.pm 27221 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Accessor/Native/Reader.pm 27220 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Accessor/Native/Array/elements.pm 27219 -usr/share/perl5/MooseX/Method/Signatures/Types.pm 27218 -usr/share/perl5/Parse/Method/Signatures/Param/Named.pm 27217 -usr/share/perl5/Parse/Method/Signatures/Param/Placeholder.pm 27216 -usr/lib/x86_64-linux-gnu/perl5/5.28/Devel/Declare/Context/Simple.pm 27215 -usr/share/perl5/MooseX/Has/Sugar/Saccharin.pm 27214 -usr/share/perl/5.28.1/autodie.pm 27213 -usr/share/perl/5.28.1/autodie/exception/system.pm 27212 -usr/share/perl/5.28.1/autodie/exception.pm 27211 -usr/lib/x86_64-linux-gnu/perl5/5.28/WWW/Curl/Easy.pm 27210 -usr/lib/x86_64-linux-gnu/perl5/5.28/WWW/Curl.pm 27209 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/WWW/Curl/Curl.so 27208 -usr/share/perl5/Parse/Method/Signatures/Sig.pm 27207 -usr/share/perl5/Parse/Method/Signatures/Param.pm 27206 -usr/share/perl5/MooseX/Traits.pm 27205 -usr/share/perl5/MooseX/Traits/Util.pm 27204 -usr/share/perl5/Parse/Method/Signatures/Param/Positional.pm 27203 -usr/share/perl5/Parse/Method/Signatures/Param/Bindable.pm 27202 -usr/share/perl5/XML/Atom.pm 27201 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML.pm 27200 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/Error.pm 27199 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/NodeList.pm 27198 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/Boolean.pm 27197 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/Number.pm 27196 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/Literal.pm 27195 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/XPathContext.pm 27194 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/XML/LibXML/LibXML.so 27193 -usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/AttributeHash.pm 27192 -usr/share/perl5/XML/SAX/Exception.pm 27191 -usr/share/perl5/XML/Atom/ErrorHandler.pm 27190 -usr/share/perl5/XML/Atom/Feed.pm 27189 -usr/share/perl5/XML/Atom/Thing.pm 27188 -usr/share/perl5/XML/Atom/Base.pm 27187 -usr/share/perl5/XML/Atom/Util.pm 27186 -usr/share/perl5/XML/Atom/Category.pm 27185 -usr/share/perl5/XML/Atom/Link.pm 27184 -usr/share/perl5/LWP/UserAgent.pm 27183 -usr/share/perl5/LWP/MemberMixin.pm 27182 -usr/share/perl5/HTTP/Request.pm 27181 -usr/share/perl5/HTTP/Message.pm 27180 -usr/share/perl5/HTTP/Headers.pm 27179 -usr/share/perl5/URI.pm 27178 -usr/share/perl5/URI/Escape.pm 27177 -usr/share/perl5/HTTP/Response.pm 27176 -usr/share/perl5/HTTP/Status.pm 27175 -usr/share/perl5/HTTP/Date.pm 27174 -usr/share/perl5/LWP.pm 27173 -usr/share/perl5/LWP/Protocol.pm 27172 -usr/share/perl5/XML/Atom/Entry.pm 27171 -usr/lib/x86_64-linux-gnu/perl/5.28.1/MIME/Base64.pm 27170 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/MIME/Base64/Base64.so 27169 -usr/share/perl5/XML/Atom/Person.pm 27168 -usr/share/perl5/XML/Atom/Content.pm 27167 -usr/local/etc/ssl/certs/tails.boum.org-CA.pem 27166 -usr/local/lib/tor-browser/browser/chrome/icons/default/default128.png 27164 -usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt 27163 -usr/local/lib/tails-shell-library/systemd.sh 27160 -usr/bin/gettext 27159 -usr/local/sbin/tails-notify-user 27158 -lib/systemd/system/tails-additional-software-upgrade.path 27157 -lib/systemd/system/tails-additional-software-upgrade.service 27156 -usr/bin/notify-send 27148 -usr/share/icons/hicolor/32x32/apps/thunderbird.png 27141 -usr/share/icons/hicolor/32x32/apps/pidgin.png 27140 -usr/share/icons/hicolor/32x32/apps/keepassxc.png 27139 -usr/share/icons/hicolor/32x32/apps/org.gnome.Nautilus.png 27138 -usr/share/icons/Adwaita/32x32/apps/utilities-terminal.png 27137 -usr/local/bin/tor-browser 27135 -usr/local/lib/tails-shell-library/tor-browser.sh 27134 -etc/tor-browser/locale-profiles/en-US.js 27133 -usr/local/lib/tor-browser/firefox.real 27132 -usr/local/lib/tor-browser/dependentlibs.list 27131 -usr/local/lib/tor-browser/libnspr4.so 27130 -usr/local/lib/tor-browser/libplc4.so 27129 -usr/local/lib/tor-browser/libplds4.so 27128 -usr/local/lib/tor-browser/libmozsandbox.so 27127 -usr/local/lib/tor-browser/liblgpllibs.so 27126 -usr/local/lib/tor-browser/libnssutil3.so 27125 -usr/local/lib/tor-browser/libnss3.so 27124 -usr/local/lib/tor-browser/libsmime3.so 27123 -usr/local/lib/tor-browser/libmozsqlite3.so 27122 -usr/local/lib/tor-browser/libssl3.so 27121 -usr/local/lib/tor-browser/libmozgtk.so 27120 -usr/local/lib/tor-browser/libxul.so 27119 -usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2.3.4 27118 -usr/lib/x86_64-linux-gnu/libXt.so.6.0.0 27117 -usr/lib/x86_64-linux-gnu/dri/i915_dri.so 27116 -usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 27115 -usr/lib/x86_64-linux-gnu/libLLVM-7.so.1 27114 -usr/lib/x86_64-linux-gnu/libsensors.so.5.0.0 27113 -usr/lib/x86_64-linux-gnu/libelf-0.176.so 27112 -usr/lib/x86_64-linux-gnu/libdrm_amdgpu.so.1.0.0 27111 -usr/local/lib/tor-browser/TorBrowser/Data/Browser/profiles.ini 27110 -usr/lib/x86_64-linux-gnu/libedit.so.2.0.59 27109 -usr/local/lib/tor-browser/omni.ja 27108 -usr/local/lib/tor-browser/browser/omni.ja 27107 -usr/local/lib/tor-browser/defaults/pref/channel-prefs.js 27106 -etc/ld.so.conf 27105 -etc/ld.so.conf.d/libc.conf 27104 -etc/ld.so.conf.d/x86_64-linux-gnu.conf 27103 -usr/bin/lsb_release 27102 -usr/local/share/tor-browser-extensions/{73a6fe31-595d-460b-a920-fcc0f8843232}.xpi 27101 -usr/local/lib/tor-browser/libsoftokn3.so 27100 -usr/local/lib/tor-browser/libfreeblpriv3.so 27099 -usr/local/lib/tor-browser/libnssckbi.so 27098 -usr/local/lib/tor-browser/browser/blocklist.xml 27097 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/manifest.json 27096 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/en/messages.json 27095 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ar/messages.json 27094 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/az/messages.json 27093 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/bg/messages.json 27092 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/bn/messages.json 27091 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/bs/messages.json 27090 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ca/messages.json 27089 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/cs/messages.json 27088 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/cv/messages.json 27087 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/da/messages.json 27086 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/de/messages.json 27085 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/el/messages.json 27084 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/en_GB/messages.json 27083 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/eo/messages.json 27082 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/es/messages.json 27081 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/et/messages.json 27080 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/eu/messages.json 27079 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fa/messages.json 27078 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fi/messages.json 27077 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fil/messages.json 27076 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fr/messages.json 27075 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fy/messages.json 27074 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/gl/messages.json 27073 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/he/messages.json 27072 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/hi/messages.json 27071 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/hr/messages.json 27070 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/hu/messages.json 27069 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/id/messages.json 27068 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/it/messages.json 27067 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ja/messages.json 27066 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ka/messages.json 27065 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/kk/messages.json 27064 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/kn/messages.json 27063 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ko/messages.json 27062 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/lt/messages.json 27061 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/lv/messages.json 27060 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ml/messages.json 27059 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/mr/messages.json 27058 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ms/messages.json 27057 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/nb/messages.json 27056 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/nl/messages.json 27055 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/no/messages.json 27054 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/pl/messages.json 27053 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/pt_BR/messages.json 27052 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/pt_PT/messages.json 27051 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ro/messages.json 27050 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ru/messages.json 27049 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sk/messages.json 27048 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sl/messages.json 27047 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sq/messages.json 27046 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sr/messages.json 27045 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sv/messages.json 27044 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ta/messages.json 27043 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/te/messages.json 27042 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/th/messages.json 27041 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/tr/messages.json 27040 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/uk/messages.json 27039 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/zh_CN/messages.json 27038 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/vi/messages.json 27037 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ur/messages.json 27036 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/zh_TW/messages.json 27035 -usr/local/share/tor-browser-extensions/langpack-zh-TW@firefox.mozilla.org.xpi 27034 -usr/lib/ibus/ibus-engine-libpinyin 27033 -usr/lib/x86_64-linux-gnu/libpinyin.so.13.0.0 27032 -usr/local/share/tor-browser-extensions/langpack-zh-CN@firefox.mozilla.org.xpi 27031 -usr/lib/ibus/ibus-engine-hangul 27030 -usr/lib/x86_64-linux-gnu/libhangul.so.1.0.0 27029 -usr/lib/ibus/ibus-engine-chewing 27028 -usr/lib/x86_64-linux-gnu/libchewing.so.3.3.1 27027 -usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0.2400.32 27026 -usr/share/libhangul/hanja/hanja.txt 27025 -usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0.2400.32 27024 -usr/local/share/tor-browser-extensions/langpack-vi@firefox.mozilla.org.xpi 27023 -usr/local/share/tor-browser-extensions/langpack-tr@firefox.mozilla.org.xpi 27022 -usr/local/share/tor-browser-extensions/langpack-sv-SE@firefox.mozilla.org.xpi 27021 -usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libgail.so 27020 -usr/local/share/tor-browser-extensions/langpack-ru@firefox.mozilla.org.xpi 27019 -usr/lib/x86_64-linux-gnu/libgailutil.so.18.0.1 27018 -usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libatk-bridge.so 27017 -usr/share/themes/Adwaita/gtk-2.0/gtkrc 27016 -usr/share/themes/Adwaita/gtk-2.0/main.rc 27015 -usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libadwaita.so 27014 -usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libpixmap.so 27013 -usr/share/themes/Adwaita/gtk-2.0/apps.rc 27012 -usr/share/themes/Adwaita/gtk-2.0/hacks.rc 27011 -usr/share/themes/Default/gtk-2.0-key/gtkrc 27010 -usr/local/share/tor-browser-extensions/langpack-ro@firefox.mozilla.org.xpi 27009 -usr/share/ibus-hangul/data/symbol.txt 27008 -usr/local/share/tor-browser-extensions/langpack-pt-BR@firefox.mozilla.org.xpi 27007 -usr/local/share/tor-browser-extensions/langpack-pl@firefox.mozilla.org.xpi 27006 -usr/local/share/tor-browser-extensions/langpack-nl@firefox.mozilla.org.xpi 27005 -usr/local/share/tor-browser-extensions/langpack-nb-NO@firefox.mozilla.org.xpi 27004 -usr/local/share/tor-browser-extensions/langpack-mk@firefox.mozilla.org.xpi 27003 -usr/local/share/tor-browser-extensions/langpack-ko@firefox.mozilla.org.xpi 27002 -usr/local/share/tor-browser-extensions/langpack-ka@firefox.mozilla.org.xpi 27001 -usr/local/share/tor-browser-extensions/langpack-ja@firefox.mozilla.org.xpi 27000 -usr/local/share/tor-browser-extensions/langpack-it@firefox.mozilla.org.xpi 26999 -usr/local/share/tor-browser-extensions/langpack-is@firefox.mozilla.org.xpi 26998 -usr/local/share/tor-browser-extensions/langpack-id@firefox.mozilla.org.xpi 26997 -usr/local/share/tor-browser-extensions/langpack-hu@firefox.mozilla.org.xpi 26996 -usr/local/share/tor-browser-extensions/langpack-he@firefox.mozilla.org.xpi 26995 -usr/local/share/tor-browser-extensions/langpack-ga-IE@firefox.mozilla.org.xpi 26994 -usr/local/share/tor-browser-extensions/langpack-fr@firefox.mozilla.org.xpi 26993 -usr/local/share/tor-browser-extensions/langpack-fa@firefox.mozilla.org.xpi 26992 -usr/local/share/tor-browser-extensions/langpack-es-ES@firefox.mozilla.org.xpi 26991 -usr/local/share/tor-browser-extensions/langpack-es-AR@firefox.mozilla.org.xpi 26990 -usr/local/share/tor-browser-extensions/langpack-el@firefox.mozilla.org.xpi 26989 -usr/local/share/tor-browser-extensions/langpack-de@firefox.mozilla.org.xpi 26988 -usr/local/share/tor-browser-extensions/langpack-da@firefox.mozilla.org.xpi 26986 -usr/local/share/tor-browser-extensions/langpack-cs@firefox.mozilla.org.xpi 26985 -usr/local/share/tor-browser-extensions/langpack-ca@firefox.mozilla.org.xpi 26984 -usr/local/share/tor-browser-extensions/langpack-ar@firefox.mozilla.org.xpi 26983 -usr/local/share/tor-browser-extensions/https-everywhere-eff@eff.org.xpi 26982 -usr/local/lib/tor-browser/browser/features/onboarding@mozilla.org.xpi 26981 -usr/local/lib/tor-browser/TorBrowser/Data/fontconfig/fonts.conf 26980 -usr/local/lib/tor-browser/fonts/Arimo-Bold.ttf 26979 -usr/local/lib/tor-browser/fonts/Arimo-BoldItalic.ttf 26978 -usr/local/lib/tor-browser/fonts/Arimo-Italic.ttf 26977 -usr/local/lib/tor-browser/fonts/Arimo-Regular.ttf 26976 -usr/local/lib/tor-browser/fonts/Cousine-Regular.ttf 26975 -usr/local/lib/tor-browser/fonts/NotoEmoji-Regular.ttf 26974 -usr/local/lib/tor-browser/fonts/NotoNaskhArabic-Regular.ttf 26973 -usr/local/lib/tor-browser/fonts/NotoSansArmenian-Regular.ttf 26972 -usr/local/lib/tor-browser/fonts/NotoSansBengali-Regular.ttf 26971 -usr/local/lib/tor-browser/fonts/NotoSansBuginese-Regular.ttf 26970 -usr/local/lib/tor-browser/fonts/NotoSansCanadianAboriginal-Regular.ttf 26969 -usr/local/lib/tor-browser/fonts/NotoSansCherokee-Regular.ttf 26968 -usr/local/lib/tor-browser/fonts/NotoSansDevanagari-Regular.ttf 26967 -usr/local/lib/tor-browser/fonts/NotoSansEthiopic-Regular.ttf 26966 -usr/local/lib/tor-browser/fonts/NotoSansGeorgian-Regular.ttf 26965 -usr/local/lib/tor-browser/fonts/NotoSansGujarati-Regular.ttf 26964 -usr/local/lib/tor-browser/fonts/NotoSansGurmukhi-Regular.ttf 26963 -usr/local/lib/tor-browser/fonts/NotoSansHebrew-Regular.ttf 26962 -usr/local/lib/tor-browser/fonts/NotoSansJP-Regular.otf 26961 -usr/local/lib/tor-browser/fonts/NotoSansKR-Regular.otf 26960 -usr/local/lib/tor-browser/fonts/NotoSansKannada-Regular.ttf 26959 -usr/local/lib/tor-browser/fonts/NotoSansKhmer-Regular.ttf 26958 -usr/local/lib/tor-browser/fonts/NotoSansLao-Regular.ttf 26957 -usr/local/lib/tor-browser/fonts/NotoSansMalayalam-Regular.ttf 26956 -usr/local/lib/tor-browser/fonts/NotoSansMongolian-Regular.ttf 26955 -usr/local/lib/tor-browser/fonts/NotoSansMyanmar-Regular.ttf 26954 -usr/local/lib/tor-browser/fonts/NotoSansOriya-Regular.ttf 26953 -usr/local/lib/tor-browser/fonts/NotoSansSC-Regular.otf 26952 -usr/local/lib/tor-browser/fonts/NotoSansSinhala-Regular.ttf 26951 -usr/local/lib/tor-browser/fonts/NotoSansTC-Regular.otf 26950 -usr/local/lib/tor-browser/fonts/NotoSansTamil-Regular.ttf 26949 -usr/local/lib/tor-browser/fonts/NotoSansTelugu-Regular.ttf 26948 -usr/local/lib/tor-browser/fonts/NotoSansThaana-Regular.ttf 26947 -usr/local/lib/tor-browser/fonts/NotoSansThai-Regular.ttf 26946 -usr/local/lib/tor-browser/fonts/NotoSansTibetan-Regular.ttf 26945 -usr/local/lib/tor-browser/fonts/NotoSansYi-Regular.ttf 26944 -usr/local/lib/tor-browser/fonts/NotoSerifArmenian-Regular.ttf 26943 -usr/local/lib/tor-browser/fonts/NotoSerifKhmer-Regular.ttf 26942 -usr/local/lib/tor-browser/fonts/NotoSerifLao-Regular.ttf 26941 -usr/local/lib/tor-browser/fonts/NotoSerifThai-Regular.ttf 26940 -usr/local/lib/tor-browser/fonts/STIXMath-Regular.otf 26939 -usr/local/lib/tor-browser/fonts/Tinos-Bold.ttf 26938 -usr/local/lib/tor-browser/fonts/Tinos-BoldItalic.ttf 26937 -usr/local/lib/tor-browser/fonts/Tinos-Italic.ttf 26936 -usr/local/lib/tor-browser/fonts/Tinos-Regular.ttf 26935 -usr/local/lib/tor-browser/fonts/TwemojiMozilla.ttf 26934 -usr/lib/locale/C.UTF-8/LC_IDENTIFICATION 26933 -usr/lib/locale/C.UTF-8/LC_MEASUREMENT 26932 -usr/lib/locale/C.UTF-8/LC_TELEPHONE 26931 -usr/lib/locale/C.UTF-8/LC_ADDRESS 26930 -usr/lib/locale/C.UTF-8/LC_NAME 26929 -usr/lib/locale/C.UTF-8/LC_PAPER 26928 -usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES 26927 -usr/lib/locale/C.UTF-8/LC_MONETARY 26926 -usr/lib/locale/C.UTF-8/LC_COLLATE 26925 -usr/lib/locale/C.UTF-8/LC_TIME 26924 -usr/lib/locale/C.UTF-8/LC_NUMERIC 26923 -etc/mime.types 26922 -usr/share/mime/application/pdf.xml 26921 -usr/local/lib/tor-browser/browser/chrome/icons/default/default16.png 26920 -usr/local/lib/tor-browser/browser/chrome/icons/default/default32.png 26919 -usr/local/lib/tor-browser/browser/chrome/icons/default/default48.png 26918 -usr/local/lib/tor-browser/browser/chrome/icons/default/default64.png 26917 -usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules/im-ibus.so 26916 -etc/onion-grater.d/onioncircuits.yml 26915 -etc/onion-grater.d/onionshare.yml 26914 -etc/onion-grater.d/tor-browser.yml 26913 -etc/onion-grater.d/tor-launcher.yml 26912 -usr/lib/python3/dist-packages/stem/response/add_onion.py 26911 -usr/lib/python3/dist-packages/stem/response/authchallenge.py 26910 -usr/lib/python3/dist-packages/stem/response/getinfo.py 26909 -usr/lib/python3/dist-packages/stem/response/getconf.py 26908 -usr/lib/python3/dist-packages/stem/response/mapaddress.py 26907 -usr/lib/python3/dist-packages/stem/response/protocolinfo.py 26906 -usr/lib/x86_64-linux-gnu/libXss.so.1.0.0 26905 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/img/icon_16.png 26904 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/background.html 26903 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/console.js 26902 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/lib/lz4/lz4-block-codec-any.js 26901 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/lib/punycode.js 26900 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/lib/publicsuffixlist/publicsuffixlist.js 26899 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/vapi.js 26898 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/vapi-common.js 26897 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/vapi-background.js 26896 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/vapi-webrequest.js 26895 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/background.js 26894 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/traffic.js 26893 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/hntrie.js 26892 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/strie.js 26891 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/utils.js 26890 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/uritools.js 26889 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/lz4.js 26888 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/cachestorage.js 26887 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/assets.js 26886 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/filtering-context.js 26885 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/redirect-engine.js 26884 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/dynamic-net-filtering.js 26883 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/static-net-filtering.js 26882 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/url-net-filtering.js 26881 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/static-ext-filtering.js 26880 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/cosmetic-filtering.js 26879 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/scriptlet-filtering.js 26878 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/html-filtering.js 26877 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/hnswitches.js 26876 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/ublock.js 26875 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/messaging.js 26874 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/storage.js 26873 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/logger.js 26872 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/pagestore.js 26871 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/tab.js 26870 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/text-encode.js 26869 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/contextmenu.js 26868 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/reverselookup.js 26867 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/start.js 26866 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/commands.js 26865 -usr/share/icons/Adwaita/16x16/actions/window-close-symbolic.symbolic.png 26864 -usr/share/icons/Adwaita/16x16/actions/window-maximize-symbolic.symbolic.png 26863 -usr/share/icons/Adwaita/16x16/actions/window-minimize-symbolic.symbolic.png 26862 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/vapi-client.js 26861 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/contentscript.js 26860 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/scriptlets/subscriber.js 26859 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/assets.json 26858 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat 26857 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/resources/scriptlets.js 26856 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/1x1.gif 26855 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/2x2.png 26854 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/3x2.png 26853 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/32x32.png 26852 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/empty 26851 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noeval.js 26850 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noeval-silent.js 26849 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/nobab.js 26848 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/nofab.js 26847 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noop-0.1s.mp3 26846 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noop-1s.mp4 26845 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noop.js 26844 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/noop.txt 26843 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/popads.js 26842 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/popads-dummy.js 26841 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/web_accessible_resources/window.open-defuser.js 26840 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/thirdparties/www.malwaredomainlist.com/hostslist/hosts.txt 26839 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/thirdparties/easylist-downloads.adblockplus.org/easyprivacy.txt 26838 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/thirdparties/easylist-downloads.adblockplus.org/easylist.txt 26837 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/ublock/unbreak.txt 26836 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/ublock/resource-abuse.txt 26835 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/ublock/privacy.txt 26834 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/ublock/badware.txt 26833 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/assets/ublock/filters.txt 26832 -usr/bin/tails-upgrade-frontend 26831 -usr/share/perl/5.28.1/FindBin.pm 26830 -usr/lib/x86_64-linux-gnu/perl/5.28.1/lib.pm 26829 -usr/share/perl5/Tails/IUK/Frontend.pm 26828 -usr/share/perl5/MooseX/Types/Path/Class.pm 26827 -usr/share/perl5/Path/Class.pm 26826 -usr/share/perl5/Path/Class/File.pm 26825 -usr/share/perl5/Path/Class/Dir.pm 26824 -usr/share/perl5/Path/Class/Entity.pm 26823 -usr/share/perl/5.28.1/File/stat.pm 26822 -usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Dir.pm 26821 -usr/share/perl5/MooseX/Getopt.pm 26820 -usr/share/perl5/MooseX/Getopt/GLD.pm 26819 -usr/share/perl5/MooseX/Role/Parameterized.pm 26818 -usr/share/perl5/MooseX/Role/Parameterized/Meta/Trait/Parameterizable.pm 26817 -usr/share/perl5/MooseX/Role/Parameterized/Meta/Role/Parameterized.pm 26816 -usr/share/perl5/MooseX/Role/Parameterized/Meta/Trait/Parameterized.pm 26815 -usr/share/perl5/MooseX/Role/Parameterized/Parameters.pm 26814 -usr/share/perl5/MooseX/Getopt/Basic.pm 26813 -usr/share/perl5/MooseX/Getopt/OptionTypeMap.pm 26812 -usr/share/perl5/MooseX/Getopt/Meta/Attribute.pm 26811 -usr/share/perl5/MooseX/Getopt/Meta/Attribute/Trait.pm 26810 -usr/share/perl5/MooseX/Getopt/Meta/Attribute/NoGetopt.pm 26809 -usr/share/perl5/MooseX/Getopt/Meta/Attribute/Trait/NoGetopt.pm 26808 -usr/share/perl5/MooseX/Getopt/ProcessedArgv.pm 26807 -usr/share/perl/5.28.1/Env.pm 26806 -usr/share/perl/5.28.1/Tie/Array.pm 26805 -usr/share/perl5/IPC/Run.pm 26804 -usr/share/perl5/IPC/Run/Debug.pm 26803 -usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/img/icon_16-off.png 26802 -usr/share/perl5/IPC/Run/IO.pm 26801 -usr/share/perl5/IPC/Run/Timer.pm 26800 -usr/share/perl5/Number/Format.pm 26799 -usr/share/perl5/String/Errf.pm 26798 -usr/share/perl5/String/Formatter.pm 26797 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Time/Piece.pm 26796 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Time/Seconds.pm 26795 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Time/Piece/Piece.so 26794 -usr/share/perl5/Tails/RunningSystem.pm 26793 -usr/lib/x86_64-linux-gnu/perl5/5.28/Function/Parameters.pm 26792 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Function/Parameters/Parameters.so 26791 -usr/share/perl5/Path/Tiny.pm 26790 -usr/share/perl5/Sys/Statistics/Linux/MemStats.pm 26789 -usr/share/perl5/Tails/Constants.pm 26788 -usr/share/perl5/Moo/HandleMoose.pm 26787 -usr/share/perl5/Moo/HandleMoose/FakeMetaClass.pm 26786 -usr/share/perl5/Tails/UDisks.pm 26785 -usr/share/perl5/Syntax/Keyword/Junction.pm 26784 -usr/share/perl5/Syntax/Keyword/Junction/All.pm 26783 -usr/share/perl5/Syntax/Keyword/Junction/Base.pm 26782 -usr/share/perl5/Syntax/Keyword/Junction/Any.pm 26781 -usr/share/perl5/Syntax/Keyword/Junction/None.pm 26780 -usr/share/perl5/Syntax/Keyword/Junction/One.pm 26779 -usr/share/perl5/Types/Path/Tiny.pm 26778 -usr/share/perl5/Type/Tiny/Intersection.pm 26777 -usr/lib/x86_64-linux-gnu/perl5/5.28/Unix/Mknod.pm 26776 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Unix/Mknod/Mknod.so 26775 -usr/share/perl5/Tails/Role/HasDBus/System.pm 26774 -usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/GLib.pm 26773 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/DBus/GLib/GLib.so 26772 -usr/share/perl5/Tails.pm 26771 -usr/share/perl5/Tails/Role/HasEncoding.pm 26770 -usr/share/perl5/Tails/Role/HasCodeset.pm 26769 -usr/share/perl5/Type/Tiny/Union.pm 26768 -usr/share/perl5/Tails/Role/DisplayError/Gtk3.pm 26767 -usr/share/perl5/Tails/IUK/UpgradeDescriptionFile.pm 26766 -usr/share/perl5/Dpkg/Version.pm 26765 -usr/share/perl5/Dpkg/Gettext.pm 26764 -usr/share/perl/5.28.1/feature.pm 26763 -usr/share/perl5/Dpkg/ErrorHandling.pm 26762 -usr/share/perl5/Dpkg.pm 26761 -usr/share/perl5/YAML/Any.pm 26760 -usr/lib/x86_64-linux-gnu/perl5/5.28/YAML/XS.pm 26759 -usr/lib/x86_64-linux-gnu/perl5/5.28/YAML/XS/LibYAML.pm 26758 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/YAML/XS/LibYAML/LibYAML.so 26757 -usr/lib/x86_64-linux-gnu/perl5/5.28/Moose/Meta/Method/Accessor/Native/Array/clear.pm 26756 -usr/share/perl5/Tails/IUK/Utils.pm 26755 -usr/share/perl/5.28.1/Archive/Tar.pm 26754 -usr/share/perl/5.28.1/IO/Zlib.pm 26753 -usr/share/perl/5.28.1/Compress/Zlib.pm 26752 -usr/share/perl/5.28.1/IO/Compress/Base/Common.pm 26751 -usr/share/perl/5.28.1/File/GlobMapper.pm 26750 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Compress/Raw/Zlib.pm 26749 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Compress/Raw/Zlib/Zlib.so 26748 -usr/share/perl/5.28.1/IO/Compress/Gzip.pm 26747 -usr/share/perl/5.28.1/IO/Compress/RawDeflate.pm 26746 -usr/share/perl/5.28.1/IO/Compress/Base.pm 26745 -usr/share/perl/5.28.1/IO/Compress/Adapter/Deflate.pm 26744 -usr/share/perl/5.28.1/IO/Compress/Gzip/Constants.pm 26743 -usr/share/perl/5.28.1/IO/Compress/Zlib/Extra.pm 26742 -usr/share/perl/5.28.1/IO/Uncompress/Gunzip.pm 26741 -usr/share/perl/5.28.1/IO/Uncompress/RawInflate.pm 26740 -usr/share/perl/5.28.1/IO/Uncompress/Base.pm 26739 -usr/share/perl/5.28.1/IO/Uncompress/Adapter/Inflate.pm 26738 -usr/share/perl/5.28.1/Tie/Handle.pm 26737 -usr/share/perl/5.28.1/Tie/StdHandle.pm 26736 -usr/share/perl/5.28.1/Archive/Tar/File.pm 26735 -usr/share/perl/5.28.1/Archive/Tar/Constant.pm 26734 -usr/share/perl/5.28.1/IO/Uncompress/Bunzip2.pm 26733 -usr/share/perl/5.28.1/IO/Uncompress/Adapter/Bunzip2.pm 26732 -usr/lib/x86_64-linux-gnu/perl/5.28.1/Compress/Raw/Bzip2.pm 26731 -usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Compress/Raw/Bzip2/Bzip2.so 26730 -usr/share/perl/5.28.1/IO/Compress/Bzip2.pm 26729 -usr/share/perl/5.28.1/IO/Compress/Adapter/Bzip2.pm 26728 -usr/lib/x86_64-linux-gnu/perl5/5.28/Filesys/Df.pm 26727 -usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Filesys/Df/Df.so 26726 -usr/share/perl5/Method/Signatures/Simple.pm 26725 -usr/lib/x86_64-linux-gnu/perl5/5.28/Devel/Declare/MethodInstaller/Simple.pm 26724 -usr/share/perl5/Tails/MirrorPool.pm 26723 -usr/share/perl5/MooseX/Getopt/Dashes.pm 26722 -usr/bin/tails-iuk-get-upgrade-description-file 26721 -usr/share/perl5/Tails/IUK/UpgradeDescriptionFile/Download.pm 26720 -usr/local/lib/tor-browser/libmozavutil.so 26718 -usr/local/lib/tor-browser/libmozavcodec.so 26717 +usr/lib/x86_64-linux-gnu/girepository-1.0/GMenu-3.0.typelib 28202 +usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/convenience.js 28201 +usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/stylesheet.css 28200 +usr/lib/x86_64-linux-gnu/libgnome-menu-3.so.0.0.1 28191 +usr/bin/xdg-user-dirs-update 28188 +etc/xdg/user-dirs.conf 28187 +etc/xdg/user-dirs.defaults 28186 +etc/xdg/menus/gnome-applications.menu 28179 +etc/xdg/menus/applications-merged/Tails.menu 28178 +usr/bin/start-pulseaudio-x11 28175 +usr/bin/pactl 28172 +usr/lib/pulse-12.2/modules/module-x11-publish.so 28165 +usr/sbin/cupsd 28161 +usr/lib/x86_64-linux-gnu/libpaper.so.1.1.2 28160 +usr/share/desktop-directories/ActionGames.directory 28159 +usr/share/desktop-directories/AdventureGames.directory 28158 +usr/share/desktop-directories/ArcadeGames.directory 28157 +usr/share/desktop-directories/AudioVideo.directory 28156 +usr/share/desktop-directories/BlocksGames.directory 28155 +usr/share/desktop-directories/BoardGames.directory 28154 +usr/share/desktop-directories/CardGames.directory 28153 +usr/share/desktop-directories/Debian.directory 28152 +usr/share/desktop-directories/Development.directory 28151 +usr/share/desktop-directories/Education.directory 28150 +usr/share/desktop-directories/Game.directory 28149 +usr/share/desktop-directories/GnomeScience.directory 28148 +usr/share/desktop-directories/Graphics.directory 28147 +usr/share/desktop-directories/KidsGames.directory 28146 +usr/share/desktop-directories/LogicGames.directory 28145 +usr/share/desktop-directories/Network.directory 28144 +usr/share/desktop-directories/Office.directory 28143 +usr/share/desktop-directories/RolePlayingGames.directory 28142 +usr/share/desktop-directories/Settings-System.directory 28141 +usr/share/desktop-directories/Settings.directory 28140 +usr/share/desktop-directories/SimulationGames.directory 28139 +usr/share/desktop-directories/SportsGames.directory 28138 +usr/share/desktop-directories/StrategyGames.directory 28137 +usr/share/desktop-directories/System-Tools.directory 28136 +usr/share/desktop-directories/Tails.directory 28135 +usr/share/desktop-directories/Utility-Accessibility.directory 28134 +usr/share/desktop-directories/Utility.directory 28133 +usr/share/desktop-directories/X-GNOME-Menu-Applications.directory 28132 +usr/share/desktop-directories/X-GNOME-Other.directory 28131 +usr/share/desktop-directories/X-GNOME-SystemSettings.directory 28130 +usr/share/desktop-directories/X-GNOME-Utilities.directory 28129 +usr/share/desktop-directories/X-GNOME-WebApplications.directory 28128 +etc/cups/cups-files.conf 28127 +etc/cups/cupsd.conf 28126 +etc/papersize 28125 +usr/share/cups/mime/braille.types 28124 +usr/share/cups/mime/command.types 28123 +usr/share/cups/mime/cupsfilters.types 28122 +usr/share/cups/mime/mime.types 28121 +usr/share/cups/mime/pstotiff.types 28120 +etc/cups/raw.types 28119 +usr/share/cups/mime/braille.convs 28118 +usr/share/cups/mime/cupsfilters-ghostscript.convs 28117 +usr/share/cups/mime/cupsfilters-mupdf.convs 28116 +usr/share/cups/mime/cupsfilters-poppler.convs 28115 +usr/share/cups/mime/cupsfilters.convs 28114 +usr/share/cups/mime/mime.convs 28113 +usr/share/cups/mime/pstotiff.convs 28112 +etc/cups/raw.convs 28111 +usr/share/cups/banners/classified 28110 +usr/share/cups/banners/confidential 28109 +usr/share/cups/banners/form 28108 +usr/share/cups/banners/secret 28107 +usr/share/cups/banners/standard 28106 +usr/share/cups/banners/topsecret 28105 +usr/share/cups/banners/unclassified 28104 +usr/lib/gnome-settings-daemon/gsd-printer 28100 +usr/lib/pulse-12.2/modules/module-x11-cork-request.so 28099 +usr/lib/pulse-12.2/modules/module-x11-xsmp.so 28098 +usr/share/gnome-shell/extensions/auto-move-windows@gnome-shell-extensions.gcampax.github.com/metadata.json 28097 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/metadata.json 28094 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/extension.js 28093 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/prefs.js 28092 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopManager.js 28091 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopGrid.js 28090 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/createFolderDialog.js 28089 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopIconsUtil.js 28088 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/fileItem.js 28087 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/dbusUtils.js 28086 +usr/local/lib/end-profile 28083 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/stylesheet.css 28082 +usr/lib/gnome-disk-utility/gsd-disk-utility-notify 28079 +usr/share/gnome-shell/extensions/drive-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 28078 +usr/bin/gdbus 28073 +usr/bin/xdg-user-dirs-gtk-update 28070 +usr/lib/gnome-shell/gnome-shell-overrides-migration.sh 28069 +usr/bin/torsocks 28066 +usr/lib/systemd/user/tracker-store.service 28063 +usr/lib/evolution/evolution-data-server/evolution-alarm-notify 28062 +usr/lib/x86_64-linux-gnu/libedataserverui-1.2.so.2.0.0 28061 +usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0 28060 +usr/lib/x86_64-linux-gnu/libical.so.3.0.4 28059 +usr/lib/tracker/tracker-store 28055 +usr/lib/x86_64-linux-gnu/tracker-2.0/libtracker-data.so.0.0.0 28054 +usr/local/lib/start-systemd-desktop-target 28053 +usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com/metadata.json 28052 +usr/lib/x86_64-linux-gnu/tracker-2.0/libtracker-common.so.0.0.0 28051 +usr/lib/x86_64-linux-gnu/libtracker-sparql-2.0.so.0.108.0 28050 +usr/lib/x86_64-linux-gnu/libstemmer.so.0d.0.0 28049 +usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-extensions.gcampax.github.com/metadata.json 28048 +usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 28047 +usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/extension.js 28046 +usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/convenience.js 28045 +usr/bin/xargs 28044 +usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.23.0.0 28043 +usr/share/tracker/domain-ontologies/default.rule 28042 +usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/placeDisplay.js 28041 +sbin/getcap 28040 +usr/share/tracker/ontologies/nepomuk/30-nie.ontology 28039 +usr/share/tracker/ontologies/nepomuk/32-nco.ontology 28038 +usr/share/tracker/ontologies/nepomuk/33-nfo.ontology 28037 +usr/share/tracker/ontologies/nepomuk/34-nmo.ontology 28036 +usr/share/tracker/ontologies/nepomuk/35-ncal.ontology 28035 +usr/share/tracker/ontologies/nepomuk/36-scal.ontology 28034 +usr/share/tracker/ontologies/nepomuk/37-nid3.ontology 28033 +usr/share/tracker/ontologies/nepomuk/38-nmm.ontology 28032 +usr/bin/openpgp-applet 28031 +usr/lib/x86_64-linux-gnu/torsocks/libtorsocks.so.0.0.0 28030 +etc/tor/torsocks.conf 28029 +usr/share/tracker/ontologies/nepomuk/39-mto.ontology 28028 +usr/share/tracker/ontologies/nepomuk/40-mlo.ontology 28027 +usr/share/tracker/ontologies/nepomuk/41-mfo.ontology 28026 +usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/stylesheet.css 28025 +usr/share/tracker/ontologies/nepomuk/89-mtp.ontology 28024 +usr/share/tracker/ontologies/nepomuk/90-tracker.ontology 28023 +usr/share/tracker/ontologies/nepomuk/91-maemo.ontology 28022 +usr/share/tracker/ontologies/nepomuk/92-slo.ontology 28021 +usr/share/tracker/ontologies/nepomuk/93-libosinfo.ontology 28020 +usr/lib/x86_64-linux-gnu/libgcr-ui-3.so.1.0.0 28019 +usr/lib/x86_64-linux-gnu/libwebkit2gtk-4.0.so.37.39.3 28018 +usr/lib/systemd/user/desktop.target 28017 +usr/lib/systemd/user/tails-wait-until-tor-has-bootstrapped.service 28016 +usr/lib/systemd/user/tails-virt-notify-user.service 28015 +usr/lib/systemd/user/tails-upgrade-frontend.service 28014 +usr/lib/systemd/user/tails-security-check.service 28013 +usr/lib/systemd/user/tails-kill-gdm-session.service 28012 +usr/lib/x86_64-linux-gnu/libcamel-1.2.so.62.0.0 28011 +usr/lib/systemd/user/tails-additional-software-install.service 28010 +usr/share/gnome-shell/extensions/screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com/metadata.json 28009 +usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/metadata.json 28008 +usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js 28007 +usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/lib.js 28005 +usr/share/gnome-shell/extensions/torstatus@tails.boum.org/metadata.json 28004 +usr/share/perl5/Gtk3.pm 28003 +usr/lib/x86_64-linux-gnu/perl5/5.28/Cairo/GObject.pm 28002 +usr/lib/x86_64-linux-gnu/perl5/5.28/Cairo.pm 28001 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Cairo/Cairo.so 28000 +usr/local/lib/tails-virt-notify-user 27997 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Cairo/GObject/GObject.so 27995 +usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js 27994 +usr/local/lib/tails-kill-gdm-session 27993 +usr/share/perl5/Desktop/Notify.pm 27992 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus.pm 27991 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/DBus/DBus.so 27990 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Bus.pm 27989 +bin/cp 27988 +usr/lib/gdm3/gdm-session-worker-only-reauth 27987 +lib/systemd/system/tails-additional-software-install.service 27986 +usr/lib/x86_64-linux-gnu/libgdata.so.22.3.0 27985 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Connection.pm 27984 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message/MethodCall.pm 27983 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message.pm 27982 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Iterator.pm 27981 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message/Signal.pm 27980 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message/MethodReturn.pm 27979 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Message/Error.pm 27978 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/PendingCall.pm 27977 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Service.pm 27976 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/RemoteService.pm 27975 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/RemoteObject.pm 27974 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Introspector.pm 27973 +usr/share/perl5/XML/Twig.pm 27970 +usr/share/perl/5.28.1/UNIVERSAL.pm 27968 +usr/share/perl/5.28.1/utf8.pm 27967 +usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/metadata.json 27966 +usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/metadata.json 27965 +usr/lib/x86_64-linux-gnu/libxslt.so.1.1.32 27964 +usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/extension.js 27963 +usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/convenience.js 27959 +usr/lib/x86_64-linux-gnu/libjavascriptcoregtk-4.0.so.18.14.7 27958 +usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/stylesheet.css 27957 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/Parser.pm 27956 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/Parser/Expat.pm 27955 +usr/sbin/ferm 27954 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/XML/Parser/Expat/Expat.so 27950 +usr/share/gnome-shell/extensions/windowsNavigator@gnome-shell-extensions.gcampax.github.com/metadata.json 27949 +usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Glob.pm 27948 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/File/Glob/Glob.so 27947 +usr/lib/x86_64-linux-gnu/libwoff2dec.so.1.0.2 27946 +usr/lib/x86_64-linux-gnu/girepository-1.0/GdkPixdata-2.0.typelib 27945 +usr/share/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gcampax.github.com/metadata.json 27944 +etc/ferm/ferm.conf 27943 +bin/chvt 27942 +usr/sbin/xtables-nft-multi 27941 +lib/x86_64-linux-gnu/libmnl.so.0.2.0 27940 +usr/lib/x86_64-linux-gnu/libnftnl.so.11.0.0 27939 +usr/lib/x86_64-linux-gnu/libnetfilter_conntrack.so.3.7.0 27938 +usr/lib/x86_64-linux-gnu/libnfnetlink.so.0.2.0 27937 +usr/lib/x86_64-linux-gnu/libxtables.so.12.2.0 27936 +usr/lib/x86_64-linux-gnu/xtables/libxt_conntrack.so 27935 +usr/lib/x86_64-linux-gnu/libharfbuzz-icu.so.0.20301.0 27934 +usr/lib/x86_64-linux-gnu/libgstapp-1.0.so.0.1404.0 27933 +usr/lib/x86_64-linux-gnu/libgstpbutils-1.0.so.0.1404.0 27932 +usr/lib/x86_64-linux-gnu/libgstaudio-1.0.so.0.1404.0 27931 +usr/lib/x86_64-linux-gnu/xtables/libxt_standard.so 27930 +etc/protocols 27929 +usr/lib/x86_64-linux-gnu/xtables/libxt_tcp.so 27928 +usr/lib/x86_64-linux-gnu/xtables/libxt_owner.so 27927 +usr/lib/x86_64-linux-gnu/xtables/libxt_multiport.so 27926 +usr/lib/x86_64-linux-gnu/xtables/libxt_udp.so 27925 +usr/lib/x86_64-linux-gnu/xtables/libipt_LOG.so 27924 +usr/lib/x86_64-linux-gnu/xtables/libipt_REJECT.so 27923 +usr/lib/x86_64-linux-gnu/xtables/libipt_REDIRECT.so 27922 +usr/lib/x86_64-linux-gnu/xtables/libip6t_LOG.so 27921 +usr/lib/x86_64-linux-gnu/xtables/libip6t_REJECT.so 27920 +usr/lib/x86_64-linux-gnu/libgsttag-1.0.so.0.1404.0 27919 +usr/lib/x86_64-linux-gnu/libgstvideo-1.0.so.0.1404.0 27918 +usr/lib/x86_64-linux-gnu/xtables/libxt_state.so 27917 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/ASyncReply.pm 27916 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Annotation.pm 27915 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Test/MockConnection.pm 27914 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Error.pm 27913 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Test/MockMessage.pm 27912 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Test/MockIterator.pm 27911 +usr/share/perl/5.28.1/Math/BigInt/Lib.pm 27910 +lib/systemd/system/tor@default.service 27909 +lib/systemd/system/tor@default.service.d/fix-obfs4proxy.conf 27908 +lib/systemd/system/tor@default.service.d/writable-etc-tor.conf 27907 +lib/systemd/system/tails-wait-until-tor-has-bootstrapped.service 27906 +lib/systemd/system/tails-tor-has-bootstrapped.target 27905 +lib/systemd/system/tails-tor-has-bootstrapped-flag-file.service 27904 +usr/share/perl/5.28.1/integer.pm 27903 +usr/share/perl/5.28.1/Math/BigInt/Calc.pm 27902 +lib/systemd/system/tor.service 27901 +lib/systemd/system/nss-lookup.target 27900 +usr/share/perl5/GnuPG/Options.pm 27899 +usr/share/perl5/MooX/HandlesVia.pm 27898 +usr/share/perl5/Moo/Role.pm 27897 +usr/share/perl5/Role/Tiny.pm 27896 +usr/share/perl5/GnuPG/HashInit.pm 27895 +usr/share/perl5/Type/Utils.pm 27894 +usr/share/perl5/Type/Library.pm 27893 +usr/share/perl5/Eval/TypeTiny.pm 27892 +usr/share/perl5/Exporter/Tiny.pm 27891 +usr/share/perl5/Type/Tiny.pm 27890 +usr/share/perl5/Types/TypeTiny.pm 27889 +usr/lib/x86_64-linux-gnu/perl5/5.28/Type/Tiny/XS.pm 27888 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Type/Tiny/XS/XS.so 27887 +usr/share/perl5/Type/Registry.pm 27886 +usr/share/perl5/Type/Parser.pm 27885 +usr/share/tracker/stop-words/stopwords.en 27884 +usr/share/perl5/Types/Standard.pm 27883 +usr/share/perl5/Type/Coercion.pm 27882 +usr/share/icons/hicolor/scalable/status/tor-disconnected-symbolic.svg 27881 +usr/share/perl5/Data/Perl/Collection/Array/MooseLike.pm 27878 +usr/share/perl5/strictures.pm 27877 +usr/share/perl5/Role/Tiny/With.pm 27876 +usr/share/perl5/Class/Method/Modifiers.pm 27875 +usr/share/perl5/Data/Perl/Role/Collection/Array.pm 27874 +usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf 27873 +usr/lib/x86_64-linux-gnu/perl5/5.28/List/MoreUtils.pm 27872 +usr/lib/x86_64-linux-gnu/perl5/5.28/List/MoreUtils/PP.pm 27871 +usr/lib/x86_64-linux-gnu/perl5/5.28/List/MoreUtils/XS.pm 27870 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/List/MoreUtils/MoreUtils.so 27869 +usr/local/sbin/restart-tor 27868 +usr/share/perl5/GnuPG/Handles.pm 27867 +usr/share/icons/Adwaita/16x16/mimetypes/inode-directory-symbolic.symbolic.png 27866 +usr/share/icons/Adwaita/16x16/places/user-home-symbolic.symbolic.png 27865 +usr/share/icons/Adwaita/16x16/places/user-desktop-symbolic.symbolic.png 27864 +usr/share/icons/Adwaita/16x16/places/folder-pictures-symbolic.symbolic.png 27863 +usr/share/icons/Adwaita/16x16/places/folder-documents-symbolic.symbolic.png 27862 +usr/share/icons/Adwaita/16x16/places/folder-download-symbolic.symbolic.png 27861 +usr/share/icons/Adwaita/16x16/places/folder-videos-symbolic.symbolic.png 27860 +usr/share/icons/Adwaita/16x16/places/folder-music-symbolic.symbolic.png 27859 +usr/share/perl5/DateTime/Locale/FromData.pm 27858 +usr/share/perl5/DateTime/Locale/Util.pm 27857 +usr/share/zoneinfo/zone.tab 27856 +usr/share/perl5/DateTime/Locale.pm 27855 +usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc 27854 +usr/bin/tor 27853 +usr/share/zoneinfo/EST 27852 +usr/share/zoneinfo/GMT 27851 +usr/share/zoneinfo/MST 27850 +usr/lib/x86_64-linux-gnu/libevent-2.1.so.6.0.2 27849 +usr/share/perl5/DateTime/TimeZone.pm 27848 +usr/share/perl5/DateTime/TimeZone/Catalog.pm 27847 +usr/share/perl5/DateTime/TimeZone/Floating.pm 27846 +usr/share/perl5/Class/Singleton.pm 27845 +usr/share/perl5/DateTime/TimeZone/OffsetOnly.pm 27844 +usr/share/perl5/DateTime/TimeZone/UTC.pm 27843 +usr/share/perl5/DateTime/TimeZone/Local.pm 27842 +usr/share/perl5/DateTime/TimeZone/OlsonDB/Change.pm 27841 +usr/lib/systemd/user/evolution-calendar-factory.service 27840 +usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime.pm 27839 +usr/lib/evolution/evolution-calendar-factory 27837 +usr/lib/x86_64-linux-gnu/libedata-cal-1.2.so.29.0.0 27836 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/DateTime/DateTime.so 27835 +usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime/Infinite.pm 27834 +usr/share/X11/xkb/symbols/kr 27833 +usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0 27832 +usr/lib/x86_64-linux-gnu/libdb-5.3.so 27831 +usr/lib/x86_64-linux-gnu/liboauth.so.0.8.7 27830 +usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Select.pm 27829 +usr/share/perl5/Locale/TextDomain.pm 27828 +usr/share/perl5/Locale/Messages.pm 27827 +usr/share/perl5/Locale/gettext_pp.pm 27826 +usr/lib/evolution-data-server/calendar-backends/libecalbackendcaldav.so 27825 +usr/lib/evolution-data-server/calendar-backends/libecalbackendcontacts.so 27824 +usr/lib/x86_64-linux-gnu/libebook-1.2.so.19.1.3 27823 +usr/share/perl/5.28.1/locale.pm 27822 +usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0 27821 +usr/share/perl5/Locale/Recode.pm 27820 +usr/share/perl5/Locale/Recode/_Conversions.pm 27819 +usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0 27818 +usr/lib/x86_64-linux-gnu/libphonenumber.so.7.0 27817 +usr/share/perl5/Method/Generate/BuildAll.pm 27816 +usr/share/tor/tor-service-defaults-torrc 27815 +usr/lib/x86_64-linux-gnu/libprotobuf.so.17.0.0 27814 +usr/bin/tail 27812 +usr/share/tor/geoip 27808 +usr/lib/x86_64-linux-gnu/libboost_date_time.so.1.67.0 27807 +usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.67.0 27806 +usr/share/icons/Adwaita/16x16/status/dialog-information-symbolic.symbolic.png 27805 +usr/share/icons/Adwaita/16x16/actions/window-close-symbolic.symbolic.png 27804 +usr/share/icons/hicolor/16x16/apps/seahorse.png 27803 +usr/share/perl5/auto/share/dist/OpenPGP_Applet/LocaleData/en/LC_MESSAGES/OpenPGP_Applet.mo 27802 +usr/share/perl5/auto/share/dist/OpenPGP_Applet/pixmaps/22x22/OpenPGP_Applet-text.png 27801 +usr/lib/x86_64-linux-gnu/libboost_system.so.1.67.0 27800 +usr/lib/x86_64-linux-gnu/libboost_thread.so.1.67.0 27799 +usr/lib/x86_64-linux-gnu/libboost_chrono.so.1.67.0 27798 +usr/lib/x86_64-linux-gnu/libboost_atomic.so.1.67.0 27797 +usr/bin/xxd 27796 +bin/nc.openbsd 27795 +usr/bin/nautilus 27790 +usr/lib/x86_64-linux-gnu/libnautilus-extension.so.1.5.0 27789 +usr/lib/gvfs/gvfsd-trash 27788 +usr/lib/x86_64-linux-gnu/libgnome-autoar-0.so.0.0.0 27787 +usr/lib/x86_64-linux-gnu/libarchive.so.13.3.3 27786 +usr/share/thumbnailers/evince.thumbnailer 27785 +usr/share/thumbnailers/gdk-pixbuf-thumbnailer.thumbnailer 27784 +usr/share/thumbnailers/librsvg.thumbnailer 27783 +usr/share/thumbnailers/totem.thumbnailer 27782 +usr/share/icons/Adwaita/48x48/places/user-trash.png 27781 +usr/share/icons/Adwaita/24x24/emblems/emblem-symbolic-link.png 27780 +usr/share/pixmaps/whisperback.svg 27779 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libevince-properties-page.so 27778 +usr/lib/x86_64-linux-gnu/libevdocument3.so.4.0.0 27777 +usr/lib/x86_64-linux-gnu/libsynctex.so.2.0.0 27776 +usr/lib/x86_64-linux-gnu/evince/4/backends/comicsdocument.evince-backend 27775 +usr/lib/x86_64-linux-gnu/evince/4/backends/djvudocument.evince-backend 27774 +usr/lib/x86_64-linux-gnu/evince/4/backends/dvidocument.evince-backend 27773 +usr/lib/x86_64-linux-gnu/evince/4/backends/pdfdocument.evince-backend 27772 +usr/lib/x86_64-linux-gnu/evince/4/backends/psdocument.evince-backend 27771 +usr/lib/x86_64-linux-gnu/evince/4/backends/tiffdocument.evince-backend 27770 +usr/lib/x86_64-linux-gnu/evince/4/backends/xpsdocument.evince-backend 27769 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libgtkhash-properties-nautilus.so 27768 +usr/lib/x86_64-linux-gnu/libb2.so.1.0.4 27767 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-fileroller.so 27766 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-image-properties.so 27765 +usr/lib/x86_64-linux-gnu/libgexiv2.so.2.0.0 27764 +usr/lib/x86_64-linux-gnu/libexiv2.so.14.0.0 27763 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-python.so 27762 +usr/lib/x86_64-linux-gnu/libpython2.7.so.1.0 27761 +usr/lib/python2.7/site.py 27760 +usr/lib/python2.7/os.py 27759 +usr/lib/python2.7/posixpath.py 27758 +usr/lib/python2.7/stat.py 27757 +usr/lib/python2.7/genericpath.py 27756 +usr/lib/python2.7/warnings.py 27755 +usr/lib/python2.7/linecache.py 27754 +usr/lib/python2.7/types.py 27753 +usr/lib/python2.7/UserDict.py 27752 +usr/lib/python2.7/_abcoll.py 27751 +usr/lib/python2.7/abc.py 27750 +usr/lib/python2.7/_weakrefset.py 27749 +usr/lib/python2.7/copy_reg.py 27748 +usr/lib/python2.7/traceback.py 27747 +usr/lib/python2.7/sysconfig.py 27746 +usr/lib/python2.7/re.py 27745 +usr/lib/python2.7/sre_compile.py 27744 +usr/lib/python2.7/sre_parse.py 27743 +usr/lib/python2.7/sre_constants.py 27742 +usr/lib/python2.7/_sysconfigdata.py 27741 +usr/lib/python2.7/plat-x86_64-linux-gnu/_sysconfigdata_nd.py 27740 +etc/python2.7/sitecustomize.py 27739 +usr/lib/python2.7/encodings/__init__.py 27738 +usr/lib/python2.7/codecs.py 27737 +usr/lib/python2.7/encodings/aliases.py 27736 +usr/lib/python2.7/encodings/utf_8.py 27735 +usr/lib/python2.7/dist-packages/gi/__init__.py 27734 +usr/lib/python2.7/__future__.py 27733 +usr/lib/python2.7/pkgutil.py 27732 +usr/lib/python2.7/importlib/__init__.py 27731 +usr/lib/python2.7/dist-packages/gi/_gi.x86_64-linux-gnu.so 27730 +usr/lib/python2.7/dist-packages/gi/_error.py 27729 +usr/lib/python2.7/dist-packages/gi/_compat.py 27728 +usr/lib/python2.7/StringIO.py 27727 +usr/lib/python2.7/UserList.py 27726 +usr/lib/python2.7/collections.py 27725 +usr/lib/python2.7/keyword.py 27724 +usr/lib/python2.7/heapq.py 27723 +usr/lib/x86_64-linux-gnu/girepository-1.0/Nautilus-3.0.typelib 27722 +usr/lib/python2.7/dist-packages/gi/repository/__init__.py 27721 +usr/lib/python2.7/dist-packages/gi/importer.py 27720 +usr/lib/python2.7/contextlib.py 27719 +usr/lib/python2.7/functools.py 27718 +usr/lib/python2.7/dist-packages/gi/module.py 27717 +usr/lib/python2.7/string.py 27716 +usr/lib/python2.7/dist-packages/gi/types.py 27715 +usr/lib/python2.7/dist-packages/gi/_constants.py 27714 +usr/lib/python2.7/dist-packages/gi/docstring.py 27713 +usr/lib/python2.7/dist-packages/gi/_propertyhelper.py 27712 +usr/lib/python2.7/dist-packages/gi/_signalhelper.py 27711 +usr/lib/python2.7/dist-packages/gi/overrides/__init__.py 27710 +usr/lib/python2.7/dist-packages/gi/overrides/GLib.py 27709 +usr/lib/python2.7/socket.py 27708 +usr/lib/python2.7/lib-dynload/_ssl.x86_64-linux-gnu.so 27707 +usr/lib/python2.7/dist-packages/gi/_ossighelper.py 27706 +usr/lib/python2.7/threading.py 27705 +usr/lib/python2.7/dist-packages/gi/_option.py 27704 +usr/lib/python2.7/optparse.py 27703 +usr/lib/python2.7/textwrap.py 27702 +usr/lib/python2.7/gettext.py 27701 +usr/lib/python2.7/locale.py 27700 +usr/lib/python2.7/copy.py 27699 +usr/lib/locale/C.UTF-8/LC_CTYPE 27698 +usr/lib/python2.7/weakref.py 27697 +usr/lib/python2.7/struct.py 27696 +usr/lib/python2.7/dist-packages/gi/overrides/GObject.py 27695 +usr/lib/python2.7/dist-packages/gi/overrides/Pango.py 27694 +usr/lib/python2.7/dist-packages/gi/overrides/Gio.py 27693 +usr/lib/python2.7/dist-packages/gi/overrides/GdkPixbuf.py 27692 +usr/lib/python2.7/dist-packages/gi/overrides/Gdk.py 27691 +usr/lib/python2.7/dist-packages/gi/overrides/Gtk.py 27690 +usr/lib/python2.7/dist-packages/gi/_gtktemplate.py 27689 +usr/share/nautilus-python/extensions/mat2.py 27688 +usr/lib/python2.7/Queue.py 27687 +usr/lib/python2.7/urlparse.py 27686 +usr/lib/python2.7/subprocess.py 27685 +usr/lib/python2.7/pickle.py 27684 +usr/lib/python2.7/mimetypes.py 27683 +usr/lib/python2.7/urllib.py 27682 +usr/lib/python2.7/base64.py 27681 +usr/lib/python2.7/ssl.py 27680 +usr/share/nautilus-python/extensions/onionshare-nautilus.py 27679 +usr/lib/python2.7/json/__init__.py 27678 +usr/lib/python2.7/json/decoder.py 27677 +usr/lib/python2.7/json/scanner.py 27676 +usr/lib/python2.7/lib-dynload/_json.x86_64-linux-gnu.so 27675 +usr/lib/python2.7/json/encoder.py 27674 +usr/share/onionshare/locale/cs.json 27673 +usr/share/onionshare/locale/da.json 27672 +usr/share/onionshare/locale/de.json 27671 +usr/share/onionshare/locale/en.json 27670 +usr/share/onionshare/locale/eo.json 27669 +usr/share/onionshare/locale/es.json 27668 +usr/share/onionshare/locale/fi.json 27667 +usr/share/onionshare/locale/fr.json 27666 +usr/share/onionshare/locale/it.json 27665 +usr/share/onionshare/locale/nl.json 27664 +usr/share/onionshare/locale/no.json 27663 +usr/share/onionshare/locale/pt.json 27662 +usr/share/onionshare/locale/ru.json 27661 +usr/share/onionshare/locale/tr.json 27660 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-seahorse.so 27659 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-sendto.so 27658 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-wipe.so 27657 +usr/lib/x86_64-linux-gnu/libgsecuredelete.so.0.1.0 27656 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libterminal-nautilus.so 27655 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libtotem-properties-page.so 27654 +usr/bin/inotifywait 27653 +usr/lib/x86_64-linux-gnu/libinotifytools.so.0.4.1 27652 +usr/bin/sort 27648 +usr/share/icons/hicolor/scalable/status/tor-connected-symbolic.svg 27642 +usr/local/bin/tails-security-check 27640 +usr/local/bin/tails-upgrade-frontend-wrapper 27638 +usr/share/perl5/Carp/Assert/More.pm 27635 +usr/share/perl5/Carp/Assert.pm 27632 +usr/share/perl/5.28.1/Fatal.pm 27621 +usr/share/perl/5.28.1/Tie/RefHash.pm 27619 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl 27617 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_git.pl 27616 +usr/share/perl/5.28.1/autodie/Util.pm 27615 +usr/share/perl/5.28.1/autodie/Scope/GuardStack.pm 27614 +usr/share/perl/5.28.1/autodie/Scope/Guard.pm 27613 +usr/lib/python3.7/lib-dynload/resource.cpython-37m-x86_64-linux-gnu.so 27604 +usr/local/share/perl/5.28.1/Tails/Download/HTTPS.pm 27603 +usr/share/perl5/Moo/sification.pm 27602 +usr/share/perl5/Moo/_strictures.pm 27601 +usr/share/perl5/Devel/GlobalDestruction.pm 27600 +usr/share/perl5/Sub/Exporter/Progressive.pm 27599 +usr/share/perl5/Moo.pm 27598 +usr/share/perl5/Moo/_mro.pm 27597 +usr/lib/x86_64-linux-gnu/perl/5.28.1/mro.pm 27596 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/mro/mro.so 27595 +usr/share/perl5/Moo/_Utils.pm 27594 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Sub/Util.pm 27593 +usr/share/perl5/Module/Runtime.pm 27592 +usr/share/perl5/Moo/HandleMoose/_TypeMap.pm 27591 +usr/share/perl5/Moo/Object.pm 27590 +usr/share/perl/5.28.1/autodie.pm 27589 +usr/share/perl5/IPC/System/Simple.pm 27588 +usr/share/perl/5.28.1/autodie/exception/system.pm 27586 +usr/share/perl/5.28.1/autodie/exception.pm 27585 +usr/lib/x86_64-linux-gnu/perl5/5.28/Function/Parameters.pm 27584 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Function/Parameters/Parameters.so 27583 +usr/lib/x86_64-linux-gnu/perl5/5.28/WWW/Curl/Easy.pm 27582 +usr/lib/x86_64-linux-gnu/perl5/5.28/WWW/Curl.pm 27581 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/WWW/Curl/Curl.so 27580 +usr/share/perl5/namespace/clean.pm 27579 +usr/share/perl5/B/Hooks/EndOfScope.pm 27578 +usr/share/perl5/Module/Implementation.pm 27577 +usr/share/perl5/Try/Tiny.pm 27576 +usr/share/perl5/B/Hooks/EndOfScope/XS.pm 27575 +usr/lib/x86_64-linux-gnu/perl5/5.28/Variable/Magic.pm 27574 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Variable/Magic/Magic.so 27573 +usr/share/perl5/Package/Stash.pm 27572 +usr/lib/x86_64-linux-gnu/perl5/5.28/Package/Stash/XS.pm 27571 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Package/Stash/XS/XS.so 27570 +usr/share/perl5/namespace/clean/_Util.pm 27569 +usr/share/perl5/Method/Generate/Constructor.pm 27568 +usr/share/perl5/Sub/Quote.pm 27567 +usr/share/perl5/Sub/Defer.pm 27566 +usr/lib/x86_64-linux-gnu/perl/5.28.1/B.pm 27565 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/B/B.so 27564 +usr/share/perl5/Method/Generate/Accessor.pm 27563 +usr/lib/x86_64-linux-gnu/perl5/5.28/Class/XSAccessor.pm 27562 +usr/lib/x86_64-linux-gnu/perl5/5.28/Class/XSAccessor/Heavy.pm 27561 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Class/XSAccessor/XSAccessor.so 27560 +usr/share/perl5/XML/Atom.pm 27559 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML.pm 27558 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/Error.pm 27557 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Data/Dumper.pm 27556 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Data/Dumper/Dumper.so 27555 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/NodeList.pm 27554 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/Boolean.pm 27553 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/Number.pm 27552 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/Literal.pm 27551 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/XPathContext.pm 27550 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/XML/LibXML/LibXML.so 27549 +usr/lib/x86_64-linux-gnu/perl5/5.28/XML/LibXML/AttributeHash.pm 27548 +usr/share/perl5/XML/SAX/Exception.pm 27547 +usr/share/perl5/XML/Atom/ErrorHandler.pm 27546 +usr/share/perl5/XML/Atom/Feed.pm 27545 +usr/share/perl5/XML/Atom/Thing.pm 27544 +usr/share/perl5/XML/Atom/Base.pm 27543 +usr/share/perl5/Class/Data/Inheritable.pm 27542 +usr/share/perl5/XML/Atom/Util.pm 27541 +usr/share/perl5/XML/Atom/Category.pm 27540 +usr/share/perl5/XML/Atom/Link.pm 27539 +usr/share/perl5/LWP/UserAgent.pm 27538 +usr/share/perl5/LWP/MemberMixin.pm 27537 +usr/share/perl5/HTTP/Request.pm 27536 +usr/share/perl5/HTTP/Message.pm 27535 +usr/share/perl5/HTTP/Headers.pm 27534 +usr/share/perl5/URI.pm 27533 +usr/share/perl5/URI/Escape.pm 27532 +usr/share/perl5/HTTP/Response.pm 27531 +usr/share/perl5/HTTP/Status.pm 27530 +usr/share/perl5/HTTP/Date.pm 27529 +usr/share/perl/5.28.1/Time/Local.pm 27528 +usr/share/perl5/LWP.pm 27527 +usr/share/perl5/LWP/Protocol.pm 27526 +usr/share/perl5/XML/Atom/Entry.pm 27525 +usr/lib/x86_64-linux-gnu/perl/5.28.1/MIME/Base64.pm 27524 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/MIME/Base64/Base64.so 27523 +usr/share/perl5/XML/Atom/Person.pm 27522 +usr/share/perl5/XML/Atom/Content.pm 27521 +usr/local/etc/ssl/certs/tails.boum.org-CA.pem 27520 +lib/systemd/system/htpdate.service 27518 +etc/default/htpdate.pools 27517 +usr/local/sbin/htpdate 27509 +usr/share/perl/5.28.1/version.pm 27508 +usr/share/perl/5.28.1/version/regex.pm 27507 +usr/share/perl5/namespace/autoclean.pm 27506 +usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime/Duration.pm 27505 +usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime/Helpers.pm 27504 +usr/lib/x86_64-linux-gnu/perl5/5.28/DateTime/Types.pm 27503 +usr/share/perl5/Specio/Exporter.pm 27502 +usr/share/perl5/Specio/Helpers.pm 27501 +usr/share/perl5/Specio/Registry.pm 27500 +usr/share/perl5/Specio.pm 27499 +usr/share/perl5/Specio/Declare.pm 27498 +usr/share/perl5/Specio/Coercion.pm 27497 +usr/share/perl5/Specio/OO.pm 27496 +usr/share/perl5/MRO/Compat.pm 27495 +usr/share/perl5/Specio/PartialDump.pm 27494 +usr/share/perl5/Specio/TypeChecks.pm 27493 +usr/share/perl5/Specio/Role/Inlinable.pm 27492 +usr/share/perl5/Eval/Closure.pm 27491 +usr/share/perl5/Specio/Constraint/Simple.pm 27490 +usr/share/perl5/Specio/Constraint/Role/Interface.pm 27489 +usr/share/perl5/Specio/Exception.pm 27488 +usr/share/perl5/Devel/StackTrace.pm 27487 +usr/share/perl5/Devel/StackTrace/Frame.pm 27486 +usr/share/perl5/Specio/DeclaredAt.pm 27485 +usr/share/perl5/Specio/Library/Builtins.pm 27484 +usr/share/perl5/Specio/Constraint/Parameterizable.pm 27483 +usr/share/perl5/Specio/Constraint/Parameterized.pm 27482 +usr/share/perl5/Specio/Library/Numeric.pm 27481 +usr/share/perl5/Specio/Library/String.pm 27480 +usr/lib/x86_64-linux-gnu/perl5/5.28/Sub/Identify.pm 27479 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Sub/Identify/Identify.so 27478 +usr/share/perl5/Specio/Constraint/AnyCan.pm 27477 +usr/share/perl5/Specio/Constraint/Role/CanType.pm 27476 +usr/share/perl5/Specio/Constraint/ObjectIsa.pm 27475 +usr/share/perl5/Specio/Constraint/Role/IsaType.pm 27474 +usr/share/perl5/Specio/Constraint/Enum.pm 27473 +usr/share/perl5/Specio/Constraint/Union.pm 27472 +usr/share/perl5/Specio/Constraint/ObjectCan.pm 27471 +usr/share/perl5/Params/ValidationCompiler.pm 27470 +usr/share/perl5/Params/ValidationCompiler/Compiler.pm 27469 +usr/share/perl5/Params/ValidationCompiler/Exceptions.pm 27468 +usr/share/perl5/Exception/Class.pm 27467 +usr/share/perl5/Exception/Class/Base.pm 27466 +usr/share/perl5/DateTime/Locale/Data.pm 27465 +usr/share/perl5/File/ShareDir.pm 27464 +usr/share/perl5/Class/Inspector.pm 27463 +usr/lib/x86_64-linux-gnu/perl5/5.28/Params/Util.pm 27462 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Params/Util/Util.so 27461 +usr/share/perl5/DateTime/Format/DateParse.pm 27460 +usr/share/perl5/Date/Parse.pm 27459 +usr/share/perl5/Time/Zone.pm 27458 +usr/share/perl/5.28.1/English.pm 27457 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Tie/Hash/NamedCapture.pm 27456 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Tie/Hash/NamedCapture/NamedCapture.so 27455 +usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Spec/Functions.pm 27454 +usr/share/perl5/Getopt/Long/Descriptive.pm 27453 +usr/lib/x86_64-linux-gnu/perl5/5.28/Params/Validate.pm 27452 +usr/lib/x86_64-linux-gnu/perl5/5.28/Params/Validate/Constants.pm 27451 +usr/lib/x86_64-linux-gnu/perl5/5.28/Params/Validate/XS.pm 27450 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Params/Validate/XS/XS.so 27449 +usr/share/perl5/Getopt/Long/Descriptive/Opts.pm 27448 +usr/share/perl5/Getopt/Long/Descriptive/Usage.pm 27447 +usr/share/perl5/Sub/Exporter/Util.pm 27446 +usr/share/perl5/Data/OptList.pm 27445 +usr/share/perl5/Sub/Install.pm 27444 +usr/share/perl5/Sub/Exporter.pm 27443 +usr/share/perl/5.28.1/open.pm 27442 +usr/lib/x86_64-linux-gnu/perl/5.28.1/threads.pm 27441 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/threads/threads.so 27440 +usr/bin/curl 27439 +usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0 27438 +usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt 27437 +usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt 27436 +usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt 27435 +usr/local/lib/tails-shell-library/systemd.sh 27430 +usr/bin/gettext 27429 +usr/local/sbin/tails-notify-user 27428 +bin/tempfile 27427 +bin/su 27426 +etc/pam.d/su 27425 +lib/x86_64-linux-gnu/security/pam_mail.so 27424 +lib/systemd/system/tails-additional-software-upgrade.path 27419 +lib/systemd/system/tails-additional-software-upgrade.service 27418 +usr/bin/notify-send 27413 +usr/local/lib/tor-browser/browser/chrome/icons/default/default128.png 27406 +usr/share/icons/hicolor/32x32/apps/thunderbird.png 27405 +usr/share/icons/hicolor/32x32/apps/pidgin.png 27404 +usr/share/icons/hicolor/32x32/apps/keepassxc.png 27403 +usr/share/icons/hicolor/32x32/apps/org.gnome.Nautilus.png 27402 +usr/share/icons/Adwaita/32x32/apps/utilities-terminal.png 27401 +usr/share/icons/Adwaita/16x16/devices/drive-harddisk-symbolic.symbolic.png 27400 +usr/share/icons/Adwaita/16x16/places/network-workgroup-symbolic.symbolic.png 27399 +usr/local/bin/tor-browser 27397 +usr/local/lib/tails-shell-library/tor-browser.sh 27396 +etc/tor-browser/locale-profiles/en-US.js 27395 +usr/local/lib/tor-browser/firefox.real 27394 +usr/local/lib/tor-browser/dependentlibs.list 27393 +usr/local/lib/tor-browser/libnspr4.so 27392 +usr/local/lib/tor-browser/libplc4.so 27391 +usr/local/lib/tor-browser/libplds4.so 27390 +usr/local/lib/tor-browser/libmozsandbox.so 27389 +usr/local/lib/tor-browser/liblgpllibs.so 27388 +usr/local/lib/tor-browser/libnssutil3.so 27387 +usr/local/lib/tor-browser/libnss3.so 27386 +usr/local/lib/tor-browser/libsmime3.so 27385 +usr/local/lib/tor-browser/libmozsqlite3.so 27384 +usr/local/lib/tor-browser/libssl3.so 27383 +usr/local/lib/tor-browser/libmozgtk.so 27382 +usr/local/lib/tor-browser/libxul.so 27381 +usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2.3.4 27380 +usr/lib/x86_64-linux-gnu/libXt.so.6.0.0 27379 +usr/lib/x86_64-linux-gnu/dri/i915_dri.so 27378 +usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 27377 +usr/lib/x86_64-linux-gnu/libLLVM-7.so.1 27376 +usr/lib/x86_64-linux-gnu/libsensors.so.5.0.0 27375 +usr/lib/x86_64-linux-gnu/libelf-0.176.so 27374 +usr/lib/x86_64-linux-gnu/libdrm_amdgpu.so.1.0.0 27373 +usr/local/lib/tor-browser/TorBrowser/Data/Browser/profiles.ini 27372 +usr/lib/x86_64-linux-gnu/libedit.so.2.0.59 27371 +usr/local/lib/tor-browser/omni.ja 27370 +usr/local/lib/tor-browser/browser/omni.ja 27369 +usr/local/lib/tor-browser/defaults/pref/channel-prefs.js 27368 +etc/ld.so.conf 27367 +etc/ld.so.conf.d/libc.conf 27366 +etc/ld.so.conf.d/x86_64-linux-gnu.conf 27365 +usr/bin/lsb_release 27364 +usr/local/share/tor-browser-extensions/{73a6fe31-595d-460b-a920-fcc0f8843232}.xpi 27363 +usr/local/lib/tor-browser/libsoftokn3.so 27362 +usr/local/lib/tor-browser/libfreeblpriv3.so 27361 +usr/local/lib/tor-browser/libnssckbi.so 27360 +usr/local/lib/tor-browser/browser/blocklist.xml 27359 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/manifest.json 27358 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/en/messages.json 27357 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ar/messages.json 27356 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/az/messages.json 27355 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/bg/messages.json 27354 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/bn/messages.json 27353 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/bs/messages.json 27352 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ca/messages.json 27351 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/cs/messages.json 27350 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/cv/messages.json 27349 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/da/messages.json 27348 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/de/messages.json 27347 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/el/messages.json 27346 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/en_GB/messages.json 27345 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/eo/messages.json 27344 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/es/messages.json 27343 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/et/messages.json 27342 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/eu/messages.json 27341 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fa/messages.json 27340 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fi/messages.json 27339 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fil/messages.json 27338 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fr/messages.json 27337 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/fy/messages.json 27336 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/gl/messages.json 27335 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/he/messages.json 27334 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/hi/messages.json 27333 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/hr/messages.json 27332 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/hu/messages.json 27331 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/id/messages.json 27330 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/it/messages.json 27329 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ja/messages.json 27328 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ka/messages.json 27327 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/kk/messages.json 27326 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/kn/messages.json 27325 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ko/messages.json 27324 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/lt/messages.json 27323 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/lv/messages.json 27322 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ml/messages.json 27321 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ms/messages.json 27320 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/mr/messages.json 27319 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/nb/messages.json 27318 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/nl/messages.json 27317 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/no/messages.json 27316 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/pl/messages.json 27315 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/pt_BR/messages.json 27314 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/pt_PT/messages.json 27313 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ro/messages.json 27312 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ru/messages.json 27311 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sk/messages.json 27310 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sl/messages.json 27309 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sq/messages.json 27308 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sr/messages.json 27307 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/sv/messages.json 27306 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ta/messages.json 27305 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/te/messages.json 27304 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/th/messages.json 27303 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/tr/messages.json 27302 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/uk/messages.json 27301 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/ur/messages.json 27300 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/vi/messages.json 27299 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/zh_CN/messages.json 27298 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/_locales/zh_TW/messages.json 27297 +usr/local/share/tor-browser-extensions/langpack-zh-TW@firefox.mozilla.org.xpi 27296 +usr/local/share/tor-browser-extensions/langpack-zh-CN@firefox.mozilla.org.xpi 27295 +usr/local/share/tor-browser-extensions/langpack-vi@firefox.mozilla.org.xpi 27294 +usr/local/share/tor-browser-extensions/langpack-tr@firefox.mozilla.org.xpi 27293 +usr/local/share/tor-browser-extensions/langpack-sv-SE@firefox.mozilla.org.xpi 27292 +usr/local/share/tor-browser-extensions/langpack-ru@firefox.mozilla.org.xpi 27291 +usr/local/share/tor-browser-extensions/langpack-ro@firefox.mozilla.org.xpi 27290 +usr/local/share/tor-browser-extensions/langpack-pt-BR@firefox.mozilla.org.xpi 27289 +usr/local/share/tor-browser-extensions/langpack-pl@firefox.mozilla.org.xpi 27288 +usr/local/share/tor-browser-extensions/langpack-nl@firefox.mozilla.org.xpi 27287 +usr/local/share/tor-browser-extensions/langpack-nb-NO@firefox.mozilla.org.xpi 27286 +usr/local/share/tor-browser-extensions/langpack-mk@firefox.mozilla.org.xpi 27285 +usr/local/share/tor-browser-extensions/langpack-ko@firefox.mozilla.org.xpi 27284 +usr/local/share/tor-browser-extensions/langpack-ka@firefox.mozilla.org.xpi 27283 +usr/local/share/tor-browser-extensions/langpack-ja@firefox.mozilla.org.xpi 27282 +usr/local/share/tor-browser-extensions/langpack-it@firefox.mozilla.org.xpi 27281 +usr/local/share/tor-browser-extensions/langpack-is@firefox.mozilla.org.xpi 27280 +usr/local/share/tor-browser-extensions/langpack-id@firefox.mozilla.org.xpi 27279 +usr/local/share/tor-browser-extensions/langpack-hu@firefox.mozilla.org.xpi 27278 +usr/local/share/tor-browser-extensions/langpack-he@firefox.mozilla.org.xpi 27277 +usr/local/share/tor-browser-extensions/langpack-ga-IE@firefox.mozilla.org.xpi 27276 +usr/local/share/tor-browser-extensions/langpack-fr@firefox.mozilla.org.xpi 27275 +usr/local/share/tor-browser-extensions/langpack-fa@firefox.mozilla.org.xpi 27274 +usr/local/share/tor-browser-extensions/langpack-es-ES@firefox.mozilla.org.xpi 27273 +usr/local/share/tor-browser-extensions/langpack-es-AR@firefox.mozilla.org.xpi 27272 +usr/local/share/tor-browser-extensions/langpack-el@firefox.mozilla.org.xpi 27271 +usr/local/share/tor-browser-extensions/langpack-de@firefox.mozilla.org.xpi 27270 +usr/local/share/tor-browser-extensions/langpack-da@firefox.mozilla.org.xpi 27269 +usr/local/share/tor-browser-extensions/langpack-cs@firefox.mozilla.org.xpi 27268 +usr/local/share/tor-browser-extensions/langpack-ca@firefox.mozilla.org.xpi 27267 +usr/local/share/tor-browser-extensions/langpack-ar@firefox.mozilla.org.xpi 27266 +usr/local/share/tor-browser-extensions/https-everywhere-eff@eff.org.xpi 27265 +usr/local/lib/tor-browser/browser/features/onboarding@mozilla.org.xpi 27264 +usr/local/lib/tor-browser/TorBrowser/Data/fontconfig/fonts.conf 27263 +usr/local/lib/tor-browser/fonts/Arimo-Bold.ttf 27262 +usr/local/lib/tor-browser/fonts/Arimo-BoldItalic.ttf 27261 +usr/local/lib/tor-browser/fonts/Arimo-Italic.ttf 27260 +usr/local/lib/tor-browser/fonts/Arimo-Regular.ttf 27259 +usr/local/lib/tor-browser/fonts/Cousine-Regular.ttf 27258 +usr/local/lib/tor-browser/fonts/NotoEmoji-Regular.ttf 27257 +usr/local/lib/tor-browser/fonts/NotoNaskhArabic-Regular.ttf 27256 +usr/local/lib/tor-browser/fonts/NotoSansArmenian-Regular.ttf 27255 +usr/local/lib/tor-browser/fonts/NotoSansBengali-Regular.ttf 27254 +usr/local/lib/tor-browser/fonts/NotoSansBuginese-Regular.ttf 27253 +usr/local/lib/tor-browser/fonts/NotoSansCanadianAboriginal-Regular.ttf 27252 +usr/local/lib/tor-browser/fonts/NotoSansCherokee-Regular.ttf 27251 +usr/local/lib/tor-browser/fonts/NotoSansDevanagari-Regular.ttf 27250 +usr/local/lib/tor-browser/fonts/NotoSansEthiopic-Regular.ttf 27249 +usr/local/lib/tor-browser/fonts/NotoSansGeorgian-Regular.ttf 27248 +usr/local/lib/tor-browser/fonts/NotoSansGujarati-Regular.ttf 27247 +usr/local/lib/tor-browser/fonts/NotoSansGurmukhi-Regular.ttf 27246 +usr/local/lib/tor-browser/fonts/NotoSansHebrew-Regular.ttf 27245 +usr/local/lib/tor-browser/fonts/NotoSansJP-Regular.otf 27244 +usr/local/lib/tor-browser/fonts/NotoSansKR-Regular.otf 27243 +usr/local/lib/tor-browser/fonts/NotoSansKannada-Regular.ttf 27242 +usr/local/lib/tor-browser/fonts/NotoSansKhmer-Regular.ttf 27241 +usr/local/lib/tor-browser/fonts/NotoSansLao-Regular.ttf 27240 +usr/local/lib/tor-browser/fonts/NotoSansMalayalam-Regular.ttf 27239 +usr/local/lib/tor-browser/fonts/NotoSansMongolian-Regular.ttf 27238 +usr/local/lib/tor-browser/fonts/NotoSansMyanmar-Regular.ttf 27237 +usr/local/lib/tor-browser/fonts/NotoSansOriya-Regular.ttf 27236 +usr/local/lib/tor-browser/fonts/NotoSansSC-Regular.otf 27235 +usr/local/lib/tor-browser/fonts/NotoSansSinhala-Regular.ttf 27234 +usr/local/lib/tor-browser/fonts/NotoSansTC-Regular.otf 27233 +usr/local/lib/tor-browser/fonts/NotoSansTamil-Regular.ttf 27232 +usr/local/lib/tor-browser/fonts/NotoSansTelugu-Regular.ttf 27231 +usr/local/lib/tor-browser/fonts/NotoSansThaana-Regular.ttf 27230 +usr/local/lib/tor-browser/fonts/NotoSansThai-Regular.ttf 27229 +usr/local/lib/tor-browser/fonts/NotoSansTibetan-Regular.ttf 27228 +usr/local/lib/tor-browser/fonts/NotoSansYi-Regular.ttf 27227 +usr/local/lib/tor-browser/fonts/NotoSerifArmenian-Regular.ttf 27226 +usr/local/lib/tor-browser/fonts/NotoSerifKhmer-Regular.ttf 27225 +usr/local/lib/tor-browser/fonts/NotoSerifLao-Regular.ttf 27224 +usr/local/lib/tor-browser/fonts/NotoSerifThai-Regular.ttf 27223 +usr/local/lib/tor-browser/fonts/STIXMath-Regular.otf 27222 +usr/local/lib/tor-browser/fonts/Tinos-Bold.ttf 27221 +usr/local/lib/tor-browser/fonts/Tinos-BoldItalic.ttf 27220 +usr/local/lib/tor-browser/fonts/Tinos-Italic.ttf 27219 +usr/local/lib/tor-browser/fonts/Tinos-Regular.ttf 27218 +usr/local/lib/tor-browser/fonts/TwemojiMozilla.ttf 27217 +usr/lib/locale/C.UTF-8/LC_IDENTIFICATION 27216 +usr/lib/locale/C.UTF-8/LC_MEASUREMENT 27215 +usr/lib/locale/C.UTF-8/LC_TELEPHONE 27214 +usr/lib/locale/C.UTF-8/LC_ADDRESS 27213 +usr/lib/locale/C.UTF-8/LC_NAME 27212 +usr/lib/locale/C.UTF-8/LC_PAPER 27211 +usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES 27210 +usr/lib/locale/C.UTF-8/LC_MONETARY 27209 +usr/lib/locale/C.UTF-8/LC_COLLATE 27208 +usr/lib/locale/C.UTF-8/LC_TIME 27207 +usr/lib/locale/C.UTF-8/LC_NUMERIC 27206 +etc/mime.types 27205 +usr/share/mime/application/pdf.xml 27204 +usr/lib/ibus/ibus-engine-libpinyin 27203 +usr/lib/x86_64-linux-gnu/libpinyin.so.13.0.0 27202 +usr/lib/ibus/ibus-engine-hangul 27201 +usr/lib/x86_64-linux-gnu/libhangul.so.1.0.0 27200 +usr/lib/ibus/ibus-engine-chewing 27199 +usr/lib/x86_64-linux-gnu/libchewing.so.3.3.1 27198 +usr/share/libhangul/hanja/hanja.txt 27197 +usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0.2400.32 27196 +usr/local/lib/tor-browser/browser/chrome/icons/default/default16.png 27195 +usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0.2400.32 27194 +usr/local/lib/tor-browser/browser/chrome/icons/default/default32.png 27193 +usr/local/lib/tor-browser/browser/chrome/icons/default/default48.png 27192 +usr/local/lib/tor-browser/browser/chrome/icons/default/default64.png 27191 +usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules/im-ibus.so 27190 +usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libgail.so 27189 +usr/lib/x86_64-linux-gnu/libgailutil.so.18.0.1 27188 +usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libatk-bridge.so 27187 +usr/share/themes/Adwaita/gtk-2.0/gtkrc 27186 +usr/share/themes/Adwaita/gtk-2.0/main.rc 27185 +usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libadwaita.so 27184 +usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libpixmap.so 27183 +usr/share/themes/Adwaita/gtk-2.0/apps.rc 27182 +usr/share/themes/Adwaita/gtk-2.0/hacks.rc 27181 +usr/share/themes/Default/gtk-2.0-key/gtkrc 27180 +usr/share/ibus-hangul/data/symbol.txt 27179 +etc/onion-grater.d/onioncircuits.yml 27178 +etc/onion-grater.d/onionshare.yml 27177 +etc/onion-grater.d/tor-browser.yml 27176 +etc/onion-grater.d/tor-launcher.yml 27175 +usr/lib/python3/dist-packages/stem/response/add_onion.py 27174 +usr/lib/python3/dist-packages/stem/response/authchallenge.py 27173 +usr/lib/python3/dist-packages/stem/response/getinfo.py 27172 +usr/lib/python3/dist-packages/stem/response/getconf.py 27171 +usr/lib/python3/dist-packages/stem/response/mapaddress.py 27170 +usr/lib/python3/dist-packages/stem/response/protocolinfo.py 27169 +usr/share/icons/Adwaita/16x16/devices/network-wired-symbolic.symbolic.png 27168 +usr/share/icons/Adwaita/16x16/actions/window-maximize-symbolic.symbolic.png 27167 +usr/share/icons/Adwaita/16x16/actions/window-minimize-symbolic.symbolic.png 27166 +usr/lib/x86_64-linux-gnu/libXss.so.1.0.0 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/local/bin/tails-upgrade-frontend 27095 +usr/share/perl/5.28.1/FindBin.pm 27094 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/scriptlets/should-inject-contentscript.js 27093 +usr/lib/x86_64-linux-gnu/perl/5.28.1/lib.pm 27092 +usr/local/share/perl/5.28.1/Tails/IUK/Frontend.pm 27091 +usr/share/perl/5.28.1/Env.pm 27090 +usr/share/perl/5.28.1/Tie/Array.pm 27089 +usr/share/perl5/IPC/Run.pm 27088 +usr/share/perl5/IPC/Run/Debug.pm 27087 +usr/share/perl5/IPC/Run/IO.pm 27086 +usr/share/perl5/IPC/Run/Timer.pm 27085 +usr/share/perl5/Number/Format.pm 27084 +usr/share/perl5/Path/Tiny.pm 27083 +usr/share/perl5/String/Errf.pm 27082 +usr/share/perl5/String/Formatter.pm 27081 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Time/Piece.pm 27080 +usr/lib/x86_64-linux-gnu/perl/5.28.1/Time/Seconds.pm 27079 +usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Time/Piece/Piece.so 27078 +usr/local/share/perl/5.28.1/Tails/RunningSystem.pm 27077 +usr/share/perl5/Sys/Statistics/Linux/MemStats.pm 27076 +usr/local/share/perl/5.28.1/Tails/Constants.pm 27075 +usr/share/perl5/MooX/late.pm 27074 +usr/local/share/perl/5.28.1/Tails/UDisks.pm 27073 +usr/share/perl/5.28.1/File/stat.pm 27072 +usr/share/perl/5.28.1/Class/Struct.pm 27071 +usr/share/perl5/Syntax/Keyword/Junction.pm 27070 +usr/share/perl5/Syntax/Keyword/Junction/All.pm 27069 +usr/share/perl5/Syntax/Keyword/Junction/Base.pm 27068 +usr/share/perl/5.28.1/if.pm 27067 +usr/share/perl5/Syntax/Keyword/Junction/Any.pm 27066 +usr/share/perl5/Syntax/Keyword/Junction/None.pm 27065 +usr/share/perl5/Syntax/Keyword/Junction/One.pm 27064 +usr/share/perl5/Types/Path/Tiny.pm 27063 +usr/share/perl5/Type/Tiny/Class.pm 27062 +usr/share/perl5/Type/Tiny/Intersection.pm 27061 +usr/lib/x86_64-linux-gnu/perl5/5.28/Unix/Mknod.pm 27060 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Unix/Mknod/Mknod.so 27059 +usr/local/share/perl/5.28.1/Tails/Role/HasDBus/System.pm 27058 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/Binding/Value.pm 27057 +usr/lib/x86_64-linux-gnu/perl5/5.28/Net/DBus/GLib.pm 27056 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/DBus/GLib/GLib.so 27055 +usr/local/share/perl/5.28.1/Tails.pm 27054 +usr/local/share/perl/5.28.1/Tails/Role/HasEncoding.pm 27053 +usr/local/share/perl/5.28.1/Tails/Role/HasCodeset.pm 27052 +usr/share/perl5/Type/Tiny/Union.pm 27051 +usr/local/share/perl/5.28.1/Tails/Role/DisplayError/Gtk3.pm 27050 +usr/local/share/perl/5.28.1/Tails/IUK/UpgradeDescriptionFile.pm 27049 +usr/share/perl5/Dpkg/Version.pm 27048 +usr/share/perl5/Dpkg/Gettext.pm 27047 +usr/share/perl/5.28.1/feature.pm 27046 +usr/share/perl5/Dpkg/ErrorHandling.pm 27045 +usr/share/perl5/Dpkg.pm 27044 +usr/share/perl5/YAML/Any.pm 27043 +usr/lib/x86_64-linux-gnu/perl5/5.28/YAML/XS.pm 27042 +usr/lib/x86_64-linux-gnu/perl5/5.28/YAML/XS/LibYAML.pm 27041 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/YAML/XS/LibYAML/LibYAML.so 27040 +usr/local/share/perl/5.28.1/Tails/IUK/Utils.pm 27039 +usr/share/perl5/GnuPG/Interface.pm 27038 +usr/share/perl/5.28.1/Math/BigInt.pm 27037 +usr/lib/x86_64-linux-gnu/perl5/5.28/Filesys/Df.pm 27036 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Filesys/Df/Df.so 27035 +usr/local/share/perl/5.28.1/Tails/MirrorPool.pm 27034 +usr/share/perl5/MooX/Options.pm 27033 +usr/share/perl5/MooX/Options/Role.pm 27032 +usr/share/perl5/MooX/Options/Descriptive.pm 27031 +usr/share/perl5/MooX/Options/Descriptive/Usage.pm 27030 +usr/lib/x86_64-linux-gnu/perl5/5.28/Text/LineFold.pm 27029 +usr/share/perl5/MIME/Charset.pm 27028 +usr/lib/x86_64-linux-gnu/perl5/5.28/Unicode/LineBreak.pm 27027 +usr/lib/x86_64-linux-gnu/perl5/5.28/Unicode/GCString.pm 27026 +usr/lib/x86_64-linux-gnu/perl5/5.28/Unicode/LineBreak/Constants.pm 27025 +usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Unicode/LineBreak/LineBreak.so 27024 +usr/lib/x86_64-linux-gnu/libsombok.so.3.1.7 27023 +usr/share/perl5/MooX/Locale/Passthrough.pm 27022 +usr/local/lib/tor-browser/libmozavutil.so 27021 +usr/local/lib/tor-browser/libmozavcodec.so 27020 +usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/scriptlets/subscriber.js 27019 +usr/local/bin/tails-iuk-get-upgrade-description-file 27018 +usr/local/share/perl/5.28.1/Tails/IUK/UpgradeDescriptionFile/Download.pm 27017 +usr/bin/zenity 27016 +usr/lib/x86_64-linux-gnu/libgstgl-1.0.so.0.1404.0 27015 +usr/lib/x86_64-linux-gnu/libgstfft-1.0.so.0.1404.0 27014 +usr/lib/x86_64-linux-gnu/libwebpdemux.so.2.0.3 27013 +usr/lib/x86_64-linux-gnu/libenchant.so.1.6.0 27012 +usr/lib/x86_64-linux-gnu/libhyphen.so.0.3.0 27011 +usr/lib/x86_64-linux-gnu/libwoff2common.so.1.0.2 27010 +usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.7 27009 +usr/lib/x86_64-linux-gnu/libgstallocators-1.0.so.0.1404.0 27008 +usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.7 27007 diff --git a/config/chroot_apt/preferences b/config/chroot_apt/preferences index f158b86c58c68f55ff249b274e520ad5ff0060a3..65ac21f5c4c0737e7e8668d0cf714d94d34c4a28 100644 --- a/config/chroot_apt/preferences +++ b/config/chroot_apt/preferences @@ -71,7 +71,7 @@ Pin: release o=TorProject,n=tor-nightly-master-buster Pin-Priority: 999 Package: virtualbox* -Pin: origin deb.tails.boum.org +Pin: release o=Debian,n=sid Pin-Priority: 999 Package: webext-ublock-origin @@ -99,6 +99,10 @@ Package: * Pin: release l=Debian-Security,n=buster/updates Pin-Priority: 990 +Package: * +Pin: release o=Debian,n=buster-proposed-updates +Pin-Priority: 990 + Package: * Pin: release o=TorProject,n=buster Pin-Priority: 990 diff --git a/config/chroot_local-hooks/06-adduser_tails-upgrade-frontend b/config/chroot_local-hooks/06-adduser_tails-upgrade-frontend index 89942d24ff11cd1cc83056173b895cd6a556eabb..344807b70aae23245329ed28e839d80cb525030b 100755 --- a/config/chroot_local-hooks/06-adduser_tails-upgrade-frontend +++ b/config/chroot_local-hooks/06-adduser_tails-upgrade-frontend @@ -11,4 +11,6 @@ set -e echo "Creating the tails-upgrade-frontend user" addgroup --system --quiet --gid 126 tails-upgrade-frontend -adduser --system --quiet --uid 118 --gid 126 --no-create-home tails-upgrade-frontend +adduser --system --quiet --uid 118 --gid 126 \ + --home /var/lib/tails-upgrade-frontend \ + tails-upgrade-frontend diff --git a/config/chroot_local-hooks/08-install-Perl-programs b/config/chroot_local-hooks/08-install-Perl-programs new file mode 100755 index 0000000000000000000000000000000000000000..dfa0e3ef677b7a043c6896323ce538ba3bc3bb15 --- /dev/null +++ b/config/chroot_local-hooks/08-install-Perl-programs @@ -0,0 +1,35 @@ +#!/bin/sh + +set -e +set -u + +echo "Installing Perl programs" + +# Import ensure_hook_dependency_is_installed() +. /usr/local/lib/tails-shell-library/build.sh + +ensure_hook_dependency_is_installed \ + cpanminus \ + libdist-zilla-perl \ + libdist-zilla-plugin-test-notabs-perl \ + libdist-zilla-plugin-test-perl-critic-perl + +for dist in perl5lib iuk; do + dist_dir="/usr/src/${dist}" + cd "$dist_dir" + PERL5LIB=/usr/src/perl5lib/lib PERL_CPANM_OPT=--notest dzil install + cd + rm -r "$dist_dir" +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 diff --git a/config/chroot_local-hooks/10-tbb b/config/chroot_local-hooks/10-tbb index 5dc62f8856e38f501b0486de81b7b1e7a2e9893f..e643e6e196a47e28644f8d7108935f1359ae1273 100755 --- a/config/chroot_local-hooks/10-tbb +++ b/config/chroot_local-hooks/10-tbb @@ -17,9 +17,9 @@ echo "Install the Tor Browser" . /usr/local/lib/tails-shell-library/build.sh download_and_verify_files() { - local base_url bundles destination apt_proxy + local base_url target_files destination apt_proxy base_url="${1}" - bundles="${2}" + target_files="${2}" destination="${3}" # Use the builder's caching APT proxy, if any @@ -31,7 +31,7 @@ download_and_verify_files() { export https_proxy="${apt_proxy}" fi - echo "${bundles}" | while read expected_sha256 tarball; do + echo "${target_files}" | while read expected_sha256 tarball; do ( cd "${destination}" echo "Fetching ${base_url}/${tarball} ..." @@ -277,23 +277,21 @@ strip_nondeterminism () { done } -install_langpacks_from_bundles() { - local bundles_dir destination - bundles_dir="${1}" +install_langpacks() { + local langpacks_tarball destination tmp + langpacks_tarball="${1}" destination="${2}" - for tarball in "${bundles_dir}"/tor-browser-*.tar.xz; do - locale="$(echo "${tarball}" | sed "s@^.*/tor-browser-.*_\(.*\)\.tar\.xz@\1@")" - if [ "${locale}" = en-US ]; then - continue - fi - xpi="tor-browser_${locale}/Browser/TorBrowser/Data/Browser/profile.default/extensions/langpack-${locale}@firefox.mozilla.org.xpi" - ( - cd "${bundles_dir}" - tar -xf "${tarball}" "${xpi}" - mv "${xpi}" "${destination}" - ) + tmp="$(mktemp -d)" + + tar --directory="${tmp}" -xf "${langpacks_tarball}" + for xpi in "${tmp}"/*.xpi; do + locale="$(basename "${xpi}" .xpi)" + dest_basename="langpack-${locale}@firefox.mozilla.org.xpi" + [ "${locale}" = en-US ] || mv "${xpi}" "${destination}/${dest_basename}" done + + rm -r "${tmp}" } get_firefox_version() { @@ -335,9 +333,8 @@ TBB_TIMESTAMP="$(date --date='2000-01-01 00:00:00' +%s)" TBB_SHA256SUMS_FILE=/usr/share/tails/tbb-sha256sums.txt TBB_TARBALLS="$(grep "\<tor-browser-linux64-.*\.tar.xz$" "${TBB_SHA256SUMS_FILE}")" -# We'll use the en-US bundle as our basis; only langpacks will be -# installed from the other bundles. -MAIN_TARBALL="$(echo "${TBB_TARBALLS}" | grep -o "tor-browser-linux64-.*_en-US.tar.xz" || :)" +# We'll use the en-US bundle as our basis +MAIN_TARBALL="$(echo "${TBB_TARBALLS}" | grep -o "tor-browser-linux64-.*_en-US\.tar\.xz" || :)" NIGHTLY_BUILD= if [ -z "${MAIN_TARBALL}" ] && [ "$(echo $TBB_TARBALLS | awk '{ print $2 }')" = 'tor-browser-linux64-tbb-nightly_ALL.tar.xz' ]; then # Except for TBB nightly builds; then there is only one bundle @@ -363,7 +360,8 @@ install_tor_launcher "${TBB_INSTALL}" "${TOR_LAUNCHER_INSTALL}" mkdir -p "${TBB_EXT}" if [ "${NIGHTLY_BUILD}" != yes ]; then - install_langpacks_from_bundles "${TMP}" "${TBB_EXT}" + LANGPACKS_TARBALL="$(echo "${TBB_TARBALLS}" | grep -o "langpacks-tor-browser-linux64-.*\.tar\.xz")" + install_langpacks "${TMP}/${LANGPACKS_TARBALL}" "${TBB_EXT}" fi rm -r "${TMP}" diff --git a/config/chroot_local-hooks/99-set_mtimes b/config/chroot_local-hooks/99-set_mtimes index 6f33d4a764d917861fe1f669f0ed88644f09d42c..37b0e0f5f7aa2b8ba310d5b00dab13131cc0226d 100755 --- a/config/chroot_local-hooks/99-set_mtimes +++ b/config/chroot_local-hooks/99-set_mtimes @@ -9,3 +9,6 @@ touch --no-create -t 197001010000 \ /usr/share/ppd/hplip/HP/*.ppd \ /var/lib/anthy/anthy.dic \ /var/lib/anthy/mkworddic/anthy.wdic + +find /usr/share/doc/tails/website -depth -exec \ + touch --no-create -t 197001010000 '{}' \; diff --git a/config/chroot_local-includes/etc/initramfs-tools/hooks/mac-boot-hack b/config/chroot_local-includes/etc/initramfs-tools/hooks/mac-boot-hack new file mode 100755 index 0000000000000000000000000000000000000000..d35f50b466757d40dea303c79e5828b2f9fd6b25 --- /dev/null +++ b/config/chroot_local-includes/etc/initramfs-tools/hooks/mac-boot-hack @@ -0,0 +1,12 @@ +#!/bin/sh +# +# Remove all net drivers from the initramfs to make some room and try to +# drop back below 32 MiB which might be a magic number (= hard limit) on +# Mac hardware (#17320). + +set -e +set -x + +. /usr/share/initramfs-tools/hook-functions + +find "$DESTDIR/usr$MODULESDIR/kernel/drivers/net" -name '*.ko' -print -delete >&2 diff --git a/config/chroot_local-includes/etc/skel/.config/keepassxc/keepassxc.ini b/config/chroot_local-includes/etc/skel/.config/keepassxc/keepassxc.ini index 8edc81ef182bd6345d605e26adcd42e585bbdb5d..a9ddb8e2999c47efa6655793c0d8267a175fb8ff 100644 --- a/config/chroot_local-includes/etc/skel/.config/keepassxc/keepassxc.ini +++ b/config/chroot_local-includes/etc/skel/.config/keepassxc/keepassxc.ini @@ -4,7 +4,6 @@ BackupBeforeSave=true OpenPreviousDatabasesOnStartup=true ShowToolbar=true LastOpenedDatabases=/home/amnesia/Persistent/keepassx.kdbx -LastDatabases=/home/amnesia/Persistent/keepassx.kdbx LastDir=/home/amnesia/Persistent/ [security] diff --git a/config/chroot_local-includes/etc/sudoers.d/zzz_upgrade b/config/chroot_local-includes/etc/sudoers.d/zzz_upgrade index 4cc0618092e9abe1bbc507fdfc60b586ce782b70..0dc3509dd342c8a39d3eda26ffa2963c43f98746 100644 --- a/config/chroot_local-includes/etc/sudoers.d/zzz_upgrade +++ b/config/chroot_local-includes/etc/sudoers.d/zzz_upgrade @@ -1,15 +1,15 @@ -Cmnd_Alias INSTALL_IUK = /bin/chmod, /bin/dd, /bin/mkdir, /bin/mktemp, /bin/mount, /bin/rm, /bin/tar, /lib/live/mount/medium/utils/linux/syslinux, /usr/bin/nocache /bin/cp * -Cmnd_Alias IUK_GET_TARGET_FILE = /usr/bin/tails-iuk-get-target-file -Cmnd_Alias UPGRADE_FRONTEND = /usr/bin/tails-upgrade-frontend "" +Cmnd_Alias INSTALL_IUK = /bin/dd, /bin/mount, /bin/umount, /bin/rm, /lib/live/mount/medium/utils/linux/syslinux, /usr/bin/rsync, /usr/bin/nocache /bin/cp * +Cmnd_Alias IUK_GET_TARGET_FILE = /usr/local/bin/tails-iuk-get-target-file +Cmnd_Alias UPGRADE_FRONTEND = /usr/local/bin/tails-upgrade-frontend "" Defaults!IUK_GET_TARGET_FILE env_keep+="HARNESS_ACTIVE DISABLE_PROXY" Defaults!UPGRADE_FRONTEND env_keep+="DISABLE_PROXY SSL_NO_VERIFY" amnesia ALL = (tails-upgrade-frontend) NOPASSWD: UPGRADE_FRONTEND -tails-upgrade-frontend ALL = NOPASSWD: /usr/bin/tails-shutdown-network "" -tails-upgrade-frontend ALL = (tails-install-iuk) NOPASSWD: /usr/bin/tails-install-iuk +tails-upgrade-frontend ALL = NOPASSWD: /usr/local/bin/tails-shutdown-network "" +tails-upgrade-frontend ALL = (tails-install-iuk) NOPASSWD: /usr/local/bin/tails-install-iuk tails-upgrade-frontend ALL = (tails-iuk-get-target-file) NOPASSWD: IUK_GET_TARGET_FILE -tails-upgrade-frontend ALL = (tails-iuk-get-target-file) NOPASSWD: /usr/bin/tails-iuk-mktemp-get-target-file "" +tails-upgrade-frontend ALL = (tails-iuk-get-target-file) NOPASSWD: /usr/local/bin/tails-iuk-mktemp-get-target-file "" tails-upgrade-frontend ALL = NOPASSWD: /sbin/reboot "" tails-install-iuk ALL = NOPASSWD: INSTALL_IUK diff --git a/config/chroot_local-includes/etc/thunderbird/pref/thunderbird.js b/config/chroot_local-includes/etc/thunderbird/pref/thunderbird.js index a28a56ddd40d7af5c6179c8196786eabad7cd0d6..45c23b382f8cf0b83491095af5a5aa631be1c960 100644 --- a/config/chroot_local-includes/etc/thunderbird/pref/thunderbird.js +++ b/config/chroot_local-includes/etc/thunderbird/pref/thunderbird.js @@ -182,7 +182,6 @@ pref("security.enable_ssl3", false); // https://bugs.torproject.org/11253 // March 2017: See https://bugs.torproject.org/20751 pref("security.tls.version.min", 3); -pref("security.tls.version.max", 3); // Display a dialog warning the user when entering an insecure site from a secure one. pref("security.warn_entering_weak", true); // Display a dialog warning the user when submtting a form to an insecure site. diff --git a/config/chroot_local-includes/lib/live/config/2000-import-gnupg-key b/config/chroot_local-includes/lib/live/config/2000-import-gnupg-key index b409e9015608bf87a55daeb5b6608e9806851f89..9ddf6933278bccc19d9539e13ebc3680f51bd128 100755 --- a/config/chroot_local-includes/lib/live/config/2000-import-gnupg-key +++ b/config/chroot_local-includes/lib/live/config/2000-import-gnupg-key @@ -6,9 +6,9 @@ Import_GnuPG_key () sudo -H -u "${LIVE_USERNAME}" gpg --batch --import /usr/share/doc/tails/website/*.key echo "- importing Tails' GnuPG signing key into tails-iuk's trusted keyring" - gpg --batch --homedir /usr/share/tails-iuk/trusted_gnupg_homedir \ - --import /usr/share/doc/tails/website/tails-signing.key - chmod -R go+rX /usr/share/tails-iuk + sudo -H -u tails-upgrade-frontend \ + gpg --batch --import \ + /usr/share/doc/tails/website/tails-signing-minimal.key echo "- importing Tails help desk's GnuPG key into WhisperBack's keyring" gpg --batch --no-default-keyring \ diff --git a/config/chroot_local-includes/lib/systemd/system/user@1000.service.d/timeout.conf b/config/chroot_local-includes/lib/systemd/system/user@1000.service.d/timeout.conf new file mode 100644 index 0000000000000000000000000000000000000000..6c95212aad88166bba1f2ee5ce977a1fddb8534d --- /dev/null +++ b/config/chroot_local-includes/lib/systemd/system/user@1000.service.d/timeout.conf @@ -0,0 +1,3 @@ +[Service] +# Don't let the Upgrader block the reboot after applying an upgrade +TimeoutStopSec=10 diff --git a/config/chroot_local-includes/usr/lib/tmpfiles.d/tails-upgrader.conf b/config/chroot_local-includes/usr/lib/tmpfiles.d/tails-upgrader.conf index fd4cb3d5922283045b471edd6a2feb61f9a41385..c6125870016c9dc46e03b29cf9f85f30f108b45c 100644 --- a/config/chroot_local-includes/usr/lib/tmpfiles.d/tails-upgrader.conf +++ b/config/chroot_local-includes/usr/lib/tmpfiles.d/tails-upgrader.conf @@ -1,3 +1,2 @@ # Type Path Mode UID GID Age Argument d /run/tails-upgrader 00775 root tails-upgrade-frontend - - -d /usr/share/tails-iuk/trusted_gnupg_homedir 00700 root root - - diff --git a/config/chroot_local-includes/usr/local/bin/keepassxc b/config/chroot_local-includes/usr/local/bin/keepassxc index 7f1ecfb662cb7b0021e7fd19868ac6a34bfe4aeb..8e518576b2a355e118bc9cfdd0a7ebd7dfa7f0bf 100755 --- a/config/chroot_local-includes/usr/local/bin/keepassxc +++ b/config/chroot_local-includes/usr/local/bin/keepassxc @@ -27,10 +27,10 @@ Renaming it to <i>keepassx.kdbx</i> would allow <i>KeePassXC</i> to open it auto } # Database file is not named keepassx.kdbx, prompt for renaming it. -if mountpoint -q "$PERSISTENT_DATA_DIR" && \ +if [ -z "$@" ] && mountpoint -q "$PERSISTENT_DATA_DIR" && \ ! [ -e "${NEW_DB}" ] && \ - [ "$(find "$PERSISTENT_DATA_DIR" -maxdepth 1 -name '*.kdbx' 2>/dev/null | wc -l)" = "1" ]; then - user_db="$(find "$PERSISTENT_DATA_DIR" -maxdepth 1 -name '*.kdbx' 2>/dev/null)" + [ "$(find "$PERSISTENT_DATA_DIR" -maxdepth 1 -name '*.kdbx' ! -name '*.old.kdbx' 2>/dev/null | wc -l)" = "1" ]; then + user_db="$(find "$PERSISTENT_DATA_DIR" -maxdepth 1 -name '*.kdbx' ! -name '*.old.kdbx' 2>/dev/null)" if ! [ -e "${PERSISTENT_DATA_DIR}/.no_keepassx_db_renaming" ] \ && prompt_for_database_renaming "${user_db}"; then mv "${user_db}" "${NEW_DB}" diff --git a/config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper b/config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper index 1a738f40d14654e6a0132a77e0ccdde0af738ace..0c5754d7cab40e6f4b52d6a0829f500fff823ded 100755 --- a/config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper +++ b/config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper @@ -29,7 +29,10 @@ CMD = os.path.basename(sys.argv[0]) TORDATE_DIR = '/run/tordate' TORDATE_DONE_FILE = '{}/done'.format(TORDATE_DIR) INOTIFY_TIMEOUT = 60 -MIN_AVAILABLE_MEMORY = (300 * 1024 * 1024) # In Bytes +# While running iuk.git:features/frontend: +# - tails-upgrade-frontend never uses more than 100 * 10^6 bytes +# - tails-iuk-get-upgrade-description never uses more than 95 * 10^6 bytes +MIN_AVAILABLE_MEMORY = (200 * 1024 * 1024) # In Bytes RUN_AS_USER = 'tails-upgrade-frontend' ERROR_MESSAGE = gettext('''\"<b>Not enough memory available to check for upgrades.</b> @@ -61,7 +64,7 @@ def main(*args): ( "/bin/sh", "-c", "xhost +SI:localuser:{user};" - "sudo -u {user} /usr/bin/tails-upgrade-frontend {args};" + "sudo -u {user} /usr/local/bin/tails-upgrade-frontend {args};" "xhost -SI:localuser:{user}".format(user=RUN_AS_USER, args=" ".join(args)) ) ) diff --git a/config/chroot_local-includes/usr/local/sbin/live-persist b/config/chroot_local-includes/usr/local/sbin/live-persist index 656a18c7fd8989468b5ec52f91b8e0c309b5b6f4..ce0c6d9dd46628a25a6d0401c880cf53a176b260 100755 --- a/config/chroot_local-includes/usr/local/sbin/live-persist +++ b/config/chroot_local-includes/usr/local/sbin/live-persist @@ -259,14 +259,20 @@ disable_and_create_empty_persistence_conf_file () { local conf="$1" local mode="$2" + local dest="${conf}.insecure_disabled" if [ -z "$mode" ] then mode=0600 fi - mv "$conf" "${conf}.insecure_disabled" \ - || error "Failed to disable '$conf': $?" + if [ -s "$conf" ] + then + mv "$conf" "$dest" || error "Failed to disable '$conf': $?" + else + rm "$conf" || error "Failed to delete '$conf': $?" + fi + create_empty_persistence_conf_file "$conf" "$mode" } diff --git a/config/chroot_local-includes/usr/share/tails/build/passwd b/config/chroot_local-includes/usr/share/tails/build/passwd index f40930bb40d04056b952293f1e6543fa2cd355f1..abd50981e21f68f400ddb9bc4d643087678fe6f7 100644 --- a/config/chroot_local-includes/usr/share/tails/build/passwd +++ b/config/chroot_local-includes/usr/share/tails/build/passwd @@ -34,6 +34,6 @@ tails-persistence-setup:x:115:122::/home/tails-persistence-setup:/usr/sbin/nolog clearnet:x:114:123::/home/clearnet:/usr/sbin/nologin htp:x:116:124::/home/htp:/usr/sbin/nologin tails-iuk-get-target-file:x:117:125::/home/tails-iuk-get-target-file:/usr/sbin/nologin -tails-upgrade-frontend:x:118:126::/home/tails-upgrade-frontend:/usr/sbin/nologin +tails-upgrade-frontend:x:118:126::/var/lib/tails-upgrade-frontend:/usr/sbin/nologin tor-launcher:x:119:127::/home/tor-launcher:/usr/sbin/nologin tails-install-iuk:x:120:128::/home/tails-install-iuk:/usr/sbin/nologin diff --git a/config/chroot_local-patches/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 similarity index 100% rename from config/chroot_local-patches/run_t-p-s_as_its_dedicated_user.diff rename to config/chroot_local-includes/usr/share/tails/build/run_t-p-s_as_its_dedicated_user.diff 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 1e27c35d7ce387c4e16fabf7f68c31a8b86b9682..ddb0a5db274d7e48c7ac7baaae9eae85a8479f87 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.2-build2/ +http://torbrowser-archive.tails.boum.org/9.0.4-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 e7f4847945b08dc37089b80030cfd8d19dcb57b6..019b7bcd5b066abf8edf8b319c9eed5dd166921b 100644 --- a/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt +++ b/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt @@ -1,32 +1,2 @@ -88c739f9525fc4b5b70b825ff8d9bb9dabcdcf3728cbaa3bd02c11afae53e8f6 tor-browser-linux64-9.0.2_ar.tar.xz -503a38403af3380e012a1253151f7d151a1437849a34a5282dd9dc5dab8dfcc8 tor-browser-linux64-9.0.2_ca.tar.xz -e79ae559f71614877c8cb5c57b03585858b6a44821f1dbfbe46cddf31f2244c6 tor-browser-linux64-9.0.2_cs.tar.xz -e864db5638ec5ca9a2e56683c7164cf2c00d6f34a3d1d0046f4b7d64d30ce95b tor-browser-linux64-9.0.2_da.tar.xz -4a2304afcbcb3d9a0a8f71a79ab1705139ec2f254b3f892de153a327e2644e21 tor-browser-linux64-9.0.2_de.tar.xz -efa56988c13fd6fbd6907152d8280d12aa15c142411c1c2d2ca0092105181fe7 tor-browser-linux64-9.0.2_el.tar.xz -0b2617471dcdfbf264a1bc791b2be8599b11dd685c1e91b6e79f1fa9e1c5b6f5 tor-browser-linux64-9.0.2_en-US.tar.xz -6bfb675e7e30783162cd248c066b74d5eccbf286edf3503cd4259a988597b06e tor-browser-linux64-9.0.2_es-AR.tar.xz -21cf363515605b71febe37e31362ba35fa8794092778561dc0d117b42abe12f7 tor-browser-linux64-9.0.2_es-ES.tar.xz -8f840b6120f1c61aa4b30cdebc22bdd07fc8bae5d406116324299b172a63c049 tor-browser-linux64-9.0.2_fa.tar.xz -5cd599710da92b746ff6d90aa0e83f42f841c64268a4b66a68a7b8cf4edf1e4d tor-browser-linux64-9.0.2_fr.tar.xz -f40a887dff5949c24f82ed97bda1fa1008d377858472398759ca28165d9cc846 tor-browser-linux64-9.0.2_ga-IE.tar.xz -7e61742c4dc0b32c1b2d14f691a0de03281f1401ca0bbcddc5122bf6e76156c7 tor-browser-linux64-9.0.2_he.tar.xz -da17e25749e57a35d8dc52ae66b3086bf4826f24e1a029072553012572f3ec10 tor-browser-linux64-9.0.2_hu.tar.xz -6c47fc80ce16a60cb4cbb84be013fc56bab5573ab3081a4f1c8c20c20f3f2791 tor-browser-linux64-9.0.2_id.tar.xz -b4a4c361aacebb95fe2f88312abf3558cf0d49f79f6b24a387500688887fe7b4 tor-browser-linux64-9.0.2_is.tar.xz -ec150281b082a1dbc41f2b663c04f8d93cef63b677ae39eafd62ed828504c1f0 tor-browser-linux64-9.0.2_it.tar.xz -59d49c87ca193882307a407ae1f08c291c04b10712fc06a4471f3b255ec1b988 tor-browser-linux64-9.0.2_ja.tar.xz -4fbe0c16d410e027ee22592aebba3b66d14f1f8ead0b36be6efe5bd8187aec9f tor-browser-linux64-9.0.2_ka.tar.xz -fcfa44269e7b3ce73115dd746b48610b6cc476d3d8f42c11bcb124a990f13a04 tor-browser-linux64-9.0.2_ko.tar.xz -d98e26bb8b647e3eb86cdcecee79dc2e342035a4e0ace5eb0d07f69a17ee7ccc tor-browser-linux64-9.0.2_mk.tar.xz -09384f67e05372fb6ab8f079bf99a86ff8df3094df543edf14de76211eba2c54 tor-browser-linux64-9.0.2_nb-NO.tar.xz -532fa59b4b084d1b0bff3aec655dd7d9679b7ffc596b98e3b03cf0b9038c864d tor-browser-linux64-9.0.2_nl.tar.xz -09721ff6e933851d477bf5e6f2ebc353c3bac4ee32db338776abe425b30b4a41 tor-browser-linux64-9.0.2_pl.tar.xz -e84c4c6160a9c01d3507ec0a21353361ad6b7330538328ce584dad661eadf31a tor-browser-linux64-9.0.2_pt-BR.tar.xz -e6f907c543184629dc28cebd51b23f76978a779b90f383c7fa90a225c7723214 tor-browser-linux64-9.0.2_ro.tar.xz -174f7ddadf267ed076d9227ed7f65a4cee856e7d59b585b260f6dea837a9ed60 tor-browser-linux64-9.0.2_ru.tar.xz -88df1baadc368c5e0bc18225cf8e6e6bb62e7bc91eb6b3bdbe0184e3f85d2f4d tor-browser-linux64-9.0.2_sv-SE.tar.xz -b5fc4185b9dc4f8f4e615aafd02fc50dff4a1f9e7125058e0eaf2afbc09d3f92 tor-browser-linux64-9.0.2_tr.tar.xz -790cec1066073c593b83e5b34c42daf5c683177f68c73f761340b8106ad574b2 tor-browser-linux64-9.0.2_vi.tar.xz -6fdedf602adfa53bd105302ff5773341897e2acdc91663894fe173b479563f58 tor-browser-linux64-9.0.2_zh-CN.tar.xz -e110b592f4d6efca652250d90ce6b09b0320adb00dea373b367dbf00e9107516 tor-browser-linux64-9.0.2_zh-TW.tar.xz +53c85059445eff023e7e5ed4749dfdf12b328353e82a4c7263f010120570f493 tor-browser-linux64-9.0.4_en-US.tar.xz +7c83a6f2b679e4d8f8ee7b2cb2cae01a12ef31987688f3c450733f715973405d langpacks-tor-browser-linux64-9.0.4.tar.xz diff --git a/config/chroot_local-includes/usr/src/iuk/.gitignore b/config/chroot_local-includes/usr/src/iuk/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..acf9f0fbec8b27747768bb66edbdec08ab9c06da --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/.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-IUK-* +*.bak +debian/ +*.mo diff --git a/config/chroot_local-includes/usr/src/iuk/.plsense b/config/chroot_local-includes/usr/src/iuk/.plsense new file mode 100644 index 0000000000000000000000000000000000000000..68d988414371f6af2c4688837c55f00c436224ca --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/.plsense @@ -0,0 +1 @@ +lib-path=lib diff --git a/config/chroot_local-includes/usr/src/iuk/MANIFEST.SKIP b/config/chroot_local-includes/usr/src/iuk/MANIFEST.SKIP new file mode 100644 index 0000000000000000000000000000000000000000..f2f854e2c3c227d0c19e0fe360799eb2cb2d34c2 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/MANIFEST.SKIP @@ -0,0 +1,5 @@ +^cover_db +~$ +^debian +\.bak$ +\.old$ diff --git a/config/chroot_local-includes/usr/src/iuk/README b/config/chroot_local-includes/usr/src/iuk/README new file mode 100644 index 0000000000000000000000000000000000000000..ad96e5f7ac5a1ced20ab2ab13d7c10ef2c33275e --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/README @@ -0,0 +1,24 @@ +Test suite +========== + +Some parts of the test suite need to run some commands using +passwordless sudo. Most of it contents itself with cached sudo +credentials, but some parts change the TTY, so if the tty_tickets sudo +option is enabled, then one needs to explicitly allow running, as +root, using passwordless sudo, the following commands: /bin/chmod, /bin/mount, /bin/rm. + +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/>. diff --git a/config/chroot_local-includes/usr/src/iuk/bin/tails-create-iuk b/config/chroot_local-includes/usr/src/iuk/bin/tails-create-iuk new file mode 100755 index 0000000000000000000000000000000000000000..d7a249da1b53df18d603de461276a97ac3f6221a --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/bin/tails-create-iuk @@ -0,0 +1,24 @@ +#!/usr/bin/perl + +=head1 NAME + +tails-create-iuk - create an Incremental upgrade Kit + +=head1 VERSION + +Version + +=cut + +use strictures 2; +use 5.10.1; + +our $VERSION = '4.0.3'; + +use FindBin; +use lib "$FindBin::Bin/../lib"; + +use Tails::IUK; + +umask 022; +Tails::IUK->new_with_options()->run; diff --git a/config/chroot_local-includes/usr/src/iuk/bin/tails-install-iuk b/config/chroot_local-includes/usr/src/iuk/bin/tails-install-iuk new file mode 100755 index 0000000000000000000000000000000000000000..a3381c6e6c6a747948d3b408f90ece2a0b9bd3de --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/bin/tails-install-iuk @@ -0,0 +1,18 @@ +#!/usr/bin/perl + +=head1 NAME + +tails-install-iuk - install an Incremental Upgrade Kit + +=cut + +use strictures 2; +use 5.10.1; + +use FindBin; +use lib "$FindBin::Bin/../lib"; + +use Tails::IUK::Install; + +my $iuk = pop; +Tails::IUK::Install->new_with_options(from_file => $iuk)->run; diff --git a/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-check-upgrade-description-file b/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-check-upgrade-description-file new file mode 100755 index 0000000000000000000000000000000000000000..bda29ba9dc6918fe600e9e9b7581d825a0a6e3ec --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-check-upgrade-description-file @@ -0,0 +1,62 @@ +#!/usr/bin/perl + +=head1 NAME + +tails-iuk-check-upgrade-description-file - check correctness of upgrade-description files + +=cut + +use strictures 2; +use 5.10.1; + +use FindBin; +use lib "$FindBin::Bin/../lib"; + +use Carp; +use Carp::Assert; +use Carp::Assert::More; +use Data::Dumper::Concise; +use File::Temp qw{tempdir}; +use IPC::Run qw{run}; +use Path::Tiny; +use Tails::IUK::UpgradeDescriptionFile; +use Tails::IUK::Utils; + +my @input_filenames = @ARGV; +assert_nonempty(\@input_filenames); + +assert_exists( + \%ENV, 'TAILS_SIGNATURE_KEY', q{TAILS_SIGNATURE_KEY is in the environment} +); +assert_nonblank( + $ENV{TAILS_SIGNATURE_KEY}, q{TAILS_SIGNATURE_KEY variable is not empty} +); +my $trusted_gnupg_homedir = Path::Tiny->tempdir; +run [qw{gpg --batch --quiet --export}, $ENV{TAILS_SIGNATURE_KEY}], + '|', [qw{gpg --batch --quiet --homedir}, $trusted_gnupg_homedir, '--import']; + +my @failed; +for my $input_filename (@input_filenames) { + say STDERR "Checking '$input_filename'..."; + + my $upgrade_description = Tails::IUK::UpgradeDescriptionFile->new_from_file( + filename => $input_filename + ); + assert_isa($upgrade_description, 'Tails::IUK::UpgradeDescriptionFile'); + + my $signature_file = path($input_filename . '.pgp'); + assert(-e $signature_file, "Signature for '$input_filename' exists."); + my $description_txt = path($input_filename)->slurp; + my $signature_txt = $signature_file->slurp; + if (! verify_signature($description_txt, $signature_txt, $trusted_gnupg_homedir)) { + push @failed, "$signature_file"; + } +} + +if (@failed) { + croak "\nThe following signatures were invalid!:\n" + . Dumper(@failed) . "\nFAIL!"; +} +else { + say STDERR "All input files are well-formed upgrade-description files."; +} diff --git a/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-generate-upgrade-description-files b/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-generate-upgrade-description-files new file mode 100755 index 0000000000000000000000000000000000000000..02614e6e245a663eb7745d1626c2535e95e73935 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-generate-upgrade-description-files @@ -0,0 +1,16 @@ +#!/usr/bin/perl + +=head1 NAME + +tails-iuk-generate-upgrade-description-file - create and update upgrade-description files + +=cut + +use strictures 2; +use 5.10.1; + +use FindBin; +use lib "$FindBin::Bin/../lib"; + +use Tails::IUK::UpgradeDescriptionFile::Generate; +Tails::IUK::UpgradeDescriptionFile::Generate->new_with_options()->run; diff --git a/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-get-target-file b/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-get-target-file new file mode 100755 index 0000000000000000000000000000000000000000..acd004fa926fd4b2fcdc7e48962c676938fda16f --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-get-target-file @@ -0,0 +1,17 @@ +#!/usr/bin/perl + +=head1 NAME + +tails-iuk-get-target-file - download and verify a target file + +=cut + +use strictures 2; +use 5.10.1; + +use FindBin; +use lib "$FindBin::Bin/../lib"; + +use Tails::IUK::TargetFile::Download; + +Tails::IUK::TargetFile::Download->new_with_options()->run; diff --git a/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-get-upgrade-description-file b/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-get-upgrade-description-file new file mode 100755 index 0000000000000000000000000000000000000000..8c237415f0d81701ac500e606afef08757804603 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-get-upgrade-description-file @@ -0,0 +1,17 @@ +#!/usr/bin/perl + +=head1 NAME + +tails-iuk-get-upgrade-description-file - download, verify and output an upgrade description file + +=cut + +use strictures 2; +use 5.10.1; + +use FindBin; +use lib "$FindBin::Bin/../lib"; + +use Tails::IUK::UpgradeDescriptionFile::Download; + +Tails::IUK::UpgradeDescriptionFile::Download->new_with_options()->run; diff --git a/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-mktemp-get-target-file b/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-mktemp-get-target-file new file mode 100755 index 0000000000000000000000000000000000000000..4b2439b57e2fdacaf8f08b54d54d4a4257f8b4d8 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-mktemp-get-target-file @@ -0,0 +1,6 @@ +#!/bin/sh + +set -e +directory=$(mktemp --directory) +chmod 755 "$directory" +echo "$directory" diff --git a/config/chroot_local-includes/usr/src/iuk/bin/tails-shutdown-network b/config/chroot_local-includes/usr/src/iuk/bin/tails-shutdown-network new file mode 100755 index 0000000000000000000000000000000000000000..1ecce5b1b61d67fd7b2e7b7720a83201ffa50c24 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/bin/tails-shutdown-network @@ -0,0 +1,29 @@ +#!/bin/sh + +service tor stop +service networking stop +service network-manager stop + +# Do *not* 'set -e' earlier: +# 1. We don't run Vidalia in Windows Camouflage mode, so 'set -e' +# would entirely break incremental upgrades (#9413); +# 2. As long as network access is blocked with the following iptables commands, +# we should be fine => let's treat potential previous errors as non-fatal, +# as a way to make incremental upgrades generally more robust against +# potentially misbehaving service management. +set -e + +iptables -P INPUT DROP +iptables -P FORWARD DROP +iptables -P OUTPUT DROP + +iptables -t nat -P PREROUTING ACCEPT +iptables -t nat -P INPUT ACCEPT +iptables -t nat -P OUTPUT ACCEPT +iptables -t nat -P POSTROUTING ACCEPT + +iptables -F +iptables -X + +iptables -t nat -F +iptables -t nat -X diff --git a/config/chroot_local-includes/usr/src/iuk/bin/tails-upgrade-frontend b/config/chroot_local-includes/usr/src/iuk/bin/tails-upgrade-frontend new file mode 100755 index 0000000000000000000000000000000000000000..de64b9e1f7e78ffd576b8a48a4dd1b165b28873d --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/bin/tails-upgrade-frontend @@ -0,0 +1,18 @@ +#!/usr/bin/perl + +=head1 NAME + +tails-upgrade-frontend - lead Tails user through the process of upgrading the system, if needed + +=cut + +use strictures 2; +use 5.10.1; + +use FindBin; +use lib "$FindBin::Bin/../lib"; + +use Tails::IUK::Frontend; + +umask 022; +Tails::IUK::Frontend->new_with_options()->run; diff --git a/config/chroot_local-includes/usr/src/iuk/dist.ini b/config/chroot_local-includes/usr/src/iuk/dist.ini new file mode 100644 index 0000000000000000000000000000000000000000..0c86fcc5c766a103b2c7773a093f74c901d32794 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/dist.ini @@ -0,0 +1,50 @@ +name = Tails-IUK +version = 4.0 +main_module = bin/tails-create-iuk +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] +module_finder = :InstallModules +module_finder = :ExecFiles +script_finder = :InstallModules +script_finder = :ExecFiles + +; Managed in config/chroot_local-packageslists/tails-perl5lib.list +[Prereqs] + +[Prereqs / BuildRequires] + +[Prereqs / TestRequires] +File::Find::Rule = 0.33 +GnuPG::Interface = 0.43 +HTTP::Server::Simple = 0.43 +HTTP::Server::Simple::Static = 0.07 +IO::Socket::SSL = 1.33 +Module::Pluggable::Object = 3.9 +Sys::Filesystem = 1.28 +Test::BDD::Cucumber = 0.16 +Test::EOL = 0.9 +Test::Fatal = 0.010 +Test::Most = 0.22 +Test::Perl::Critic = 1.02 +Test::Spec = 0.40 diff --git a/config/chroot_local-includes/usr/src/iuk/features/create/Create.feature b/config/chroot_local-includes/usr/src/iuk/features/create/Create.feature new file mode 100644 index 0000000000000000000000000000000000000000..05bceb6401c2371c87d34c3b650dec05da4960a2 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/features/create/Create.feature @@ -0,0 +1,99 @@ +Feature: create an IUK + As a Tails developer, + when I have prepared a new release, + I want to build an IUK from the previous Tails release to the new one. + + Background: + Given a usable temporary directory + + Scenario: create an IUK + Given an old ISO image + And a new ISO image + When I create an IUK + Then the created IUK is a SquashFS image + Then the overlay directory in the saved IUK contains a SquashFS diff + And the overlay directory contains an upgraded syslinux configuration + And all files in the saved IUK belong to owner 0 and group 0 + + Scenario: create an IUK with deleted files in a monitored directory of the ISO filesystem + Given an old ISO image that contains file "live/a" + And a new ISO image that does not contain file "live/a" + When I create an IUK + Then the delete_files list contains "live/a" + + Scenario: create an IUK with deleted files in a non-monitored directory of the ISO filesystem + Given an old ISO image that contains file "whatever.dir/a" + And a new ISO image that does not contain file "whatever.dir/a" + When I create an IUK + Then the delete_files list does not contain "whatever.dir/a" + + Scenario: create an IUK from identical ISO images + Given two identical ISO images + When I create an IUK + Then the delete_files list is empty + And the overlay directory contains an upgraded syslinux configuration + + Scenario: create an IUK when the kernel was not upgraded + Given two ISO images that contain the same set of kernels + When I create an IUK + Then the overlay directory in the saved IUK does not contain "live/vmlinuz" + And the overlay directory in the saved IUK does not contain "live/initrd.img" + And the overlay directory in the saved IUK does not contain "live/vmlinuz2" + And the overlay directory in the saved IUK does not contain "live/initrd2.img" + And the overlay directory contains an upgraded syslinux configuration + + Scenario: create an IUK when the kernel was upgraded + Given two ISO images when the kernel was upgraded + When I create an IUK + Then the overlay directory in the saved IUK contains "live/vmlinuz" + And the overlay directory in the saved IUK contains "live/initrd.img" + And the overlay directory in the saved IUK does not contain "filesystem.squashfs" + And the overlay directory in the saved IUK does not contain "filesyst.squ" + And the overlay directory contains an upgraded syslinux configuration + + Scenario: create an IUK when a new kernel was added + Given two ISO images when a new kernel was added + When I create an IUK + Then the overlay directory in the saved IUK does not contain "live/vmlinuz" + And the overlay directory in the saved IUK does not contain "live/initrd.img" + And the overlay directory in the saved IUK contains "live/vmlinuz2" + And the overlay directory in the saved IUK contains "live/initrd2.img" + And the overlay directory contains an upgraded syslinux configuration + + Scenario: create an IUK when new files have appeared in filesystem.squashfs + Given an old ISO image whose filesystem.squashfs does not contain file "A" + And a new ISO image whose filesystem.squashfs contains file "A" owned by www-data + When I create an IUK + Then the saved IUK contains a SquashFS that contains file "A" owned by www-data + + Scenario: create an IUK when files have disappeared from filesystem.squashfs + Given an old ISO image whose filesystem.squashfs contains file "A" + And a new ISO image whose filesystem.squashfs does not contains file "A" + When I create an IUK + Then the saved IUK contains a SquashFS that deletes file "A" + + Scenario: create an IUK when files have been upgraded in filesystem.squashfs + Given an old ISO image whose filesystem.squashfs contains file "A" modified at 1333333333 + And a new ISO image whose filesystem.squashfs contains file "A" modified at 1336666666 + When I create an IUK + Then the saved IUK contains a SquashFS that contains file "A" modified at 1336666666 + + Scenario: create an IUK when the bootloader configuration was not upgraded + Given two ISO images that contain the same bootloader configuration + When I create an IUK + Then the saved IUK contains an "overlay" directory + And the overlay directory contains an upgraded syslinux configuration + + Scenario: create an IUK when the bootloader configuration was upgraded + Given two ISO images that do not contain the same bootloader configuration + When I create an IUK + Then the saved IUK contains the new bootloader configuration + And the overlay directory contains an upgraded syslinux configuration + + Scenario: create an IUK without passing a product name + + Scenario: create an IUK whithout passing an old version number + + Scenario: create an IUK whithout passing a new version number + + Scenario: create an IUK whithout passing a build target 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 new file mode 100755 index 0000000000000000000000000000000000000000..732b81f88118e1fbcfbda44fb3afecce52d20cfb --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/features/create/step_definitions/Create_steps.pl @@ -0,0 +1,533 @@ +#!perl + +use strictures 2; + +use lib "lib"; + +use Carp; +use Carp::Assert; +use Cwd; +use Data::Dumper; +use English qw{-no_match_vars}; +use Function::Parameters; +use IPC::System::Simple qw{capture capturex systemx $EXITVAL EXIT_ANY}; +use Test::More; +use Test::BDD::Cucumber::StepFile; + +use Path::Tiny; +use Types::Path::Tiny qw{Path}; + +use Tails::IUK; +use Tails::IUK::Read; + + +my $bindir = path(__FILE__)->parent->parent->parent->parent->child('bin')->absolute; +use Env qw{@PATH}; +unshift @PATH, $bindir; + +my $union_type = $ENV{UNION_TYPE} // 'aufs'; + +Given qr{^a usable temporary directory$}, fun ($c) { + my $dirname = Path::Tiny->tempdir(CLEANUP => 0); + $c->{stash}->{scenario}->{tempdir} = $dirname; + ok(defined($dirname)); +}; + +fun inject_new_bootloader_bits_into($dir) { + for (qw{EFI/BOOT/bootx64.efi utils/linux/syslinux}) { + my $injected_file = path($dir, $_); + $injected_file->parent->mkpath; + $injected_file->touch; + ok($injected_file->is_file); + } +} + +fun geniso($srcdir, $outfile) { + path($srcdir, 'isolinux')->mkpath; + assert(path($srcdir, 'isolinux')->is_dir); + path($srcdir, 'isolinux', 'isolinux.cfg')->spew( + "bla\n bli/isolinux/blu\n\n\n bla/isolinux/" + ); + assert(path($srcdir, 'isolinux', 'isolinux.cfg')->exists); + + path($srcdir, 'live')->mkpath; + if (! -e path($srcdir, 'live', 'filesystem.squashfs')) { + my $squashfs_tempdir = Path::Tiny->tempdir; + # an empty SquashFS is invalid + path($squashfs_tempdir, '.placeholder')->touch; + capture("mksquashfs '$squashfs_tempdir' '$srcdir/live/filesystem.squashfs' -no-progress 2>/dev/null"); + } + capture(EXIT_ANY, + "genisoimage --quiet -J -l -cache-inodes -allow-multidot -o '$outfile' '$srcdir' 2>/dev/null"); + $EXITVAL == 0 +} + +Given qr{^(an old|a new) ISO image(?: that does not contain file "([^"]+)")?$}, fun ($c) { + my $generation = $c->matches->[0] eq 'an old' ? 'old' : 'new'; + my $file = $c->matches->[1]; + my $basename = $generation eq 'old' ? 'old.iso' : 'new.iso'; + my $filename = path($c->{stash}->{scenario}->{tempdir}, $basename); + my $iso_tempdir = Path::Tiny->tempdir; + if (defined $file) { + assert(length $file); + ok(! -e path($iso_tempdir, $file)); + } + inject_new_bootloader_bits_into($iso_tempdir) if $generation eq 'new'; + ok(geniso($iso_tempdir, $filename)); +}; + +Given qr{^(an old|a new) ISO image that contains file "([^"]+)"$}, fun ($c) { + my $generation = $c->matches->[0]; + my $file = $c->matches->[1]; + my $basename = $generation eq 'an old' ? 'old.iso' : 'new.iso'; + my $filename = path($c->{stash}->{scenario}->{tempdir}, $basename); + my $iso_tempdir = Path::Tiny->tempdir; + my $file_in_iso = path($iso_tempdir, $file); + $file_in_iso->parent->mkpath(); + $file_in_iso->touch; + ok($file_in_iso->is_file); + inject_new_bootloader_bits_into($iso_tempdir) if $generation eq 'new'; + ok(geniso($iso_tempdir, $filename)); +}; + +Given qr{^(?:two identical ISO images|two ISO images that contain the same set of kernels|two ISO images that contain the same bootloader configuration)$}, fun ($c) { + for my $generation (qw{old new}) { + my $basename = $generation.'.iso'; + my $filename = path($c->{stash}->{scenario}->{tempdir}, $basename); + my $iso_tempdir = Path::Tiny->tempdir; + path($iso_tempdir, 'live')->mkpath; + inject_new_bootloader_bits_into($iso_tempdir); + geniso($iso_tempdir, $filename) or croak "Failed to generate ISO image."; + } + ok( + -f path($c->{stash}->{scenario}->{tempdir}, 'old.iso') + && -f path($c->{stash}->{scenario}->{tempdir}, 'new.iso') + ); +}; + +Given qr{^two ISO images when the kernel was upgraded$}, fun ($c) { + for my $generation (qw{old new}) { + my $basename = $generation.'.iso'; + my $filename = path($c->{stash}->{scenario}->{tempdir}, $basename); + my $iso_tempdir = Path::Tiny->tempdir; + path($iso_tempdir, 'live')->mkpath; + for (qw{vmlinuz initrd.img}) { + path($iso_tempdir, 'live', $_)->spew($generation); + } + inject_new_bootloader_bits_into($iso_tempdir) if $generation eq 'new'; + geniso($iso_tempdir, $filename) or croak "Failed to generate ISO image."; + } + + ok( + -f path($c->{stash}->{scenario}->{tempdir}, 'old.iso') + && -f path($c->{stash}->{scenario}->{tempdir}, 'new.iso') + ); +}; + +Given qr{^two ISO images when a new kernel was added$}, fun ($c) { + for my $generation (qw{old new}) { + my $basename = $generation.'.iso'; + my $filename = path($c->{stash}->{scenario}->{tempdir}, $basename); + my $iso_tempdir = Path::Tiny->tempdir; + path($iso_tempdir, 'live')->mkpath; + for (qw{vmlinuz initrd.img}) { + path($iso_tempdir, 'live', $_)->spew("same content"); + } + if ($generation eq 'new') { + for (qw{vmlinuz2 initrd2.img}) { + path($iso_tempdir, 'live', $_)->spew($generation); + } + inject_new_bootloader_bits_into($iso_tempdir); + } + geniso($iso_tempdir, $filename) or croak "Failed to generate ISO image."; + } + + ok( + -f path($c->{stash}->{scenario}->{tempdir}, 'old.iso') + && -f path($c->{stash}->{scenario}->{tempdir}, 'new.iso') + ); +}; + +Given qr{^(an old|a new) ISO image whose filesystem.squashfs( does not|) contains? file "([^"]+)"(?:| modified at ([0-9]+)| owned by ([a-z-]+))$}, fun ($c) { + my $generation = $c->matches->[0] eq 'an old' ? 'old' : 'new'; + my $contains = $c->matches->[1] eq "" ? 1 : 0; + my $file = $c->matches->[2]; + my ($mtime, $owner); + if (defined $c->matches->[3]) { + if ($c->matches->[3] =~ m{\A[0-9]+\z}) { + $mtime = $c->matches->[3]; + } elsif ($c->matches->[3] =~ m{\A[a-z-]+\z}) { + $owner = $c->matches->[3]; + } else { + croak "Test suite implementation error"; + } + } + + my $iso_basename = $generation eq 'old' ? 'old.iso' : 'new.iso'; + my $iso_filename = path($c->{stash}->{scenario}->{tempdir}, $iso_basename); + my $iso_tempdir = Path::Tiny->tempdir; + my $squashfs_tempdir = Path::Tiny->tempdir; + # an empty SquashFS is invalid + path($squashfs_tempdir, '.placeholder')->touch; + if ($contains) { + path($squashfs_tempdir, $file)->parent->mkpath(); + path($squashfs_tempdir, $file)->touch; + utime($mtime, $mtime, path($squashfs_tempdir, $file)) if defined($mtime); + run_as_root('chown', $owner, path($squashfs_tempdir, $file)) if defined($owner); + } + path($iso_tempdir, 'live')->mkpath(); + capture("mksquashfs '$squashfs_tempdir' '$iso_tempdir/live/filesystem.squashfs' -no-progress 2>/dev/null"); + inject_new_bootloader_bits_into($iso_tempdir) if $generation eq 'new'; + ok(geniso($iso_tempdir, $iso_filename)); +}; + +Given qr{^two ISO images that do not contain the same bootloader configuration$}, fun ($c) { + for my $generation (qw{old new}) { + my $basename = $generation.'.iso'; + my $filename = path($c->{stash}->{scenario}->{tempdir}, $basename); + my $iso_tempdir = Path::Tiny->tempdir; + path($iso_tempdir, 'isolinux')->mkpath; + for (qw{live.cfg}) { + path($iso_tempdir, 'isolinux', $_)->spew($generation); + } + inject_new_bootloader_bits_into($iso_tempdir) if $generation eq 'new'; + geniso($iso_tempdir, $filename) or croak "Failed to generate ISO image."; + } + + ok( + -f path($c->{stash}->{scenario}->{tempdir}, 'old.iso') + && -f path($c->{stash}->{scenario}->{tempdir}, 'new.iso') + ); +}; + +When qr{^I create an IUK$}, fun ($c) { + my %args; + $c->{stash}->{scenario}->{squashfs_diff_name} = + 'Tails_amd64_0.11.1_to_0.11.2.squashfs'; + + my $iuk_path = path($c->{stash}->{scenario}->{tempdir}, 'test.iuk'); + + my $cmdline = + # on overlayfs, deleted files are stored using character devices, + # that one needs to be root to create + "sudo SOURCE_DATE_EPOCH=$ENV{SOURCE_DATE_EPOCH} " . + path($bindir, "tails-create-iuk") . + ' --union_type ' . $union_type . + ' --old_iso "' . + path($c->{stash}->{scenario}->{tempdir}, 'old.iso') . '" ' . + ' --new_iso "' . + path($c->{stash}->{scenario}->{tempdir}, 'new.iso') . '"' . + ' --squashfs_diff_name "'.$c->{stash}->{scenario}->{squashfs_diff_name}.'"' . + ' --outfile "' . $iuk_path . '"' + ; + + if (exists $c->{stash}->{scenario}->{squashfs_diff}) { + $cmdline .= + ' --squashfs_diff "' . $c->{stash}->{scenario}->{squashfs_diff} . '"'; + } + + $c->{stash}->{scenario}->{create_output} = capture( + EXIT_ANY, + "umask 077 && $cmdline 2>&1" + ); + $c->{stash}->{scenario}->{create_exit_code} = $EXITVAL; + + $c->{stash}->{scenario}->{create_exit_code} == 0 + or warn $c->{stash}->{scenario}->{create_output}; + + $c->{stash}->{scenario}->{iuk_path} = $iuk_path; + + my $iuk_in = Tails::IUK::Read->new_from_file($iuk_path); + + my @gids = split(/ /, $GID); + system(qw{sudo chown}, "$UID:$gids[0]", $iuk_path); + ${^CHILD_ERROR_NATIVE} == 0 or croak "Could not chown '$iuk_path': $!"; + + $c->{stash}->{scenario}->{iuk_in} = $iuk_in; + ok(defined($iuk_in)); +}; + +Then qr{^the created IUK is a SquashFS image$}, fun ($c) { + system('unsquashfs -l ' . $c->{stash}->{scenario}->{iuk_path} . '>/dev/null 2>&1'); + is(${^CHILD_ERROR_NATIVE}, 0, "The generated IUK is not a SquashFS image"); +}; + +Then qr{^the saved IUK contains a "([^"]*)" file$}, fun ($c) { + my $file = path($c->matches->[0]); + ok($c->{stash}->{scenario}->{iuk_in}->contains_file($file)); +}; + +fun squashfs_contains_only_files_owned_by ($squashfs_filename, $owner, $group) { + map { like( + $_, + qr{ + \A # at the beginning of the string + [-a-z]+ # permissions + [[:space:]]+ + $owner # owner + / + $group # group + [[:space:]]+ + }xms, + "line looks like a file description with owner $owner and group $group" + ) } split(/\n/, `unsquashfs -q -lln '$squashfs_filename'`); +} + +Then qr{^all files in the saved IUK belong to owner 0 and group 0$}, fun ($c) { + ok(squashfs_contains_only_files_owned_by( + $c->{stash}->{scenario}->{iuk_in}->file, + 0, + 0, + )); +}; + +Then qr{^the "([^"]+)" file in the saved IUK contains "([^"]*)"$}, fun ($c) { + my $file = $c->matches->[0]; + my $expected_content = $c->matches->[1]; + is( + $c->{stash}->{scenario}->{iuk_in}->get_content(path($file)), + $expected_content + ); +}; + +fun _file_content_in_iuk_like( + $iuk_in, Path $filename, $regexp, $should_match +) { + assert(defined $iuk_in && defined $filename); + assert(defined $regexp && defined $should_match); + + unless ($iuk_in->contains_file($filename)) { + warn "The IUK does not contain $filename, so we can't check its content."; + return; + } + + my $content = $iuk_in->get_content($filename); + + if ($should_match) { + return $content =~ m{$regexp}xms; + } + else { + return $content !~ m{$regexp}xms; + } +} + +fun file_content_in_iuk_like($iuk_in, Path $filename, $regexp) { + assert(defined $iuk_in && defined $regexp); + _file_content_in_iuk_like(@_, 1); +} + +fun file_content_in_iuk_unlike($iuk_in, Path $filename, $regexp) { + assert(defined $iuk_in && defined $regexp); + _file_content_in_iuk_like(@_, 0); +} + +fun squashfs_in_iuk_contains(:$iuk_in, :$squashfs_name, :$expected_file, + :$expected_mtime, :$expected_owner) { + my $squashfs_path = path('overlay', 'live', $squashfs_name); + die "SquashFS '$squashfs_name' not found in the IUK" + unless $iuk_in->contains_file($squashfs_path); + + my $orig_cwd = getcwd; + my $tempdir = Path::Tiny->tempdir; + chdir $tempdir; + capturex(EXIT_ANY, + # on overlayfs, deleted files are stored using character devices, + # that one needs to be root to create + 'sudo', + "unsquashfs", '-no-progress', + $iuk_in->mountpoint->child($squashfs_path), + $expected_file + ); + my $exists = $EXITVAL == 0 ? 1 : 0; + chdir $orig_cwd; + + # Ensure $tempdir can be cleaned up and the $expected_mtime test can access + # the file it needs to + my @gids = split(/ /, $GID); + systemx( + qw{sudo chown -R}, "$UID:$gids[0]", + $tempdir->child('squashfs-root') + ); + + return unless $exists; + + if (defined $expected_mtime) { + return unless $expected_mtime == $tempdir->child('squashfs-root', $expected_file)->stat->mtime + } + + if (defined $expected_owner) { + return unless $expected_owner eq getpwuid($tempdir->child('squashfs-root', $expected_file)->stat->uid) + } + + return 1; +} + +fun squashfs_in_iuk_deletes($iuk_in, $squashfs_name, $deleted_file) { + my $squashfs_path = path('overlay', 'live', $squashfs_name); + my $orig_cwd = getcwd; + my $tempdir = Path::Tiny->tempdir; + chdir $tempdir; + die "SquashFS '$squashfs_name' not found in the IUK" + unless $iuk_in->contains_file($squashfs_path); + + my $old_dir = Path::Tiny->tempdir; + path($old_dir, $deleted_file)->touch; + + my $new_dir = Path::Tiny->tempdir; + capturex( + # on overlayfs, deleted files are stored using character devices, + # that one needs to be root to create + 'sudo', + "unsquashfs", '-no-progress', "-force", "-dest", $new_dir, + $iuk_in->mountpoint->child($squashfs_path), + ); + chdir $orig_cwd; + + # Ensure $new_dir can be cleaned up + my @gids = split(/ /, $GID); + systemx(qw{sudo chown -R}, "$UID:$gids[0]", $new_dir); + + my $union_basedir = Path::Tiny->tempdir; + my $union_workdir = path($union_basedir, 'work'); + my $union_mountpoint = path($union_basedir, 'mount'); + $_->mkpath for ($union_workdir, $union_mountpoint); + my @mount_args = $union_type eq 'overlayfs' + ? ( + '-t', 'overlay', + '-o', sprintf("noatime,lowerdir=%s,upperdir=%s,workdir=%s", + $old_dir, $new_dir, $union_workdir), + 'overlay' + ) + : ( + '-t', 'aufs', + '-o', sprintf("noatime,noxino,br=%s=rw:%s=rr+wh", $new_dir, $old_dir), + $new_dir + ); + + capturex( + qw{sudo -n mount}, @mount_args, + $union_mountpoint + ); + + my $exists = -e path($union_mountpoint, $deleted_file); + system(qw{sudo umount}, "$union_mountpoint"); + return ! $exists; +} + +Then qr{^the saved IUK contains an? "([^"]+)" directory$}, fun ($c) { + my $dir = $c->matches->[0]; + ok($c->{stash}->{scenario}->{iuk_in}->mountpoint->child($dir)->is_dir); +}; + +fun overlay_directory_in_iuk_contains($iuk_in, $expected_file) { + grep { 'overlay/' . $expected_file eq $_->stringify } $iuk_in->list_files; +} + +Then qr{^the overlay directory in the saved IUK (contains|does not contain) "([^"]+)"$}, fun ($c) { + my $should_contain = $c->matches->[0] eq 'contains'; + my $expected_file = $c->matches->[1]; + + $should_contain ? + ok(overlay_directory_in_iuk_contains( + $c->{stash}->{scenario}->{iuk_in}, + $expected_file, + )) + : + ok(! overlay_directory_in_iuk_contains( + $c->{stash}->{scenario}->{iuk_in}, + $expected_file, + )) +}; + +Then qr{^the delete_files list (contains|does not contain) "([^"]+)"$}, fun ($c) { + my $wanted = $c->matches->[0] eq 'contains' ? 1 : 0; + my $expected_filename = $c->matches->[1]; + + is( + scalar(grep { + $_ eq $expected_filename + } @{$c->{stash}->{scenario}->{iuk_in}->delete_files}), + $wanted + ); +}; + +Then qr{^the delete_files list is empty$}, fun ($c) { + is($c->{stash}->{scenario}->{iuk_in}->delete_files_count, 0); +}; + +Then qr{^the saved IUK contains a SquashFS that contains file "([^"]+)"(?:| modified at ([0-9]+)| owned by ([a-z-]+))$}, fun ($c) { + my $expected_file = $c->matches->[0]; + my ($expected_mtime, $expected_owner); + if (defined $c->matches->[1]) { + if ($c->matches->[1] =~ m{\A[0-9]+\z}) { + $expected_mtime = $c->matches->[1]; + } elsif ($c->matches->[1] =~ m{\A[a-z-]+\z}) { + $expected_owner = $c->matches->[1]; + } else { + croak "Test suite implementation error"; + } + } + + ok(squashfs_in_iuk_contains( + iuk_in => $c->{stash}->{scenario}->{iuk_in}, + squashfs_name => $c->{stash}->{scenario}->{squashfs_diff_name}, + expected_file => $expected_file, + expected_mtime => $expected_mtime, + expected_owner => $expected_owner, + )); +}; + +Then qr{^the overlay directory in the saved IUK contains a SquashFS diff$}, fun ($c) { + ok(overlay_directory_in_iuk_contains( + $c->{stash}->{scenario}->{iuk_in}, + path('live', $c->{stash}->{scenario}->{squashfs_diff_name}), + )); +}; + +Then qr{^the saved IUK contains a SquashFS that deletes file "([^"]+)"$}, fun ($c) { + my $deleted_file = $c->matches->[0]; + + ok(squashfs_in_iuk_deletes( + $c->{stash}->{scenario}->{iuk_in}, + $c->{stash}->{scenario}->{squashfs_diff_name}, + $deleted_file + )); +}; + +Then qr{^the saved IUK contains the new bootloader configuration$}, fun ($c) { + my $live_cfg_path = path('overlay/syslinux/live.cfg'); + is( + $c->{stash}->{scenario}->{iuk_in}->get_content($live_cfg_path), + 'new' + ); +}; + +Then qr{^the overlay directory contains an upgraded syslinux configuration$}, fun ($c) { + my @wanted_files = qw{syslinux/syslinux.cfg EFI/BOOT/bootx64.efi utils/linux/syslinux}; + my @unwanted_files = qw{syslinux/isolinux.cfg}; + + map { + ok(overlay_directory_in_iuk_contains( + $c->{stash}->{scenario}->{iuk_in}, $_, + ), "the overlay directory contains '$_'"); + } @wanted_files; + + map { + ok(! overlay_directory_in_iuk_contains( + $c->{stash}->{scenario}->{iuk_in}, $_, + ), "the overlay directory does not contain '$_'"); + } @unwanted_files; + + ok(file_content_in_iuk_like( + $c->{stash}->{scenario}->{iuk_in}, + path("overlay/syslinux/syslinux.cfg"), + qr{/syslinux/} + ), "overlay/syslinux/syslinux.cfg contains /syslinux/"); + + ok(file_content_in_iuk_unlike( + $c->{stash}->{scenario}->{iuk_in}, + path("overlay/syslinux/syslinux.cfg"), + qr{/isolinux/} + ), "overlay/syslinux/syslinux.cfg does not contain /isolinux/"); + +}; diff --git a/config/chroot_local-includes/usr/src/iuk/features/download_target_file/Download_Target_File.feature b/config/chroot_local-includes/usr/src/iuk/features/download_target_file/Download_Target_File.feature new file mode 100644 index 0000000000000000000000000000000000000000..0aeb793ebe669be9bf060e9b89d7afe3131f22d3 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/features/download_target_file/Download_Target_File.feature @@ -0,0 +1,94 @@ +Feature: download and verify a target file + As a Tails developer + I work on the Tails upgrade system + I want to make sure the IUK downloader and verifier works properly + + Background: + Given a usable temporary directory + And a random port + And another random port + + Scenario: Not enough free space in /tmp + When I download "<file>" (of expected size 1234567890123) from "/", and check its hash is "dummy_hash" + Then it should fail + And I should be told "requires .+ of free space in /tmp/[^,]+, but only .+ is available" + And I should not see the downloaded file in the temporary directory + Examples: + | file | content | + | whatever1.file | abc | + + Scenario: Successful download and verification of a target file + Given a HTTP server that serves "<file>" in "<webdir>" with content "<content>" and hash "<sha256>" + When I download "<file>" (of expected size <size>) from "<webdir>", and check its hash is "<sha256>" + Then it should succeed + And I should see the downloaded file in the temporary directory + And the SHA-256 of the downloaded file should be "<sha256>" + And the downloaded file should be world-readable + Examples: + | file | webdir | content | size | sha256 | + | whatever1.file | / | abc | 3 | ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad | + | whatever2.file | /sub/dir | 123 | 3 | a665a45920422f9d417e4867efdc4fb8a04a1f3fff1fa07e998e86f7f7a27ae3 | + + Scenario: Successful download and verification with redirect to another hostname over HTTPS + Given a HTTP server that redirects to 127.0.0.2 over HTTPS + And a HTTPS server on 127.0.0.2 that serves "<file>" in "<webdir>" with content "<content>" and hash "<sha256>" + When I download "<file>" (of expected size <size>) from "<webdir>", and check its hash is "<sha256>" + Then it should succeed + And I should see the downloaded file in the temporary directory + And the SHA-256 of the downloaded file should be "<sha256>" + Examples: + | file | webdir | content | size | sha256 | + | whatever1.file | / | abc | 3 | ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad | + | whatever2.file | /sub/dir | 123 | 3 | a665a45920422f9d417e4867efdc4fb8a04a1f3fff1fa07e998e86f7f7a27ae3 | + + Scenario: Failed download of a target file from a non-existing server + When I download "<file>" (of expected size 42) from "/", and check its hash is "dummy_hash" + Then it should fail + And I should be told "Could not download '[^']*<file>'" + And I should not see the downloaded file in the temporary directory + Examples: + | file | content | + | whatever1.file | abc | + + Scenario: Failed download of a non-existing target file + Given a HTTP server that does not serve "<file>" in "<webdir>" + When I download "<file>" (of expected size 42) from "<webdir>", and check its hash is "dummy_hash" + Then it should fail + And I should be told "Could not download '[^']*<file>'" + And I should not see the downloaded file in the temporary directory + Examples: + | file | webdir | + | whatever1.file | / | + | whatever2.file | /sub/dir | + + Scenario: Failed verification of a target file with wrong hash + Given a HTTP server that serves "<file>" in "<webdir>" with content "<content>" and hash "<good-sha256>" + When I download "<file>" (of expected size <size>) from "<webdir>", and check its hash is "<bad-sha256>" + Then it should fail + And I should be told "The file '[^']*<file>' was downloaded but its hash is not correct" + And I should not see the downloaded file in the temporary directory + Examples: + | file | webdir | content | size | good-sha256 | bad-sha256 | + | whatever1.file | / | abc | 3 | ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad | I'd rather not to | + | whatever2.file | /sub/dir | 12345 | 5 | 5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5 | I'd rather not to | + + Scenario: Failed download of a target file that is bigger than expected + Given a HTTP server that serves "<file>" in "<webdir>" with size "<size>" and hash "<sha256>" + When I download "<file>" (of expected size <expected_size>) from "<webdir>", and check its hash is "<sha256>" + Then it should fail + And I should be told "Could not download .*[(]Client-Aborted[)]: max_size" + Examples: + | file | webdir | size | expected_size | sha256 | + | whatever1.file | / | 1234567 | 1 | ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad | + | whatever2.file | /sub/dir | 2048 | 2 | a665a45920422f9d417e4867efdc4fb8a04a1f3fff1fa07e998e86f7f7a27ae3 | + + Scenario: Failed download of a target file that is smaller than expected + Given a HTTP server that serves "<file>" in "<webdir>" with size "<size>" and hash "<sha256>" + When I download "<file>" (of expected size <expected_size>) from "<webdir>", and check its hash is "<sha256>" + Then it should fail + And I should be told "The file '[^']*<file>' was downloaded but its size .* should be .*" + And I should not see the downloaded file in the temporary directory + Examples: + | file | webdir | size | expected_size | sha256 | + | whatever1.file | / | 3 | 42 | ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad | + | whatever2.file | /sub/dir | 41 | 42 | a665a45920422f9d417e4867efdc4fb8a04a1f3fff1fa07e998e86f7f7a27ae3 | diff --git a/config/chroot_local-includes/usr/src/iuk/features/download_target_file/step_definitions/Download_Target_File_steps.pl b/config/chroot_local-includes/usr/src/iuk/features/download_target_file/step_definitions/Download_Target_File_steps.pl new file mode 100644 index 0000000000000000000000000000000000000000..147c8f51247e7a6d5ac72d5707c549f3d79e67af --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/features/download_target_file/step_definitions/Download_Target_File_steps.pl @@ -0,0 +1,248 @@ +#!perl + +use strictures 2; + +use lib qw{lib t/lib}; + +use Carp; +use Carp::Assert; +use Carp::Assert::More; +use Cwd; +use Data::Dumper; +use English qw{-no_match_vars}; +use Fcntl ':mode'; +use Function::Parameters; +use Test::More; +use Test::BDD::Cucumber::StepFile; + +use Path::Tiny; +use Test::SslCertificates qw{generate_ssl_privkey generate_self_signed_ssl_cert populate_ssl_template}; +use Test::Util; +use Test::WebServer::RedirectToHTTPS; +use Test::WebServer::Static; +use Test::WebServer::Static::SSL; +use Types::Path::Tiny qw{AbsPath}; + +my $bindir = path(__FILE__)->parent->parent->parent->parent->child('bin')->absolute; + +$ENV{HARNESS_ACTIVE} = 1; + +Given qr{^a usable temporary directory$}, fun ($c) { + my $tempdir = $c->{stash}->{scenario}->{tempdir} = Path::Tiny->tempdir(cleanup => 0); + ok(-d $tempdir); + my $destdir = $c->{stash}->{scenario}->{destdir} = path($tempdir, 'destdir'); + $destdir->mkpath; + ok($destdir->is_dir); +}; + +Given qr{^(a|another) random port$}, fun ($c) { + my $port = 40000 + int(rand(10000)); + my $key = $c->matches->[0] eq 'a' ? 'port' : 'another_port'; + $c->{stash}->{scenario}->{server}->{$key} = $port; + ok(defined $c->{stash}->{scenario}->{server}->{$key}); +}; + +fun prepare_webroot (AbsPath $webroot, $filename, $present, $webdir, $spec_type, $spec_value) { + my ($size, $content); + if (defined $spec_type) { + if ($spec_type eq 'content') { + $content = $spec_value; + } + elsif ($spec_type eq 'size') { + $size = $spec_value; + } + } + + $webroot->mkpath; + ok(-d $webroot->stringify); + + if ($present) { + my $file = path($webroot, $webdir, $filename); + $file->parent->mkpath; + assert($file->parent->is_dir); + assert(defined $content || defined $size); + if (defined $content) { + $file->spew($content); + } + else { + $file->spew("c" x $size); + } + ok(-e $file->stringify); + if (defined $content) { + is($file->slurp, $content); + } + else { + is(-s $file, $size); + } + } +} + +Given qr{^a HTTP server that(| does not) serve[s]? "([^"]+)" in "([^"]+)"(?: with (content|size) "?([^"]*)"?)?}, fun ($c) { + my $present = $c->matches->[0] ? 0 : 1; + my $filename = $c->matches->[1]; + my $webdir = $c->matches->[2]; + my $spec_type = $c->matches->[3]; + my $spec_value = $c->matches->[4]; + + my $webroot = path($c->{stash}->{scenario}->{tempdir}, 'webroot'); + prepare_webroot($webroot, $filename, $present, $webdir, $spec_type, $spec_value); + + my $port = $c->{stash}->{scenario}->{server}->{port}; + my $s = Test::WebServer::Static->new({webroot => $webroot}, $port); + is($s->port(), $port, "Constructor set port correctly"); + my $pid = $c->{stash}->{scenario}->{server}->{http_pid} = $s->background(); + like($pid, '/^-?\d+$/', 'PID is numeric'); +}; + +Given qr{^a HTTP server that redirects to ([^ ]+) over HTTPS$}, fun ($c) { + my $target_hostname = $c->matches->[0]; + + my $port = $c->{stash}->{scenario}->{server}->{port}; + + my $target = sprintf( + "%s:%s", + $target_hostname, + $c->{stash}->{scenario}->{server}->{another_port} + ); + + my $s = Test::WebServer::RedirectToHTTPS->new({ target => $target }, $port); + is($s->port(), $port, "Constructor set port correctly"); + my $pid = $c->{stash}->{scenario}->{server}->{http_pid} = $s->background(); + like($pid, '/^-?\d+$/', 'PID is numeric'); +}; + +Given qr{^a HTTPS server (?:|on ([^ ]+)) that(| does not) serve[s]? "([^"]+)" in "([^"]+)"(?: with (content|size) "?([^"]*)"?)?}, fun ($c) { + my $listen = $c->matches->[0]; + my $present = $c->matches->[1] ? 0 : 1; + my $filename = $c->matches->[2]; + my $webdir = $c->matches->[3]; + my $spec_type = $c->matches->[4]; + my $spec_value = $c->matches->[5]; + $listen //= '127.0.0.1'; + + my $webroot = path($c->{stash}->{scenario}->{tempdir}, 'webroot'); + prepare_webroot($webroot, $filename, $present, $webdir, $spec_type, $spec_value); + + # We don't rely on SSL certificates for target files security, + # so for more robustness, we need to ensure they don't get + # in the way for dumb reasons; basically, we want to skip validation + # in most cases => we try to test the worst case, that is a self-signed + # certificate, whose hostname does not match the server's one. + # It would be even better if it was expired, but apparently certtool + # does not know how to do it, and mocking the system time for OpenSSL + # does not look that easy. + + my $key = path($c->{stash}->{scenario}->{tempdir}, "ssl_privkey") ->stringify; + my $cert = path($c->{stash}->{scenario}->{tempdir}, "ssl_cert") ->stringify; + my $template = path($c->{stash}->{scenario}->{tempdir}, "ssl_template")->stringify; + + populate_ssl_template({ outfile => $template }); + generate_ssl_privkey({ outfile => $key }); + generate_self_signed_ssl_cert({ + outfile => $cert, privkey => $key, template => $template, + }); + + my $port = $c->{stash}->{scenario}->{server}->{another_port}; + my $s = Test::WebServer::Static::SSL->new( + { webroot => $webroot, cert => $cert, key => $key, }, + $port + ); + is($s->port(), $port, "Constructor set port correctly"); + $s->host($listen); + is($s->host(), $listen, "Constructor set host correctly"); + my $pid = $c->{stash}->{scenario}->{server}->{https_pid} = $s->background(); + like($pid, '/^-?\d+$/', 'PID is numeric'); +}; + +When qr{^I download "([^"]+)" \(of expected size (\d+)\) from "([^"]+)", and check its hash is "([^"]+)"$}, fun ($c) { + my $filename = $c->matches->[0]; + my $expected_size = $c->matches->[1]; + my $webdir = $c->matches->[2]; + my $expected_hash = $c->matches->[3]; + + my $uri = sprintf("%s:%d/%s/%s", + "127.0.0.1", + $c->{stash}->{scenario}->{server}->{port}, + $webdir, + $filename); + $uri =~ s{//}{/}gxms; + $uri = "http://$uri"; + + my $output_filename + = $c->{stash}->{scenario}->{output_filename} + = path($c->{stash}->{scenario}->{destdir}, 'output.file'); + + my $cmdline = + path($bindir, "tails-iuk-get-target-file") . + ' --uri "' . $uri . '"' . + ' --hash_type "' . 'sha256' . '"' . + ' --hash_value "' . $expected_hash . '"' . + ' --output_file "' . $output_filename . '"' . + ' --size "' . $expected_size . '"' + ; + $c->{stash}->{scenario}->{output} = `umask 077 && $cmdline 2>&1`; + $c->{stash}->{scenario}->{exit_code} = ${^CHILD_ERROR_NATIVE}; +}; + +Then qr{^it should succeed$}, fun ($c) { + Test::Util::kill_httpd($c); + + ok(defined $c->{stash}->{scenario}->{exit_code}) + and + is($c->{stash}->{scenario}->{exit_code}, 0); + + if (defined $c->{stash}->{scenario}->{exit_code} + && $c->{stash}->{scenario}->{exit_code} != 0 + && exists $c->{stash}->{scenario}->{output} + && defined $c->{stash}->{scenario}->{output}) { + warn $c->{stash}->{scenario}->{output}; + } +}; + +Then qr{^it should fail$}, fun ($c) { + Test::Util::kill_httpd($c); + + ok(defined $c->{stash}->{scenario}->{exit_code}) + and + isnt($c->{stash}->{scenario}->{exit_code}, 0); +}; + +Then qr{^I should be told "([^"]+)"$}, fun ($c) { + my $expected_err = $c->matches->[0]; + like($c->{stash}->{scenario}->{output}, qr{$expected_err}); +}; + +Then qr{^I should(| not) see the downloaded file in the temporary directory$}, fun ($c) { + my $wanted = $c->matches->[0] ? 0 : 1; + + my $output_filename = $c->{stash}->{scenario}->{output_filename}; + $wanted ? ok(-e $output_filename) : ok(! -e $output_filename); +}; + +Then qr{^the SHA-256 of the downloaded file should be "([^"]+)"$}, fun ($c) { + my $expected_hash = $c->matches->[0]; + + my $output_filename = $c->{stash}->{scenario}->{output_filename}; + assert(-e $output_filename); + + my $hash_line = `sha256sum "$output_filename"`; + assert_is(${^CHILD_ERROR_NATIVE}, 0); + + my @hash_words = split(/\s+/, $hash_line); + is($expected_hash, $hash_words[0]); +}; + +Then qr{^the downloaded file should be world-readable$}, fun ($c) { + my $output_filename = $c->{stash}->{scenario}->{output_filename}; + assert(-e $output_filename); + + my $mode = (stat($output_filename))[2]; + my $other_read = $mode & S_IROTH; + ok($other_read); +}; + +After fun ($c) { + if (defined $c->{stash}->{scenario}->{server}->{http_pid}) { + kill $c->{stash}->{scenario}->{server}->{http_pid}; + } +}; diff --git a/config/chroot_local-includes/usr/src/iuk/features/download_upgrade-description_file/Download_Upgrade-Description_File.feature b/config/chroot_local-includes/usr/src/iuk/features/download_upgrade-description_file/Download_Upgrade-Description_File.feature new file mode 100644 index 0000000000000000000000000000000000000000..71583d9d1272338f195e95ff38ff88ab80ccde37 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/features/download_upgrade-description_file/Download_Upgrade-Description_File.feature @@ -0,0 +1,164 @@ +Feature: download and verify an upgrade-description file + As a Tails developer + I work on the Tails upgrade system + I want to make sure the upgrade-description downloader and verifier works properly + + Background: + Given a usable temporary directory + And a running "Tails", version "0.12", initially installed at version "0.11", targetted at "s390x", using channel "stable" + And a HTTP random port + And a HTTPS random port + And a trusted Certificate Authority + And a trusted OpenPGP signing key pair + And a trusted, but expired OpenPGP signing key pair + And a trusted OpenPGP signing key pair created in the future + And an untrusted OpenPGP signing key pair + + Scenario: Failed download of a non-existing upgrade-description + Given a HTTPS server with a valid SSL certificate + And no upgrade-description that matches the initially installed Tails + When I download and check this upgrade-description file + Then it should fail + And I should be told "Could not download" + + Scenario: Successful download and verification + Given a HTTPS server with a valid SSL certificate + And an upgrade-description that matches the initially installed Tails + And a valid signature made by a trusted key + When I download and check this upgrade-description file + Then it should succeed + And the upgrade-description content should be printed + + Scenario: Failed download due to untrusted SSL certificate + Given a HTTPS server with an invalid SSL certificate + And an upgrade-description that matches the initially installed Tails + And a valid signature made by a trusted key + When I download and check this upgrade-description file + Then it should fail + And I should be told "certificate verification failed" + + Scenario: Failed download due to expired SSL certificate + Given a HTTPS server with an expired SSL certificate + And an upgrade-description that matches the initially installed Tails + And a valid signature made by a trusted key + When I download and check this upgrade-description file + Then it should fail + And I should be told "certificate verification failed" + + Scenario: Failed download due to SSL certificate that is not valid yet + Given a HTTPS server with a not-valid-yet SSL certificate + And an upgrade-description that matches the initially installed Tails + And a valid signature made by a trusted key + When I download and check this upgrade-description file + Then it should fail + And I should be told "certificate verification failed" + + Scenario: Failed download when server redirects to cleartext HTTP + Given a HTTPS server with a valid SSL certificate, that redirects to 127.0.0.2 over cleartext HTTP + And a HTTP server on 127.0.0.2 + And an upgrade-description that matches the initially installed Tails + And a valid signature made by a trusted key + When I download and check this upgrade-description file + Then it should fail + And I should be told "request failed" + + Scenario: Successful download, failed verification of an invalid signature made by a trusted key + Given a HTTPS server with a valid SSL certificate + And an upgrade-description that matches the initially installed Tails + And an invalid signature made by a trusted key + When I download and check this upgrade-description file + Then it should fail + And I should be told "Invalid signature" + + Scenario: Successful download, failed verification of valid signature made by an untrusted key + Given a HTTPS server with a valid SSL certificate + And an upgrade-description that matches the initially installed Tails + And a valid signature made by an untrusted key + When I download and check this upgrade-description file + Then it should fail + And I should be told "Invalid signature" + + Scenario: Successful download of the upgrade-description, failed download of the signature + Given a HTTPS server with a valid SSL certificate + And an upgrade-description that matches the initially installed Tails + When I download and check this upgrade-description file + Then it should fail + And I should be told "Could not download" + + Scenario: Failed download of the upgrade-description from a non-existing server + Given a non-existing web server + When I download and check an upgrade-description file from this server + Then it should fail + And I should be told "Could not download" + + Scenario: Failed download of an upgrade-description that is bigger than expected + Given a HTTPS server with a valid SSL certificate + And an upgrade-description that is too big + And a valid signature made by a trusted key + When I download and check this upgrade-description file + Then it should fail + And I should be told "Maximum file size exceeded" + + Scenario: Failed download of a signature that is bigger than expected + Given a HTTPS server with a valid SSL certificate + And an upgrade-description that matches the initially installed Tails + And a signature that is too big + When I download and check this upgrade-description file + Then it should fail + And I should be told "Maximum file size exceeded" + + Scenario: Successful download, signature made in the future + Given a HTTPS server with a valid SSL certificate + And an upgrade-description that matches the initially installed Tails + And a valid signature made in the future by a trusted key + When I download and check this upgrade-description file + Then it should succeed + And the upgrade-description content should be printed + + Scenario: Successful download, signature made by an expired key + Given a HTTPS server with a valid SSL certificate + And an upgrade-description that matches the initially installed Tails + And a valid signature made by a trusted, but expired key + When I download and check this upgrade-description file + Then it should succeed + And the upgrade-description content should be printed + + Scenario: Successful download, signature made by a key created in the future + Given a HTTPS server with a valid SSL certificate + And an upgrade-description that matches the initially installed Tails + And a valid signature made by a trusted key created in the future + When I download and check this upgrade-description file + Then it should succeed + And the upgrade-description content should be printed + + Scenario: Well-signed upgrade-description does not match the running Tails' product name + Given a HTTPS server with a valid SSL certificate + And an upgrade-description that has a different "product_name" than the running Tails + And a valid signature made by a trusted key + When I download and check this upgrade-description file + Then it should fail + And I should be told "Does not match running system" + + Scenario: Well-signed upgrade-description does not match the running Tails' initial install version + Given a HTTPS server with a valid SSL certificate + And an upgrade-description that has a different "initial_install_version" than the running Tails + And a valid signature made by a trusted key + When I download and check this upgrade-description file + Then it should fail + And I should be told "Does not match running system" + + Scenario: Well-signed upgrade-description does not match the running Tails' architecture + Given a HTTPS server with a valid SSL certificate + And an upgrade-description that has a different "build_target" than the running Tails + And a valid signature made by a trusted key + When I download and check this upgrade-description file + Then it should fail + And I should be told "Does not match running system" + + Scenario: Well-signed upgrade-description does not match the running Tails' channel + Given a HTTPS server with a valid SSL certificate + And an upgrade-description that has a different "channel" than the running Tails + And a valid signature made by a trusted key + When I download and check this upgrade-description file + Then it should fail + And I should be told "Does not match running system" diff --git a/config/chroot_local-includes/usr/src/iuk/features/download_upgrade-description_file/step_definitions/Download_Upgrade-Description_File_steps.pl b/config/chroot_local-includes/usr/src/iuk/features/download_upgrade-description_file/step_definitions/Download_Upgrade-Description_File_steps.pl new file mode 100644 index 0000000000000000000000000000000000000000..1f7fa86ae87c69679759e4ad207715fba1306b95 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/features/download_upgrade-description_file/step_definitions/Download_Upgrade-Description_File_steps.pl @@ -0,0 +1,494 @@ +#!perl + +use strictures 2; + +use lib qw{lib t/lib}; + +use Carp; +use Carp::Assert; +use Carp::Assert::More; +use Cwd; +use Data::Dumper; +use DateTime; +use English qw{-no_match_vars}; +use Env; +use File::Copy::Recursive qw{dircopy}; +use Function::Parameters; +use Test::More; +use Test::BDD::Cucumber::StepFile; + +use Path::Tiny; +use Test::SslCertificates ( + qw{generate_ssl_privkey generate_self_signed_ssl_cert}, + qw{generate_ssl_req generate_ssl_cert populate_ssl_template} +); +use Test::Util; +use Test::WebServer::Static::SSL; +use Test::WebServer::Static::SSL::RedirectToHTTP; + +my $bindir = path(__FILE__)->parent->parent->parent->parent->child('bin')->absolute; +my $t_dir = path(__FILE__)->parent->parent->parent->parent->child('t')->absolute; +my $pristine_dev_gnupg_homedir = path($t_dir, 'data', 'dev_gnupg_homedir'); +my $pristine_untrusted_gnupg_homedir = path($t_dir, 'data', 'untrusted_gnupg_homedir'); +my $pristine_expired_dev_gnupg_homedir = path($t_dir, 'data', 'expired_dev_gnupg_homedir'); +my $pristine_future_dev_gnupg_homedir = path($t_dir, 'data', 'future_dev_gnupg_homedir'); + +$ENV{HARNESS_ACTIVE} = 1; + +fun expected_upgrade_description_header ($c) { + Test::Util::upgrade_description_header( + $c->{stash}->{scenario}->{running}->{product_name}, + $c->{stash}->{scenario}->{running}->{initial_install_version}, + $c->{stash}->{scenario}->{running}->{build_target}, + $c->{stash}->{scenario}->{running}->{channel}, + ); +} + +Given qr{^a usable temporary directory$}, fun ($c) { + my $tempdir = $c->{stash}->{scenario}->{tempdir} = Path::Tiny->tempdir(CLEANUP => 0); + ok(-d $tempdir); +}; + +Given qr{^a running "([^"]+)", version "([^"]+)", initially installed at version "([^"]+)", targetted at "([^"]+)", using channel "([^"]+)"$}, fun($c) { + for ((0..4)) { + assert(exists $c->matches->[$_]); + assert(defined $c->matches->[$_]); + assert(length $c->matches->[$_]); + } + my $product_name = $c->{stash}->{scenario}->{running}->{product_name} = $c->matches->[0]; + my $product_version = $c->{stash}->{scenario}->{running}->{product_version} = $c->matches->[1]; + my $initial_install_version = $c->{stash}->{scenario}->{running}->{initial_install_version} = $c->matches->[2]; + my $build_target = $c->{stash}->{scenario}->{running}->{build_target} = $c->matches->[3]; + my $channel = $c->{stash}->{scenario}->{running}->{channel} = $c->matches->[4]; + my $os_release_file + = $c->{stash}->{scenario}->{os_release_file} + = path($c->{stash}->{scenario}->{tempdir}, 'os_release_file'); + my %os_release = ( + TAILS_PRODUCT_NAME => $product_name, + TAILS_VERSION_ID => $product_version, + TAILS_CHANNEL => $channel, + ); + while (my ($key, $value) = each %os_release) { + $os_release_file->append(sprintf('%s="%s"', $key, $value) . "\n"); + } + + my $initial_install_os_release_file + = $c->{stash}->{scenario}->{initial_install_os_release_file} + = path($c->{stash}->{scenario}->{tempdir}, 'initial_install_os_release_file'); + my %initial_install_os_release = ( + TAILS_PRODUCT_NAME => $product_name, + TAILS_VERSION_ID => $initial_install_version, + TAILS_CHANNEL => $channel, + ); + while (my ($key, $value) = each %initial_install_os_release) { + $initial_install_os_release_file->append( + sprintf('%s="%s"', $key, $value) . "\n" + ); + } +}; + +Given qr{^a (HTTP|HTTPS) random port$}, fun ($c) { + my $port = 40000 + int(rand(10000)); + my $key = $c->matches->[0] eq 'HTTP' ? 'http_port' : 'https_port'; + $c->{stash}->{scenario}->{server}->{$key} = $port; + ok(defined $c->{stash}->{scenario}->{server}->{$key}); +}; + +Given qr{^a trusted Certificate Authority$}, fun ($c) { + my $ca_cert + = $c->{stash}->{scenario}->{ca_cert} + = path($c->{stash}->{scenario}->{tempdir}, "ca_cert")->stringify; + my $ca_privkey + = $c->{stash}->{scenario}->{ca_privkey} + = path($c->{stash}->{scenario}->{tempdir}, "ca_privkey")->stringify; + my $ca_template + = path($c->{stash}->{scenario}->{tempdir}, "ca_template")->stringify; + + populate_ssl_template({ outfile => $ca_template, ca => 1 }); + assert(-e $ca_template); + generate_ssl_privkey({ outfile => $ca_privkey }); + assert(-e $ca_privkey); + generate_self_signed_ssl_cert({ + outfile => $ca_cert, privkey => $ca_privkey, template => $ca_template, + }); + assert(-e $ca_cert); +}; + +Given qr{^(a trusted|an untrusted)(|, but expired) OpenPGP signing key pair(| created in the future)$}, fun ($c) { + my $trusted = $c->matches->[0] eq 'a trusted' ? 1 : 0; + my $expired = defined $c->matches->[1] && length $c->matches->[1] ? 1 : 0; + my $future = length $c->matches->[2] ? 1 : 0; + + assert(grep(/^1$/, ($future, $expired)) <= 1); + + my $pristine_gnupg_homedir; + my $name; + + if ($trusted) { + if ($expired) { + $name = 'expired_dev_gnupg_homedir'; + $pristine_gnupg_homedir = $pristine_expired_dev_gnupg_homedir; + } + elsif ($future) { + $name = 'future_dev_gnupg_homedir'; + $pristine_gnupg_homedir = $pristine_future_dev_gnupg_homedir; + } + else { + $name = 'dev_gnupg_homedir'; + $pristine_gnupg_homedir = $pristine_dev_gnupg_homedir; + } + } + else { + $name = 'untrusted_gnupg_homedir'; + $pristine_gnupg_homedir = $pristine_untrusted_gnupg_homedir; + } + assert(-d $pristine_gnupg_homedir); + + my $gnupg_homedir + = $c->{stash}->{scenario}->{$name} + = path($c->{stash}->{scenario}->{tempdir}, "$name")->absolute; + + # may be overriden by the signature steps, + # but we have to initialize the default case somewhere + $c->{stash}->{scenario}->{trusted_gnupg_homedir} = $c->{stash}->{scenario}->{dev_gnupg_homedir}; + + dircopy($pristine_gnupg_homedir, $gnupg_homedir); + assert(-d $gnupg_homedir); + assert(-e path($gnupg_homedir, $_)) for qw{pubring.gpg secring.gpg}; +}; + +Given qr{^a non-existing web server$}, fun ($c) { + 1; +}; + +Given qr{^a HTTP server on (.*)$}, fun ($c) { + my $listen = $c->matches->[0]; + + my $webroot + = $c->{stash}->{scenario}->{webroot} + = path($c->{stash}->{scenario}->{tempdir}, 'webroot'); + $webroot->mkpath; + assert($webroot->is_dir); + + my $port = $c->{stash}->{scenario}->{server}->{http_port}; + my $s = Test::WebServer::Static->new( + { + webroot => $c->{stash}->{scenario}->{webroot}, + }, + $port + ); + is($s->port(), $port, "Constructor set port correctly"); + my $pid = $c->{stash}->{scenario}->{server}->{http_pid} = $s->background(); + like($pid, '/^-?\d+$/', 'PID is numeric'); +}; + +Given qr{^a HTTPS server with (a valid|an invalid|an expired|a not-valid-yet) SSL certificate(?:, that redirects to ([^ ]+) over cleartext HTTP)?$}, fun ($c) { + my $type; + if ($c->matches->[0] eq q{a valid}) { $type = 'valid'; } + elsif ($c->matches->[0] eq q{an invalid}) { $type = 'invalid'; } + elsif ($c->matches->[0] eq q{an expired}) { $type = 'expired'; } + elsif ($c->matches->[0] eq q{a not-valid-yet}) { $type = 'not-valid-yet'; } + + my $target_hostname = $c->matches->[1]; + + my $ssl_cert + = $c->{stash}->{scenario}->{ssl_cert} + = path($c->{stash}->{scenario}->{tempdir}, "ssl_cert")->stringify; + my $ssl_privkey + = $c->{stash}->{scenario}->{ssl_privkey} + = path($c->{stash}->{scenario}->{tempdir}, "ssl_privkey")->stringify; + my $ssl_template + = path($c->{stash}->{scenario}->{tempdir}, "ssl_template")->stringify; + my $ssl_req + = path($c->{stash}->{scenario}->{tempdir}, "ssl_req")->stringify; + + my $ca = $type eq 'valid' ? 0 : 1; + populate_ssl_template({ outfile => $ssl_template, ca => $ca }); + assert(-e $ssl_template); + generate_ssl_privkey({ outfile => $ssl_privkey }); + assert(-e $ssl_privkey); + if ($type =~ m{\A (valid|expired|not-valid-yet) \z}xms) { + $c->{stash}->{scenario}->{ssl_cert_is_self_signed} = 0; + generate_ssl_req({ privkey => $ssl_privkey, outfile => $ssl_req, template => $ssl_template }); + assert(-e $ssl_req); + my $generate_at_dt; + if ($type eq 'expired') { + $generate_at_dt = DateTime->now + DateTime::Duration->new(years => 2); + } + elsif ($type eq 'not-valid-yet') { + $generate_at_dt = DateTime->now + DateTime::Duration->new(years => -2); + } + my @extra_args; + if ($type eq 'expired' or $type eq 'not-valid-yet') { + @extra_args = ( + date => sprintf('%s %s', $generate_at_dt->ymd, $generate_at_dt->hms) + ); + } + generate_ssl_cert({ + req => $ssl_req, + outfile => $ssl_cert, + ca_cert => $c->{stash}->{scenario}->{ca_cert}, + ca_privkey => $c->{stash}->{scenario}->{ca_privkey}, + template => $ssl_template, + @extra_args, + }); + } + else { + $c->{stash}->{scenario}->{ssl_cert_is_self_signed} = 1; + generate_self_signed_ssl_cert({ + outfile => $ssl_cert, privkey => $ssl_privkey, template => $ssl_template, + }); + } + assert(-e $ssl_cert); + + my $webroot + = $c->{stash}->{scenario}->{webroot} + = path($c->{stash}->{scenario}->{tempdir}, 'webroot'); + $webroot->mkpath; + assert($webroot->is_dir); + + my $port = $c->{stash}->{scenario}->{server}->{https_port}; + my $ca_file = $type eq 'invalid' + ? $c->{stash}->{scenario}->{ssl_cert} + : $c->{stash}->{scenario}->{ca_cert}; + my $web_server_class = defined $target_hostname + ? q{Test::WebServer::Static::SSL::RedirectToHTTP} + : q{Test::WebServer::Static::SSL}; + my @web_server_new_args = defined $target_hostname + ? (target => $target_hostname, target_port => $c->{stash}->{scenario}->{server}->{http_port}) + : (); + my $s = $web_server_class->new( + { + webroot => $c->{stash}->{scenario}->{webroot}, + cert => $c->{stash}->{scenario}->{ssl_cert}, + key => $c->{stash}->{scenario}->{ssl_privkey}, + ca => $ca_file, + @web_server_new_args, + }, + $port + ); + is($s->port(), $port, "Constructor set port correctly"); + my $pid = $c->{stash}->{scenario}->{server}->{https_pid} = $s->background(); + like($pid, '/^-?\d+$/', 'PID is numeric'); +}; + +fun write_upgrade_description_file ($output, $product_name, $initial_install_version, $build_target, $channel) { + $output->parent->mkpath; + $output->spew( + Test::Util::upgrade_description_header( + $product_name, $initial_install_version, $build_target, $channel + ) + ); + assert($output->is_file); +} + +fun upgrade_description_file ($c) { + return $c->{stash}->{scenario}->{upgrade_description_file} + if exists $c->{stash}->{scenario}->{upgrade_description_file}; + + assert(exists $c->{stash}->{scenario}->{webroot}); + assert(defined $c->{stash}->{scenario}->{webroot}); + assert(length $c->{stash}->{scenario}->{webroot}); + return $c->{stash}->{scenario}->{upgrade_description_file} + = path( + $c->{stash}->{scenario}->{webroot}, + "upgrade/v2/Tails/0.11/s390x/stable/upgrades.yml" + ); +} + +Given qr{^(an|no) upgrade-description that matches the initially installed Tails}, fun ($c) { + my $present = $c->matches->[0] eq 'no' ? 0 : 1; + + if ($present) { + write_upgrade_description_file( + upgrade_description_file($c), + $c->{stash}->{scenario}->{running}->{product_name}, + $c->{stash}->{scenario}->{running}->{initial_install_version}, + $c->{stash}->{scenario}->{running}->{build_target}, + $c->{stash}->{scenario}->{running}->{channel}, + ); + } +}; + +Given qr{^an upgrade-description that has a different "([^"]+)" than the running Tails}, fun ($c) { + my $different_field = $c->matches->[0]; + + my @args; + for (qw{product_name initial_install_version}, + qw{build_target channel}) { + my $arg = $different_field eq $_ + ? "something else" + : $c->{stash}->{scenario}->{running}->{$_}; + push @args, $arg; + } + + write_upgrade_description_file(upgrade_description_file($c), @args); +}; + +Given qr{^an upgrade-description that is too big$}, fun ($c) { + my $webroot = $c->{stash}->{scenario}->{webroot}; + my $desc = upgrade_description_file($c); + my $size = 2**20; + + $desc->parent->mkpath; + $desc->spew("a" x $size); +}; + +Given qr{^a signature that is too big$}, fun ($c) { + my $webroot = $c->{stash}->{scenario}->{webroot}; + my $sig + = $c->{stash}->{scenario}->{upgrade_description_sig} + = path(upgrade_description_file($c) . '.pgp'); + my $size = 2**20; + + $sig->parent->mkpath; + $sig->spew("a" x $size); +}; + +Given qr{^(a valid|an invalid) signature made(| in the future) by (a trusted|an untrusted)(|, but expired) key(| created in the future)$}, fun ($c) { + my $valid = $c->matches->[0] eq 'a valid' ? 1 : 0; + my $sign_in_the_future = length $c->matches->[1] ? 1 : 0; + my $trusted = $c->matches->[2] eq 'a trusted' ? 1 : 0; + my $key_expired = length $c->matches->[3] ? 1 : 0; + my $key_not_valid_yet = length $c->matches->[4] ? 1 : 0; + + assert(1 >= grep(/^1$/, ( $sign_in_the_future, $key_expired, $key_not_valid_yet ))); + + my $webroot = $c->{stash}->{scenario}->{webroot}; + my $desc = upgrade_description_file($c); + my $sig + = $c->{stash}->{scenario}->{upgrade_description_sig} + = path($desc->stringify . '.pgp'); + + if ($valid) { + my $gnupg_homedir; + if ($trusted) { + if ($key_expired) { + $gnupg_homedir = $c->{stash}->{scenario}->{expired_dev_gnupg_homedir}; + } + elsif ($key_not_valid_yet) { + $gnupg_homedir = $c->{stash}->{scenario}->{future_dev_gnupg_homedir}; + } + else { + $gnupg_homedir = $c->{stash}->{scenario}->{dev_gnupg_homedir}; + } + $c->{stash}->{scenario}->{trusted_gnupg_homedir} = $gnupg_homedir; + } + else { + $gnupg_homedir = $c->{stash}->{scenario}->{untrusted_gnupg_homedir}; + } + + my @precmd; + if ($key_expired) { + my $expired_key_was_still_valid_dt = DateTime->new( + year => 2009, month => 06, day => 06 + ); + @precmd = ( + 'faketime', + sprintf( + '%s %s', + $expired_key_was_still_valid_dt->ymd, + $expired_key_was_still_valid_dt->hms + ) + ); + } + elsif ($sign_in_the_future) { + my $in_two_years_dt = DateTime->now + DateTime::Duration->new(years => 2); + @precmd = ( + 'faketime', + sprintf('%s %s', $in_two_years_dt->ymd, $in_two_years_dt->hms) + ); + } + elsif ($key_not_valid_yet) { + my $when_key_valid_dt = DateTime->new(year => 2056, month => 2, day => 2); + @precmd = ( + 'faketime', + sprintf('%s %s', $when_key_valid_dt->ymd, $when_key_valid_dt->hms) + ); + } + + system( + @precmd, + qw{gpg --batch --quiet}, + qw{--armor --detach-sign}, + '--homedir', $gnupg_homedir, + '--output', $sig, + $desc, + ); + } + else { + $sig->spew("invalid signature"); + } + + assert(-e $sig); +}; + +When qr{^I download and check (?:this upgrade-description file|an upgrade-description file from this server)$}, fun ($c) { + for (qw{ca_cert}) { + assert(defined $c->{stash}->{scenario}->{$_}); + assert(length $c->{stash}->{scenario}->{$_}); + assert(-e $c->{stash}->{scenario}->{$_}); + } + + my $cmdline = sprintf("%s " . + "--override_baseurl 'https://127.0.0.1:%s' " . + "--override_os_release_file '%s' " . + "--override_initial_install_os_release_file '%s' " . + "--override_build_target '%s' " . + "--trusted_gnupg_homedir '%s'", + path($bindir, "tails-iuk-get-upgrade-description-file"), + $c->{stash}->{scenario}->{server}->{https_port}, + $c->{stash}->{scenario}->{os_release_file}, + $c->{stash}->{scenario}->{initial_install_os_release_file}, + 's390x', + $c->{stash}->{scenario}->{trusted_gnupg_homedir}, + ); + $ENV{HTTPS_CA_FILE} = $c->{stash}->{scenario}->{ca_cert}; + $c->{stash}->{scenario}->{output} = `$cmdline 2>&1`; + $c->{stash}->{scenario}->{exit_code} = ${^CHILD_ERROR_NATIVE}; +}; + +Then qr{^it should succeed$}, fun ($c) { + Test::Util::kill_httpd($c); + + ok(defined $c->{stash}->{scenario}->{exit_code}) + and + is($c->{stash}->{scenario}->{exit_code}, 0); + + if (defined $c->{stash}->{scenario}->{exit_code} + && $c->{stash}->{scenario}->{exit_code} != 0 + && exists $c->{stash}->{scenario}->{output} + && defined $c->{stash}->{scenario}->{output}) { + warn $c->{stash}->{scenario}->{output}; + } +}; + +Then qr{^it should fail$}, fun ($c) { + Test::Util::kill_httpd($c); + + ok(defined $c->{stash}->{scenario}->{exit_code}) + and + isnt($c->{stash}->{scenario}->{exit_code}, 0); +}; + +Then qr{^I should be told "([^"]+)"$}, fun ($c) { + my $expected_err = $c->matches->[0]; + like($c->{stash}->{scenario}->{output}, qr{$expected_err}); +}; + +Then qr{^the upgrade-description content should be printed$}, fun ($c) { + is($c->{stash}->{scenario}->{output}, expected_upgrade_description_header($c)); +}; + +Then qr{^the downloaded content should be not be much bigger than (\d+)$}, fun ($c) { + my $expected_size = $c->matches->[0]; + + my $not_much_bigger_base = 4096; + my $not_much_bigger_factor = 1.20; + + my ($downloaded_size) = + ( $c->{stash}->{scenario}->{output} =~ + m{but the downloaded content \((\d+)\) should be smaller than} ); + assert(defined($downloaded_size)); + ok($downloaded_size < $not_much_bigger_base + $expected_size * $not_much_bigger_factor ); +}; diff --git a/config/chroot_local-includes/usr/src/iuk/features/frontend/Frontend.feature b/config/chroot_local-includes/usr/src/iuk/features/frontend/Frontend.feature new file mode 100644 index 0000000000000000000000000000000000000000..936acd7855fa65249666e638ed1d062d9335d3f9 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/features/frontend/Frontend.feature @@ -0,0 +1,140 @@ +Feature: upgrade frontend + As a Tails user + I want to be guided through upgrading my Tails system, if needed + + Background: + Given a Tails boot device + And a trusted OpenPGP signing key pair + And a HTTPS server with a valid SSL certificate + + Scenario: manually installed USB: no upgrade is available + Given Tails is running from a manually installed USB thumb drive + And no upgrade is available + When I run tails-upgrade-frontend in batch mode + Then it should succeed + And I should be told "The system is up-to-date" + + Scenario: manually installed USB: no incremental upgrade is available, but a full upgrade is + Given Tails is running from a manually installed USB thumb drive + And no incremental upgrade is available, but a full upgrade is + When I run tails-upgrade-frontend in batch mode + Then it should succeed + And I should be proposed to download this full upgrade + + Scenario: manually installed USB: both incremental and full upgrades are available + Given Tails is running from a manually installed USB thumb drive + And both incremental and full upgrades are available + When I run tails-upgrade-frontend in batch mode + Then it should succeed + And I should be proposed to download this full upgrade + And I should be told "your device was not created using a USB image or Tails Installer" + + Scenario: DVD: no upgrade is available + Given Tails is running from a DVD + And no upgrade is available + When I run tails-upgrade-frontend in batch mode + Then it should succeed + And I should be told "The system is up-to-date" + + Scenario: DVD: no incremental upgrade is available, but a full upgrade is + Given Tails is running from a DVD + And no incremental upgrade is available, but a full upgrade is + When I run tails-upgrade-frontend in batch mode + Then it should succeed + And I should be proposed to download this full upgrade + + Scenario: DVD: both incremental and full upgrades are available + Given Tails is running from a DVD + And both incremental and full upgrades are available + When I run tails-upgrade-frontend in batch mode + Then it should succeed + And I should be proposed to download this full upgrade + And I should be told "Tails was started from a DVD or a read-only device" + + Scenario: USB produced by our installer: no upgrade available + Given Tails is running from a USB thumb drive + And no upgrade is available + When I run tails-upgrade-frontend + Then it should succeed + And I should be told "The system is up-to-date" + + Scenario: USB produced by our installer: cannot determine whether an upgrade is available + Given Tails is running from a USB thumb drive + And it is not known whether an upgrade is available + When I run tails-upgrade-frontend + Then it should fail to check for upgrades + And I should be told "Could not determine whether an upgrade is available" + And I should be pointed to the documentation about upgrade-description file retrieval error + + @mirrors + Scenario: USB produced by our installer: installing an incremental upgrade + Given Tails is running from a USB thumb drive + And both incremental and full upgrades are available + When I run tails-upgrade-frontend in batch mode + Then it should succeed + And I should be proposed to install this incremental upgrade + And I should be told "Downloading the upgrade" + And I should be asked to wait + And I should be told "Upgrade successfully downloaded" + And I should be told "The network connection will now be disabled" + And the network should be shutdown + And I should be told "Your Tails device is being upgraded" + And I should be asked to wait + And the downloaded IUK should be installed + And I should be proposed to restart the system + And the system should be restarted + When I run tails-upgrade-frontend in batch mode + Then it should succeed + And I should be told "The system is up-to-date" + + Scenario: USB produced by our installer: no incremental upgrade is available, but a full upgrade is + Given Tails is running from a USB thumb drive + And no incremental upgrade is available, but a full upgrade is + When I run tails-upgrade-frontend in batch mode + Then it should succeed + And I should be proposed to download this full upgrade + + Scenario: USB produced by our installer: both incremental and full upgrades are available, but a target file does not exist + Given Tails is running from a USB thumb drive + And both incremental and full upgrades are available + And a target file does not exist + When I run tails-upgrade-frontend in batch mode + Then it should fail to download the upgrade + And I should be proposed to install this incremental upgrade + And I should be told "Downloading the upgrade" + And I should be told "Error while downloading the upgrade" + And I should be told "The upgrade could not be downloaded" + And I should be told "request failed" + And I should be pointed to the documentation about target file retrieval error + + Scenario: USB produced by our installer: both incremental and full upgrades are available, but a target file is corrupted + Given Tails is running from a USB thumb drive + And both incremental and full upgrades are available + And a target file is corrupted + When I run tails-upgrade-frontend in batch mode + Then it should fail to download the upgrade + And I should be proposed to install this incremental upgrade + And I should be told "Downloading the upgrade" + And I should be told "Error while downloading the upgrade" + And I should be told "was downloaded but its size" + And I should be pointed to the documentation about target file retrieval error + + Scenario: USB produced by our installer: not enough free memory + Given Tails is running from a USB thumb drive + And both incremental and full upgrades are available + And the system has not enough free memory to install this incremental upgrade + When I run tails-upgrade-frontend in batch mode + Then it should succeed + And I should be proposed to download this full upgrade + And I should be told "requires .+ of free memory, but only .+ is available" + And I should be told "not enough memory is available on this system" + + Scenario: USB produced by our installer: not enough free space on the system partition + Given Tails is running from a USB thumb drive + And both incremental and full upgrades are available + And the system partition has not enough free space to install this incremental upgrade + When I run tails-upgrade-frontend in batch mode + Then it should succeed + And I should be proposed to download this full upgrade + And I should be told "requires .+ of free space on Tails system partition" + And I should be told "not enough free space on the Tails system partition" diff --git a/config/chroot_local-includes/usr/src/iuk/features/frontend/step_definitions/Frontend_steps.pl b/config/chroot_local-includes/usr/src/iuk/features/frontend/step_definitions/Frontend_steps.pl new file mode 100755 index 0000000000000000000000000000000000000000..e7403351f5815bf0c03e36ca5a85a01347a782f4 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/features/frontend/step_definitions/Frontend_steps.pl @@ -0,0 +1,553 @@ +#!perl + +use strictures 2; + +use lib qw{lib t/lib}; + +use Carp; +use Carp::Assert; +use Carp::Assert::More; +use Data::Dumper; +use English qw{-no_match_vars}; +use Env; +use File::Copy::Recursive qw{dircopy}; +use File::Find::Rule; +use Function::Parameters; +use IPC::System::Simple qw{capturex}; +use Test::More; +use Test::BDD::Cucumber::StepFile; +use Path::Tiny; +use File::Temp qw{tempdir tempfile}; +use Tails::IUK::Utils qw{run_as_root}; +use Test::SslCertificates ( + qw{generate_ssl_privkey generate_self_signed_ssl_cert}, + qw{generate_ssl_req generate_ssl_cert populate_ssl_template} +); +use Test::Util; +use Test::WebServer::Static::SSL; + +my $bindir = path(__FILE__)->parent->parent->parent->parent->child('bin')->absolute; +use Env qw{@PATH @NODE_PATH}; +unshift @PATH, $bindir; +unshift @PATH, + path($ENV{TAILS_GIT_CHECKOUT}, qw{submodules mirror-pool-dispatcher bin}) + ->absolute; +unshift @NODE_PATH, + path($ENV{TAILS_GIT_CHECKOUT}, qw{submodules mirror-pool-dispatcher lib js}) + ->absolute; + +my $t_dir = path(__FILE__)->parent->parent->parent->parent->child('t')->absolute; +my $pristine_dev_gnupg_homedir = path($t_dir, 'data', 'dev_gnupg_homedir'); + +my $upgrade_description_file_relative_path = "upgrade/v2/Tails/0.11/s390x/stable/upgrades.yml"; +my $upgrade_description_sig_relative_path = "$upgrade_description_file_relative_path".".pgp"; +my $pristine_webroot = path($t_dir, qw{data webroot}); + +$ENV{HARNESS_ACTIVE} = 1; + +Before fun ($c) { + my $tempdir = $c->{stash}->{scenario}->{tempdir} = Path::Tiny->tempdir(CLEANUP => 0); + ok(-d $tempdir); + chmod 0755, $tempdir; + my $destdir = $c->{stash}->{scenario}->{destdir} = path($tempdir, 'destdir'); + $destdir->mkpath; + ok($destdir->is_dir); +}; + +Given qr{^a trusted OpenPGP signing key pair$}, fun ($c) { + my $pristine_gnupg_homedir; + my $name; + + $name = 'dev_gnupg_homedir'; + $pristine_gnupg_homedir = $pristine_dev_gnupg_homedir; + assert(-d $pristine_gnupg_homedir); + + my $gnupg_homedir + = $c->{stash}->{scenario}->{$name} + = $c->{stash}->{scenario}->{trusted_gnupg_homedir} + = path($c->{stash}->{scenario}->{tempdir}, "$name")->absolute; + + dircopy($pristine_gnupg_homedir, $gnupg_homedir); + assert(-d $gnupg_homedir); + assert(path($gnupg_homedir, $_)->exists) for qw{pubring.gpg secring.gpg}; +}; + +Given qr{^Tails is running from a (DVD|(|manually installed )USB thumb drive)$}, fun ($c) { + my $running_from; + if ($c->matches->[0] eq 'DVD') { + $running_from = 'dvd'; + } + else { + $running_from = $c->matches->[1] eq '' ? 'usb' : 'manual-usb'; + } + my $os_release_file + = $c->{stash}->{scenario}->{os_release_file} + = path($c->{stash}->{scenario}->{tempdir}, 'os_release_file'); + my %os_release = ( + TAILS_PRODUCT_NAME => "Tails", + TAILS_VERSION_ID => "0.11", + TAILS_CHANNEL => "stable", + ); + while (my ($key, $value) = each %os_release) { + $os_release_file->append(sprintf('%s="%s"', $key, $value) . "\n"); + } + + assert($c->{stash}->{scenario}->{os_release_file}->exists); + + my $initial_install_os_release_file + = $c->{stash}->{scenario}->{initial_install_os_release_file} + = path($c->{stash}->{scenario}->{tempdir}, 'initial_install_os_release_file'); + $os_release_file->copy($initial_install_os_release_file); + assert(-e $c->{stash}->{scenario}->{initial_install_os_release_file}); + + $c->{stash}->{scenario}->{dev_dir} + = path($c->{stash}->{scenario}->{tempdir}, 'dev'); + $c->{stash}->{scenario}->{dev_dir}->mkpath; + if ($running_from =~ m{usb\z}xms) { + path($c->{stash}->{scenario}->{dev_dir}, 'bilibop')->touch; + $c->{stash}->{scenario}->{override_started_from_device_installed_with_tails_installer} + = $running_from eq 'usb' ? 1 : 0; + } + $c->{stash}->{scenario}->{run_dir} + = path($c->{stash}->{scenario}->{tempdir}, 'run'); + $c->{stash}->{scenario}->{upgrader_run_dir} + = $c->{stash}->{scenario}->{run_dir}->child('tails-upgrader'); + $c->{stash}->{scenario}->{upgrader_run_dir}->mkpath; +}; + +Given qr{^a Tails boot device$}, fun ($c) { + my $liveos_mountpoint + = $c->{stash}->{scenario}->{liveos_mountpoint} + = path($c->{stash}->{scenario}->{tempdir}, 'live', 'medium'); + $c->{stash}->{scenario}->{liveos_mountpoint}->mkpath; + chmod 0755, $c->{stash}->{scenario}->{liveos_mountpoint}; + + my $backing_file + = $c->{stash}->{scenario}->{backing_file} + = path($c->{stash}->{scenario}->{tempdir}, 'Tails.img'); + + my %loop_info = Test::Util::prepare_live_device( + $backing_file, $liveos_mountpoint + ); + $c->{stash}->{scenario}->{system_partition} = $loop_info{system_partition}; +}; + +Given qr{^the system has not enough free memory to install this incremental upgrade$}, fun ($c) { + $c->{stash}->{scenario}->{proc_dir} + = path($c->{stash}->{scenario}->{tempdir}, 'proc'); + $c->{stash}->{scenario}->{proc_dir}->mkpath; + path($c->{stash}->{scenario}->{proc_dir}, 'meminfo')->spew( + 'MemTotal: 10 kB' . "\n", + 'MemUsed: 1 kB' . "\n", + 'MemFree: 1 kB' . "\n", + 'Buffers: 1 kB' . "\n", + 'Cached: 1 kB' . "\n", + 'SwapTotal: 0 kB' . "\n", + 'SwapFree: 0 kB' . "\n", + ); +}; + +Given qr{^a HTTPS server with a valid SSL certificate$}, fun ($c) { + $c->{stash}->{scenario}->{server}->{https_port} = 40000 + int(rand(10000)); + ok(defined $c->{stash}->{scenario}->{server}->{https_port}); + + $ENV{TAILS_FALLBACK_DL_URL_PORT} = + $c->{stash}->{scenario}->{server}->{https_port}; + + my $ca_cert + = $c->{stash}->{scenario}->{ca_cert} + = path($c->{stash}->{scenario}->{tempdir}, "ca_cert")->stringify; + my $ca_privkey + = $c->{stash}->{scenario}->{ca_privkey} + = path($c->{stash}->{scenario}->{tempdir}, "ca_privkey")->stringify; + my $ca_template + = path($c->{stash}->{scenario}->{tempdir}, "ca_template")->stringify; + + populate_ssl_template({ outfile => $ca_template, ca => 1 }); + assert(-e $ca_template); + generate_ssl_privkey({ outfile => $ca_privkey }); + assert(-e $ca_privkey); + generate_self_signed_ssl_cert({ + outfile => $ca_cert, privkey => $ca_privkey, template => $ca_template, + }); + assert(-e $ca_cert); + + my $ssl_cert + = $c->{stash}->{scenario}->{ssl_cert} + = path($c->{stash}->{scenario}->{tempdir}, "ssl_cert")->stringify; + my $ssl_privkey + = $c->{stash}->{scenario}->{ssl_privkey} + = path($c->{stash}->{scenario}->{tempdir}, "ssl_privkey")->stringify; + my $ssl_template + = path($c->{stash}->{scenario}->{tempdir}, "ssl_template")->stringify; + my $ssl_req + = path($c->{stash}->{scenario}->{tempdir}, "ssl_req")->stringify; + + populate_ssl_template({ outfile => $ssl_template, ca => 1 }); + assert(-e $ssl_template); + generate_ssl_privkey({ outfile => $ssl_privkey }); + assert(-e $ssl_privkey); + + generate_ssl_req({ privkey => $ssl_privkey, outfile => $ssl_req, template => $ssl_template }); + assert(-e $ssl_req); + + generate_ssl_cert({ + req => $ssl_req, + outfile => $ssl_cert, + ca_cert => $c->{stash}->{scenario}->{ca_cert}, + ca_privkey => $c->{stash}->{scenario}->{ca_privkey}, + template => $ssl_template, + }); + assert(-e $ssl_cert); + + my $webroot + = $c->{stash}->{scenario}->{webroot} + = path($c->{stash}->{scenario}->{tempdir}, 'webroot'); + dircopy($pristine_webroot, $webroot); + assert($webroot->is_dir); + + my $port = $c->{stash}->{scenario}->{server}->{https_port}; + my $ca_file = $c->{stash}->{scenario}->{ca_cert}; + my $s = Test::WebServer::Static::SSL->new( + { + webroot => $c->{stash}->{scenario}->{webroot}, + cert => $c->{stash}->{scenario}->{ssl_cert}, + key => $c->{stash}->{scenario}->{ssl_privkey}, + ca => $ca_file, + }, + $port + ); + is($s->port(), $port, "Constructor set port correctly"); + my $pid = $c->{stash}->{scenario}->{server}->{https_pid} = $s->background(); + like($pid, '/^-?\d+$/', 'PID is numeric'); + + generate_mirrors_json({ + port => $port, + outfile => path($webroot, 'mirrors.json'), + }); + + path($webroot, 'tails-signing-minimal.key')->spew( + capturex( + 'gpg', '--homedir', $c->{stash}->{scenario}->{trusted_gnupg_homedir}, + '--armor', '--export' + ) + ); +}; + +fun generate_mirrors_json($args) { + assert(defined $args, 'args is defined'); + assert('HASH' eq ref $args, 'args is a hashref'); + foreach my $arg (qw{outfile port}) { + assert(exists $args->{$arg}, "args has a $arg key"); + assert(defined $args->{$arg}, "the $arg key in args is defined"); + assert(length $args->{$arg}, "the $arg key in args is not empty"); + } + + my $port = $args->{port}; + path($args->{outfile})->spew(<<EOTEMPLATE +{ + "version": 1, + "mirrors": [ + { + "url_prefix": "https://127.0.0.1:$port/tails/", + "weight": 1 + }, + { + "url_prefix": "https://127.0.0.1/disabled", + "weight": 0 + }, + { + "url_prefix": "https://127.0.0.1:$port/tails", + "weight": 5 + } + ] +} +EOTEMPLATE + ); + + ok(-e $args->{outfile}); + +}; + +fun generate_upgrade_description($output, $name, $initial_install_version, $target, $channel, $gnupg_homedir, $port, $has_incremental_upgrade = 0, $has_full_upgrade = 0) { + my $desc = path($output); + my $sig = path($output.".pgp"); + + $desc->parent->mkpath; + $desc->spew(Test::Util::upgrade_description_header($name, $initial_install_version, $target, $channel)); + if ($has_incremental_upgrade or $has_full_upgrade) { + $desc->append(<<EOF +upgrades: + - version: 0.12.1 + type: minor + details-url: https://tails.boum.org/news/version_0.12.1/ + upgrade-paths: + +EOF + ); + } + if ($has_incremental_upgrade) { + $desc->append(<<EOF + - type: incremental + target-files: + - url: https://127.0.0.1:$port/tails/stable/iuk/v2/Tails_s390x_0.11_to_0.12.1.iuk + size: 4096 + sha256: 09ded037840f60aae20e639ee285f54974f919a9d08f1669f807ced456f50af3 +EOF + ); + } + if ($has_full_upgrade) { + $desc->append(<<EOF + - type: full + target-files: + - url: https://127.0.0.1:$port/tails/stable/tails-s390x-0.12.1/Tails-s390x-0.12.1.iso + size: 762123456 + sha256: a38c8b6566946170cb4ac806a36f20ddf0758a21b178b6f74c8268bbd7ecf8ab +EOF + ); + } + assert(-e $desc); + + capturex( + qw{gpg --batch --quiet}, + qw{--armor --detach-sign}, + '--homedir', $gnupg_homedir, + '--output', $sig, + $desc, + ); + assert(-e $sig); +} + +Given qr{^no upgrade is available$}, fun ($c) { + my $desc = path( + $c->{stash}->{scenario}->{webroot}, + $upgrade_description_file_relative_path, + ); + my $sig = path( + $c->{stash}->{scenario}->{webroot}, + $upgrade_description_sig_relative_path, + ); + generate_upgrade_description( + $desc, + "Tails", "0.11", "s390x", "stable", + $c->{stash}->{scenario}->{dev_gnupg_homedir}, + $c->{stash}->{scenario}->{server}->{https_port}, + ); +}; + +Given qr{^it is not known whether an upgrade is available$}, fun ($c) { + 1; +}; + +Given qr{^both incremental and full upgrades are available$}, fun ($c) { + my $desc = path( + $c->{stash}->{scenario}->{webroot}, + $upgrade_description_file_relative_path, + ); + my $sig = path( + $c->{stash}->{scenario}->{webroot}, + $upgrade_description_sig_relative_path, + ); + generate_upgrade_description( + $desc, + "Tails", "0.11", "s390x", "stable", + $c->{stash}->{scenario}->{dev_gnupg_homedir}, + $c->{stash}->{scenario}->{server}->{https_port}, + "has incremental upgrade", "has full upgrade" + ); +}; + +Given qr{^no incremental upgrade is available, but a full upgrade is$}, fun ($c) { + my $desc = path( + $c->{stash}->{scenario}->{webroot}, + $upgrade_description_file_relative_path, + ); + my $sig = path( + $c->{stash}->{scenario}->{webroot}, + $upgrade_description_sig_relative_path, + ); + generate_upgrade_description( + $desc, + "Tails", "0.11", "s390x", "stable", + $c->{stash}->{scenario}->{dev_gnupg_homedir}, + $c->{stash}->{scenario}->{server}->{https_port}, + 0, "has full upgrade" + ); +}; + +Given qr{^a target file does not exist$}, fun ($c) { + my @iuks = File::Find::Rule->file() + ->name( '*.iuk' ) ->in($c->{stash}->{scenario}->{webroot}); + unlink for (@iuks); +}; + +Given qr{^a target file is corrupted$}, fun ($c) { + my @iuks = File::Find::Rule->file() + ->name( '*.iuk' ) ->in($c->{stash}->{scenario}->{webroot}); + foreach my $iuk (@iuks) { + path($iuk)->spew("this is a corrupted IUK"); + } +}; + +Given qr{^the system partition has not enough free space to install this incremental upgrade$}, fun ($c) { + $c->{stash}->{scenario}->{free_space} = 42; +}; + +When qr{^I run tails-upgrade-frontend(| in batch mode)$}, fun ($c) { + my $batch = defined $c->matches->[0] && length defined $c->matches->[0]; + my $cmdline = sprintf("%s " . + "--override_baseurl 'https://127.0.0.1:%s' " . + "--override_dev_dir '%s' " . + "--override_run_dir '%s' " . + "--override_os_release_file '%s' " . + "--override_initial_install_os_release_file '%s' " . + "--override_build_target '%s' " . + "--override_trusted_gnupg_homedir '%s' ". + "--override_liveos_mountpoint '%s' ", + path($bindir, "tails-upgrade-frontend"), + $c->{stash}->{scenario}->{server}->{https_port}, + $c->{stash}->{scenario}->{dev_dir}, + $c->{stash}->{scenario}->{run_dir}, + $c->{stash}->{scenario}->{os_release_file}, + $c->{stash}->{scenario}->{initial_install_os_release_file}, + 's390x', + $c->{stash}->{scenario}->{trusted_gnupg_homedir}, + $c->{stash}->{scenario}->{liveos_mountpoint}, + ); + $cmdline .= " --batch " if $batch; + $cmdline .= sprintf( + " --override_started_from_device_installed_with_tails_installer '%s' ", + $c->{stash}->{scenario}->{override_started_from_device_installed_with_tails_installer}, + ) if exists $c->{stash}->{scenario}->{override_started_from_device_installed_with_tails_installer}; + $cmdline .= sprintf(" --override_proc_dir '%s' ", $c->{stash}->{scenario}->{proc_dir}) + if exists $c->{stash}->{scenario}->{proc_dir}; + $cmdline .= sprintf(" --override_free_space '%s' ", $c->{stash}->{scenario}->{free_space}) + if exists $c->{stash}->{scenario}->{free_space}; + + $ENV{HTTPS_CA_FILE} = $c->{stash}->{scenario}->{ca_cert}; + $c->{stash}->{scenario}->{output} = `$cmdline 2>&1`; + $c->{stash}->{scenario}->{exit_code} = ${^CHILD_ERROR_NATIVE}; +}; + +Then qr{^it should succeed$}, fun ($c) { + ok(defined $c->{stash}->{scenario}->{exit_code}) + and + is($c->{stash}->{scenario}->{exit_code}, 0); + + if (defined $c->{stash}->{scenario}->{exit_code} + && $c->{stash}->{scenario}->{exit_code} != 0 + && exists $c->{stash}->{scenario}->{output} + && defined $c->{stash}->{scenario}->{output}) { + warn $c->{stash}->{scenario}->{output}; + } + + ok(-e $c->{stash}->{scenario}->{upgrader_run_dir} + ->child('checked_upgrades')); +}; + +Then qr{^it should fail to (check for upgrades|download the upgrade)$}, fun ($c) { + ok(defined $c->{stash}->{scenario}->{exit_code}) + and + isnt($c->{stash}->{scenario}->{exit_code}, 0); + + if ($c->matches->[0] eq 'check for upgrades') { + ok(! -e $c->{stash}->{scenario}->{upgrader_run_dir} + ->child('checked_upgrades')); + } + else { + ok(-e $c->{stash}->{scenario}->{upgrader_run_dir} + ->child('checked_upgrades')); + } +}; + +Then qr{^I should not be told anything}, fun ($c) { + is($c->{stash}->{scenario}->{output}, ""); +}; + +Then qr{^I should be pointed to the documentation about upgrade-description file retrieval error$}, fun ($c) { + like( + $c->{stash}->{scenario}->{output}, + qr{/usr/share/doc/tails/website/doc/upgrade/error/check} + ); +}; + +Then qr{^I should be pointed to the documentation about target file retrieval error$}, fun ($c) { + like( + $c->{stash}->{scenario}->{output}, + qr{/usr/share/doc/tails/website/doc/upgrade/error/download} + ); +}; + +Then qr{^I should be told "([^"]+)"$}, fun ($c) { + my $expected_err = $c->matches->[0]; + like($c->{stash}->{scenario}->{output}, qr{$expected_err}); +}; + +Then qr{^I should be proposed to install this incremental upgrade$}, fun ($c) { + like($c->{stash}->{scenario}->{output}, qr{^Upgrade available$}m); # dialog title + like( + $c->{stash}->{scenario}->{output}, + qr{You should upgrade to Tails 0[.]12[.]1} + ); + like($c->{stash}->{scenario}->{output}, qr{: Upgrade}); # dialog button +}; + +Then qr{^I should be proposed to download this full upgrade$}, fun ($c) { + like($c->{stash}->{scenario}->{output}, qr{^New version available$}m); # dialog title + like( + $c->{stash}->{scenario}->{output}, + qr{You should do a manual upgrade to Tails 0[.]12[.]1} + ); +}; + +Then qr{^I should be asked to wait$}, fun ($c) { + like( + $c->{stash}->{scenario}->{output}, + qr{Downloading the upgrade to Tails} + ); +}; + +Then qr{^the network should be shutdown$}, fun ($c) { + like( + $c->{stash}->{scenario}->{output}, + qr{Shutting down network connection} + ); +}; + +Then qr{^the downloaded IUK should be installed$}, fun ($c) { + # the overlay directory in the test IUK contains a "placeholder" file + ok(path($c->{stash}->{scenario}->{liveos_mountpoint}, 'placeholder')->exists); + # Ensure the next "I run tails-upgrade-frontend in batch mode" + # is aware that the upgrade was applied + $c->{stash}->{scenario}->{os_release_file}->edit_lines( + sub { s{\ATAILS_VERSION_ID="0[.]11"$}{TAILS_VERSION_ID="0.12.1"}xms } + ); +}; + +Then qr{^I should be proposed to restart the system$}, fun ($c) { + like($c->{stash}->{scenario}->{output}, qr{^Restart Tails$}m); # dialog title + like( + $c->{stash}->{scenario}->{output}, + qr{You should restart Tails} + ); + like( + $c->{stash}->{scenario}->{output}, + qr{Restart now / Restart later} # dialog buttons + ); +}; + +Then qr{^the system should be restarted$}, fun ($c) { + like( + $c->{stash}->{scenario}->{output}, + qr{Restarting the system} + ); +}; + +After fun ($c) { + Test::Util::kill_httpd($c); + run_as_root('umount', $c->{stash}->{scenario}->{liveos_mountpoint}); + ${^CHILD_ERROR_NATIVE} == 0 or croak("Failed to umount system partition."); + run_as_root(qw{kpartx -d}, $c->{stash}->{scenario}->{backing_file}); + ${^CHILD_ERROR_NATIVE} == 0 or croak("Failed to delete device mapping: $?."); + $c->{stash}->{scenario}->{tempdir}->remove_tree; +}; diff --git a/config/chroot_local-includes/usr/src/iuk/features/install/Install.feature b/config/chroot_local-includes/usr/src/iuk/features/install/Install.feature new file mode 100644 index 0000000000000000000000000000000000000000..fa1d6ce2816b891fae3ea8cd0f1715156fe11f62 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/features/install/Install.feature @@ -0,0 +1,166 @@ +Feature: install an IUK + As a Tails user, + Given the Tails upgrader proposes me to install an IUK that was downloaded and verified, + When I accept, + Then I want to get as a result either an upgraded system or an error message. + + Background: + Given a 64MB Tails boot device with a blank MBR + + Scenario: attempt to install an IUK whose format version is not supported + Given a "test1.iuk" IUK whose format version is not supported + When I attempt to install the "test1.iuk" IUK + Then it should fail + And I should be told "Unsupported format" + And the temporary directory on the system partition should be empty + And the modules file should list 1 SquashFS + And the last line of the modules file should be "filesystem.squashfs" + + Scenario: attempt to install an IUK whose format version is not an integer + Given a "test1.iuk" IUK whose format version cannot be determined + When I attempt to install the "test1.iuk" IUK + Then it should fail + And I should be told "Unsupported format" + And the temporary directory on the system partition should be empty + And the modules file should list 1 SquashFS + And the last line of the modules file should be "filesystem.squashfs" + + Scenario: attempt to install an IUK that has no FORMAT file + Given a "test1.iuk" IUK that has no FORMAT file + When I attempt to install the "test1.iuk" IUK + Then it should fail + And I should be told "The format version cannot be determined" + And the temporary directory on the system partition should be empty + And the modules file should list 1 SquashFS + And the last line of the modules file should be "filesystem.squashfs" + + Scenario: install an IUK that contains no SquashFS + Given a "test1.iuk" IUK that contains 0 SquashFS + And a running Tails that has no IUK installed + When I install the "test1.iuk" IUK + Then it should succeed + And the system partition should contain 1 SquashFS + And the temporary directory on the system partition should be empty + And the modules file should list 1 SquashFS + And the last line of the modules file should be "filesystem.squashfs" + + Scenario: install an IUK that contains one SquashFS + Given a "test1.iuk" IUK that contains 1 SquashFS + And a running Tails that has no IUK installed + When I install the "test1.iuk" IUK + Then it should succeed + And the system partition should contain 2 SquashFS + And the temporary directory on the system partition should be empty + And the modules file should list 2 SquashFS + And the last line of the modules file should be "test1-1.squashfs" + + Scenario: install an IUK that contains two SquashFS + Given a "test1.iuk" IUK that contains 2 SquashFS + And a running Tails that has no IUK installed + When I install the "test1.iuk" IUK + Then it should succeed + And the system partition should contain 3 SquashFS + And the temporary directory on the system partition should be empty + And the modules file should list 3 SquashFS + And the last line of the modules file should be "test1-2.squashfs" + + Scenario: install an IUK whose overlay directory contains one file + Given a "test1.iuk" IUK whose overlay directory contains file "in_overlay_dir" + When I install the "test1.iuk" IUK + Then it should succeed + And the system partition should contain file "in_overlay_dir" + And the system partition should not contain file "not_in_overlay_dir" + And the temporary directory on the system partition should be empty + And the modules file should list 1 SquashFS + And the last line of the modules file should be "filesystem.squashfs" + + Scenario: install an IUK that deletes files in the system partition + Given a "test1.iuk" IUK that deletes files "a, non_existent, b/c" in the system partition + And a system partition that contains file "a" + And a system partition that contains file "b/c" + And a system partition that contains file "d" + When I install the "test1.iuk" IUK + Then it should succeed + And the system partition should not contain file "a" + And the system partition should not contain file "b/c" + And the system partition should contain file "d" + And the temporary directory on the system partition should be empty + And the modules file should list 1 SquashFS + And the last line of the modules file should be "filesystem.squashfs" + + Scenario: install an IUK a second time in a row + Given a "test1.iuk" IUK whose overlay directory contains file "in_overlay_dir" + When I install the "test1.iuk" IUK + Then it should succeed + When I install the "test1.iuk" IUK + Then it should succeed + And the system partition should contain file "in_overlay_dir" + And the temporary directory on the system partition should be empty + And the modules file should list 1 SquashFS + And the last line of the modules file should be "filesystem.squashfs" + + Scenario: install multiple IUK in a row + Given a "test1.iuk" IUK whose overlay directory contains file "in_overlay_1" + And a "test2.iuk" IUK whose overlay directory contains file "in_overlay_2" + And a "test3.iuk" IUK that contains 1 SquashFS + And a "test4.iuk" IUK that contains 1 SquashFS + And a "test5.iuk" IUK that deletes files "a, non_existent, b/c" in the system partition + And a "test6.iuk" IUK that deletes files "a, non_existent, b/c" in the system partition + And a running Tails that has no IUK installed + And a system partition that contains file "a" + And a system partition that contains file "b/c" + And a system partition that contains file "d" + When I install the "test1.iuk" IUK + Then it should succeed + And the system partition should contain 1 SquashFS + When I install the "test2.iuk" IUK + Then it should succeed + And the system partition should contain 1 SquashFS + When I install the "test3.iuk" IUK + Then it should succeed + And the system partition should contain 2 SquashFS + And the last line of the modules file should be "test3-1.squashfs" + And the modules file should list 2 SquashFS + When I install the "test4.iuk" IUK + Then it should succeed + And the system partition should contain 2 SquashFS + And the last line of the modules file should be "test4-1.squashfs" + And the modules file should list 2 SquashFS + When I install the "test5.iuk" IUK + Then it should succeed + And the system partition should contain 1 SquashFS + And the modules file should list 1 SquashFS + And the last line of the modules file should be "filesystem.squashfs" + When I install the "test6.iuk" IUK + Then it should succeed + And the system partition should contain 1 SquashFS + And the modules file should list 1 SquashFS + And the last line of the modules file should be "filesystem.squashfs" + And the system partition should contain file "in_overlay_1" + And the system partition should contain file "in_overlay_2" + And the system partition should not contain file "a" + And the system partition should not contain file "b/c" + And the system partition should contain file "d" + And the temporary directory on the system partition should be empty + And the system partition should contain file "live/vmlinuz" + And the system partition should contain file "live/initrd.img" + + Scenario: attempt to install an IUK while there is too little space available on the live medium + Given a "test1.iuk" IUK whose overlay directory contains the 80MB file "in_overlay_1" + When I install the "test1.iuk" IUK + Then it should fail + And the system partition should not contain file "in_overlay_1" + And the temporary directory on the system partition should be empty + And the modules file should list 1 SquashFS + And the last line of the modules file should be "filesystem.squashfs" + + @syslinux + Scenario: install an IUK that ships a syslinux binary and MBR + Given a "test1.iuk" IUK whose overlay directory contains the files "utils/linux/syslinux" and "utils/mbr/mbr.bin" respectively copied from "/usr/bin/syslinux" and "/usr/lib/SYSLINUX/gptmbr.bin" + When I install the "test1.iuk" IUK + Then it should succeed + And the system partition should contain file "utils/linux/syslinux" + And the system partition should contain file "utils/mbr/mbr.bin" + And the system partition should contain file "syslinux/ldlinux.sys" + And the "syslinux/ldlinux.sys" file in the system partition has been modified less than 1 minute ago + And the MBR is the new syslinux' one diff --git a/config/chroot_local-includes/usr/src/iuk/features/install/step_definitions/Install_steps.pl b/config/chroot_local-includes/usr/src/iuk/features/install/step_definitions/Install_steps.pl new file mode 100644 index 0000000000000000000000000000000000000000..6388241670e8a3b7711769b831d62ce45efad1ac --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/features/install/step_definitions/Install_steps.pl @@ -0,0 +1,312 @@ +#!perl + +use strictures 2; + +use lib qw{lib t/lib}; + +use Carp; +use Carp::Assert; +use Carp::Assert::More; +use Data::Dumper; +use DateTime; +use English qw{-no_match_vars}; +use Function::Parameters; +use Path::Tiny; +use Test::More; +use Test::BDD::Cucumber::StepFile; + +use YAML::Any; + +use Tails::IUK; +use Tails::IUK::Install; +use Tails::IUK::Utils qw{run_as_root stdout_as_root}; + +use Test::Util qw{make_iuk}; + +my $bindir = path(__FILE__)->parent->parent->parent->parent->child('bin')->absolute; +use Env qw{@PATH}; +unshift @PATH, $bindir; + +Before fun ($c) { + my $dirname = Path::Tiny->tempdir(CLEANUP => 0); + $c->{stash}->{scenario}->{tempdir} = $dirname; + ok(defined($dirname)); +}; + +Given qr{^a (\d+)MB Tails boot device with a blank MBR$}, fun ($c) { + my $size = $c->matches->[0]; + my $liveos_mountpoint + = $c->{stash}->{scenario}->{liveos_mountpoint} + = path($c->{stash}->{scenario}->{tempdir}, 'live', 'medium'); + $liveos_mountpoint->mkpath; + + my $backing_file + = $c->{stash}->{scenario}->{backing_file} + = path($c->{stash}->{scenario}->{tempdir}, 'Tails.img'); + + my %loop_info = Test::Util::prepare_live_device( + $backing_file, $liveos_mountpoint, $size + ); + $c->{stash}->{scenario}->{boot_device} = $loop_info{boot_device}; + $c->{stash}->{scenario}->{system_partition} = $loop_info{system_partition}; +}; + +Given qr{^a "([^"]+)" IUK that contains (\d+) SquashFS$}, fun ($c) { + my $iuk_path = $c->{stash}->{scenario}->{tempdir}->child($c->matches->[0]); + my $wanted_squashfs = $c->matches->[1]; + + my @files; + if ($wanted_squashfs) { + my ($squashfs_prefix) = ($iuk_path->basename =~ m{\A (.*) [.] iuk}xms); + @files = map { + "live/${squashfs_prefix}-$_.squashfs" + } (1..$wanted_squashfs); + } + ok(make_iuk( + $iuk_path, + overlay_filenames => \@files, + overlay_files_content => 'bla', + )); +}; + +Given qr{^a "([^"]+)" IUK whose overlay directory contains (?:the )?(?:(\d+)MB )?file "([^"]+)"$}, fun ($c) { + my $iuk_path = $c->{stash}->{scenario}->{tempdir}->child($c->matches->[0]); + my $size = $c->matches->[1]; + my $included_file = $c->matches->[2]; + + ok(make_iuk( + $iuk_path, + overlay_filenames => [$included_file], + defined $size + ? (overlay_files_size => $size) + : (overlay_files_content => 'bla'), + )); +}; + +Given qr{^a "([^"]+)" IUK whose overlay directory contains the files (.*) respectively copied from (.*)$}, fun ($c) { + my $iuk_path = $c->{stash}->{scenario}->{tempdir}->child($c->matches->[0]); + my $iuk_files_desc = $c->matches->[1]; + my $iuk_source_files_desc = $c->matches->[2]; + + $iuk_files_desc =~ s{["]}{}gxms; + my @iuk_files = split(/ and /, $iuk_files_desc); + $iuk_source_files_desc =~ s{["]}{}gxms; + my @iuk_source_files = split(/ and /, $iuk_source_files_desc); + is(scalar(@iuk_files), scalar(@iuk_source_files)); + + my %copied_files; + for (0..(scalar(@iuk_files) - 1)) { + $copied_files{$iuk_source_files[$_]} = $iuk_files[$_]; + } + + ok(make_iuk( + $iuk_path, + overlay_copied_files => \%copied_files, + )); +}; + +Given qr{^a "([^"]+)" IUK whose format version is not supported$}, fun ($c) { + my $iuk_path = $c->{stash}->{scenario}->{tempdir}->child($c->matches->[0]); + $c->{stash}->{scenario}->{tempdir}->child('FORMAT')->spew(42); + make_iuk( + $iuk_path, + root_files => [ $c->{stash}->{scenario}->{tempdir}->child('FORMAT') ], + ); +}; + +Given qr{^a "([^"]+)" IUK whose format version cannot be determined$}, fun ($c) { + my $iuk_path = $c->{stash}->{scenario}->{tempdir}->child($c->matches->[0]); + $c->{stash}->{scenario}->{tempdir}->child('FORMAT')->spew('abc'); + make_iuk( + $iuk_path, + root_files => [ $c->{stash}->{scenario}->{tempdir}->child('FORMAT') ], + ); +}; + +Given qr{^a "([^"]+)" IUK that has no FORMAT file$}, fun ($c) { + my $iuk_path = $c->{stash}->{scenario}->{tempdir}->child($c->matches->[0]); + $c->{stash}->{scenario}->{tempdir}->child('FORMAT')->spew('abc'); + make_iuk( + $iuk_path, + include_format_file => 0, + ); +}; + +Given qr{^a running Tails that has no IUK installed$}, fun ($c) { + is( + scalar(squashfs_in_system_partition( + $c->{stash}->{scenario}->{liveos_mountpoint} + )), + 1 + ); +}; + +Given qr{^a "([^"]+)" IUK that deletes files "([^"]*)" in the system partition$}, fun ($c) { + my $iuk_path = $c->{stash}->{scenario}->{tempdir}->child($c->matches->[0]); + + my @delete_files = split /,[[:blank:]]+/, $c->matches->[1]; + $c->{stash}->{scenario}->{tempdir}->child('control.yml')->spew( + YAML::Any::Dump({ delete_files => \@delete_files }) + ); + + ok(make_iuk( + $iuk_path, + root_files => [ $c->{stash}->{scenario}->{tempdir}->child('control.yml') ], + )); +}; + +Given qr{^a system partition that contains file "([^"]+)"$}, fun ($c) { + my $file = path($c->{stash}->{scenario}->{liveos_mountpoint}, $c->matches->[0]); + + Test::Util::remount_for_me_rw( + $c->{stash}->{scenario}->{system_partition}, + $c->{stash}->{scenario}->{liveos_mountpoint}); + + $file->parent->mkpath; + $file->touch; + + Test::Util::remount_for_root_ro( + $c->{stash}->{scenario}->{system_partition}, + $c->{stash}->{scenario}->{liveos_mountpoint}); + + ok( Test::Util::has_mount_option( + $c->{stash}->{scenario}->{liveos_mountpoint}, 'ro' + )); + ok(! Test::Util::has_mount_option( + $c->{stash}->{scenario}->{liveos_mountpoint}, 'rw' + )); +}; + +When qr{^I (?:attempt to |)install the "([^"]+)" IUK$}, fun ($c) { + my $iuk = $c->matches->[0]; + local $@; + my $cmdline = + path($bindir, "tails-install-iuk") . + ' --override_boot_device_file "' . $c->{stash}->{scenario}->{boot_device} . '" ' . + ' --override_system_partition_file "' . $c->{stash}->{scenario}->{system_partition} . '" ' . + ' --override_liveos_mountpoint "' . $c->{stash}->{scenario}->{liveos_mountpoint} . '" ' . + '"' . path($c->{stash}->{scenario}->{tempdir}, $iuk) . '"'; + $c->{stash}->{scenario}->{install_output} = `$cmdline 2>&1`; + $c->{stash}->{scenario}->{install_exit_code} = ${^CHILD_ERROR_NATIVE}; +}; + +Then qr{^it should fail$}, fun ($c) { + ok(defined $c->{stash}->{scenario}->{install_exit_code}) + and + isnt($c->{stash}->{scenario}->{install_exit_code}, 0); +}; + +Then qr{^it should succeed$}, fun ($c) { + ok(defined $c->{stash}->{scenario}->{install_exit_code}); + is($c->{stash}->{scenario}->{install_exit_code}, 0); + + if (exists $c->{stash}->{scenario}->{install_output} + && defined $c->{stash}->{scenario}->{install_output} + && length($c->{stash}->{scenario}->{install_output})) { + warn $c->{stash}->{scenario}->{install_output}; + } +}; + +Then qr{^the temporary directory on the system partition should be empty$}, fun ($c) { + my $tempdir = $c->{stash}->{scenario}->{liveos_mountpoint}->child('tmp'); + ok( + ! -d $tempdir || scalar($tempdir->children) == 0 + ); +}; + +Then qr{^I should be told "([^"]+)"$}, fun ($c) { + my $expected_err = $c->matches->[0]; + like($c->{stash}->{scenario}->{install_output}, qr{$expected_err}); +}; + +fun squashfs_in_system_partition ($liveos_mountpoint) { + grep { + $_ =~ m{[.]squashfs \z}xms; + } path($liveos_mountpoint, 'live')->children +} + +Then qr{^the system partition should contain (\d+) SquashFS$}, fun ($c) { + my $expected_squashfs = $c->matches->[0]; + is( + scalar(squashfs_in_system_partition( + $c->{stash}->{scenario}->{liveos_mountpoint} + )), + $expected_squashfs + ); +}; + +fun squashfs_in_modules_file ($modules_file) { + my @lines = grep { + ! m{\A[[:blank:]]*\z} + } grep { + m{[.]squashfs\z} + } $modules_file->lines({chomp => 1}); +} + +Then qr{^the modules file should list (\d+) SquashFS$}, fun($c) { + my $expected_squashfs = $c->matches->[0]; + is( + squashfs_in_modules_file( + path( + $c->{stash}->{scenario}->{liveos_mountpoint}, + 'live', 'Tails.module' + ) + ), + $expected_squashfs, + ); +}; + +Then qr{^the system partition should (not |)contain file "([^"]+)"(?: with content "([^"]*)")?$}, fun ($c) { + my $should_exist = $c->matches->[0] ? 0 : 1; + my $file = $c->matches->[1]; + my $expected_content = $c->matches->[2]; + + if ($should_exist) { + $file = path($c->{stash}->{scenario}->{liveos_mountpoint}, $file); + ok($file->exists); + if (defined $expected_content) { + is($file->slurp, $expected_content); + } + } + else { + ok(! path($c->{stash}->{scenario}->{liveos_mountpoint}, $file)->exists); + } +}; + +Then qr{^the last line of the modules file should be "([^"]+)"$}, fun ($c) { + my $expected_last_module = $c->matches->[0]; + + my @lines = grep { + ! m{\A[[:blank:]]*\z} + } path($c->{stash}->{scenario}->{liveos_mountpoint}, 'live', 'Tails.module') + ->lines({chomp => 1}); + is($lines[-1], $expected_last_module); +}; + +Then qr{^the "([^"]+)" file in the system partition has been modified less than (\d+) minute[s]? ago}, fun ($c) { + my $filename = $c->matches->[0]; + my $max_age = $c->matches->[1]; + + my $file = path($c->{stash}->{scenario}->{liveos_mountpoint}, $filename); + my $min_mtime = DateTime->now - DateTime::Duration->new(minutes => $max_age); + ok($file->stat->mtime >= $min_mtime->epoch); +}; + +Then qr{^the MBR is the new syslinux' one}, fun ($c) { + my $expected_mbr = path('/usr/lib/SYSLINUX/gptmbr.bin')->slurp; + my $mbr = stdout_as_root( + 'dd', 'status=none', 'if='.$c->{stash}->{scenario}->{boot_device}, + 'bs=1', 'count='.length($expected_mbr) + ); + + # we don't use "is" as we don't want binary data to be output on screen + ok($mbr eq $expected_mbr); +}; + +After fun ($c) { + run_as_root('umount', $c->{stash}->{scenario}->{liveos_mountpoint}); + ${^CHILD_ERROR_NATIVE} == 0 or croak("Failed to umount system partition."); + stdout_as_root(qw{kpartx -d}, $c->{stash}->{scenario}->{backing_file}); + ${^CHILD_ERROR_NATIVE} == 0 or croak("Failed to delete device mapping: $?."); + $c->{stash}->{scenario}->{tempdir}->remove_tree; +}; 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 new file mode 100644 index 0000000000000000000000000000000000000000..3bfc399a7befb2a3cdd40b0d634f37dfe34739a8 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK.pm @@ -0,0 +1,482 @@ +=head1 NAME + +Tails::IUK - Incremental Upgrade Kit class + +=cut + +package Tails::IUK; + +no Moo::sification; +use Moo; +use MooX::HandlesVia; + +use 5.10.0; +use strictures 2; + +use autodie qw(:all); +use Carp; +use Carp::Assert; +use Carp::Assert::More; +use Cwd; +use Data::Dumper; +use Device::Cdio::ISO9660; +use Device::Cdio::ISO9660::IFS; +use English qw{-no_match_vars}; +use File::Basename; +use File::Spec::Functions; +use Function::Parameters; +use IPC::Run; +use Path::Tiny; +use Tails::IUK::Utils qw{extract_file_from_iso extract_here_file_from_iso run_as_root stdout_as_root}; +use Types::Path::Tiny qw{AbsDir AbsFile AbsPath File}; +use Types::Standard qw(ArrayRef Enum Str); +use Try::Tiny; +use YAML::Any; + +use namespace::clean; + +use MooX::Options; + + +=head1 ATTRIBUTES + +=cut + +option "$_" => ( + required => 1, + is => 'ro', + isa => AbsFile, + coerce => AbsFile->coercion, + format => 's', +) for (qw{old_iso new_iso}); + +option 'squashfs_diff_name' => + required => 1, + is => 'ro', + isa => Str, + format => 's', + documentation => q{Name of the SquashFS diff file that will be installed into the system partition}; + +option 'outfile' => + required => 1, + is => 'lazy', + isa => AbsPath, + coerce => AbsPath->coercion, + format => 's', + documentation => q{Location of the created IUK}; + +option 'union_type' => + is => 'lazy', + isa => Enum[qw{aufs overlayfs}], + coerce => Enum->coercion, + format => 's', + documentation => q{aufs or overlayfs}; + +has 'format_version' => + is => 'lazy', + isa => Str; + +has "$_" => + is => 'lazy', + isa => ArrayRef +for (qw{delete_files new_kernels}); + +has "$_" => + is => 'lazy', + isa => AbsDir +for (qw{tempdir overlay_dir squashfs_src_dir}); + +has 'mksquashfs_options' => + is => 'lazy', + isa => ArrayRef, + handles_via => 'Array', + handles => { + list_mksquashfs_options => 'elements', + }; + +option 'ignore_if_same_content' => + is => 'lazy', + isa => ArrayRef, + handles_via => 'Array', + format => 's@', + documentation => q{Do not include this file in the SquashFS if its content}. + q{has not changed. Globs are supported.}; + + +=head1 FUNCTIONS + +=cut + +=head2 missing_files_in_isos + +Returns the list of the basename of files present in $dir in $iso1, +and missing in $dir in $iso2, non-recursively. + +Some was adapted from File::DirCompare: + + Copyright 2006-2007 by Gavin Carr + This library is free software; you can redistribute it and/or modify it + under the same terms as Perl itself. + +=cut +fun missing_files_in_isos ($iso1, $iso2, $dir) { + my $read_iso_dir = fun ($iso, $dir) { + my $iso_obj = Device::Cdio::ISO9660::IFS->new(-source => $iso->stringify); + map { + Device::Cdio::ISO9660::name_translate($_->{filename}); + } $iso_obj->readdir($dir); + }; + + my @res; + + # List $dir1 and $dir2 + my (%d1, %d2); + $d1{basename $_} = 1 foreach $read_iso_dir->($iso1, $dir); + $d2{basename $_} = 1 foreach $read_iso_dir->($iso2, $dir); + + # Prune dot dirs + delete $d1{''} if $d1{''}; + delete $d1{curdir()} if $d1{curdir()}; + delete $d1{updir()} if $d1{updir()}; + delete $d2{''} if $d2{''}; + delete $d2{curdir()} if $d2{curdir()}; + delete $d2{updir()} if $d2{updir()}; + + my %u; + for my $f (map { $u{$_}++ == 0 ? $_ : () } sort(keys(%d1), keys(%d2))) { + push @res, $f unless $d2{$f}; + } + + return map { catfile($dir, $_) } @res; +} + +=head2 upgraded_or_new_files_in_isos + +Returns the list of the basename of files new or upgraded in $dir in $iso1, +wrt. $iso2, non-recursively. + +Some was adapted from File::DirCompare: + + Copyright 2006-2007 by Gavin Carr + This library is free software; you can redistribute it and/or modify it + under the same terms as Perl itself. + +=cut +fun upgraded_or_new_files_in_isos ( + AbsFile $iso1, AbsFile $iso2, $dir, $whitelist_patterns) { + my $iso1_obj = Device::Cdio::ISO9660::IFS->new(-source => $iso1->stringify); + my $iso2_obj = Device::Cdio::ISO9660::IFS->new(-source => $iso2->stringify); + + my $read_iso_dir = fun ($iso_obj, $dir) { + assert(defined($iso_obj)); + my @wanted_files; + my @files_in_dir; + try { @files_in_dir = $iso_obj->readdir($dir) }; + foreach (@files_in_dir) { + my $filename = Device::Cdio::ISO9660::name_translate($_->{filename}); + foreach my $re (@{$whitelist_patterns}) { + if ($filename =~ $re) { + push @wanted_files, $filename; + last; + } + } + } + return @wanted_files; + }; + + my @res; + + # List $dir in $iso1 and $iso2 + my (%d1, %d2); + $d1{basename $_} = 1 foreach $read_iso_dir->($iso1_obj, $dir); + $d2{basename $_} = 1 foreach $read_iso_dir->($iso2_obj, $dir); + + # Prune dot dirs + delete $d1{''} if $d1{''}; + delete $d1{curdir()} if $d1{curdir()}; + delete $d1{updir()} if $d1{updir()}; + delete $d2{''} if $d2{''}; + delete $d2{curdir()} if $d2{curdir()}; + delete $d2{updir()} if $d2{updir()}; + + my %u; + for my $f (map { $u{$_}++ == 0 ? $_ : () } sort(keys(%d1), keys(%d2))) { + # only in $iso1 + next unless $d2{$f}; + + # only in $iso2 + unless ($d1{$f}) { + push @res, $f; + next; + } + + # in both + my $stat1 = $iso1_obj->stat(catfile($dir, $f)); + my $stat2 = $iso2_obj->stat(catfile($dir, $f)); + + croak "File $f in $iso1 is a directory." if $stat1->{is_dir}; + croak "File $f in $iso2 is a directory." if $stat2->{is_dir}; + + push @res, $f if + extract_file_from_iso(path($dir, $f), path($iso1)) + ne + extract_file_from_iso(path($dir, $f), path($iso2)); + } + + return map { path($dir, $_)->basename } @res; +} + + +=head1 METHODS + +=cut + +method _build_ignore_if_same_content () { []; } +method _build_tempdir () { Path::Tiny->tempdir; } +method _build_squashfs_src_dir () { + my $squashfs_src_dir = $self->tempdir->child('squashfs_src'); + $squashfs_src_dir->mkpath; + return $squashfs_src_dir; +} +method _build_overlay_dir () { + my $overlay_dir = $self->squashfs_src_dir->child('overlay'); + $overlay_dir->mkpath; + return $overlay_dir; +} +method _build_format_version () { "2"; } +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_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}, + 'EFI/BOOT/grub/i386-efi', + 'EFI/BOOT/grub/x86_64-efi', + qw{isolinux live syslinux tails}, + qw{utils utils/mbr utils/linux}) { + push @delete_files, + missing_files_in_isos($self->old_iso, $self->new_iso, $_); + } + return \@delete_files; +} + +method _build_new_kernels () { + my @new_kernels = + upgraded_or_new_files_in_isos( + $self->old_iso, + $self->new_iso, + 'live', + [ + qr{^ vmlinuz [[:digit:]]* $}xms, + qr{^ initrd [[:digit:]]* [.] img $}xms, + ], + ); + return \@new_kernels; +} + +method create_squashfs_diff () { + my $tempdir = $self->tempdir; + + my $old_iso_mount = $tempdir->child('old_iso'); + my $new_iso_mount = $tempdir->child('new_iso'); + my $old_squashfs_mount = $tempdir->child('old_squashfs'); + my $new_squashfs_mount = $tempdir->child('new_squashfs'); + my $tmpfs; + # overlayfs requires: + # + a workdir to become mounted + # + workdir and upperdir to reside under the same mount + # + workdir and upperdir to be in separate directories + my $union_basedir = $tempdir->child('union'); + my $union_mount = $union_basedir->child('mount'); + my $union_workdir = $union_basedir->child('work'); + my $union_upperdir = $union_basedir->child('rw'); + + for my $dir ( + $old_iso_mount, $new_iso_mount, $old_squashfs_mount, + $new_squashfs_mount, $union_basedir ) { + $dir->mkpath; + } + run_as_root(qw{mount -t tmpfs tmpfs}, $union_basedir); + for my $dir ($union_mount, $union_workdir, $union_upperdir) { + $dir->mkpath; + } + + run_as_root("mount", "-o", "loop,ro", $self->old_iso, $old_iso_mount); + my $old_squashfs = path($old_iso_mount, 'live', 'filesystem.squashfs'); + croak "SquashFS '$old_squashfs' not found in '$old_iso_mount'" unless -e $old_squashfs; + run_as_root(qw{mount -t squashfs -o loop}, $old_squashfs, $old_squashfs_mount); + + run_as_root("mount", "-o", "loop,ro", $self->new_iso, $new_iso_mount); + my $new_squashfs = path($new_iso_mount, 'live', 'filesystem.squashfs'); + croak "SquashFS '$new_squashfs' not found in '$new_iso_mount'" unless -e $new_squashfs; + run_as_root(qw{mount -t squashfs -o loop}, $new_squashfs, $new_squashfs_mount); + + if ($self->union_type eq 'aufs') { + run_as_root( + qw{mount -t aufs}, + "-o", sprintf("br=%s=rw:%s=ro", $union_upperdir, $old_squashfs_mount), + "none", $union_mount + ); + } else { + run_as_root( + qw{mount -t overlay}, + "-o", sprintf("lowerdir=%s,upperdir=%s,workdir=%s", + $old_squashfs_mount, $union_upperdir, $union_workdir), + "overlay", $union_mount + ); + } + + my @rsync_options = qw{--archive --quiet --delete-after --acls --checksum}; + push @rsync_options, "--xattrs" if $self->union_type eq 'overlayfs'; + run_as_root( + "rsync", @rsync_options, + sprintf("%s/", $new_squashfs_mount), + sprintf("%s/", $union_mount), + ); + + for my $glob (@{$self->ignore_if_same_content}) { + my @candidates_for_removal = map { + path($_) + } grep { -e } glob("$union_upperdir/$glob"); + + map { + unlink $_; + } grep { + my $candidate = $_; + my $candidate_rel = "$candidate"; + $candidate_rel =~ s{^$union_upperdir/}{}xms; + my $candidate_old = $old_squashfs_mount->child($candidate_rel); + -e $candidate_old && $candidate_old->slurp eq $candidate->slurp; + } @candidates_for_removal; + } + + if ($self->union_type eq 'aufs') { + run_as_root('auplink', $union_mount, 'flush'); + } + + run_as_root("umount", $union_mount); + + # Remove trusted.overlay.* xattrs + if ($self->union_type eq 'overlayfs') { + my @xattrs_dump = stdout_as_root( + qw{getfattr --dump --recursive --no-dereference --absolute-names}, + q{--match=^trusted\.overlay\.}, + $union_upperdir->stringify, + ); + my %xattrs; + my $current_filename; + foreach (@xattrs_dump) { + defined || last; + chomp; + if (! length($_)) { + $current_filename = undef; + next; + } elsif (my ($filename) = ($_ =~ m{\A [#] \s+ file: \s+ (.*) \z}xms)) { + $current_filename = $filename; + } elsif (my ($xattr, $value) = ($_ =~ m{\A(trusted[.]overlay[.][^=]+)=(.*)\z}xms)) { + push @{$xattrs{$xattr}}, $current_filename; + } else { + croak "Unrecognized line, aborting: '$_'"; + } + } + while (my ($xattr, $files) = each %xattrs) { + my $stdin = join(chr(0), @$files); + my ($stdout, $stderr); + IPC::Run::run [ + qw{sudo xargs --null --no-run-if-empty}, + 'setfattr', '--remove=' . $xattr, + '--no-dereference', + '--' + ], \$stdin or croak "xargs failed: $?"; + } + } + + run_as_root( + "SOURCE_DATE_EPOCH=$ENV{SOURCE_DATE_EPOCH}", + qw{mksquashfs}, + $union_upperdir, + $self->overlay_dir->child('live', $self->squashfs_diff_name), + $self->list_mksquashfs_options + ); + + foreach ($union_basedir, + $new_squashfs_mount, $new_iso_mount, + $old_squashfs_mount, $old_iso_mount) { + run_as_root("umount", $_); + } + + return; +} + +method prepare_overlay_dir () { + $self->overlay_dir->child('live')->mkpath; + + $self->create_squashfs_diff; + + chdir $self->overlay_dir; + for my $new_kernel (@{$self->new_kernels}) { + extract_here_file_from_iso(path('live', $new_kernel), $self->new_iso); + } + extract_here_file_from_iso('EFI', $self->new_iso); + extract_here_file_from_iso('isolinux', $self->new_iso); + extract_here_file_from_iso('utils', $self->new_iso); + run_as_root(qw{chmod -R go+rX .}); + + rename 'isolinux', 'syslinux'; + rename 'syslinux/isolinux.cfg', 'syslinux/syslinux.cfg'; + + foreach my $file (glob('syslinux/*')) { + path($file)->edit_lines(sub { s{/isolinux/}{/syslinux/}gxms }); + } + + chdir $self->tempdir; # allow temp dirs cleanup +} + +method saveas ($outfile_name) { + $self->squashfs_src_dir->child('FORMAT')->spew($self->format_version); + + $self->squashfs_src_dir->child('control.yml')->spew(YAML::Any::Dump({ + delete_files => $self->delete_files, + })); + + $self->prepare_overlay_dir; + + run_as_root( + "SOURCE_DATE_EPOCH=$ENV{SOURCE_DATE_EPOCH}", + qw{mksquashfs}, + $self->squashfs_src_dir, + $outfile_name, + $self->list_mksquashfs_options, + '-all-root', + ); + + return; +} + +method save () { + $self->saveas($self->outfile); +} + +method delete_tempdir () { + chdir '/'; + run_as_root(qw{rm -rf}, $self->tempdir); +} + +method run () { + assert_exists( + \%ENV, 'SOURCE_DATE_EPOCH', q{SOURCE_DATE_EPOCH is in the environment} + ); + assert_nonblank( + $ENV{SOURCE_DATE_EPOCH}, q{SOURCE_DATE_EPOCH variable is not empty} + ); + $self->save; + $self->delete_tempdir; +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm new file mode 100644 index 0000000000000000000000000000000000000000..c0b70d752ed42f8aa3b73271ec1bb74f9ed0bf02 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm @@ -0,0 +1,811 @@ +=head1 NAME + +Tails::IUK::Frontend - lead Tails user through the process of upgrading the system, if needed + +=cut + +package Tails::IUK::Frontend; + +use 5.10.1; +use strictures 2; + +use autodie qw(:all); +use Carp; +use Carp::Assert; +use Carp::Assert::More; +use English qw{-no_match_vars}; +use Env; +use Function::Parameters; +use IPC::Run; +use Number::Format qw(:subs); +use Path::Tiny; +use String::Errf qw{errf}; +use Tails::Download::HTTPS; +use Tails::RunningSystem; +use Tails::IUK::UpgradeDescriptionFile; +use Tails::IUK::Utils qw{space_available_in}; +use Tails::MirrorPool; +use Try::Tiny; +use Types::Path::Tiny qw{AbsDir AbsFile}; +use Types::Standard qw(ArrayRef Bool CodeRef Defined HashRef InstanceOf Int Maybe Str); + +use Locale::gettext; +use POSIX; +setlocale(LC_MESSAGES, ""); +textdomain("tails"); + +no Moo::sification; +use Moo; +use MooX::HandlesVia; + +with 'Tails::Role::HasEncoding'; + +use namespace::clean; + +use MooX::Options; + + +=head1 ATTRIBUTES + +=cut + +option "override_$_" => ( + is => 'lazy', + isa => Str, + format => 's', + predicate => 1, +) for (qw{baseurl build_target trusted_gnupg_homedir}); + +option override_initial_install_os_release_file => + is => 'lazy', + isa => AbsFile, + coerce => AbsFile->coercion, + format => 's', + predicate => 1; + +option override_os_release_file => + is => 'lazy', + isa => AbsFile, + coerce => AbsFile->coercion, + format => 's', + predicate => 1; + +option "override_$_" => ( + isa => AbsDir, + is => 'ro', + lazy_build => 1, + coerce => AbsDir->coercion, + format => 's', + predicate => 1, +) for (qw{dev_dir liveos_mountpoint proc_dir run_dir}); + +option batch => + is => 'lazy', + isa => Bool; + +option 'override_started_from_device_installed_with_tails_installer' => + is => 'lazy', + isa => Str, + format => 's', + predicate => 1, + documentation => q{Internal, for test suite only}; + +has 'running_system' => + is => 'lazy', + isa => InstanceOf['Tails::RunningSystem'], + handles => [ + qw{upgrade_description_file_url upgrade_description_sig_url}, + qw{product_name initial_install_version build_target channel} + ]; + +has 'free_space' => + is => 'lazy', + isa => Int, + documentation => q{Free space (in bytes) on the system partition}; + +option 'override_free_space' => + is => 'lazy', + isa => Int, + format => 'i', + predicate => 1, + documentation => q{Internal, for test suite only}; + + +=head1 CONSTRUCTORS AND BUILDERS + +=cut + +method _build_batch () { 0; } + +method _build_running_system () { + my @args; + for (qw{baseurl build_target dev_dir liveos_mountpoint}, + qw{os_release_file initial_install_os_release_file}, + qw{proc_dir run_dir}) { + my $attribute = "override_$_"; + my $predicate = "has_$attribute"; + if ($self->$predicate) { + push @args, ($_ => $self->$attribute) + } + } + if ($self->has_override_started_from_device_installed_with_tails_installer) { + push @args, ( + override_started_from_device_installed_with_tails_installer + => $self->override_started_from_device_installed_with_tails_installer + ); + } + Tails::RunningSystem->new(@args); +} + +method _build_free_space () { + $self->has_override_free_space + ? $self->override_free_space + : space_available_in($self->running_system->liveos_mountpoint); +} + + +=head1 METHODS + +=cut + +method fatal (Str $msg, Str :$title, Str :$debugging_info) { + say STDERR $self->encoding->encode("$title\n$msg\n$debugging_info"); + $self->dialog($msg, type => 'error', title => $title) unless $self->batch; + croak($self->encoding->encode("$title\n$msg\n$debugging_info")); +} + +method info (Str $msg) { + say $self->encoding->encode($msg); +} + +method fatal_run_cmd (Str :$error_msg, ArrayRef :$cmd, Maybe[Str] :$as = undef, Str :$error_title) { + my @cmd = @{$cmd}; + + if (defined $as && ! $ENV{HARNESS_ACTIVE}) { + @cmd = ('sudo', '-n', '-u', $as, @cmd); + } + + my ($stdout, $stderr); + my $success = 1; + my $exit_code; + IPC::Run::run \@cmd, '>', \$stdout, '2>', \$stderr or $success = 0; + $exit_code = $?; + $success or $self->fatal( + errf("<b>%{error_msg}s</b>\n\n%{details}s", + { + error_msg => $error_msg, # was already decoded + details => $self->encoding->decode(gettext( + q{For debugging information, execute the following command: sudo tails-debugging-info} + )), + }, + ), + title => $error_title, + debugging_info => $self->encoding->decode(errf( + "exit code: %{exit_code}i\n\n". + "stdout:\n%{stdout}s\n\n". + "stderr:\n%{stderr}s", + { exit_code => $exit_code, stdout => $stdout, stderr => $stderr } + )), + ); + + return ($stdout, $stderr, $success, $exit_code); +} + +method dialog (Str $question, Str :$type = 'question', Str :$title, + Maybe[Str] :$ok_label = undef, Maybe[Str] :$cancel_label = undef) { + if ($type ne 'question' && $type ne 'info') { + assert_undefined($ok_label); + } + if ($type ne 'question') { + assert_undefined($cancel_label); + } + my @cmd = ('zenity', "--$type", '--ellipsize', '--text', $question); + my $info = $question; + if (defined $title) { + $info = "$title\n$info"; + push @cmd, ('--title', $title); + } + if (defined $ok_label) { + $info = "$info: $ok_label"; + push @cmd, ('--ok-label', $ok_label); + } + if (defined $cancel_label) { + $info = "$info / $cancel_label"; + push @cmd, ('--cancel-label', $cancel_label); + } + $self->info($info); + return 1 if $self->batch; + system(@cmd); + ${^CHILD_ERROR_NATIVE} == 0; +} + +method upgrader_run_dir () { + $self->running_system->run_dir->child('tails-upgrader'); +} + +method checked_upgrades_file () { + $self->upgrader_run_dir->child('checked_upgrades'); +} + +method refresh_signing_key () { + my $new_key_content = Tails::Download::HTTPS->new( + max_download_size => 128 * 2**10, + )->get_url( + $self->running_system->baseurl . '/tails-signing-minimal.key' + ); + my ($stdout, $stderr, $exit_code); + my $success = 1; + IPC::Run::run ['gpg', '--import'], + '<', \$new_key_content, '>', \$stdout, '2>', \$stderr + or $success = 0; + $exit_code = $?; + $success or $self->fatal( + $self->encoding->decode(gettext( + q{<b>An error occured while updating the signing key.</b>\n\n}. + q{<b>This prevents determining whether an upgrade is available from our website.</b>\n\n}. + q{Check your network connection, and restart Tails to try upgrading again.\n\n}. + q{If the problem persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html}, + )), + title => $self->encoding->decode(gettext( + q{Error while updating the signing key} + )), + debugging_info => $self->encoding->decode(errf( + "exit code: %{exit_code}i\n\n". + "stdout:\n%{stdout}s\n\n". + "stderr:\n%{stderr}s", + { exit_code => $exit_code, stdout => $stdout, stderr => $stderr } + )), + ); +} + +method get_upgrade_description () { + my @args; + for (qw{baseurl build_target os_release_file initial_install_os_release_file}) { + my $attribute = "override_$_"; + my $predicate = "has_$attribute"; + if ($self->$predicate) { + my $arg = "--$attribute"; + push @args, ($arg, $self->$attribute); + } + } + if ($self->has_override_trusted_gnupg_homedir) { + push @args, ( + '--trusted_gnupg_homedir', $self->override_trusted_gnupg_homedir + ); + } + my ($stdout, $stderr, $success, $exit_code) = $self->fatal_run_cmd( + cmd => [ 'tails-iuk-get-upgrade-description-file', @args ], + error_title => $self->encoding->decode(gettext( + q{Error while checking for upgrades} + )), + error_msg => $self->encoding->decode(gettext( + "<b>Could not determine whether an upgrade is available from our website.</b>\n\n". + "Check your network connection, and restart Tails to try upgrading again.\n\n". + "If the problem persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html", + ))); + + return ($stdout, $stderr, $success, $exit_code); +} + +method no_incremental_explanation (Str $no_incremental_reason) { + assert_defined($no_incremental_reason); + + my $explanation; + + if ($no_incremental_reason eq 'no-incremental-upgrade-path') { + $explanation = gettext( + q{no automatic upgrade is available from our website }. + q{for this version} + ); + } + elsif ($no_incremental_reason eq 'not-installed-with-tails-installer') { + $explanation = gettext( + q{your device was not created using a USB image or Tails Installer} + ); + } + elsif ($no_incremental_reason eq 'non-writable-device') { + $explanation = gettext( + q{Tails was started from a DVD or a read-only device} + ); + } + elsif ($no_incremental_reason eq 'not-enough-free-space') { + $explanation = gettext( + q{there is not enough free space on the Tails system partition} + ); + } + elsif ($no_incremental_reason eq 'not-enough-free-memory') { + $explanation = gettext( + q{not enough memory is available on this system} + ); + } + else { + $self->debug(errf( + $self->encoding->decode(gettext( + q{No explanation available for reason '%{reason}s'.} + )), + { reason => $no_incremental_reason } + )); + $explanation = $no_incremental_reason; + } + + return "$explanation"; +} + +method run () { + $self->refresh_signing_key; + my ($upgrade_description_text) = $self->get_upgrade_description; + my $upgrade_description = Tails::IUK::UpgradeDescriptionFile->new_from_text( + text => $upgrade_description_text, + product_version => $self->running_system->product_version, + ); + assert_isa($upgrade_description, 'Tails::IUK::UpgradeDescriptionFile'); + + $self->checked_upgrades_file->touch; + + unless ($upgrade_description->contains_upgrade_path) { + $self->info($self->encoding->decode(gettext("The system is up-to-date"))); + exit(0); + } + + $self->info($self->encoding->decode(gettext( + 'This version of Tails is outdated, and may have security issues.' + ))); + my ($upgrade_path, $upgrade_type, $no_incremental_reason); + + if ($self->running_system->started_from_writable_device) { + if ($self->running_system->started_from_device_installed_with_tails_installer) { + $upgrade_description->contains_incremental_upgrade_path or + $no_incremental_reason = 'no-incremental-upgrade-path'; + } + else { + $no_incremental_reason = 'not-installed-with-tails-installer'; + } + } + else { + $no_incremental_reason = 'non-writable-device'; + } + + if (! defined($no_incremental_reason)) { + my $incremental_upgrade_path = $upgrade_description->incremental_upgrade_path; + my $free_memory = $self->running_system->free_memory; + my $memory_needed = memory_needed($incremental_upgrade_path); + if ($free_memory >= $memory_needed) { + my $free_space = $self->free_space; + my $space_needed = space_needed($incremental_upgrade_path); + if ($free_space >= $space_needed) { + $upgrade_path = $incremental_upgrade_path; + $upgrade_type = 'incremental'; + } + else { + $no_incremental_reason = 'not-enough-free-space'; + $self->info(errf( + $self->encoding->decode(gettext( + "The available incremental upgrade requires ". + "%{space_needed}s ". + "of free space on Tails system partition, ". + " but only %{free_space}s is available." + )), + { + space_needed => format_bytes($space_needed, mode => "iec"), + free_space => format_bytes($free_space, mode => "iec"), + } + )); + } + } + else { + $no_incremental_reason = 'not-enough-free-memory'; + $self->info(errf( + $self->encoding->decode(gettext( + "The available incremental upgrade requires ". + "%{memory_needed}s of free memory, but only ". + "%{free_memory}s is available." + )), + { + memory_needed => format_bytes($memory_needed, mode => "iec"), + free_memory => format_bytes($free_memory, mode => "iec"), + } + )); + } + } + + # incremental upgrade is not available or possible, + # let's see if we can do a full upgrade + if (! defined($upgrade_path)) { + if ($upgrade_description->contains_full_upgrade_path) { + $upgrade_path = $upgrade_description->full_upgrade_path; + $upgrade_type = 'full'; + } + else { + $self->fatal( + $self->encoding->decode(gettext( + "An incremental upgrade is available, but no full upgrade is.\n". + "This should not happen. Please report a bug." + )), + title => $self->encoding->decode(gettext( + q{Error while detecting available upgrades} + )), + ); + } + } + + if ($upgrade_type eq 'incremental') { + exit(0) unless($self->dialog( + errf( + $self->encoding->decode(gettext( + "<b>You should upgrade to %{name}s %{version}s.</b>\n\n". + "For more information about this new version, go to %{details_url}s\n\n". + "We recommend you close all other applications during the upgrade.\n". + "Downloading the upgrade might take a long time, from several minutes to a few hours.\n\n". + "Download size: %{size}s\n\n". + "Do you want to upgrade now?" + )), + { + details_url => $upgrade_path->{'details-url'}, + name => $upgrade_description->product_name, + version => $upgrade_path->{version}, + size => format_bytes($upgrade_path->{'total-size'}, + mode => "iec"), + }), + title => $self->encoding->decode(gettext(q{Upgrade available})), + ok_label => $self->encoding->decode(gettext(q{Upgrade now})), + cancel_label => $self->encoding->decode(gettext(q{Upgrade later})), + )); + $self->do_incremental_upgrade($upgrade_path); + } + else { + exit(0) unless($self->dialog( + errf( + $self->encoding->decode(gettext( + "<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n\n". + "For more information about this new version, go to %{details_url}s\n\n". + "It is not possible to automatically upgrade ". + "your device to this new version: %{explanation}s.\n\n". + "To learn how to do a manual upgrade, go to ". + "https://tails.boum.org/doc/upgrade/#manual", + )), + { + details_url => $upgrade_path->{'details-url'}, + name => $upgrade_description->product_name, + version => $upgrade_path->{version}, + explanation => $self->encoding->decode( + $self->no_incremental_explanation($no_incremental_reason) + ), + } + ), + title => $self->encoding->decode(gettext(q{New version available})), + type => 'info', + )); + $self->do_full_upgrade($upgrade_path); + } +} + +fun target_files (HashRef $upgrade_path, AbsDir $destdir) { + my @target_files; + foreach my $target_file (@{$upgrade_path->{'target-files'}}) { + my $basename = path($target_file->{url})->basename; + my $output_file = path($destdir, $basename); + push @target_files, + { + %{$target_file}, + output_file => $output_file, + }; + } + + return @target_files; +} + +=head2 memory_needed + +Returns the amount of free RAM, in bytes, needed to download and install +the incremental upgrade described in the upgrade path passed +as argument. + +=cut +fun memory_needed (HashRef $upgrade_path) { + # We need: + # - The size of the target file, because tails-iuk-get-target-file + # will download in a temporary directory stored in the root filesystem's + # union upper branch, that is in a tmpfs, that is in memory. + # - Enough memory to run the tails-iuk-get-target-file process. + # - Enough memory to run the tails-install-iuk process. + # - Some margin, e.g. for the squashfs kernel module to decompress + # the IUK when we copy its content to the system partition. + my $get_target_file_process_memory = 60 * 1024 * 1024; + my $install_iuk_process_memory = 90 * 1024 * 1024; + my $margin = 64 * 1024 * 1024; + + $upgrade_path->{'total-size'} + + $get_target_file_process_memory + + $install_iuk_process_memory + + $margin; +} + +=head2 space_needed + +Returns the amount of free space, in bytes, needed on the system +partition to download and install the incremental upgrade described in +the upgrade path passed as argument. + +=cut +fun space_needed (HashRef $upgrade_path) { + # At this point, we only know the size of the target file, + # which is an IUK, i.e. a (compressed) SquashFS, whose content + # will be copied to the system partition: vmlinuz, initrd; EFI, + # isolinux, and utils directories; SquashFS diff. + # + # So the question basically boils down to: how well is the IUK + # compressed? + # + # In practice, in most cases the total size of the IUK content is + # dominated by the size of the SquashFS diff and the initrd, which + # are already heavily compressed and won't be compressed further + # in the IUK. So in most cases, we only need to leave room for + # a tiny bit of margin, hence a $space_factor not much bigger + # than 1 should do the job. + # + # Still, let's give ourselves a bit of margin, in the form or an + # additional constant, just in case, for whatever reason, we ever + # generate an IUK whose content is mostly uncompressed data, + # and our $space_factor is not sufficient in itself. + my $space_factor = 1.2; + my $space_margin = 64 * 1024; + $space_factor * $upgrade_path->{'total-size'} + $space_margin; +} + +method get_target_files (HashRef $upgrade_path, CodeRef $url_transform, AbsDir $destdir) { + my $title = $self->encoding->decode(gettext("Downloading upgrade")); + my $info = $self->encoding->decode(errf( + gettext( + "Downloading the upgrade to %{name}s %{version}s..." + ), + { + name => $self->product_name, + version => $upgrade_path->{version}, + } + )); + $self->info($info); + + foreach my $target_file (target_files($upgrade_path, $destdir)) { + my @cmd = ( + 'tails-iuk-get-target-file', + '--uri', $url_transform->($target_file->{url}), + '--hash_type', 'sha256', + '--hash_value', $target_file->{sha256}, + '--size', $target_file->{size}, + '--output_file', $target_file->{output_file}, + ); + if (! $ENV{HARNESS_ACTIVE}) { + @cmd = ('sudo', '-n', '-u', 'tails-iuk-get-target-file', @cmd); + } + my ($exit_code, $stderr); + my $success = 1; + + if ($self->batch) { + IPC::Run::run \@cmd, '2>', \$stderr or $success = 0; + $exit_code = $?; + } + else { + IPC::Run::run \@cmd, '2>', \$stderr, + '|', [qw{zenity --progress --percentage=0 --auto-close + --no-cancel}, '--title', $title, '--text', $info] + or $success = 0; + $exit_code = $?; + } + + $success or $self->fatal( + errf("<b>%{error_msg}s</b>\n\n%{details}s", + { + error_msg => $self->encoding->decode(errf( + gettext( + q{<b>The upgrade could not be downloaded.</b>\n\n}. + q{Check your network connection, and restart }. + q{Tails to try upgrading again.\n\n}. + q{If the problem persists, go to }. + q{file:///usr/share/doc/tails/website/doc/upgrade/error/download.en.html} + ), + { + target_url => $target_file->{url}, + } + )), + details => $self->encoding->decode(gettext( + q{For debugging information, execute the following command: sudo tails-debugging-info} + )), + } + ), + title => $self->encoding->decode(gettext( + q{Error while downloading the upgrade} + )), + debugging_info => $self->encoding->decode(errf( + "exit code: %{exit_code}i\n\n". + "stderr:\n%{stderr}s", + { exit_code => $exit_code, stderr => $stderr } + )), + ); + + -e $target_file->{output_file} or $self->fatal( + $self->encoding->decode(errf( + gettext( + q{Output file '%{output_file}s' does not exist, but }. + q{tails-iuk-get-target-file did not complain. }. + q{Please report a bug.} + ), + { output_file => $target_file->{output_file} } + )), + title => $self->encoding->decode(gettext( + q{Error while downloading the upgrade} + )), + ); + } +} + +method do_incremental_upgrade (HashRef $upgrade_path) { + my ($stdout, $stderr, $success, $exit_code); + + my ($target_files_tempdir) = $self->fatal_run_cmd( + cmd => ['tails-iuk-mktemp-get-target-file'], + error_title => $self->encoding->decode(gettext( + q{Error while creating temporary downloading directory} + )), + error_msg => $self->encoding->decode(gettext( + "Failed to create temporary download directory" + )), + as => 'tails-iuk-get-target-file', + ); + chomp $target_files_tempdir; + + my $url_transform = sub { + my $url = shift; + + try { + $url = Tails::MirrorPool->new( + # hack: piggy-back on the logic we have in T::RunningSystem + # for handling the default value and override_baseurl + baseurl => $self->running_system->baseurl, + ($ENV{HARNESS_ACTIVE} + ? (fallback_prefix => 'https://127.0.0.1:' + . $ENV{TAILS_FALLBACK_DL_URL_PORT} + . '/tails') + : () + ), + )->transformURL($url); + } catch { + $self->fatal( + $self->encoding->decode(gettext( + "<b>Could not choose a download server.</b>\n\n". + "This should not happen. Please report a bug.", + )), + title => $self->encoding->decode(gettext( + q{Error while choosing a download server} + )), + debugging_info => $self->encoding->decode($_), + ); + }; + + return $url; + }; + + $self->get_target_files( + $upgrade_path, $url_transform, path($target_files_tempdir) + ); + + $self->dialog( + $self->encoding->decode(gettext( + "The upgrade was successfully downloaded.\n\n". + "The network connection will now be disabled.\n\n". + "Please save your work and close all other applications." + )), + type => 'info', + title => $self->encoding->decode(gettext( + q{Upgrade successfully downloaded} + )), + ok_label => $self->encoding->decode(gettext(q{Apply upgrade})), + ); + + $self->install_iuk($upgrade_path, path($target_files_tempdir)); + + $self->dialog( + $self->encoding->decode(gettext( + "<b>Your Tails device was successfully upgraded.</b>\n\n". + "Some security features were temporarily disabled.\n". + "You should restart Tails on the new version as soon as possible.\n\n". + "Do you want to restart now?" + )), + title => $self->encoding->decode(gettext(q{Restart Tails})), + ok_label => $self->encoding->decode(gettext(q{Restart now})), + cancel_label => $self->encoding->decode(gettext(q{Restart later})), + ) && $self->restart_system; + + exit(0); +} + +method restart_system () { + $self->info("Restarting the system"); + $self->fatal_run_cmd( + cmd => ['/sbin/reboot'], + error_title => $self->encoding->decode(gettext( + q{Error while restarting the system} + )), + error_msg => $self->encoding->decode(gettext( + q{Failed to restart the system} + )), + as => 'root', + ) unless $ENV{HARNESS_ACTIVE}; +} + +method do_full_upgrade (HashRef $upgrade_path) { + exit(0); +} + +method shutdown_network () { + $self->info("Shutting down network connection"); + $self->fatal_run_cmd( + cmd => ['tails-shutdown-network'], + error_title => $self->encoding->decode(gettext( + q{Error while shutting down the network} + )), + error_msg => $self->encoding->decode(gettext( + q{Failed to shutdown network} + )), + as => 'root', + ) unless $ENV{HARNESS_ACTIVE}; +} + +method install_iuk (HashRef $upgrade_path, AbsDir $target_files_tempdir) { + my $title = $self->encoding->decode(gettext("Upgrading the system")); + my $info = $self->encoding->decode(gettext( + "<b>Your Tails device is being upgraded...</b>\n\n". + "For security reasons, the networking is now disabled." + )); + $self->info($info); + + $self->shutdown_network; + + my @target_files = target_files($upgrade_path, $target_files_tempdir); + assert(@target_files == 1); + + my @args; + push @args, ( + '--override_liveos_mountpoint', $self->override_liveos_mountpoint + ) if $self->has_override_liveos_mountpoint; + + my @cmd = ('tails-install-iuk', @args, $target_files[0]->{output_file}); + if (! $ENV{HARNESS_ACTIVE}) { + @cmd = ('sudo', '-n', '-u', 'tails-install-iuk', @cmd); + } + + my ($exit_code, $stdout, $stderr, $zenity_h); + my $success = 1; + + $zenity_h = IPC::Run::start [qw{tail -f /dev/null}], '|', [qw{zenity --progress --pulsate --no-cancel --auto-close}, + '--title', $title, '--text', $info] unless $self->batch; + IPC::Run::run \@cmd, '>', \$stdout, '2>', \$stderr or $success = 0; + $exit_code = $?; + $zenity_h->kill_kill unless $self->batch; + + $success or $self->fatal( + errf("<b>%{error_msg}s</b>\n\n%{details}s", + { + error_msg => $self->encoding->decode(gettext( + q{<b>An error occured while installing the upgrade.</b>\n\n}. + q{Your Tails device needs to be repaired and might be unable to restart.\n\n}. + q{Please follow the instructions at }. + q{file:///usr/share/doc/tails/website/doc/upgrade/error/install.en.html})), + details => $self->encoding->decode(gettext( + q{For debugging information, execute the following command: sudo tails-debugging-info} + )), + }, + ), + title => $self->encoding->decode(gettext( + q{Error while installing the upgrade} + )), + debugging_info => $self->encoding->decode(errf( + "exit code: %{exit_code}i\n\n". + "stdout:\n%{stdout}s\n\n". + "stderr:\n%{stderr}s", + { exit_code => $exit_code, stdout => $stdout, stderr => $stderr } + )), + ); +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Install.pm b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Install.pm new file mode 100644 index 0000000000000000000000000000000000000000..c0fe60d08c09657bd7ac962b3a479aad7ca0047a --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Install.pm @@ -0,0 +1,228 @@ +=head1 NAME + +Tails::IUK::Install - install an Incremental Upgrade Kit + +=cut + +package Tails::IUK::Install; + +no Moo::sification; +use Moo; +use MooX::HandlesVia; + +use 5.10.1; +use strictures 2; + +use autodie qw(:all); +use Carp; +use Carp::Assert::More; +use Cwd; +use Data::Dumper; +use File::Copy; +use File::Temp qw{tempfile}; +use Function::Parameters; +use Path::Tiny; +use Try::Tiny; +use Tails::IUK::Read; +use Tails::IUK::Utils qw{run_as_root space_available_in}; +use Tails::RunningSystem; +use Types::Path::Tiny qw{AbsDir AbsFile AbsPath}; +use Types::Standard qw{ArrayRef InstanceOf Str}; + +use namespace::clean; + +use MooX::Options; + + +=head1 ATTRIBUTES + +=cut + +has 'reader' => + is => 'lazy', + isa => InstanceOf['Tails::IUK::Read'], + handles => [ + qw{file delete_files delete_files_count}, + qw{space_needed squashfs_in_overlay} ]; + +option 'override_liveos_mountpoint' => + is => 'lazy', + isa => AbsDir, + coerce => AbsDir->coercion, + format => 's', + predicate => 1; + +option 'override_system_partition_file' => + is => 'lazy', + isa => AbsPath, + coerce => AbsPath->coercion, + format => 's', + predicate => 1; + +option 'override_boot_device_file' => + is => 'lazy', + isa => AbsPath, + coerce => AbsPath->coercion, + format => 's', + predicate => 1; + +has 'modules_file' => + is => 'lazy', + isa => AbsFile; + +has 'from_file' => + required => 1, + is => 'ro', + isa => AbsFile, + coerce => AbsFile->coercion; + +has 'installed_squashfs' => + is => 'lazy', + isa => ArrayRef, + handles_via => 'Array', + handles => { + record_installed_squashfs => 'push', + all_installed_squashfs => 'elements', + }; + +has 'running_system' => + is => 'lazy', + isa => InstanceOf['Tails::RunningSystem'], + handles => [ qw{boot_device_file system_partition_file liveos_mountpoint} ]; + + +=head1 CONSTRUCTORS, BUILDERS AND DESTRUCTORS + +=cut + +method _build_installed_squashfs () { [] } + +method _build_modules_file () { + path($self->liveos_mountpoint, 'live', 'Tails.module'); +} + +method _build_reader () { + Tails::IUK::Read->new_from_file($self->from_file); +} + +method _build_running_system () { + my @args; + for (qw{boot_device_file system_partition_file liveos_mountpoint}) { + my $attribute = "override_$_"; + my $predicate = "has_$attribute"; + if ($self->$predicate) { + push @args, ($_ => $self->$attribute) + } + } + Tails::RunningSystem->new(@args); +} + + +=head1 METHODS + +=cut + +method fatal (@msg) { + Tails::IUK::Utils::fatal( + msg => \@msg, + ); +} + +method space_available () { + space_available_in($self->liveos_mountpoint); +} + +method delete_obsolete_squashfs_diffs () { + my @keep = ( + $self->liveos_mountpoint->child('live', 'filesystem.squashfs'), + (map {path($self->liveos_mountpoint, 'live', $_)} + $self->all_installed_squashfs), + ); + + for my $candidate ($self->liveos_mountpoint->path('live')->children) { + next if "$candidate" !~ m{[.] squashfs\z}xms; + next if grep { "$candidate" eq "$_" } @keep; + run_as_root('rm', '--force', "$candidate"); + } +} + +method upgrade_modules_file () { + my @installed_squashfs = $self->all_installed_squashfs; + + my $new_squashfs_str = join("\n", map { path($_)->basename } @installed_squashfs); + my ($temp_fh, $temp_file) = tempfile; + copy($self->modules_file->stringify, $temp_fh) + or $self->fatal(sprintf( + "Could not copy modules file ('%s') to temporary file ('%s')", + $self->modules_file, $temp_file, + )); + close $temp_fh; + + $temp_fh = path($temp_file)->openw; + say $temp_fh 'filesystem.squashfs', "\n", $new_squashfs_str; + close $temp_fh; + system('sync'); + + run_as_root('nocache', '/bin/cp', '--force', $temp_file, $self->modules_file); +} + +method remount_liveos_rw () { + run_as_root(qw{mount -o}, "remount,rw", $self->liveos_mountpoint); +} + +method remount_liveos_sync () { + run_as_root(qw{mount -o}, "remount,sync", $self->liveos_mountpoint); +} + +method run () { + unless ($self->space_available > $self->space_needed) { + $self->fatal( + "There is too little available space on Tails system partition, aborting" + ); + } + + $self->remount_liveos_rw; + + # In a real Tails, /lib/live/mount/medium is not writable by non-root. + run_as_root( + 'rsync', + '--recursive', + '--links', + '--perms', + '--times', + '--chown=root:root', + $self->reader->overlay_dir . '/', + $self->liveos_mountpoint . '/' + ); + + $self->record_installed_squashfs($self->squashfs_in_overlay); + + if ($self->delete_files_count) { + run_as_root( + 'rm', '--recursive', '--force', + map { path($self->liveos_mountpoint, $_) } @{$self->delete_files} + ); + } + + $self->remount_liveos_sync; + + $self->upgrade_modules_file; + + $self->delete_obsolete_squashfs_diffs; + + # upgrade syslinux' ldlinux.sys + my $syslinux = path($self->liveos_mountpoint, qw{utils linux syslinux}); + run_as_root($syslinux, qw{-d syslinux}, $self->system_partition_file) + if -e $syslinux; + + # upgrade the MBR + my $mbr = path($self->liveos_mountpoint, qw{utils mbr mbr.bin}); + run_as_root( + 'dd', 'status=none', "if=$mbr", 'of='.$self->boot_device_file, 'bs=1', 'count=440', + ) if -e $mbr; + + system('sync'); +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/LWP/UserAgent/WithProgress.pm b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/LWP/UserAgent/WithProgress.pm new file mode 100644 index 0000000000000000000000000000000000000000..4da3ddd0310c46a0bf44166c4297f7f69f2f7b41 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/LWP/UserAgent/WithProgress.pm @@ -0,0 +1,33 @@ +=head1 NAME + +Tails::IUK::LWP::UserAgent::WithProgress - LWP::UserAgent subclass that displays progress information + +=cut + +package Tails::IUK::LWP::UserAgent::WithProgress; + +use 5.10.1; +use strictures 2; +use autodie qw(:all); + +use parent 'LWP::UserAgent'; + +sub progress { + my($self, $status, $m) = @_; + + if ($status eq "begin") { + say "0"; + } + elsif ($status eq "end") { + 1; # "end" doesn't mean success, so don't display 100 here + } + elsif ($status eq "tick") { + 1; # the fraction can't be calculated + } + else { + say $status * 100; + } + STDOUT->flush; +} + +1; diff --git a/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Read.pm b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Read.pm new file mode 100644 index 0000000000000000000000000000000000000000..a4bfc1071f7e2599e0e041a1619a2a14978a6179 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Read.pm @@ -0,0 +1,164 @@ +=head1 NAME + +Tails::IUK::Read - read Incremental Upgrade Kit files + +=cut + +package Tails::IUK::Read; + +no Moo::sification; +use Moo; +use MooX::HandlesVia; + +use 5.10.1; +use strictures 2; + +use autodie qw(:all); +use Carp; +use Carp::Assert; +use Cwd; +use Data::Dumper; +use File::Temp; +use Function::Parameters; +use List::Util qw{sum}; +use Path::Tiny; +use Try::Tiny; +use YAML::Any; +use Tails::IUK::Utils qw{directory_size run_as_root}; +use Types::Path::Tiny qw{AbsDir AbsFile Path}; +use Types::Standard qw{ArrayRef ClassName HashRef InstanceOf Str}; + +use namespace::clean; + + +=head1 ATTRIBUTES + +=cut + +has 'file' => ( + isa => AbsFile, + required => 1, + is => 'ro', +); + +has 'format_version' => + is => 'lazy', + isa => Str; + +has 'control' => + is => 'lazy', + isa => HashRef; + +has 'delete_files' => + is => 'lazy', + isa => ArrayRef, + handles_via => 'Array', + handles => { + delete_files_count => "count", + }; + +has 'files' => + is => 'lazy', + isa => ArrayRef; + +has 'mountpoint' => + is => 'lazy', + isa => AbsDir, + predicate => 1; + +=head1 METHODS + +=cut + +method _build_mountpoint () { + my $mountpoint = path(File::Temp::tempdir(CLEANUP => 0)); + run_as_root('mount', $self->file, $mountpoint); + return $mountpoint; +} + +method _build_format_version () { + my $format_version; + try { + $format_version = $self->get_content(path('FORMAT')); + } catch { + croak "The format version cannot be determined:\n$_"; + }; + return $format_version; +} + +method _build_delete_files () { + my $delete_files = $self->control->{delete_files}; + $delete_files ||= []; + return $delete_files; +} + +method _build_control () { + my $control = YAML::Any::Load($self->get_content(path('control.yml'))); + $control = {} unless defined $control; + return $control; +} + +method _build_files () { [ $self->archive->files ] } + +method BUILD (@args) { + my $format_version; + try { + $format_version = $self->format_version(); + } catch { + croak "The format version cannot be determined:\n$_"; + }; + $format_version eq '2' + or croak(sprintf("Unsupported format: %s", $format_version)); +} + +fun new_from_file (ClassName $class, AbsFile $filename, @rest) { + return $class->new( + file => path($filename), + @rest, + ); +} + +method clean () { + run_as_root('umount', $self->mountpoint) if $self->has_mountpoint; +} + +method DEMOLISH (@args) { + $self->clean; +} + +method get_content (Path $filename) { + $self->mountpoint->child($filename)->slurp; +} + +method list_files () { + my @files; + my $iter = $self->mountpoint->iterator({ recurse => 1 }); + while (my $path = $iter->()) { + push @files, $path->relative($self->mountpoint); + } + return @files; +} + +method overlay_dir () { + $self->mountpoint->child('overlay'); +} + +method space_needed () { + $self->overlay_dir->exists ? directory_size($self->overlay_dir) : 0; +} + +method contains_file (Path $filename) { + 1 == grep { $_ eq $filename } $self->list_files; +} + +method squashfs_in_overlay () { + return unless $self->overlay_dir->child('live')->exists; + map { + $_->basename + } grep { + -f $_ + } $self->overlay_dir->child('live')->children(qr/[.]squashfs\z/); +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/TargetFile/Download.pm b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/TargetFile/Download.pm new file mode 100644 index 0000000000000000000000000000000000000000..a51a60d5f981b94412b4064447904d8b1746aa21 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/TargetFile/Download.pm @@ -0,0 +1,166 @@ +=head1 NAME + +Tails::IUK::TargetFile::Download - download and verify a target file + +=cut + +package Tails::IUK::TargetFile::Download; + +no Moo::sification; +use Moo; + +use 5.10.1; +use strictures 2; + +use autodie qw(:all); +use Carp; +use Carp::Assert; +use Cwd; +use Digest::SHA; +use File::Temp qw{tempfile}; +use Function::Parameters; +use HTTP::Request; +use Path::Tiny; +use String::Errf qw{errf}; +use Tails::IUK::LWP::UserAgent::WithProgress; +use Tails::IUK::Utils qw{space_available_in}; +use Types::Path::Tiny qw{AbsPath}; +use Types::Standard qw{Enum Int Str}; + +use namespace::clean; + +use MooX::Options; + + +=head1 ATTRIBUTES + +=cut + +option "$_" => ( + required => 1, + is => 'ro', + isa => Str, + format => 's', +) for (qw{uri hash_value}); + +option 'hash_type' => ( + required => 1, + is => 'ro', + isa => Enum[qw{sha256}], + format => 's', +); + +option 'output_file' => ( + required => 1, + is => 'ro', + isa => AbsPath, + coerce => AbsPath->coercion, + format => 's', +); + +option 'size' => ( + required => 1, + is => 'ro', + isa => Int, + format => 's', +); + + +=head1 METHODS + +=cut + +method fatal (@msg) { + Tails::IUK::Utils::fatal(msg => \@msg); +} + +method check_available_space () { + my $target_dir = $self->output_file->parent; + my $space_needed = $self->size; + my $space_available = space_available_in($target_dir); + $space_available >= $space_needed or $self->fatal(errf( + "Downloading this incremental upgrade requires %{space_needed}s ". + "of free space in %{target_dir}s, but only %{space_available}s is available.", + { + space_needed => $space_needed, + target_dir => $target_dir, + space_available => $space_available, + } + )); +} + +method run () { + $self->check_available_space; + + my $ua = Tails::IUK::LWP::UserAgent::WithProgress->new(ssl_opts => { + verify_hostname => 0, + SSL_verify_mode => 0, + }); + unless ($ENV{HARNESS_ACTIVE} or $ENV{DISABLE_PROXY}) { + $ua->proxy([qw(http https)] => 'socks://127.0.0.1:9062'); + } + $ua->protocols_allowed([qw(http https)]); + my $req = HTTP::Request->new('GET', $self->uri); + + my ($temp_fh, $temp_filename) = tempfile; + close $temp_fh; + + sub clean_fatal { + my $self = shift; + my $unlink = shift; + unlink $unlink; + $self->fatal(@_); + } + + $ua->max_size($self->size); + my $res = $ua->request($req, $temp_filename); + + defined $res or clean_fatal($self, $temp_filename, sprintf( + "Could not download '%s' to '%s': undefined result", + $self->uri, $temp_filename, + )); + + for my $lwp_failure_header (qw{Client-Aborted X-Died}) { + my $header = $res->header($lwp_failure_header); + ! defined $header or clean_fatal($self, $temp_filename, sprintf( + "Could not download '%s' to '%s' (%s): %s", + $self->uri, $temp_filename, $lwp_failure_header, $header, + )); + } + + $res->is_success or clean_fatal($self, $temp_filename, sprintf( + "Could not download '%s' to '%s', request failed:\n%s\n", + $self->uri, $temp_filename, $res->status_line, + )); + + -s $temp_filename == $self->size or clean_fatal( + $self, $temp_filename, sprintf( + "The file '%s' was downloaded but its size (%d) should be %d", + $self->uri, -s $temp_filename, $self->size, + )); + + my $sha = Digest::SHA->new(256); + $sha->addfile($temp_filename); + my $actual_hash = $sha->hexdigest; + $actual_hash eq $self->hash_value or clean_fatal( + $self, $temp_filename, sprintf( + "The file '%s' was downloaded but its hash is not correct:\n" + . " - expected: %s\n" + . " - actual: %s", + $self->uri, + $self->hash_value, + $actual_hash, + )); + + rename($temp_filename, $self->output_file); + # autodie is supposed to throw an exception on rename error, + # but one can't be too careful. + assert(-e $self->output_file); + + chmod 0644, $self->output_file; + + return 1; +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/UpgradeDescriptionFile.pm b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/UpgradeDescriptionFile.pm new file mode 100644 index 0000000000000000000000000000000000000000..d3350e76bfd1bc05c68c9e456e969bd5462b8327 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/UpgradeDescriptionFile.pm @@ -0,0 +1,196 @@ +=head1 NAME + +Tails::IUK::UpgradeDescriptionFile - describe and manipulate a Tails upgrade-description file + +=cut + +package Tails::IUK::UpgradeDescriptionFile; + +no Moo::sification; +use Moo; +use MooX::HandlesVia; + +use 5.10.1; +use strictures 2; + +use autodie qw(:all); +use Carp; +use Carp::Assert; +use Carp::Assert::More; +use Data::Dumper; +use Dpkg::Version qw{version_compare}; +use English qw{-no_match_vars}; +use Function::Parameters; +use List::MoreUtils qw{any}; +use List::Util qw{sum}; +use Path::Tiny; +use Types::Standard qw{ArrayRef ClassName Maybe Str}; +use YAML::Any; + +use namespace::clean; + + +=head1 ATTRIBUTES + +=cut + +has "$_" => ( + required => 1, + is => 'ro', + isa => Str, + predicate => 1, +) for (qw{product_name initial_install_version build_target channel}); + +has product_version => ( + is => 'ro', + isa => Maybe[Str], + default => sub { undef }, + predicate => 1, +); + +has upgrades => + is => 'lazy', + isa => ArrayRef, + handles_via => 'Array', + handles => { + count_upgrades => 'count', + all_upgrades => 'elements', + add_upgrade => 'push', + empty_upgrades => 'clear', + }, + predicate => 1; + +has upgrade_paths => + is => 'lazy', + isa => ArrayRef, + handles_via => 'Array', + handles => { + count_upgrade_paths => 'count', + all_upgrade_paths => 'elements', + }; + + +=head1 CONSTRUCTORS AND BUILDERS + +=cut + +method _build_upgrades () { return [] } + +method _build_upgrade_paths () { + assert($self->has_product_version); + assert_defined($self->product_version); + my @upgrade_paths; + foreach my $upgrade ($self->all_upgrades) { + next unless exists $upgrade->{'upgrade-paths'}; + my @upgrade_paths_to_newer_version = grep { + version_compare( + $upgrade->{version}, + $self->product_version + ) == 1; + } @{$upgrade->{'upgrade-paths'}}; + foreach my $path (@upgrade_paths_to_newer_version) { + foreach my $key (qw{type target-files}) { + assert(exists $path->{$key}); + assert(defined $path->{$key}); + } + $path->{'details-url'} = $upgrade->{'details-url'}; + $path->{'upgrade-type'} = $upgrade->{'type'}; + $path->{'version'} = $upgrade->{'version'}; + $path->{'total-size'} = sum(map { $_->{size} } @{$path->{'target-files'}}); + push @upgrade_paths, $path; + } + } + return \@upgrade_paths; +} + +fun new_from_text (ClassName $class, + Str :$text, + Maybe[Str] :$product_version = undef) { + + my $data = YAML::Any::Load($text); + + my %args; + foreach my $key (qw{product-name initial-install-version channel build-target upgrades}) { + next unless exists $data->{$key}; + my $attribute = $key; $attribute =~ s{-}{_}xmsg; + $args{$attribute} = $data->{$key}; + } + + $class->new(%args, product_version => $product_version); +} + +fun new_from_file (ClassName $class, + Str :$filename, + Maybe[Str] :$product_version = undef) { + my $content = path($filename)->slurp; + assert_nonblank($content); + + $class->new_from_text(text => $content, product_version => $product_version); +} + + +=head1 METHODS + +=cut + +method contains_upgrade_path () { + $self->count_upgrade_paths > 0; +} + +method incremental_upgrade_paths () { + grep { $_->{type} eq 'incremental' } $self->all_upgrade_paths; +} + +method full_upgrade_paths () { + grep { $_->{type} eq 'full' } $self->all_upgrade_paths; +} + +method contains_incremental_upgrade_path () { + $self->incremental_upgrade_paths > 0; +} + +method contains_full_upgrade_path () { + $self->full_upgrade_paths > 0; +} + +method incremental_upgrade_path () { + path_to_newest_version($self->incremental_upgrade_paths); +} + +method full_upgrade_path () { + path_to_newest_version($self->full_upgrade_paths); +} + +method stringify () { + my %data; + + foreach my $attribute (qw{product_name initial_install_version channel build_target upgrades}) { + my $predicate = "has_$attribute"; + next unless $self->$predicate; + my $key = $attribute; $key =~ s{_}{-}xmsg; + $data{$key} = $self->$attribute; + } + + YAML::Any::Dump(\%data); +} + + +=head1 FUNCTIONS + +=cut + +fun path_to_newest_version (@paths) { + assert(@paths); + + my $current_best_path = { version => '0' }; + + foreach my $path (@paths) { + $current_best_path = $path + if version_compare($path->{version}, $current_best_path->{version}) == 1; + } + + return $current_best_path; +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/UpgradeDescriptionFile/Download.pm b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/UpgradeDescriptionFile/Download.pm new file mode 100644 index 0000000000000000000000000000000000000000..78b4de06a0c2f3c9327e75ec2f919f7dcb4af370 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/UpgradeDescriptionFile/Download.pm @@ -0,0 +1,120 @@ +=head1 NAME + +Tails::IUK::UpgradeDescriptionFile::Download - download and verify an upgrade description file + +=cut + +package Tails::IUK::UpgradeDescriptionFile::Download; + +no Moo::sification; +use Moo; +use MooX::HandlesVia; + +use 5.10.1; +use strictures 2; + +extends 'Tails::Download::HTTPS'; + +use autodie qw(:all); +use Carp; +use Carp::Assert; +use Carp::Assert::More; +use Function::Parameters; +use Path::Tiny; +use Tails::RunningSystem; +use Tails::IUK::Utils; +use Types::Standard qw{InstanceOf Str}; +use Types::Path::Tiny qw{AbsDir}; +use YAML::Any; + +use namespace::clean; + +use MooX::Options; + +=head1 ATTRIBUTES + +=cut + +option "$_" => ( + is => 'ro', + format => 's', + isa => Str, + predicate => 1, +) for (qw{override_baseurl override_build_target override_os_release_file + override_initial_install_os_release_file}); + +option trusted_gnupg_homedir => ( + is => 'lazy', + format => 's', + isa => AbsDir, + coerce => AbsDir->coercion, + predicate => 1, +); + +has 'running_system' => ( + is => 'lazy', + isa => InstanceOf['Tails::RunningSystem'], + handles => [ + qw{upgrade_description_file_url upgrade_description_sig_url}, + qw{product_name initial_install_version build_target channel} + ], +); + + +=head1 CONSTRUCTORS AND BUILDERS + +=cut + +method _build_trusted_gnupg_homedir () { + my $trusted_gnupg_homedir = path('/var/lib/tails-upgrade-frontend/.gnupg'); + assert(-d $trusted_gnupg_homedir); + return $trusted_gnupg_homedir; +} + +method _build_running_system () { + my @args; + for (qw{baseurl build_target os_release_file initial_install_os_release_file}) { + my $attribute = "override_$_"; + my $predicate = "has_$attribute"; + if ($self->$predicate) { + push @args, ($_ => $self->$attribute) + } + } + Tails::RunningSystem->new(@args); +} + + +=head1 METHODS + +=cut + +method matches_running_system (Str $description_str) { + my $description = YAML::Any::Load($description_str); + assert_hashref($description); + foreach (qw{product_name initial_install_version build_target channel}) { + my $accessor = my $field = $_; + $field =~ s{_}{-}gxms; + exists $description->{$field} or return; + defined $description->{$field} or return; + if ($description->{$field} ne $self->$accessor) { + warn "Expected for field $field: ", $self->$accessor, ", got: ", $description->{$field}; + return; + } + } + return 1; +} + +method run () { + my $description = $self->get_url($self->upgrade_description_file_url); + my $signature = $self->get_url($self->upgrade_description_sig_url ); + + verify_signature($description, $signature, $self->trusted_gnupg_homedir) + or croak("Invalid signature"); + $self->matches_running_system($description) + or croak("Does not match running system"); + print $description; + return; +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/UpgradeDescriptionFile/Generate.pm b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/UpgradeDescriptionFile/Generate.pm new file mode 100644 index 0000000000000000000000000000000000000000..203305f990703da56a83f9e8ad3a47d6cb2546f3 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/UpgradeDescriptionFile/Generate.pm @@ -0,0 +1,306 @@ +=head1 NAME + +Tails::IUK::UpgradeDescriptionFile::Generate - create and update upgrade-description files + +=cut + +package Tails::IUK::UpgradeDescriptionFile::Generate; + +no Moo::sification; +use Moo; + +use 5.10.1; +use strictures 2; + +use autodie qw(:all); +use Carp; +use Carp::Assert; +use Carp::Assert::More; +use Digest::SHA; +use English qw{-no_match_vars}; +use Function::Parameters; +use Path::Tiny; +use Tails::IUK::UpgradeDescriptionFile; +use Types::Path::Tiny qw{AbsDir AbsFile}; +use Types::Standard qw{ArrayRef Bool Str}; + +use namespace::clean; + +use MooX::Options; + + +=head1 ATTRIBUTES + +=cut + +option "$_" => ( + required => 1, + is => 'ro', + isa => ArrayRef, + format => 's@', +) for (qw{previous_versions next_versions}); + +option version => ( + required => 1, + is => 'ro', + isa => Str, + format => 's', +); + +option major_release => ( + required => 1, + is => 'ro', + isa => Bool, +); + +option iso => ( + required => 1, + is => 'ro', + isa => AbsFile, + coerce => AbsFile->coercion, + format => 's', +); + +option "$_" => ( + required => 1, + is => 'ro', + isa => AbsDir, + coerce => AbsDir->coercion, + format => 's', +) for (qw{iuks release_checkout}); + +option "$_" => ( + is => 'lazy', + isa => Str, + format => 's', +) for (qw{build_target channel product_name}); + + +=head1 CONSTRUCTORS AND BUILDERS + +=cut + +method _build_build_target () { 'amd64' } +method _build_channel () { 'stable' } +method _build_product_name () { 'Tails' } + +method BUILD (@args) { + assert(-f $self->iso); + assert(-d $self->release_checkout); +} + + +=head1 METHODS + +=cut + +method run () { + for my $channel (qw{alpha stable}) { + say STDERR q{* Creating upgrade-description files for new release }, + '(', $self->version, "), ", $channel, " channel: \n ", + $self->udf_for_new_release($channel), ' ...'; + $self->create_udf_for_new_release($channel); + say STDERR ''; + } + + for my $channel (qw{alpha stable}) { + for my $next_version (@{$self->next_versions}) { + say STDERR q{* Creating upgrade-description files for next release }, + '(', $next_version, "), ", $channel, " channel: \n ", + $self->udf_for($next_version, channel => $channel), ' ...'; + $self->create_udf_for_next_release($next_version, $channel); + say STDERR ''; + } + } + + for my $previous_version (@{$self->previous_versions}) { + say STDERR q{* Updating upgrade-description file for previous }, + 'release (', $previous_version, "): \n ", + $self->udf_for($previous_version), ' ...'; + $self->update_udf_for_previous_release($previous_version); + say STDERR ''; + } +} + +method create_udf_for_new_release ($channel) { + my $description = Tails::IUK::UpgradeDescriptionFile->new( + product_name => $self->product_name, + initial_install_version => $self->version, + build_target => $self->build_target, + channel => $channel, + ); + $self->udf_for_new_release($channel)->parent->mkpath; + $self->udf_for_new_release($channel)->spew( + $description->stringify + ); +} + +method create_udf_for_next_release ($version, $channel) { + my $udf = $self->udf_for($version, channel => $channel); + + my $description = Tails::IUK::UpgradeDescriptionFile->new( + product_name => $self->product_name, + initial_install_version => $version, + build_target => $self->build_target, + channel => $channel, + ); + $udf->parent->mkpath; + $udf->spew($description->stringify); +} + +method update_udf_for_previous_release ($previous_version) { + my $udf = $self->udf_for($previous_version); + + my $description; + if (-e $udf) { + $description = Tails::IUK::UpgradeDescriptionFile->new_from_file(filename => $udf->canonpath); + } + else { + $description = Tails::IUK::UpgradeDescriptionFile->new( + product_name => $self->product_name, + initial_install_version => $previous_version, + build_target => $self->build_target, + channel => $self->channel, + ); + $udf->parent->mkpath; + } + + # We don't want older upgrades to be advertised forever, once we provide + # an upgrade path to the last one. + $description->empty_upgrades; + + $description->add_upgrade({ + version => $self->version, + 'details-url' => $self->details_url, + type => $self->major_release ? 'major' : 'minor', + 'upgrade-paths' => [$self->upgrade_paths_from_previous_release($previous_version)], + }); + $udf->spew($description->stringify); +} + +method upgrade_paths_from_previous_release ($previous_version) { + my @paths; + + say STDERR q{ Adding full upgrade...}; + push @paths, { + type => 'full', + 'target-files' => [{ + sha256 => sha256_file($self->iso), + size => -s $self->iso, + url => $self->iso_url, + }], + }; + + if ($self->has_iuk_for($previous_version)) { + say STDERR q{ Adding incremental upgrade...}; + my $iuk = $self->iuk_for($previous_version); + push @paths, { + type => 'incremental', + 'target-files' => [{ + sha256 => sha256_file($iuk), + size => -s $iuk, + url => $self->iuk_url($previous_version), + }], + }; + } + else { + say STDERR q{ No IUK could be found for }, $previous_version, + q{, we will only advertise full upgrade.}; + } + + return @paths; +} + +method udf_for ($version, :$channel = $self->channel) { + path( + $self->release_checkout, qw{wiki src upgrade v2}, $self->product_name, + $version, $self->build_target, $channel, 'upgrades.yml' + ); +} + +method udf_for_new_release ($channel) { + $self->udf_for($self->version, channel => $channel) +} + +method iso_url () { + 'http://dl.amnesia.boum.org/tails/' + . $self->channel + . '/' + . lc($self->product_name) + . '-' + . $self->build_target + . '-' + . $self->version + . '/' + . lc($self->product_name) + . '-' + . $self->build_target + . '-' + . $self->version + . '.iso'; +} + +method iuk_filename ($previous_version) { + $self->product_name + . '_' + . $self->build_target + . '_' + . $previous_version + . '_to_' + . $self->version + . '.iuk'; +} + +method iuk_url ($previous_version) { + 'http://dl.amnesia.boum.org/tails/' + . $self->channel + . '/iuk/v2/' + . $self->iuk_filename($previous_version); +} + +method iuk_for ($previous_version) { + path($self->iuks, $self->iuk_filename($previous_version)); +} + +method has_iuk_for ($previous_version) { + -f $self->iuk_for($previous_version); +} + +method details_url () { + my $version = version_for_website($self->version); + if ($self->channel eq 'stable') { + return 'https://tails.boum.org/news/version_'.$version.'/'; + } + elsif ($self->channel eq 'alpha') { + return 'https://tails.boum.org/news/test_'.$version.'/'; + } + else { + croak('Channel '.$self->channel.' is not supported.'); + } +} + + + +=head1 FUNCTIONS + +=cut + +fun sha256_file ($file) { + assert(-f $file); + + my $sha = Digest::SHA->new(256); + $sha->addfile($file->stringify); + return $sha->hexdigest; +} + +fun version_for_website ($version) { + assert_defined($version); + assert(length($version)); + + $version =~ s{~}{-}xms; + + return $version; +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Utils.pm b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Utils.pm new file mode 100644 index 0000000000000000000000000000000000000000..aeba70587d288cd5bbd0d36363f9880ef85b25db --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Utils.pm @@ -0,0 +1,158 @@ +=head1 NAME + +Tails::IUK::Utils - utilities for Tails IUK + +=cut + +package Tails::IUK::Utils; + +use strictures 2; +use 5.10.1; + +use Exporter; +our @ISA = qw{Exporter}; +our @EXPORT = ( + qw{directory_size}, + qw{extract_file_from_iso extract_here_file_from_iso fatal}, + qw{run_as_root space_available_in stdout_as_root}, + qw{verify_signature} +); + +use autodie qw(:all); +use Carp; +use Carp::Assert; +use Carp::Assert::More; +use Data::Dumper; +use English qw{-no_match_vars}; +use File::Temp qw{tempfile}; +use GnuPG::Interface; +use Filesys::Df; +use Function::Parameters; +use IPC::System::Simple qw{capturex}; +use Path::Tiny; +use String::Errf qw{errf}; +use Types::Path::Tiny qw{AbsDir AbsFile Path}; +use Types::Standard qw{Str}; + + +=head1 FUNCTIONS + +=cut + +fun extract_file_from_iso(Path $file, AbsFile $iso) { + my @cmd = qw{bsdtar -x --no-same-permissions --to-stdout --fast-read}; + push @cmd, ('--file', $iso, $file); + open(my $cmd, '-|', @cmd); + my $output = do { local $/; <$cmd> }; + close $cmd; + "${^CHILD_ERROR_NATIVE}" == 0 or croak "bsdtar failed: ${^CHILD_ERROR_NATIVE}"; + return $output; +} + +fun extract_here_file_from_iso($dir, $iso) { + my @cmd = qw{bsdtar -x --no-same-permissions}; + push @cmd, ('--file', $iso, $dir); + system(@cmd); + "${^CHILD_ERROR_NATIVE}" == 0 or croak "bsdtar failed: ${^CHILD_ERROR_NATIVE}"; + return; +} + +fun run_as_root(@command) { + system("sudo", "-n", @command); +} + +fun stdout_as_root(@command) { + capturex(qw{sudo -n}, @command); +} + +fun fatal (%args) { + assert(exists $args{msg}); + assert_isa($args{msg}, 'ARRAY'); + + chdir '/'; + + if (exists $args{rmtree} && defined $args{rmtree}) { + if (exists $args{rmtree_as_root} && defined $args{rmtree_as_root} && $args{rmtree_as_root}) { + run_as_root( + qw{rm --recursive --force --preserve-root}, @{$args{rmtree}} + ); + } + else { + foreach my $dir (@{$args{rmtree}}) { + path($dir)->remove_tree; + } + } + } + + croak(@{$args{msg}}); +} + +fun directory_size (AbsDir $dir) { + my @du = split(/\s/, capturex(qw{/usr/bin/du --block-size=1 --summarize}, $dir)); + return $du[0]; +} + +=head2 space_available_in + +Returns the number of available bytes there are in directory $dir. + +=cut +fun space_available_in (AbsDir $dir) { + my $df = df($dir->stringify, 1); # "1" means "please return the value in bytes" + + assert_defined($df); + assert_exists($df, 'bavail'); + return $df->{bavail}; +} + +fun verify_signature (Str $txt, + Str $signature_txt, + AbsDir $trusted_gnupg_homedir) { + assert_nonblank($signature_txt); + + my $gnupg = GnuPG::Interface->new(); + $gnupg->options->hash_init( + homedir => $trusted_gnupg_homedir, + # We decide what key should be trusted by a given Tails, + # and we won't put a key created in the future in there, + # so if a key appears to be created in the future, + # it must be because the clock has problems, + # so we can ignore that. + # Same for a key that appears to be expired. + # Disable locking entirely: our GnuPG homedir is read-only. + extra_args => [ + qw{--ignore-valid-from --ignore-time-conflict --lock-never} + ], + ); + + my ($signature_fh, $signature_file) = tempfile(CLEANUP => 1); + print $signature_fh $signature_txt; + close $signature_fh; + + my ($txt_fh, $txt_file) = tempfile(CLEANUP => 1); + print $txt_fh $txt; + close $txt_fh; + + my ($stdout, $stderr) = (IO::Handle->new(), IO::Handle->new()); + my $pid = $gnupg->verify( + handles => GnuPG::Handles->new(stdout => $stdout, stderr => $stderr), + command_args => [ $signature_file, $txt_file ], + ); + waitpid $pid, 0; + + $CHILD_ERROR == 0 or say STDERR errf( + "GnuPG signature verification failed:\n". + "exit code: %{exit_code}i\n\n". + "stdout:\n%{stdout}s\n\n". + "stderr:\n%{stderr}s", + { + exit_code => $CHILD_ERROR, + stdout => join('', $stdout->getlines), + stderr => join('', $stderr->getlines), + } + ); + + return $CHILD_ERROR == 0; +} + +1; diff --git a/config/chroot_local-includes/usr/src/iuk/t/00-load_all.t b/config/chroot_local-includes/usr/src/iuk/t/00-load_all.t new file mode 100644 index 0000000000000000000000000000000000000000..37823e70041cdf188c99b1c53e5e9d6e4dadb84d --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/t/00-load_all.t @@ -0,0 +1,19 @@ +use Test::Most; + +use Module::Pluggable::Object; +eval { require Win32; }; + +# libs +my @needsX; +my $finder = Module::Pluggable::Object->new( + search_path => [ 'Tails' ], +); +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/iuk/t/10-features.t b/config/chroot_local-includes/usr/src/iuk/t/10-features.t new file mode 100644 index 0000000000000000000000000000000000000000..05bc2174294ed677288bed2381dd5819c3f16842 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/t/10-features.t @@ -0,0 +1,21 @@ +#!/usr/bin/perl + +use strictures 2; + +use Test::More; + +BEGIN { + eval 'use Test::BDD::Cucumber::Loader'; + plan skip_all => 'Test::BDD::Cucumber::Loader required' if $@; +} + +use Path::Tiny; +use Test::BDD::Cucumber::Loader; +use Test::BDD::Cucumber::Harness::TestBuilder; + +for my $feature_dir (path('features')->children) { + my ($executor, @features) = Test::BDD::Cucumber::Loader->load("$feature_dir"); + my $harness = Test::BDD::Cucumber::Harness::TestBuilder->new({}); + $executor->execute( $_, $harness ) for @features; +} +done_testing; diff --git a/config/chroot_local-includes/usr/src/iuk/t/data/dev_gnupg_homedir/pubring.gpg b/config/chroot_local-includes/usr/src/iuk/t/data/dev_gnupg_homedir/pubring.gpg new file mode 100644 index 0000000000000000000000000000000000000000..9a91a0cb2e70f75e240cc1c50a81ef40ac352f6b Binary files /dev/null and b/config/chroot_local-includes/usr/src/iuk/t/data/dev_gnupg_homedir/pubring.gpg differ diff --git a/config/chroot_local-includes/usr/src/iuk/t/data/dev_gnupg_homedir/secring.gpg b/config/chroot_local-includes/usr/src/iuk/t/data/dev_gnupg_homedir/secring.gpg new file mode 100644 index 0000000000000000000000000000000000000000..c36767169622ac8f60cd44318fa163e91f8b10c1 Binary files /dev/null and b/config/chroot_local-includes/usr/src/iuk/t/data/dev_gnupg_homedir/secring.gpg differ diff --git a/config/chroot_local-includes/usr/src/iuk/t/data/expired_dev_gnupg_homedir/pubring.gpg b/config/chroot_local-includes/usr/src/iuk/t/data/expired_dev_gnupg_homedir/pubring.gpg new file mode 100644 index 0000000000000000000000000000000000000000..24c3b1dd27ca5dc80e22d74126f40c3cf502b803 Binary files /dev/null and b/config/chroot_local-includes/usr/src/iuk/t/data/expired_dev_gnupg_homedir/pubring.gpg differ diff --git a/config/chroot_local-includes/usr/src/iuk/t/data/expired_dev_gnupg_homedir/secring.gpg b/config/chroot_local-includes/usr/src/iuk/t/data/expired_dev_gnupg_homedir/secring.gpg new file mode 100644 index 0000000000000000000000000000000000000000..bfc89e480597ebbf1c7ba0123a2dd64d0dfe7696 Binary files /dev/null and b/config/chroot_local-includes/usr/src/iuk/t/data/expired_dev_gnupg_homedir/secring.gpg differ diff --git a/config/chroot_local-includes/usr/src/iuk/t/data/future_dev_gnupg_homedir/pubring.gpg b/config/chroot_local-includes/usr/src/iuk/t/data/future_dev_gnupg_homedir/pubring.gpg new file mode 100644 index 0000000000000000000000000000000000000000..3119d4f84f6b1138e9735010fce6195c466bd6dd Binary files /dev/null and b/config/chroot_local-includes/usr/src/iuk/t/data/future_dev_gnupg_homedir/pubring.gpg differ diff --git a/config/chroot_local-includes/usr/src/iuk/t/data/future_dev_gnupg_homedir/secring.gpg b/config/chroot_local-includes/usr/src/iuk/t/data/future_dev_gnupg_homedir/secring.gpg new file mode 100644 index 0000000000000000000000000000000000000000..78aab4710c2ee6b150b232365d573455052c263c Binary files /dev/null and b/config/chroot_local-includes/usr/src/iuk/t/data/future_dev_gnupg_homedir/secring.gpg differ diff --git a/config/chroot_local-includes/usr/src/iuk/t/data/untrusted_gnupg_homedir/pubring.gpg b/config/chroot_local-includes/usr/src/iuk/t/data/untrusted_gnupg_homedir/pubring.gpg new file mode 100644 index 0000000000000000000000000000000000000000..112ed524cbc0e5cf41ccf03b33ad28d2f205e545 Binary files /dev/null and b/config/chroot_local-includes/usr/src/iuk/t/data/untrusted_gnupg_homedir/pubring.gpg differ diff --git a/config/chroot_local-includes/usr/src/iuk/t/data/untrusted_gnupg_homedir/secring.gpg b/config/chroot_local-includes/usr/src/iuk/t/data/untrusted_gnupg_homedir/secring.gpg new file mode 100644 index 0000000000000000000000000000000000000000..0349357220320413a810ac6722e013951b39e589 Binary files /dev/null and b/config/chroot_local-includes/usr/src/iuk/t/data/untrusted_gnupg_homedir/secring.gpg differ diff --git a/config/chroot_local-includes/usr/src/iuk/t/data/webroot/tails/stable/iuk/v2/Tails_s390x_0.11_to_0.12.1.iuk b/config/chroot_local-includes/usr/src/iuk/t/data/webroot/tails/stable/iuk/v2/Tails_s390x_0.11_to_0.12.1.iuk new file mode 100644 index 0000000000000000000000000000000000000000..41ac2e555355e45cbe1c0a9a6a3143fd24f9d3dc Binary files /dev/null and b/config/chroot_local-includes/usr/src/iuk/t/data/webroot/tails/stable/iuk/v2/Tails_s390x_0.11_to_0.12.1.iuk differ diff --git a/config/chroot_local-includes/usr/src/iuk/t/data/webroot/tails/stable/tails-s390x-0.12.1/Tails-s390x-0.12.1.iso b/config/chroot_local-includes/usr/src/iuk/t/data/webroot/tails/stable/tails-s390x-0.12.1/Tails-s390x-0.12.1.iso new file mode 100644 index 0000000000000000000000000000000000000000..c867e280c57231b3817c1886dbe3a745503d304f --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/t/data/webroot/tails/stable/tails-s390x-0.12.1/Tails-s390x-0.12.1.iso @@ -0,0 +1 @@ +Tails-s390x-0.12.1 diff --git a/config/chroot_local-includes/usr/src/iuk/t/lib/Test/SslCertificates.pm b/config/chroot_local-includes/usr/src/iuk/t/lib/Test/SslCertificates.pm new file mode 100644 index 0000000000000000000000000000000000000000..d8d09b8669c9c6cf821b9965457e94d3bdb7a1f5 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/t/lib/Test/SslCertificates.pm @@ -0,0 +1,161 @@ +package Test::SslCertificates; + +use 5.10.1; +use strictures 2; +use autodie qw(:all); + +use Exporter; +our @ISA = qw{Exporter}; +our @EXPORT = qw{generate_ssl_privkey generate_self_signed_ssl_cert generate_ssl_req generate_ssl_cert populate_ssl_template}; + +use Carp::Assert; +use Function::Parameters; +use Path::Tiny; +use Test::More; + +fun generate_ssl_privkey ($args) { + assert(defined $args, 'args is defined'); + assert('HASH' eq ref $args, 'args is a hashref'); + assert(exists $args->{outfile}, "args has a outfile key"); + assert(defined $args->{outfile}, "the outfile key in args is defined"); + assert(length $args->{outfile}, "the outfile key in args is not empty"); + + my $cmd = "certtool --generate-privkey ". + "--outfile '$args->{outfile}' ". + "2>&1 >/dev/null"; + `$cmd`; + ok(-e $args->{outfile}); +} + +fun generate_ssl_req ($args) { + assert(defined $args, 'args is defined'); + assert('HASH' eq ref $args, 'args is a hashref'); + for (qw{outfile privkey template}) { + assert(exists $args->{$_}, "args has a $_ key"); + assert(defined $args->{$_}, "the $_ key in args is defined"); + assert(length $args->{$_}, "the $_ key in args is not empty"); + } + for (qw{privkey template}) { + assert(-e $args->{$_}, "$_ file exists"); + } + + my $cmd = sprintf( + "certtool --generate-request --load-privkey '%s' " . + "--outfile '%s' --template '%s' 2>&1 >/dev/null", + $args->{privkey}, $args->{outfile}, $args->{template}, + ); + `$cmd`; + ok(-e $args->{outfile}); +} + +fun generate_self_signed_ssl_cert ($args) { + assert(defined $args, 'args is defined'); + assert('HASH' eq ref $args, 'args is a hashref'); + for (qw{outfile privkey template}) { + assert(exists $args->{$_}, "args has a $_ key"); + assert(defined $args->{$_}, "the $_ key in args is defined"); + assert(length $args->{$_}, "the $_ key in args is not empty"); + } + for (qw{privkey template}) { + assert(-e $args->{$_}, "$_ file exists"); + } + + my $cmd = + "certtool --generate-self-signed --load-privkey '$args->{privkey}' ". + "--template '$args->{template}' --outfile '$args->{outfile}' ". + "2>&1 >/dev/null"; + `$cmd`; + ok(-e $args->{outfile}); +} + +fun generate_ssl_cert ($args) { + assert(defined $args, 'args is defined'); + assert('HASH' eq ref $args, 'args is a hashref'); + for (qw{req outfile ca_cert ca_privkey template}) { + assert(exists $args->{$_}, "args has a $_ key"); + assert(defined $args->{$_}, "the $_ key in args is defined"); + assert(length $args->{$_}, "the $_ key in args is not empty"); + } + for (qw{ca_privkey ca_cert req template}) { + assert(-e $args->{$_}, "$_ file exists"); + } + + my $precmd = exists $args->{date} && defined $args->{date} + ? sprintf("faketime '%s'", $args->{date}) + : ''; + + my $cmd = sprintf( + "$precmd certtool --generate-certificate --load-ca-privkey '%s' ". + "--load-ca-certificate '%s' --load-request '%s' --outfile '%s' ". + "--template '%s' 2>&1 >/dev/null", + $args->{ca_privkey}, $args->{ca_cert}, $args->{req}, $args->{outfile}, + $args->{template}, + ); + `$cmd`; + ok(-e $args->{outfile}); +} + +fun populate_ssl_template ($args) { + assert(defined $args, 'args is defined'); + assert('HASH' eq ref $args, 'args is a hashref'); + assert(exists $args->{outfile}, "args has a outfile key"); + assert(defined $args->{outfile}, "the outfile key in args is defined"); + assert(length $args->{outfile}, "the outfile key in args is not empty"); + + $args->{ca} //= 0; + + my $fh = path($args->{outfile})->openw; + say $fh <<EOTEMPLATE +organization = "Koko inc." +unit = "sleeping dept." +state = "Attiki" +country = GR +cn = "127.0.0.1" +# Set domain components +#dc = "name" +#dc = "domain" +serial = 007 +expiration_days = 365 + +# A dnsname in case of a WWW server. +#dns_name = "www.none.org" +#dns_name = "www.morethanone.org" + +# A subject alternative name URI +#uri = "http://www.example.com" + +# An IP address in case of a server. +ip_address = "127.0.0.1" + +# Challenge password used in certificate requests +#challenge_passwd = 123456 + +# Whether this certificate will be used for a TLS server +tls_www_server + +# Whether this certificate will be used to sign data (needed +# in TLS DHE ciphersuites). +signing_key + +# Whether this certificate will be used to encrypt data (needed +# in TLS RSA ciphersuites). Note that it is preferred to use different +# keys for encryption and signing. +#encryption_key +EOTEMPLATE +; + + if ($args->{ca}) { + say $fh <<EOCASNIPPET +# Whether this is a CA certificate or not +ca +# Whether this key will be used to sign other certificates. +cert_signing_key +EOCASNIPPET +; + } + + close $fh; + ok(-e $args->{outfile}); +} + +1; diff --git a/config/chroot_local-includes/usr/src/iuk/t/lib/Test/Util.pm b/config/chroot_local-includes/usr/src/iuk/t/lib/Test/Util.pm new file mode 100644 index 0000000000000000000000000000000000000000..f5f243b627803c8585c6c641d87d760897e44127 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/t/lib/Test/Util.pm @@ -0,0 +1,187 @@ +package Test::Util; + +use 5.10.1; +use strictures; + +use Carp; +use Carp::Assert; +use English qw{-no_match_vars}; +use List::Util qw{first}; +use Function::Parameters; +use IPC::System::Simple qw{capture capturex systemx $EXITVAL EXIT_ANY}; +use Path::Tiny; +use Sys::Filesystem (); +use Tails::IUK::Utils qw{run_as_root stdout_as_root}; +use Test::More; +use Types::Path::Tiny qw{AbsDir AbsPath}; +use Types::Standard qw{ArrayRef Bool HashRef Int Maybe Str}; + +use Exporter; +our @ISA = qw{Exporter}; +our @EXPORT_OK = ( + qw{make_iuk}, +); + + +=head1 FUNCTIONS + +=cut + +fun kill_httpd ($c) { + foreach my $pid_key (qw{http_pid https_pid}) { + my $pid = $c->{stash}->{scenario}->{server}->{$pid_key}; + is(kill(9, $pid), 1, "Killed PID $pid" ) if defined $pid; + } +} + +fun upgrade_description_header ($product_name, $initial_install_version, $build_target, $channel) { + return <<EOF +product-name: $product_name +initial-install-version: $initial_install_version +channel: $channel +build-target: $build_target +EOF +; +} + +# $mount may be a device or mountpoint +fun mount_options ($mount) { + my $fs = Sys::Filesystem->new(); + return split(/,/, $fs->options($mount)); +} + +# $mount may be a device or mountpoint +fun has_mount_option ($mount, $option) { + grep { $_ eq $option } mount_options($mount); +} + +fun remount_for_root_ro ($device, $mountpoint) { + run_as_root('umount', '-l', $mountpoint); + ${^CHILD_ERROR_NATIVE} == 0 or croak("Failed to umount '$mountpoint'."); + + run_as_root('mount', '-o', 'umask=0022', $device, $mountpoint); + ${^CHILD_ERROR_NATIVE} == 0 or croak("Failed to mount '$mountpoint'."); + + run_as_root('mount', '-o', 'remount,ro', $mountpoint); + ${^CHILD_ERROR_NATIVE} == 0 or croak("Failed to remount '$mountpoint' read-only."); +} + +fun remount_for_me_rw ($device, $mountpoint) { + run_as_root('umount', '-l', $mountpoint); + ${^CHILD_ERROR_NATIVE} == 0 or croak("Failed to umount '$mountpoint'."); + + my @gids = split(/ /, $GID); + run_as_root('mount', '-o', "rw,uid=$UID,gid=$gids[0]", $device, $mountpoint); + ${^CHILD_ERROR_NATIVE} == 0 or croak("Failed to mount '$mountpoint'."); +} + +# $size is in MB +fun prepare_live_device ($backing_file, $mountpoint, $size = 64) { + system(qw{dd status=none if=/dev/zero bs=1M}, "of=$backing_file", "count=$size"); + capturex( + qw{/sbin/sgdisk --clear --new=1:0:0}, + qw{--typecode=1:C12A7328-F81F-11D2-BA4B-00A0C93EC93B --change-name=Tails}, + $backing_file, + ); + stdout_as_root(qw{kpartx -a -s}, $backing_file); + + # output looks like "loop0p1 : 0 128991 /dev/loop0 2048" + my $kpartx_output = stdout_as_root(qw{kpartx -l}, $backing_file); + my ($system_partition_basename, $boot_device) = ( + $kpartx_output =~ m{ + \A (loop [0-9]+ p [0-9]+) + \s+ [:] \s+ [0-9]+ \s+ [0-9]+ \s+ + (/dev/loop [0-9]+) + \s+ \d+ + }xms) + or croak("Failed to parse kpartx output:\n$kpartx_output"); + my @dmsetup_ls_output = stdout_as_root(qw{dmsetup ls}); + my $dm_line = first { + m{^ $system_partition_basename \s+ [(] 25[34] : \d+ [)]$}xms + } @dmsetup_ls_output + or croak("Failed to parse dmsetup ls output."); + my ($system_partition_dm_id) = ( + $dm_line =~ m{^ $system_partition_basename \s+ [(] 25[34] : (\d+) [)]$}xms + ) or croak("Failed to parse dmsetup ls line output:\n$dm_line"); + my $system_partition = "/dev/dm-$system_partition_dm_id"; + + stdout_as_root(qw{mkdosfs -F 32}, $system_partition); + + path($mountpoint)->mkpath; + my @gids = split(/ /, $GID); + run_as_root( + "mount", "-o", "uid=$UID,gid=$gids[0],umask=0022", '-t', 'vfat', + $system_partition, $mountpoint + ); + + path($mountpoint, 'live')->mkpath; + for my $basename ('filesystem.squashfs', 'vmlinuz', 'initrd.img') { + my $file = path($mountpoint, 'live', $basename); + $file->touch; + ok(-e $file); + } + my $modules_file = path($mountpoint, 'live', 'Tails.module'); + $modules_file->spew("filesystem.squashfs\n"); + my $syslinux_dir = $mountpoint->child('syslinux'); + $syslinux_dir->mkpath; + + remount_for_root_ro($system_partition, $mountpoint); + + ok(-e $modules_file); + ok(-d $syslinux_dir); + ok( has_mount_option($mountpoint, 'ro')); + ok(! has_mount_option($mountpoint, 'rw')); + + return ( + boot_device => $boot_device, + system_partition => $system_partition + ); +} + +fun make_iuk (AbsPath $iuk_filename, + Bool :$include_format_file = 1, + ArrayRef :$root_files = [], + ArrayRef :$overlay_files = [], + ArrayRef :$overlay_filenames = [], + HashRef :$overlay_copied_files = {}, + Maybe[Int] :$overlay_files_size = undef, + Maybe[Str] :$overlay_files_content = undef, + ) { + my $tempdir = Path::Tiny->tempdir; + if (@$overlay_filenames) { + assert(defined $overlay_files_content || defined $overlay_files_size); + assert(! (defined $overlay_files_content && defined $overlay_files_size) ); + } + path($tempdir, 'FORMAT')->spew(2) if $include_format_file; + unless (grep { $_ eq 'control.yml' } @{$root_files}) { + path($tempdir, 'control.yml')->touch; + } + path($_)->move($tempdir->child($_->basename)) for @{$root_files}; + my $overlay_dir = $tempdir->child('overlay'); + $overlay_dir->mkpath; + path($_)->move($overlay_dir->child($_->basename)) for @{$overlay_files}; + foreach (@{$overlay_filenames}) { + if (defined $overlay_files_content) { + path($overlay_dir, $_)->parent->mkpath; + path($overlay_dir, $_)->spew($overlay_files_content); + } + else { + systemx( + "dd", 'status=none', "if=/dev/zero", "of=".$overlay_dir->child($_), + "bs=1M", "count=".$overlay_files_size + ); + } + } + while (my ($src, $dst) = each %$overlay_copied_files) { + $overlay_dir->child($dst)->parent->mkpath; + path($src)->copy($overlay_dir->child($dst)); + } + + my $mksquashfs_output = capture( + EXIT_ANY, + "mksquashfs '$tempdir' '$iuk_filename' -no-progress -noappend 2>&1" + ); + $EXITVAL == 0 or croak "mksquashfs failed: $mksquashfs_output"; +} + +1; diff --git a/config/chroot_local-includes/usr/src/iuk/t/lib/Test/WebServer.pm b/config/chroot_local-includes/usr/src/iuk/t/lib/Test/WebServer.pm new file mode 100644 index 0000000000000000000000000000000000000000..7d1fd93c491f7f4b844b7e3efeef28faa5328944 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/t/lib/Test/WebServer.pm @@ -0,0 +1,22 @@ +package Test::WebServer; + +use strictures 2; +use Carp::Assert; + +use parent qw{HTTP::Server::Simple::CGI}; + +sub new { + my $class = shift; + my $args = shift; + assert('HASH' eq ref $args); + + my $self = $class->SUPER::new(@_); + while (my ($k, $v) = each(%{$args})) { $self->{$k} = $v; } + bless($self, $class); + + return $self; +} + +sub print_banner { my $self = shift; 1; } + +1; diff --git a/config/chroot_local-includes/usr/src/iuk/t/lib/Test/WebServer/RedirectToHTTPS.pm b/config/chroot_local-includes/usr/src/iuk/t/lib/Test/WebServer/RedirectToHTTPS.pm new file mode 100644 index 0000000000000000000000000000000000000000..e65c10db94cac914eadaa9d3f51e9a64ab912fa1 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/t/lib/Test/WebServer/RedirectToHTTPS.pm @@ -0,0 +1,18 @@ +package Test::WebServer::RedirectToHTTPS; + +use strictures 2; +use Carp::Assert; + +use parent qw{Test::WebServer}; + +sub handle_request { + my ($self, $cgi) = @_; + + assert(exists $self->{target}); + assert(defined $self->{target}); + + print "HTTP/1.0 301 Moved Permanently\r\n"; + print "Location: https://".$self->{target}.$cgi->path_info()."\r\n"; +} + +1; diff --git a/config/chroot_local-includes/usr/src/iuk/t/lib/Test/WebServer/Static.pm b/config/chroot_local-includes/usr/src/iuk/t/lib/Test/WebServer/Static.pm new file mode 100644 index 0000000000000000000000000000000000000000..3a175c5020905bd18abb1b902280ae588364a2bc --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/t/lib/Test/WebServer/Static.pm @@ -0,0 +1,14 @@ +package Test::WebServer::Static; + +use strictures 2; +use Carp::Assert; + +use parent qw{Test::WebServer}; +use HTTP::Server::Simple::Static; + +sub handle_request { + my ($self, $cgi) = @_; + return $self->serve_static($cgi, $self->{webroot}); +} + +1; diff --git a/config/chroot_local-includes/usr/src/iuk/t/lib/Test/WebServer/Static/SSL.pm b/config/chroot_local-includes/usr/src/iuk/t/lib/Test/WebServer/Static/SSL.pm new file mode 100644 index 0000000000000000000000000000000000000000..b98feb675055a2f2f6a35ca3bd51fff437bf8871 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/t/lib/Test/WebServer/Static/SSL.pm @@ -0,0 +1,40 @@ +package Test::WebServer::Static::SSL; + +use strictures 2; +use Carp::Assert; + +use parent qw{Test::WebServer::Static}; + +use IO::Socket::SSL; + +sub accept_hook { + my $self = shift; + my $fh = $self->stdio_handle; + + for (qw{cert key}) { + assert(exists $self->{$_}); + assert(defined $self->{$_}); + } + + $self->SUPER::accept_hook(@_); + + my $newfh = IO::Socket::SSL->start_SSL( + $fh, + SSL_server => 1, + SSL_cert_file => $self->{cert}, + SSL_key_file => $self->{key}, + SSL_ca_file => $self->{cert}, + SSL_verify_mode => 0, + ); + + if ($newfh) { + return $self->stdio_handle($newfh); + } + else { + warn "problem setting up SSL socket: " . IO::Socket::SSL::errstr(); + } + + return; +} + +1; diff --git a/config/chroot_local-includes/usr/src/iuk/t/lib/Test/WebServer/Static/SSL/RedirectToHTTP.pm b/config/chroot_local-includes/usr/src/iuk/t/lib/Test/WebServer/Static/SSL/RedirectToHTTP.pm new file mode 100644 index 0000000000000000000000000000000000000000..f1d228b6b41b6b7fc77aeaa9df7ee7167658d61f --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/t/lib/Test/WebServer/Static/SSL/RedirectToHTTP.pm @@ -0,0 +1,23 @@ +package Test::WebServer::Static::SSL::RedirectToHTTP; + +use strictures 2; +use Carp::Assert; + +use parent qw{Test::WebServer::Static::SSL}; + +sub handle_request { + my ($self, $cgi) = @_; + + for (qw{target target_port}) { + assert(exists $self->{$_}); + assert(defined $self->{$_}); + } + + print "HTTP/1.0 301 Moved Permanently\r\n"; + print sprintf( + "Location: http://%s:%d%s\r\n", + $self->{target}, $self->{target_port}, $cgi->path_info() + ); +} + +1; diff --git a/config/chroot_local-includes/usr/src/iuk/t/progress.t b/config/chroot_local-includes/usr/src/iuk/t/progress.t new file mode 100644 index 0000000000000000000000000000000000000000..f0656437c396c11ea7fc40377b4b0166f5a766c2 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/t/progress.t @@ -0,0 +1,30 @@ +use Test::Most; + +use 5.10.1; +use strictures 2; +use lib qw{lib t/lib}; + +use Carp::Assert::More; +use File::Temp qw{tempdir tempfile}; + +my ($test_file_fh, $test_file_name) = tempfile; +say $test_file_fh "a" x 2**20; +close $test_file_fh; + +use_ok('Tails::IUK::LWP::UserAgent::WithProgress'); + +my $ua = Tails::IUK::LWP::UserAgent::WithProgress->new(); +ok(defined $ua); + +my $req = HTTP::Request->new('GET', "file:///$test_file_name"); +assert_defined($req); + +my ($temp_fh, $temp_filename) = tempfile; +close $temp_fh; + +my $res = $ua->request($req, $temp_filename); + +unlink $temp_filename; +unlink $test_file_name; + +done_testing(); 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 new file mode 100644 index 0000000000000000000000000000000000000000..c4318032857d84c96d3410e7c999420bf3bb6b3f --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/t/specs/Create.t @@ -0,0 +1,161 @@ +use Test::Spec; + +use 5.10.1; +use Data::Dumper; +use File::Temp qw{tempdir tempfile}; +use Path::Tiny; +use Tails::IUK; +use Test::Fatal qw{dies_ok}; + +my $union_type = $ENV{UNION_TYPE} // 'aufs'; + +my @genisoimage_opts = qw{--quiet -J -l -cache-inodes -allow-multidot}; +my @genisoimage = ('genisoimage', @genisoimage_opts); + +describe 'An IUK object' => sub { + describe 'built with no arguments' => sub { + it 'dies' => sub { + dies_ok { Tails::IUK->new() }; + }; + }; + describe 'built with fake arguments' => sub { + it 'dies' => sub { + dies_ok { Tails::IUK->new( + old_iso => path('old.iso'), + new_iso => path('new.iso'), + squashfs_diff_name => 'test.squashfs', + )}; + }; + }; + describe 'built with real old_iso and new_iso arguments' => sub { + my $iuk; + before sub { + my $tempdir = tempdir(CLEANUP => 1); + + my $old_iso = path($tempdir, 'old.iso'); + my $old_iso_tempdir = tempdir(CLEANUP => 1); + path($old_iso_tempdir, 'isolinux')->mkpath; + path($old_iso_tempdir, 'isolinux', 'isolinux.cfg')->touch; + my $old_squashfs_tempdir = tempdir(CLEANUP => 1); + # an empty SquashFS is invalid + path($old_squashfs_tempdir, '.placeholder')->touch; + path($old_iso_tempdir, 'live')->mkpath; + `mksquashfs $old_squashfs_tempdir $old_iso_tempdir/live/filesystem.squashfs -no-progress 2>/dev/null`; + system(@genisoimage, "-o", $old_iso, $old_iso_tempdir); + + my $new_iso = path($tempdir, 'new.iso'); + my $new_iso_tempdir = tempdir(CLEANUP => 1); + path($new_iso_tempdir, 'isolinux')->mkpath; + path($new_iso_tempdir, 'isolinux', 'isolinux.cfg')->touch; + my $new_squashfs_tempdir = tempdir(CLEANUP => 1); + # an empty SquashFS is invalid + path($new_squashfs_tempdir, '.placeholder')->touch; + path($new_iso_tempdir, 'EFI')->mkpath; + path($new_iso_tempdir, 'utils')->mkpath; + path($new_iso_tempdir, 'live')->mkpath; + `mksquashfs $new_squashfs_tempdir $new_iso_tempdir/live/filesystem.squashfs -no-progress 2>/dev/null`; + system(@genisoimage, "-o", $new_iso, $new_iso_tempdir); + + $iuk = Tails::IUK->new( + union_type => $union_type, + old_iso => $old_iso, + new_iso => $new_iso, + squashfs_diff_name => 'test.squashfs', + ); + }; + it 'can be written out' => $ENV{SKIP_SUDO} ? () : sub { + # XXX: + my ($out_fh, $out_filename) = tempfile(); + $iuk->saveas($out_filename); + ok(-e $out_filename); + }; + it 'has an empty delete_files list' => sub { + is(@{$iuk->delete_files}, 0); + }; + }; + describe 'has a delete_files method that' => sub { + describe 'if the object is built from an old ISO that contains file live/a and a new ISO that does not' => sub { + my $iuk; + before sub { + my $tempdir = tempdir(CLEANUP => 1); + + my $old_iso = path($tempdir, 'old.iso'); + my $old_iso_tempdir = tempdir(CLEANUP => 1); + path($old_iso_tempdir, 'live')->mkpath; + path($old_iso_tempdir, 'live/a')->touch; + system(@genisoimage, "-o", $old_iso, $old_iso_tempdir); + + my $new_iso = path($tempdir, 'new.iso'); + my $new_iso_tempdir = tempdir(CLEANUP => 1); + system(@genisoimage, "-o", $new_iso, $new_iso_tempdir); + + $iuk = Tails::IUK->new( + union_type => $union_type, + old_iso => $old_iso, + new_iso => $new_iso, + squashfs_diff_name => 'test.squashfs', + ); + }; + it 'returns a list that contains live/a' => sub { + is(scalar(grep { $_ eq 'live/a' } @{$iuk->delete_files}), 1); + }; + }; + }; + describe 'has a new_kernels method that' => sub { + describe 'if the object is built from two identical ISOs' => sub { + my $iuk; + before sub { + my $tempdir = tempdir(CLEANUP => 1); + + my $old_iso = path($tempdir, 'old.iso'); + my $old_iso_tempdir = tempdir(CLEANUP => 1); + system(@genisoimage, "-o", $old_iso, $old_iso_tempdir); + + my $new_iso = path($tempdir, 'new.iso'); + my $new_iso_tempdir = tempdir(CLEANUP => 1); + system(@genisoimage, "-o", $new_iso, $new_iso_tempdir); + + $iuk = Tails::IUK->new( + union_type => $union_type, + old_iso => $old_iso, + new_iso => $new_iso, + squashfs_diff_name => 'test.squashfs', + ); + }; + it 'returns an empty list' => sub { + is(scalar(@{$iuk->new_kernels}), 0); + }; + }; + describe 'if the object is built from ISOs that do not contain the same set of kernels' => sub { + my $iuk; + before sub { + my $tempdir = tempdir(CLEANUP => 1); + + my $old_iso = path($tempdir, 'old.iso'); + my $old_iso_tempdir = tempdir(CLEANUP => 1); + path($old_iso_tempdir, 'live')->mkpath; + path($old_iso_tempdir, 'live', 'vmlinuz')->spew("bla1"); + system(@genisoimage, "-o", $old_iso, $old_iso_tempdir); + + my $new_iso = path($tempdir, 'new.iso'); + my $new_iso_tempdir = tempdir(CLEANUP => 1); + path($new_iso_tempdir, 'live')->mkpath; + path($new_iso_tempdir, 'live', 'vmlinuz')->spew("bla2"); + system(@genisoimage, "-o", $new_iso, $new_iso_tempdir); + + $iuk = Tails::IUK->new( + union_type => $union_type, + old_iso => $old_iso, + new_iso => $new_iso, + squashfs_diff_name => 'test.squashfs', + ); + }; + it 'returns a non-empty list' => sub { + my $new_kernels = $iuk->new_kernels; + ok(scalar(@{$new_kernels}) >= 1); + }; + }; + }; +}; + +runtests unless caller; diff --git a/config/chroot_local-includes/usr/src/iuk/t/specs/Read.t b/config/chroot_local-includes/usr/src/iuk/t/specs/Read.t new file mode 100644 index 0000000000000000000000000000000000000000..3dfde63156a89d801f3448addf7e082fdffd45bb --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/t/specs/Read.t @@ -0,0 +1,132 @@ +use Test::Spec; + +use Env qw{@PATH}; +use FindBin; +unshift @PATH, "$FindBin::Bin/../../bin"; + +use lib qw{lib t/lib}; + +use 5.10.1; +use strictures 2; + +use Function::Parameters; +use IPC::System::Simple qw{systemx}; +use Path::Tiny; +use Tails::IUK::Read; +use Test::Fatal qw{dies_ok}; +use Test::Util qw{make_iuk}; + +fun create_file($size) { + my $included_file = Path::Tiny->tempfile; + $included_file->spew("c" x $size); + return $included_file; +} + +describe 'A read IUK object' => sub { + describe 'whose constructor is built with no arguments' => sub { + it 'dies' => sub { + dies_ok { Tails::IUK::Read->new() }; + }; + }; + describe 'has a "new_from_file" method that' => sub { + describe 'if called on an IUK file that is not a SquashFS image' => sub { + my $iuk_filename; + before sub { + $iuk_filename = Path::Tiny->tempfile; + $iuk_filename->touch; + }; + it 'should die' => sub { + dies_ok { Tails::IUK::Read->new_from_file($iuk_filename) }; + }; + }; + }; + describe 'has a "contains_file" method that' => sub { + describe 'if the object is built from a valid IUK file that contains a whatever.file file' => sub { + my $iuk; + before sub { + my $tempdir = Path::Tiny->tempdir; + my $iuk_filename = Path::Tiny->tempfile; + $tempdir->child('FORMAT')->spew("2"); + $tempdir->child('whatever.file')->touch; + systemx('mksquashfs', $tempdir, $iuk_filename, '-no-progress', '-noappend'); + $iuk = Tails::IUK::Read->new_from_file($iuk_filename); + }; + it 'should return true when called on "whatever.file"' => $ENV{SKIP_SUDO} ? () : sub { + ok($iuk->contains_file(path("whatever.file"))); + }; + }; + describe 'if the object is built from a valid IUK file that contains no whatever.file file' => sub { + my $iuk; + before sub { + my $tempdir = Path::Tiny->tempdir; + my $iuk_filename = Path::Tiny->tempfile; + $tempdir->child('FORMAT')->spew("2"); + systemx('mksquashfs', $tempdir, $iuk_filename, '-no-progress', '-noappend'); + $iuk = Tails::IUK::Read->new_from_file($iuk_filename); + }; + it 'should return false when called on "whatever.file"' => $ENV{SKIP_SUDO} ? () : sub { + ok(! $iuk->contains_file(path("whatever.file"))); + }; + }; + }; + describe 'has a "delete_files" method that' => sub { + describe 'if the object is built from a valid IUK whose delete_files is empty' => sub { + my $iuk; + before sub { + my $tempdir = Path::Tiny->tempdir; + my $iuk_filename = Path::Tiny->tempfile; + $tempdir->child('FORMAT')->spew("2"); + $tempdir->child('control.yml')->spew("delete_files:\n"); + systemx('mksquashfs', $tempdir, $iuk_filename, '-no-progress', '-noappend'); + $iuk = Tails::IUK::Read->new_from_file($iuk_filename); + }; + it 'should return an empty list' => $ENV{SKIP_SUDO} ? () : sub { + is(@{$iuk->delete_files}, 0); + }; + }; + describe 'if the object is built from a valid IUK whose delete_files contains whatever.file' => sub { + my $iuk; + before sub { + my $tempdir = Path::Tiny->tempdir; + my $iuk_filename = Path::Tiny->tempfile; + $tempdir->child('FORMAT')->spew("2"); + $tempdir->child('control.yml')->spew( + "delete_files:\n - file1\n - file2\n - whatever.file\n - file4\n" + ); + systemx('mksquashfs', $tempdir, $iuk_filename, '-no-progress', '-noappend'); + $iuk = Tails::IUK::Read->new_from_file($iuk_filename); + }; + it 'should return a list that contains whatever.file' => $ENV{SKIP_SUDO} ? () : sub { + is(scalar(grep {$_ eq 'whatever.file'} @{$iuk->delete_files}), 1); + }; + }; + }; + describe 'has a space_needed method that' => sub { + describe 'if called on an IUK that contains no overlay directory' => sub { + my $iuk; + before sub { + make_iuk(my $iuk_filename = Path::Tiny->tempfile); + $iuk = Tails::IUK::Read->new_from_file($iuk_filename); + }; + it 'should return 0' => $ENV{SKIP_SUDO} ? () : sub { + is($iuk->space_needed, 0); + }; + }; + describe 'if called on an IUK whose overlay directory contains two 1MB files' => sub { + my $iuk; + before sub { + make_iuk( + my $iuk_filename = Path::Tiny->tempfile, + overlay_filenames => [ 'whatever1.file', 'whatever2.file' ], + overlay_files_size => 1, + ); + $iuk = Tails::IUK::Read->new_from_file($iuk_filename); + }; + it 'should return 2 * 2**10' => $ENV{SKIP_SUDO} ? () : sub { + is($iuk->space_needed, 2 * 2**20); + }; + }; + }; +}; + +runtests unless caller; diff --git a/config/chroot_local-includes/usr/src/iuk/t/specs/extract_file_from_iso.t b/config/chroot_local-includes/usr/src/iuk/t/specs/extract_file_from_iso.t new file mode 100644 index 0000000000000000000000000000000000000000..a7287508526fab85422642d04a561c106f735611 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/t/specs/extract_file_from_iso.t @@ -0,0 +1,47 @@ +use Test::Spec; + +use 5.10.1; +use Data::Dumper; +use File::Temp qw{tempdir tempfile}; +use Path::Tiny; +use Tails::IUK::Utils qw{extract_file_from_iso}; +use Test::Fatal qw{dies_ok}; + +my @genisoimage_opts = qw{--quiet -J -l -cache-inodes -allow-multidot}; +my @genisoimage = ('genisoimage', @genisoimage_opts); + +describe 'The extract_file_from_iso function' => sub { + describe 'when run on a non-existing ISO' => sub { + it 'throws an exception' => sub { + dies_ok { extract_file_from_iso(path('bla'), path('non-existing.iso')) }; + }; + }; + describe 'when asked to extract a non-existing file from an ISO' => sub { + my $iso; + before sub { + my $tempdir = tempdir(CLEANUP => 1); + $iso = path($tempdir, 'test.iso'); + my $iso_tempdir = tempdir(CLEANUP => 1); + system(@genisoimage, "-o", $iso, $iso_tempdir); + }; + it 'throws an exception' => sub { + dies_ok { extract_file_from_iso(path('non-existing.file'), $iso) }; + }; + }; + describe 'when asked to extract an existing file from an ISO' => sub { + my $iso; + my $known_content = "known content"; + before sub { + my $tempdir = tempdir(CLEANUP => 1); + $iso = path($tempdir, 'test.iso'); + my $iso_tempdir = tempdir(CLEANUP => 1); + path($iso_tempdir, 'vmlinuz')->spew($known_content); + system(@genisoimage, "-o", $iso, $iso_tempdir); + }; + it 'returns the file content' => sub { + is(extract_file_from_iso(path('vmlinuz'), $iso), $known_content); + }; + }; +}; + +runtests unless caller; diff --git a/config/chroot_local-includes/usr/src/iuk/t/specs/upgraded_or_new_files_in_isos.t b/config/chroot_local-includes/usr/src/iuk/t/specs/upgraded_or_new_files_in_isos.t new file mode 100644 index 0000000000000000000000000000000000000000..b2cbe8397408debaf77692d131e431217ad98e93 --- /dev/null +++ b/config/chroot_local-includes/usr/src/iuk/t/specs/upgraded_or_new_files_in_isos.t @@ -0,0 +1,97 @@ +use Test::Spec; + +use 5.10.1; +use Data::Dumper; +use File::Temp qw{tempdir tempfile}; +use Path::Tiny; +use Tails::IUK qw{upgraded_or_new_files_in_isos}; +use Test::Fatal qw{dies_ok}; + +my @genisoimage_opts = qw{--quiet -J -l -cache-inodes -allow-multidot}; +my @genisoimage = ('genisoimage', @genisoimage_opts); + +describe 'The upgraded_or_new_files_in_isos function' => sub { + describe 'when run on a non-existing ISO' => sub { + it 'throws an exception' => sub { + dies_ok { Tails::IUK::upgraded_or_new_files_in_isos( + path('non-existing1.iso'), path('non-existing2.iso'), 'dir', [ qr{.*}xms ] + ) }; + }; + }; + describe 'when called with a directory that only exists in the old ISO' => sub { + my $tempdir; + before sub { + $tempdir = tempdir(CLEANUP => 1); + for my $generation (qw{old new}) { + my $filename = path($tempdir, $generation.'.iso'); + my $iso_tempdir = tempdir(CLEANUP => 1); + if ($generation eq 'old') { + path($iso_tempdir, 'old')->mkpath; + path($iso_tempdir, 'old', 'file')->touch; + } + system(@genisoimage, "-o", $filename, $iso_tempdir); + } + }; + it 'returns an empty list' => sub { + is( + scalar(Tails::IUK::upgraded_or_new_files_in_isos( + path($tempdir, 'old.iso'), + path($tempdir, 'new.iso'), + 'old', [ qr{.*}xms ] + )), + 0 + ); + }; + }; + describe 'when called with a directory that only exists in the new ISO' => sub { + my $tempdir; + before sub { + $tempdir = tempdir(CLEANUP => 1); + for my $generation (qw{old new}) { + my $filename = path($tempdir, $generation.'.iso'); + my $iso_tempdir = tempdir(CLEANUP => 1); + if ($generation eq 'new') { + path($iso_tempdir, 'new')->mkpath; + path($iso_tempdir, 'new', 'file')->touch; + } + system(@genisoimage, "-o", $filename, $iso_tempdir); + } + }; + it 'returns 1 element' => sub { + is( + scalar(Tails::IUK::upgraded_or_new_files_in_isos( + path($tempdir, 'old.iso'), + path($tempdir, 'new.iso'), + 'new', [ qr{.*}xms ] + )), + 1 + ); + }; + }; + describe 'when the new ISO has a file thas the old one has not' => sub { + my $tempdir; + before sub { + $tempdir = tempdir(CLEANUP => 1); + for my $generation (qw{old new}) { + my $filename = path($tempdir, $generation.'.iso'); + my $iso_tempdir = tempdir(CLEANUP => 1); + path($iso_tempdir, 'in_common')->touch; + path($iso_tempdir, 'dir')->mkpath; + path($iso_tempdir, 'dir', 'new')->touch if ($generation eq 'new'); + system(@genisoimage, "-o", $filename, $iso_tempdir); + } + }; + it 'returns 1 element' => sub { + is( + scalar(Tails::IUK::upgraded_or_new_files_in_isos( + path($tempdir, 'old.iso'), + path($tempdir, 'new.iso'), + 'dir', [ qr{.*}xms ] + )), + 1 + ); + }; + }; +}; + +runtests unless caller; diff --git a/config/chroot_local-includes/usr/src/perl5lib/.gitignore b/config/chroot_local-includes/usr/src/perl5lib/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..cd03f69372367dc93cb98cf46887d2e844d81968 --- /dev/null +++ b/config/chroot_local-includes/usr/src/perl5lib/.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-* +*.bak +debian/ +*.mo diff --git a/config/chroot_local-includes/usr/src/perl5lib/.plsense b/config/chroot_local-includes/usr/src/perl5lib/.plsense new file mode 100644 index 0000000000000000000000000000000000000000..68d988414371f6af2c4688837c55f00c436224ca --- /dev/null +++ b/config/chroot_local-includes/usr/src/perl5lib/.plsense @@ -0,0 +1 @@ +lib-path=lib diff --git a/config/chroot_local-includes/usr/src/perl5lib/MANIFEST.SKIP b/config/chroot_local-includes/usr/src/perl5lib/MANIFEST.SKIP new file mode 100644 index 0000000000000000000000000000000000000000..f2f854e2c3c227d0c19e0fe360799eb2cb2d34c2 --- /dev/null +++ b/config/chroot_local-includes/usr/src/perl5lib/MANIFEST.SKIP @@ -0,0 +1,5 @@ +^cover_db +~$ +^debian +\.bak$ +\.old$ diff --git a/config/chroot_local-includes/usr/src/perl5lib/dist.ini b/config/chroot_local-includes/usr/src/perl5lib/dist.ini new file mode 100644 index 0000000000000000000000000000000000000000..715f8d672f717ff60f1a405a6915a3189eaaf703 --- /dev/null +++ b/config/chroot_local-includes/usr/src/perl5lib/dist.ini @@ -0,0 +1,39 @@ +name = Tails-perl5lib +version = 4.0 +main_module = lib/Tails.pm +author = Tails developers <tails@boum.org> +license = GPL_3 +copyright_holder = Tails developers +copyright_year = 2014 + +; Author tests prereqs +; authordep Test::EOL +; authordep Test::Perl::Critic + +[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-perl5lib.list +[Prereqs] + +; Managed in config/chroot_local-packageslists/tails-perl5lib.list +[Prereqs / BuildRequires] + +[Prereqs / TestRequires] +Module::Pluggable::Object = 3.9 +Test::Most = 0.22 diff --git a/config/chroot_local-includes/usr/src/perl5lib/lib/Tails.pm b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails.pm new file mode 100644 index 0000000000000000000000000000000000000000..cb9959cff8c05c785027ae925de59d19ad5efc18 --- /dev/null +++ b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails.pm @@ -0,0 +1,15 @@ +=head1 NAME + +Tails - Tails Perl library + +=cut + +package Tails; + +use 5.10.1; +use strictures 2; +use autodie qw(:all); + +use namespace::clean; + +1; diff --git a/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Constants.pm b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Constants.pm new file mode 100644 index 0000000000000000000000000000000000000000..de5f14e6b027181f2857dae753a78e93f33b17e2 --- /dev/null +++ b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Constants.pm @@ -0,0 +1,23 @@ +package Tails::Constants; + +use 5.10.1; +use strictures 2; +use autodie qw(:all); + +use Function::Parameters; + +no Moo::sification; +use Moo; +use MooX::late; +use namespace::clean; + +has 'system_partition_label' => ( + lazy_build => 1, + is => 'ro', + isa => 'Str', +); + +method _build_system_partition_label () { 'Tails' } + +no Moo; +1; # End of Tails::Constants diff --git a/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Download/HTTPS.pm b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Download/HTTPS.pm new file mode 100644 index 0000000000000000000000000000000000000000..9cb6246d7f732499830adb6944f3f6335a85d1c4 --- /dev/null +++ b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Download/HTTPS.pm @@ -0,0 +1,124 @@ +=head1 NAME + +Tails::Download::HTTPS - download content over HTTPS + +=cut + +package Tails::Download::HTTPS; + +no Moo::sification; +use Moo; + +use 5.10.1; +use strictures 2; + +use autodie qw(:all); +use Carp; +use Carp::Assert; +use Function::Parameters; +use Types::Standard qw{HashRef Int Str}; +use WWW::Curl::Easy; + +use namespace::clean; + +=head1 ATTRIBUTES + +=cut + +has 'max_download_size' => ( + is => 'lazy', + isa => Int, +); +has 'curl_opts' => ( + is => 'lazy', + isa => HashRef +); + + +=head1 CONSTRUCTORS AND BUILDERS + +=cut + +method _build_max_download_size () { 8 * 2**10 } + +method _build_curl_opts () { + my @opts = ( + CURLOPT_NOPROGRESS, 1, + # This does *not* prevent curl from downloading more data this in the end. + CURLOPT_MAXFILESIZE, $self->max_download_size, + CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_2, + CURLOPT_SSL_CIPHER_LIST, 'ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:!RC4:HIGH:!MD5:!aNULL:!EDH', + ); + if ($ENV{HARNESS_ACTIVE} or $ENV{DISABLE_PROXY}) { + push @opts, CURLOPT_PROXY, ''; + } + else { + push @opts, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5_HOSTNAME; + push @opts, CURLOPT_PROXY, '127.0.0.1:9062'; + } + if ($ENV{SSL_NO_VERIFY}) { + push @opts, CURLOPT_SSL_VERIFYHOST, 0; + push @opts, CURLOPT_SSL_VERIFYPEER, 0; + } + else { + my $cafile = $ENV{HTTPS_CA_FILE}; + $cafile //= '/usr/local/etc/ssl/certs/tails.boum.org-CA.pem'; + push @opts, CURLOPT_SSL_VERIFYHOST, 2; + push @opts, CURLOPT_SSL_VERIFYPEER, 1; + push @opts, CURLOPT_CAINFO, $cafile; + push @opts, CURLOPT_CAPATH, ''; + push @opts, CURLOPT_PROTOCOLS, CURLPROTO_HTTPS; + push @opts, CURLOPT_REDIR_PROTOCOLS, CURLPROTO_HTTPS; + } + my %opts = @opts; + return \%opts; +} + + +=head2 get_url + +Returns decoded content found at URL. +Throws an exception on detected failure. + +=cut + +method get_url (Str $url) { + my $curl = WWW::Curl::Easy->new; + $curl->setopt(CURLOPT_URL, $url); + while (my ($k, $v) = each(%{$self->curl_opts})) { + $curl->setopt($k, $v); + } + + my $response_body; + $curl->setopt(CURLOPT_WRITEDATA, \$response_body); + my $retcode = $curl->perform; + + my $response_code; + if ($retcode == 0) { + $response_code = $curl->getinfo(CURLINFO_HTTP_CODE); + } else { + croak(sprintf( + "Could not download '%s', request failed (%s): %s\n", + $url, $curl->strerror($retcode), $curl->errbuf)); + } + + $response_code == 200 or croak(sprintf( + "Could not download '%s', request failed (%s): %s\n", + $url, $curl->strerror($retcode), $curl->errbuf, + )); + + assert(defined $response_body); + length $response_body or croak(sprintf( + "Downloaded empty file at '%s'\n", $url + )); + + length $response_body <= $self->max_download_size or croak(sprintf( + "Downloaded from '%s' but the downloaded content (%d) should be smaller than %d", + $url, length($response_body), $self->max_download_size, + )); + + return $response_body; +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/MirrorPool.pm b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/MirrorPool.pm new file mode 100644 index 0000000000000000000000000000000000000000..b5fe043f9928a7e05bbeb3905397cfe6767acaba --- /dev/null +++ b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/MirrorPool.pm @@ -0,0 +1,88 @@ +=head1 NAME + +Tails::MirrorPool - class that represents the Tails HTTP download mirror pool + +=cut + +package Tails::MirrorPool; + +no Moo::sification; +use Moo; + +use 5.10.1; +use strictures 2; +use autodie qw(:all); + +use Carp; +use Carp::Assert; +use Carp::Assert::More; +use Function::Parameters; +use IPC::System::Simple qw{capturex}; +use Tails::Download::HTTPS; +use Types::Standard qw{InstanceOf Str}; + +use namespace::clean; + +=head1 ATTRIBUTES + +=cut + +has 'baseurl' => ( + required => 1, + is => 'ro', + isa => Str, +); + +has 'fallback_prefix' => ( + is => 'lazy', + isa => Str, +); + +has 'downloader' => ( + is => 'lazy', + isa => InstanceOf['Tails::Download::HTTPS'], +); + +has 'filename' => ( + is => 'lazy', + isa => Str, +); + + +=head1 CONSTRUCTORS AND BUILDERS + +=cut + +method _build_fallback_prefix () { + q{http://dl.amnesia.boum.org/tails'} +} + +method _build_downloader () { + Tails::Download::HTTPS->new(); +} + +method _build_filename () { + q{mirrors.json} +} + + +=head1 METHODS + +=cut + +method transformURL (Str $url) { + my $orig_url = $url; + my $mirrors_json = $self->downloader->get_url( + $self->baseurl . '/' . $self->filename + ); + $ENV{NODE_PATH} //= '/usr/local/lib/nodejs'; + $url = capturex( + 'tails-transform-mirror-url', $url, $self->fallback_prefix, + $mirrors_json + ); + say STDERR "Transformed '$orig_url' into '$url'" if $ENV{DEBUG}; + return $url; +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Role/DisplayError/Gtk3.pm b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Role/DisplayError/Gtk3.pm new file mode 100644 index 0000000000000000000000000000000000000000..bb67303ecab9b62c3f125b797e68bcadb8377c25 --- /dev/null +++ b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Role/DisplayError/Gtk3.pm @@ -0,0 +1,30 @@ +package Tails::Role::DisplayError::Gtk3; + +use 5.10.1; +use strictures 2; +use autodie qw(:all); +use Function::Parameters; +use Types::Standard qw(InstanceOf Str); + +use Moo::Role; +use MooX::late; +use namespace::clean; + +method display_error ( + (InstanceOf['Gtk3::Window']) $main_window, + Str $title, + Str $mesg +) { + say STDERR "$title: $mesg"; + + my $dialog = Gtk3::MessageDialog->new( + $main_window, 'destroy-with-parent', 'error', 'ok', + $title + ); + $dialog->set('secondary-text' => $mesg); + $dialog->set_position('center'); + $dialog->run; +} + +no Moo::Role; +1; # End of Tails::Role::DisplayError::Gtk3 diff --git a/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Role/HasCodeset.pm b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Role/HasCodeset.pm new file mode 100644 index 0000000000000000000000000000000000000000..396df9eb117cd67626ab8e1dc4e09d320a9ac7f8 --- /dev/null +++ b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Role/HasCodeset.pm @@ -0,0 +1,40 @@ +=head1 NAME + +Tails::Role::HasCodeset - role to get the codeset being used + +=cut + +package Tails::Role::HasCodeset; + +use 5.10.1; +use strictures 2; +use autodie qw(:all); + +use Function::Parameters; +use Try::Tiny; + +use Moo::Role; # Moo::Role exports all methods declared after it's "use"'d +use MooX::late; + +use namespace::clean; + +has 'codeset' => ( + isa => 'Str', + is => 'ro', + lazy_build => 1, +); + +method _build_codeset () { + my $codeset; + try { + require I18N::Langinfo; + I18N::Langinfo->import(qw(langinfo CODESET)); + $codeset = langinfo(CODESET()); + } catch { + die "No default character code set configured.\nPlease fix your locale settings."; + }; + $codeset; +} + +no Moo::Role; +1; # End of Tails::Role::HasCodeset diff --git a/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Role/HasDBus/System.pm b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Role/HasDBus/System.pm new file mode 100644 index 0000000000000000000000000000000000000000..308950849344f527b1dd849ee7c0e1b8b3a67f9e --- /dev/null +++ b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Role/HasDBus/System.pm @@ -0,0 +1,36 @@ +=head1 NAME + +Tails::HasDBus::System - role providing a connection to the system DBus + +=cut + +package Tails::Role::HasDBus::System; + +use 5.10.1; +use strictures 2; +use autodie qw(:all); + +use Carp::Assert::More; +use Function::Parameters; +use Net::DBus qw(:typing); +use Net::DBus::GLib; + +use Moo::Role; +use MooX::late; +use namespace::clean; + +has 'dbus' => ( + isa => 'Net::DBus', + is => 'ro', + required => 1, + builder => '_build_dbus', +); + +method _build_dbus () { + my $dbus = Net::DBus::GLib->system; + assert_defined($dbus); + return $dbus; +} + +no Moo::Role; +1; # End of Tails::HasDBus::System diff --git a/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Role/HasEncoding.pm b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Role/HasEncoding.pm new file mode 100644 index 0000000000000000000000000000000000000000..43952c6353a7f8a48aea92faf5888de6ae6c6c92 --- /dev/null +++ b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/Role/HasEncoding.pm @@ -0,0 +1,45 @@ +=head1 NAME + +Tails::Role::HasEncoding - role to provide an Encode::Encoding objet for the codeset being used + +=head1 SYNOPSIS + + package Tails::Daemon; + use Moo; + with 'Tails::Role::HasEncoding'; + sub foo { + my $self = shift; + $self->encoding->decode('bla'); + } + +=cut + +package Tails::Role::HasEncoding; + +use 5.10.1; +use strictures 2; +use autodie qw(:all); + +use Encode qw{find_encoding}; +use Function::Parameters; + +no Moo::sification; +use Moo::Role; # Moo::Role exports all methods declared after it's "use"'d +use MooX::late; + +with 'Tails::Role::HasCodeset'; + +use namespace::clean; + +has 'encoding' => ( + isa => 'Encode::Encoding|Encode::XS', + is => 'ro', + lazy_build => 1, +); + +method _build_encoding () { + find_encoding($self->codeset); +} + +no Moo::Role; +1; # End of Tails::Role::HasEncoding diff --git a/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm new file mode 100644 index 0000000000000000000000000000000000000000..590afc50fd48f6761bba701da6475907d7dfb6f1 --- /dev/null +++ b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm @@ -0,0 +1,351 @@ +=head1 NAME + +Tails::RunningSystem - class that represents the running Tails system + +=cut + +package Tails::RunningSystem; + +use 5.10.1; +use strictures 2; +use autodie qw(:all); + +use Carp; +use Carp::Assert::More; +use Function::Parameters; +use Path::Tiny; +use Sys::Statistics::Linux::MemStats; +use Tails::Constants; +use Tails::UDisks; +use Try::Tiny; +use Types::Path::Tiny qw{AbsDir AbsFile AbsPath}; +use Types::Standard qw(Str); + +use Locale::gettext; +use POSIX; +setlocale(LC_MESSAGES, ""); +textdomain("tails"); + +no Moo::sification; +use Moo; +use MooX::late; + +with 'Tails::Role::HasEncoding'; +with 'Tails::Role::DisplayError::Gtk3'; + +use namespace::clean; + + +=head1 ATTRIBUTES + +=cut + +has 'upgrade_description_url_schema_version' => ( + lazy_build => 1, + is => 'ro', + isa => 'Int', +); + +has "$_" => ( + lazy_build => 1, + is => 'ro', + isa => 'Str', +) for ( + qw{baseurl product_name initial_install_version product_version}, + qw{build_target channel}, + qw{upgrade_description_file_url upgrade_description_sig_url}, + ); + +has initial_install_os_release_file => ( + isa => AbsFile, + coerce => AbsFile->coercion, + is => 'ro', + lazy_build => 1, +); + +has os_release_file => ( + isa => AbsFile, + coerce => AbsFile->coercion, + is => 'ro', + lazy_build => 1, +); + +has "$_" => ( + isa => AbsDir, + is => 'ro', + lazy_build => 1, +) for (qw{dev_dir proc_dir run_dir}); + +has 'udisks' => ( + lazy_build => 1, + is => 'ro', + isa => 'Tails::UDisks', + handles => [ qw{bytes_array_to_string device_installed_with_tails_installer + get_block_device_property get_drive_property + get_partition_property + underlying_block_device underlying_drive} ], +); + +has 'liveos_mountpoint' => ( + isa => AbsDir, + is => 'rw', + lazy_build => 1, + coerce => AbsDir->coercion, + documentation => q{Mountpoint of the Tails system image.}, +); + +has 'boot_drive' => ( + lazy_build => 1, + is => 'rw', + isa => 'Str', + documentation => q{The UDI of the physical drive where Tails is installed, e.g. /org/freedesktop/UDisks2/drives/Verbatim_ABC_2786.}, +); + +has 'boot_block_device' => ( + lazy_build => 1, + is => 'rw', + isa => 'Str', + documentation => q{The UDI of the block device where Tails is installed, e.g. /org/freedesktop/UDisks2/block_devices/sdb.} +); + +has 'boot_device_file' => ( + lazy_build => 1, + is => 'rw', + isa => AbsPath, + coerce => AbsPath->coercion, + documentation => q{The path of the physical drive where Tails is installed, e.g. /dev/sdb.}, +); + +has 'system_partition' => ( + lazy_build => 1, + is => 'rw', + isa => 'Str', + documentation => q{The UDI of the partition where Tails is installed, e.g. /org/freedesktop/UDisks2/block_devices/sdb1.}, +); + +has 'system_partition_file' => ( + lazy_build => 1, + is => 'rw', + isa => AbsPath, + coerce => AbsPath->coercion, + documentation => q{The path of the partition where Tails is installed, e.g. /dev/sdb1.}, +); + +has 'constants' => ( + lazy_build => 1, + is => 'ro', + isa => 'Tails::Constants', + handles => [ qw{system_partition_label}], +); + +has 'main_window' => ( + is => 'ro', + isa => 'Gtk3::Window', +); + +foreach (qw{boot_drive_vendor boot_drive_model + override_started_from_device_installed_with_tails_installer}) { + has $_ => ( + lazy_build => 1, + is => 'ro', + isa => 'Str', + ); +} + + +=head1 CONSTRUCTORS AND BUILDERS + +=cut + +method _build_upgrade_description_url_schema_version () { 2 } +method _build_dev_dir () { path('/dev') } +method _build_os_release_file () { path('/etc/os-release') } +method _build_initial_install_os_release_file () { + path('/lib/live/mount/rootfs/filesystem.squashfs/etc/os-release') +} +method _build_proc_dir () { path('/proc') } +method _build_run_dir () { path('/var/run') } +method _build_product_name () { $self->os_release_get('TAILS_PRODUCT_NAME') } +method _build_product_version () { $self->os_release_get('TAILS_VERSION_ID') } +method _build_initial_install_version () { + $self->os_release_get( + 'TAILS_VERSION_ID', + 'os_release_file' => $self->initial_install_os_release_file, + ) +} +method _build_baseurl () { 'https://tails.boum.org' } +method _build_udisks () { Tails::UDisks->new(); } + +method _build_build_target () { + my $arch = `dpkg --print-architecture`; chomp $arch; return $arch; +} + +method _build_channel () { + my $channel; + try { $channel = $self->os_release_get('TAILS_CHANNEL') }; + defined $channel ? $channel : 'stable'; +} + +method _build_upgrade_description_file_url () { + sprintf( + "%s/upgrade/v%d/%s/%s/%s/%s/upgrades.yml", + $self->baseurl, + $self->upgrade_description_url_schema_version, + $self->product_name, + $self->initial_install_version, + $self->build_target, + $self->channel, + ); +} + +method _build_upgrade_description_sig_url () { + $self->upgrade_description_file_url . '.pgp'; +} + +method _build_constants () { + Tails::Constants->new(); +} + +method _build_liveos_mountpoint () { + path('/lib/live/mount/medium'); +} + +method _build_boot_block_device () { + my $device; + try { + say STDERR "_build_boot_block_device: getting liveos_mountpoint"; + my $liveos_mountpoint = $self->liveos_mountpoint; + say STDERR "liveos_mountpoint: $liveos_mountpoint"; + $device = $self->underlying_block_device($liveos_mountpoint); + } catch { + $self->display_error( + $self->main_window, + $self->encoding->decode(gettext(q{Error})), + $self->encoding->decode(gettext( + q{The device Tails is running from cannot be found. Maybe you used the 'toram' option?}, + )), + ); + }; + + assert_defined($device); + + # E.g. optical drives have no org.freedesktop.UDisks2.Partition interface, + # so let's try to find out the parent device, and fallback to the device + # itself. + my $parent_device; + try { + $parent_device = $self->get_partition_property($device, 'Table'); + }; + my $boot_block_device = $parent_device ? $parent_device : $device; + + say STDERR "boot device: $boot_block_device" if $ENV{DEBUG}; + return $boot_block_device; +} + +method _build_boot_drive () { + my $drive; + try { + $drive = $self->underlying_drive($self->liveos_mountpoint); + } catch { + $self->display_error( + $self->main_window, + $self->encoding->decode(gettext( + q{The drive Tails is running from cannot be found. Maybe you used the 'toram' option?}, + )), + '', + ); + }; + + assert_defined($drive); + say STDERR "boot drive: $drive" if $ENV{DEBUG}; + return $drive; +} + +method _build_boot_device_file () { + return $self->bytes_array_to_string($self->get_block_device_property( + $self->boot_block_device, 'PreferredDevice' + )); +} + +method _build_system_partition () { + $self->udisks->device_partition_with_label( + $self->boot_block_device, + $self->system_partition_label + ); +} + +method _build_system_partition_file () { + return $self->bytes_array_to_string($self->get_block_device_property( + $self->system_partition, 'PreferredDevice' + )); +} + +method _build_boot_drive_vendor () { + $self->get_drive_property($self->boot_drive, 'Vendor'); +} + +method _build_boot_drive_model () { + $self->get_drive_property($self->boot_drive, 'Model'); +} + + +=head1 METHODS + +=cut + +=head2 os_release_get + +Retrieve a value from os-release file, +as specified by +http://www.freedesktop.org/software/systemd/man/os-release.html + +Throws an exception if not found. + +=cut +method os_release_get (Str $key, AbsFile :$os_release_file = $self->os_release_file) { + assert(-e $os_release_file); + assert_like($key, qr{[_A-Z]+}); + + my $fh = path($os_release_file)->openr; + + while (<$fh>) { + chomp; + if (my ($value) = (m{\A $key [=] ["] (.*) ["] \z}xms)) { + return $value; + } + } + + croak(sprintf( + "Could not retrieve value of '%s' in '%s'", + $key, $os_release_file, + )); +} + +method started_from_device_installed_with_tails_installer () { + return $self->override_started_from_device_installed_with_tails_installer + if $self->has_override_started_from_device_installed_with_tails_installer; + $self->device_installed_with_tails_installer($self->boot_block_device); +} + +method started_from_writable_device () { + assert(-d $self->dev_dir); + + -e path($self->dev_dir, 'bilibop'); +} + +=head2 free_memory + +Returns MemFree + Buffers + Cached, in bytes. + +=cut +method free_memory () { + assert(-d $self->proc_dir); + assert(-e path($self->proc_dir, 'meminfo')); + + Sys::Statistics::Linux::MemStats->new( + files => { path => $self->proc_dir } + )->get->{realfree} * 1024; +} + +no Moo; +1; diff --git a/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/UDisks.pm b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/UDisks.pm new file mode 100644 index 0000000000000000000000000000000000000000..d805ca150d55fc4a5854a07486e36cf50c0a9c3d --- /dev/null +++ b/config/chroot_local-includes/usr/src/perl5lib/lib/Tails/UDisks.pm @@ -0,0 +1,224 @@ +=head1 NAME + +Tails::UDisks - role providing a connection to UDisks via DBus + +=cut + +package Tails::UDisks; + +use 5.10.1; +use strictures 2; +use autodie qw(:all); + +use Carp::Assert::More; +use File::stat; +use Function::Parameters; +use IPC::System::Simple qw{capturex}; +use Syntax::Keyword::Junction qw{any}; +use List::Util qw{first}; +use Tails::Constants; +use Types::Standard qw{ArrayRef Defined Str}; +use Types::Path::Tiny qw{Path}; +use Unix::Mknod qw(:all); + +no Moo::sification; +use Moo; +use MooX::late; +use namespace::clean; + +with 'Tails::Role::HasDBus::System'; + +has 'constants' => ( + is => 'ro', + isa => 'Tails::Constants', + lazy_build => 1, + handles => [ qw{system_partition_label}], +); + +has 'udisks_service' => ( + is => 'ro', + lazy_build => 1, # Let's decide the right initialization order in BUILD + isa => 'Net::DBus::RemoteService', +); + +has 'udisks_object' => ( + is => 'ro', + lazy_build => 1, # Let's decide the right initialization order in BUILD + isa => 'Net::DBus::RemoteObject', +); + +method BUILD (@args) { + # Force initialization in correct order + assert_defined($self->dbus); + assert_defined($self->udisks_service); + assert_defined($self->udisks_object); +} + +method _build_constants () { + Tails::Constants->new(); +} + +method _build_udisks_service () { + $self->dbus->get_service("org.freedesktop.UDisks2"); +} + +method _build_udisks_object () { + $self->udisks_service->get_object( + "/org/freedesktop/UDisks2", + "org.freedesktop.DBus.ObjectManager" + ); +} + +method debug (@args) { + say STDERR @_ if $ENV{DEBUG}; +} + +method get_udisks_property (Str $type, Defined $object, Str $property) { + $self->debug("Entering get_udisks_property: $type, $object, $property"); + $self->udisks_service + ->get_object($object) + ->as_interface("org.freedesktop.DBus.Properties") + ->Get("org.freedesktop.UDisks2.$type", $property); +} + +method get_block_device_property (Defined $device, Str $property) { + $self->get_udisks_property('Block', $device, $property); +} + +method get_drive_property (Defined $drive, Str $property) { + $self->get_udisks_property('Drive', $drive, $property); +} + +method get_partition_table_property (Defined $device, Str $property) { + $self->get_udisks_property('PartitionTable', $device, $property); +} + +method get_partition_property (Defined $device, Str $property) { + $self->get_udisks_property('Partition', $device, $property); +} + +method get_filesystem_property (Defined $device, Str $property) { + $self->get_udisks_property('Filesystem', $device, $property); +} + +method drive_is_connected_via_a_supported_interface (Defined $drive) { + $self->debug("Entering drive_is_connected_via_a_supported_interface, $drive"); + + my $iface = $self->get_drive_property($drive, 'ConnectionBus'); + + any(qw{sdio usb}) eq $iface; +} + +method drive_is_optical (Defined $drive) { + $self->get_drive_property($drive, 'Optical'); +} + +method partitions (Defined $device) { + my $partition_re; + if ($device =~ m{mmcblk [0-9]+ \z}xms) { + $partition_re = qr{\A$device[p][0-9]+\z}; + } + else { + $partition_re = qr{\A$device[0-9]+\z}; + } + + grep { + $_ =~ m{$partition_re}xms + } keys %{$self->udisks_object->GetManagedObjects()}; +} + +method luks_holder (Defined $device) { + my %objects = %{$self->udisks_object->GetManagedObjects()}; + + first { + my $obj = $objects{$_}; + return unless exists($obj->{'org.freedesktop.UDisks2.Block'}); + return unless defined($obj->{'org.freedesktop.UDisks2.Block'}); + my $block = $obj->{'org.freedesktop.UDisks2.Block'}; + return unless exists($block->{CryptoBackingDevice}); + return unless defined($block->{CryptoBackingDevice}); + $block->{CryptoBackingDevice} eq $device; + } keys %objects; +} + +method bytes_array_to_string (ArrayRef $bytes_array) { + my @bytes_array = @{$bytes_array}; + my $null_terminated_str = pack('(U)*x', @bytes_array); + return substr($null_terminated_str, 0, length($null_terminated_str) - 2); +} + +method mountpoints (Defined $device) { + my $luks_holder = $self->luks_holder($device); + my $real_device = $luks_holder ? $luks_holder : $device; + + return map { + $self->bytes_array_to_string($_) + } @{$self->get_filesystem_property($real_device, 'MountPoints')}; +} + +method device_partition_with_label (Defined $device, Str $label) { + $self->debug("Entering device_partition_with_label $device, $label"); + first { + defined && $label eq $self->get_partition_property($_, 'Name') + } $self->partitions($device) +} + +method device_has_partition_with_label (Defined $device, Str $label) { + defined $self->device_partition_with_label($device, $label); +} + +method device_installed_with_tails_installer (Defined $device) { + $self->debug("Entering device_installed_with_tails_installer: $device"); + 'gpt' eq $self->get_partition_table_property($device, 'Type') + or return; + + $self->device_has_partition_with_label($device, $self->system_partition_label) + or return; + + return 1; +} + + +=head2 underlying_block_device + +Returns the physical block device UDI (e.g. +/org/freedesktop/UDisks2/block_devices/sdb1) on which the specified file +is stored. + +=cut +method underlying_block_device (Path $path) { + say STDERR "Entering underlying_block_device ($path)"; + my $st = stat($path); + + my $device = capturex( + 'readlink', '--canonicalize', + sprintf("/dev/block/%i:%i", major($st->dev), minor($st->dev)) + ); + say STDERR "readlink returned: $device"; + $device =~ s{\A /dev/}{}xms; + $device =~ s{\n \z}{}xms; + $device = "/org/freedesktop/UDisks2/block_devices/$device"; + + say STDERR "Leaving underlying_block_device, returning: $device"; + return $device; +} + +=head2 underlying_drive + +Returns the physical drive UDI (e.g. +/org/freedesktop/UDisks2/drives/Verbatim_ABC_2786) on which the specified file +is stored. + +=cut +method underlying_drive (Path $path) { + $self->debug("Entering underlying_drive"); + my $block = $self->underlying_block_device($path); + $self->debug("block: $block"); + my $drive = $self->get_block_device_property($block, 'Drive'); + # assert_defined($drive); + $self->debug("drive: $drive"); + return $drive; +} + +no Moo; +1; # End of Tails::UDisks diff --git a/config/chroot_local-includes/usr/src/perl5lib/t/00-load_all.t b/config/chroot_local-includes/usr/src/perl5lib/t/00-load_all.t new file mode 100644 index 0000000000000000000000000000000000000000..689edc23c7d17fa93972e8eb8d773a9f9049d735 --- /dev/null +++ b/config/chroot_local-includes/usr/src/perl5lib/t/00-load_all.t @@ -0,0 +1,18 @@ +use Test::Most; + +use Module::Pluggable::Object; + +# libs +my @needsX; +my $finder = Module::Pluggable::Object->new( + search_path => [ 'Tails' ], +); +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-packageslists/tails-common.list b/config/chroot_local-packageslists/tails-common.list index 4e201fce9fe1f670e423349e0342fb3943d30cfa..3e8d36e424fbceab6321bea45a657176dd3ec266 100644 --- a/config/chroot_local-packageslists/tails-common.list +++ b/config/chroot_local-packageslists/tails-common.list @@ -1,7 +1,5 @@ ### Self-bla tails-installer -tails-iuk -tails-persistence-setup whisperback # profiling => squashfs optimization python3-pyinotify @@ -361,7 +359,7 @@ printer-driver-postscript-hp ### Enable MAT2's Nautilus extension python-nautilus -### Needed by virtualbox-guest-utils +### WhisperBack uses lspci(8) to gather debugging info pciutils ### SmartCard @@ -414,3 +412,8 @@ bolt ipheth-utils libimobiledevice-utils usbmuxd + +# Requested by SecureDrop for their air-gapped machines (#17178) +pdf-redact-tools +tesseract-ocr +ffmpeg diff --git a/config/chroot_local-packageslists/tails-iuk.list b/config/chroot_local-packageslists/tails-iuk.list new file mode 100644 index 0000000000000000000000000000000000000000..ccb66b5fb072e703d602961fe634df06488868d4 --- /dev/null +++ b/config/chroot_local-packageslists/tails-iuk.list @@ -0,0 +1,26 @@ +libcarp-assert-more-perl +libcarp-assert-perl +libclass-xsaccessor-perl +libdpkg-perl +libfile-which-perl +libfilesys-df-perl +libfunction-parameters-perl +libgnupg-interface-perl +libhttp-message-perl +libipc-run-perl +libipc-system-simple-perl +liblocale-gettext-perl +liblwp-protocol-socks-perl +libmoo-perl +libmoox-late-perl +libmoox-handlesvia-perl +libmoox-options-perl +libnamespace-clean-perl +libnumber-format-perl +libpath-tiny-perl +libstring-errf-perl +libtry-tiny-perl +libyaml-perl +libyaml-libyaml-perl +nocache +sudo diff --git a/config/chroot_local-packageslists/tails-perl5lib.list b/config/chroot_local-packageslists/tails-perl5lib.list new file mode 100644 index 0000000000000000000000000000000000000000..02fdc0077069d03f123755596551494cfcd30db9 --- /dev/null +++ b/config/chroot_local-packageslists/tails-perl5lib.list @@ -0,0 +1,21 @@ +libcarp-assert-more-perl +libcarp-assert-perl +libclass-xsaccessor-perl +libfunction-parameters-perl +libgtk3-perl +libipc-system-simple-perl +liblocale-gettext-perl +libmoo-perl +libmoox-late-perl +libnamespace-clean-perl +libnet-dbus-glib-perl +libnet-dbus-perl +libpath-tiny-perl +libsyntax-keyword-junction-perl +libsys-statistics-linux-perl +libtry-tiny-perl +libtype-tiny-perl +libtype-tiny-xs-perl +libtypes-path-tiny-perl +libunix-mknod-perl +libwww-curl-perl diff --git a/config/chroot_sources/buster-proposed-updates.binary b/config/chroot_sources/buster-proposed-updates.binary new file mode 120000 index 0000000000000000000000000000000000000000..d18191fb1ea0a0e7f918892026cb29a60c7735d4 --- /dev/null +++ b/config/chroot_sources/buster-proposed-updates.binary @@ -0,0 +1 @@ +buster-proposed-updates.chroot \ No newline at end of file diff --git a/config/chroot_sources/buster-proposed-updates.chroot b/config/chroot_sources/buster-proposed-updates.chroot new file mode 100644 index 0000000000000000000000000000000000000000..2d0961371e3d4eecd76474cd3c35a00dfafe9920 --- /dev/null +++ b/config/chroot_sources/buster-proposed-updates.chroot @@ -0,0 +1 @@ +deb http://ftp.us.debian.org/debian/ buster-proposed-updates main contrib non-free diff --git a/debian/changelog b/debian/changelog index 6fd7a69ab55dd006398a8ac0ef949461e79970d2..3f52893cef8e461a61f6be24727f6fa9b1bf2eb1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,14 +1,106 @@ tails (4.5) UNRELEASED; urgency=medium - * Dummy entry for next release. + * Dummy entry for next major release - -- intrigeri <intrigeri@debian.org> Tue, 22 Oct 2019 15:23:33 +0000 + -- Tails developers <tails@boum.org> Tue, 22 Oct 2019 15:23:33 +0000 -tails (4.2) UNRELEASED; urgency=medium +tails (4.2.2) unstable; urgency=medium - * Dummy entry for next release. + * Major changes + - Upgrade Tor Browser to 9.0.4-build1 (MFSA-2020-03) + + * Bugfixes + - Avoid the Upgrader proposing to upgrade to the version + that's already running (Closes: #17425) + - Avoid 2 minutes delay while rebooting after applying an automatic + upgrade (Closes: #17026) + - Make Thunderbird support TLS 1.3 (Closes: #17333) + + * Build system + - IUK generation: don't make all files in the SquashFS diff + owned by root, otherwise an upgraded system cannot start + (Closes: #17422) + + -- Tails developers <tails@boum.org> Mon, 13 Jan 2020 09:21:51 +0000 + +tails (4.2) unstable; urgency=medium + + * Major changes + - Switch to a redesigned upgrade system (Closes: #15281), which: + - removes the need for manual upgrades caused by lack of disk space + on the Tails device + - uses less RAM + - Bump snapshot of the Debian archive to 2019122802 + + * Security fixes + - Upgrade Tor Browser to 9.0.3 (Closes: #17402) + - Upgrade Linux to 5.3.15-1 (Closes: #17332) + and upgrade the aufs module to 5.3-20191223 + - Upgrade Thunderbird to 1:68.3.0-2~deb10u1 + - Upgrade libsasl2 to 2.1.27+dfsg-1+deb10u1 + - Upgrade python3-ecdsa to 0.13-3+deb10u1 + + * Bugfixes + - KeePassXC: + - Open ~/Persistent/keepassx.kdbx by default again (Closes: #17212) + - Open the database specified by the user on the command-line, if any + - Fix database renaming prompt + - Upgrader: + - Ensure debugging info lands in the Journal before we refer to it + - Catch more download errors + - Upgrade amd64-microcode to 3.20191218.1, which removes firmware + updates that cause issues + + * Minor improvements and updates + - Add metadata analysis tools used by SecureDrop (Closes: #17178) + - Refresh the signing key before checking for available upgrades + (Closes: #15279) + - Port the Upgrader and perl5lib to a set of dependencies that are + faster and have a lower memory footprint (Closes: #17152) + - Ensure IUKs don't include files of our website if their content + has not changed (refs: #15290) + - Zero heap memory at allocation time and at free time (Closes: #17236) + + * Build system + - Import the Upgrader and perl5lib codebases into tails.git + (part of #7036) + - lint_po: ignore pre-existing rply cache file that can cause + trouble if it's corrupted (Closes: #17359) + - Move generate-languages-list to auto/scripts + - import-translations: work around the lack of usable branches + in Tor's translation.git (Closes: #17279) + - Build released IUKs on Jenkins and verify that they match + those built locally by the Release Manager (Closes: #15287) + - Don't download every localized Tor Browser tarball: instead, + use the new tarball that includes every langpacks (Closes: #17400) + + * Test suite + - Adapt for the "one single SquashFS diff" upgrade scheme + - Chutney: update to upstream 33cbff7fc73aa51a785197c5f4afa5a91d81de9c + (Closes: #16792) + - Fix tagging of Chutney exit relays and bridge authorities + - Tag Chutney clients as such + - Wait for all Chutney nodes to have bootstrapped before assuming + the simulated Tor network is ready + - Don't try to save tor control sockets as artifacts + - Add a crude script to generate IUKs for our test suite + + -- Tails developers <tails@boum.org> Mon, 06 Jan 2020 16:25:22 +0000 + +tails (4.1.1) unstable; urgency=medium + + * Bugfixes + - Drop all network drivers from the initramfs to shrink its size + drastically. Going over the 32 MiB mark might be the reason why so + many Apple machines can't boot 4.1 while they could boot 4.0 + (Closes: #17320). + - Only allow up to (but excluding) 32 MiB for initramfs accordingly. + + * Minor improvements and updates + - Fix escape sequence in tails-gdm-failed-to-start.service, to avoid a + warning message (Closes: #17166). - -- anonym <anonym@riseup.net> Tue, 03 Dec 2019 21:49:39 +0100 + -- Tails developers <tails@boum.org> Sun, 15 Dec 2019 23:51:25 +0100 tails (4.1) unstable; urgency=medium diff --git a/features/chutney/test-network b/features/chutney/test-network index c54fc794ef8efae5f9a5a37aa41ad8a49d5a34e2..c13c4563a52ef9bd4f5af1f8d6bddfa4812ece4b 100644 --- a/features/chutney/test-network +++ b/features/chutney/test-network @@ -6,7 +6,7 @@ Authority = Node( ) BridgeAuthority = Node( - tag="brauth", + tag="ba", authority=1, bridgeauthority=1, relay=1, @@ -20,7 +20,7 @@ NonExitRelay = Node( ) ExitRelay = Node( - tag="exit", + tag="relay", relay=1, exit=1, torrc="relay.tmpl" @@ -28,6 +28,7 @@ ExitRelay = Node( Client = Node( tag="client", + client=1, torrc="client.tmpl" ) diff --git a/features/images/TailsUpgraderUpgradeTo1.1~test.png b/features/images/TailsUpgraderUpgradeTo1.1~test.png deleted file mode 100644 index 6a3fdd5bf1507ef45b49595cf079c31eadcc9c1c..0000000000000000000000000000000000000000 Binary files a/features/images/TailsUpgraderUpgradeTo1.1~test.png and /dev/null differ diff --git a/features/images/TailsUpgraderUpgradeTo2.2~test.png b/features/images/TailsUpgraderUpgradeTo2.2~test.png new file mode 100644 index 0000000000000000000000000000000000000000..be447ed5291326796fa33422c288f00939791855 Binary files /dev/null and b/features/images/TailsUpgraderUpgradeTo2.2~test.png differ diff --git a/features/images/TailsUpgraderUpgradeTo2.3~test.png b/features/images/TailsUpgraderUpgradeTo2.3~test.png new file mode 100644 index 0000000000000000000000000000000000000000..c1431d3b83f0e98e93b1893ac5d3014ecea03ea7 Binary files /dev/null and b/features/images/TailsUpgraderUpgradeTo2.3~test.png differ diff --git a/features/step_definitions/chutney.rb b/features/step_definitions/chutney.rb index acc2f1894fa8c8389164ff8c4de92599551712a7..71d23a7e4a8c9026689467d63a9ff90dd9858e16 100644 --- a/features/step_definitions/chutney.rb +++ b/features/step_definitions/chutney.rb @@ -16,7 +16,10 @@ 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', } chutney_data_dir_cleanup = Proc.new do @@ -52,6 +55,9 @@ def ensure_chutney_is_running chutney_cmd.call('start') end + # Documentation: submodules/chutney/README, "Waiting for the network" section + chutney_cmd.call('wait_for_bootstrap') + at_exit do chutney_cmd.call('stop') chutney_data_dir_cleanup.call unless KEEP_SNAPSHOTS @@ -172,7 +178,8 @@ def chutney_onionservice_redir(remote_address, remote_port) "--unit=#{redir_unit_name}", '--service-type=forking', '--quiet', - # XXX: enable this once we require Buster or newer for running our test suite + # XXX: enable this once we require systemd v236 or newer + # for running our test suite # '--collect', '/usr/bin/redir', "#{local_address}:#{local_port}", diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb index b26fc9fbc47570a956e199bb583bbadeabc65ad3..965d11eb9b9ceb2c8f30bbfd5df0118d2c00dd70 100644 --- a/features/step_definitions/common_steps.rb +++ b/features/step_definitions/common_steps.rb @@ -928,6 +928,29 @@ Given /^Tails is fooled to think it is running version (.+)$/ do |version| ) end +Given /^Tails is fooled to think that version (.+) was initially installed$/ do |version| + initial_os_release_file = + '/lib/live/mount/rootfs/filesystem.squashfs/etc/os-release' + fake_os_release_file = $vm.execute_successfully('mktemp').stdout.chomp + fake_os_release_content = <<-EOF +TAILS_PRODUCT_NAME="Tails" +TAILS_VERSION_ID="#{version}" + EOF + $vm.file_overwrite(fake_os_release_file, fake_os_release_content) + $vm.execute_successfully("chmod a+r #{fake_os_release_file}") + $vm.execute_successfully( + "mount --bind '#{fake_os_release_file}' '#{initial_os_release_file}'" + ) + # Let's verify that the deception works + assert_equal( + version, + $vm.execute_successfully( + ". #{initial_os_release_file} && echo ${TAILS_VERSION_ID}" + ).stdout.chomp, + 'Implementation error, alert the test suite maintainer!' + ) +end + def running_tails_version $vm.execute_successfully('tails-version').stdout.split.first end diff --git a/features/step_definitions/erase_memory.rb b/features/step_definitions/erase_memory.rb index 257bc5bfa1aadb4ca24a3661adcd64dde2a3807e..59872214607eb9815b0ae70f749c66941f9865f8 100644 --- a/features/step_definitions/erase_memory.rb +++ b/features/step_definitions/erase_memory.rb @@ -43,7 +43,10 @@ def pattern_coverage_in_guest_ram(reference_memory_b) FileUtils.touch(dump) FileUtils.chmod(0666, dump) $vm.domain.core_dump(dump) - patterns = IO.popen(['grep', '--text', '-c', 'wipe_didnt_work', dump]).gets.to_i + # Make sure to close after reading stdout, to avoid Zombies: + grep = IO.popen(['grep', '--text', '-c', 'wipe_didnt_work', dump]) + patterns = grep.gets.to_i + grep.close File.delete dump # Pattern is 16 bytes long patterns_b = patterns*16 diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb index 6b385129a1def614922e7ae93f5d3a1e162dfa18..7638fc0834f249ba01ab471c7dfd3546d5c2be25 100644 --- a/features/step_definitions/usb.rb +++ b/features/step_definitions/usb.rb @@ -701,10 +701,11 @@ Given /^I create a ([[:alpha:]]+) label on disk "([^"]+)"$/ do |type, name| $vm.storage.disk_mklabel(name, type) 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_equal('1.1~test', version) - upgrade_applied = not_present.nil? - chroot_browser = "#{chroot_browser.downcase}-browser" if chroot_browser +# The (crude) bin/create-test-iuks script can be used to generate the IUKs, +# meant to apply these exact changes, that are used by the test suite. +# It's nice to keep that script updated when updating the list of expected +# changes here and uploading new test IUKs. +def iuk_changes(version) changes = [ { filesystem: :rootfs, @@ -746,6 +747,41 @@ TAILS_VERSION_ID="#{version}" status: :removed }, ] + + case version + when '2.2~test' + changes + when '2.3~test' + changes + [ + { + filesystem: :rootfs, + path: 'some_new_file_2.3', + status: :added, + new_content: <<-EOF +Some content 2.3 + EOF + }, + { + filesystem: :rootfs, + path: 'usr/share/common-licenses/MPL-1.1', + status: :removed + }, + { + filesystem: :medium, + path: 'utils/mbr/mbr.bin', + status: :removed + }, + ] + else + raise "Test suite implementation error: unsupported version #{version}" + end +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) + upgrade_applied = not_present.nil? + chroot_browser = "#{chroot_browser.downcase}-browser" if chroot_browser + changes = iuk_changes(version) changes.each do |change| case change[:filesystem] when :rootfs @@ -755,7 +791,7 @@ TAILS_VERSION_ID="#{version}" when :medium path = '/lib/live/mount/medium/' + change[:path] else - raise "Unknown filesysten '#{change[:filesystem]}'" + raise "Unknown filesystem '#{change[:filesystem]}'" end case change[:status] when :removed @@ -790,6 +826,9 @@ Then /^I am proposed to install an incremental upgrade to version (.+)$/ do |ver end When /^I agree to install the incremental upgrade$/ do + @orig_syslinux_cfg = $vm.file_content( + '/lib/live/mount/medium/syslinux/syslinux.cfg' + ) @screen.click('TailsUpgraderUpgradeNowButton.png') end @@ -808,6 +847,105 @@ Then /^I can successfully install the incremental upgrade to version (.+)$/ do | end @screen.click('TailsUpgraderApplyUpgradeButton.png') @screen.wait('TailsUpgraderDone.png', 60) + # Restore syslinux.cfg: our test IUKs replace it with something + # that would break the next boot + $vm.file_overwrite( + '/lib/live/mount/medium/syslinux/syslinux.cfg', + @orig_syslinux_cfg + ) +end + +def default_squash + 'filesystem.squashfs' +end + +def installed_squashes + live = '/lib/live/mount/medium/live' + listed_squashes = $vm.file_content("#{live}/Tails.module").chomp.split("\n") + assert_equal( + default_squash, + listed_squashes.first, + "Tails.module does not list #{default_squash} on the first line" + ) + present_squashes = $vm.file_glob("#{live}/*.squashfs").map { |f| + f.sub('/lib/live/mount/medium/live/', '') + } + # Sanity check + assert_equal( + listed_squashes.sort, + present_squashes.sort, + 'Tails.module does not match the present .squashfs files' + ) + return listed_squashes +end + +Given /^Tails is fooled to think a (.+) SquashFS delta is installed$/ do |version| + old_squashes = installed_squashes + medium = '/lib/live/mount/medium' + live = "#{medium}/live" + new_squash = "#{version}.squashfs" + $vm.execute_successfully("mount -o remount,rw #{medium}") + $vm.execute_successfully("touch #{live}/#{new_squash}") + $vm.file_append("#{live}/Tails.module", new_squash + "\n") + $vm.execute_successfully("mount -o remount,ro #{medium}") + assert_equal( + old_squashes + [new_squash], + 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" + ) +end + +Then /^the Upgrader considers the system as up-to-date$/ do + try_for(120, :delay => 10) do + $vm.execute_successfully( + "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'" + ) + end +end + +def upgrader_trusted_signing_subkeys + $vm.execute_successfully( + "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'] } +end + +Given /^the signing key used by the Upgrader is outdated$/ do + upgrader_trusted_signing_subkeys.each { |subkeyid| + $vm.execute_successfully( + "sudo -u tails-upgrade-frontend gpg --batch --yes --delete-keys '#{subkeyid}!'" + ) + } + assert_equal(0, upgrader_trusted_signing_subkeys.length) +end + +Given /^a current signing key is available on our website$/ do + # We already check this via features/keys.feature so let's not bother here + # ⇒ this step is only here to improve the Gherkin scenario. + true +end + +Then /^(?:no|only the (.+)) SquashFS delta is installed$/ do |version| + expected_squashes = [default_squash] + expected_squashes << "#{version}.squashfs" if version + assert_equal( + expected_squashes, + installed_squashes, + 'Unexpected .squashfs files encountered' + ) end Then /^the label of the system partition on "([^"]+)" is "([^"]+)"$/ do |name, label| diff --git a/features/support/hooks.rb b/features/support/hooks.rb index a41921b13e44a2955fc11a01dc31dc70c771bc80..517406b6edce0abb43f83980414429f3c23bd66f 100644 --- a/features/support/hooks.rb +++ b/features/support/hooks.rb @@ -281,6 +281,7 @@ After('@product') do |scenario| save_failure_artifact("Tor logs", "#{$config["TMPDIR"]}/log.tor") chutney_logs = sanitize_filename("#{elapsed}_#{scenario.name}_chutney-data") FileUtils.mkdir("#{ARTIFACTS_DIR}/#{chutney_logs}") + FileUtils.rm(Dir.glob("#{$config["TMPDIR"]}/chutney-data/**/control")) FileUtils.copy_entry("#{$config["TMPDIR"]}/chutney-data", "#{ARTIFACTS_DIR}/#{chutney_logs}") info_log info_log_artifact_location("Chutney logs", "#{ARTIFACTS_DIR}/#{chutney_logs}") diff --git a/features/torified_gnupg.feature b/features/torified_gnupg.feature index 31f898c378715fe0b4ffb2cc5474f256b311ebc9..9314bf3b762c7b6f40cd68292354cc01f5bd5b46 100644 --- a/features/torified_gnupg.feature +++ b/features/torified_gnupg.feature @@ -26,35 +26,3 @@ Feature: Keyserver interaction with GnuPG When I fetch the "30F80A2C" OpenPGP key using Seahorse via the OpenPGP Applet And the Seahorse operation is successful Then the "DF841752B55CD97FDA4879B29E5B04F430F80A2C" key is in the live user's public keyring - - #14770, #17169 - @fragile - Scenario: Syncing OpenPGP keys using Seahorse should work and be done over Tor. - Given I fetch the "DF841752B55CD97FDA4879B29E5B04F430F80A2C" OpenPGP key using the GnuPG CLI - And the GnuPG fetch is successful - And the "DF841752B55CD97FDA4879B29E5B04F430F80A2C" key is in the live user's public keyring - And the key "DF841752B55CD97FDA4879B29E5B04F430F80A2C" has at least 1 subkey - And I delete the "85C7C1AAA3DFC34623B5516281119B9834AD5681" subkey from the live user's public keyring - And the key "DF841752B55CD97FDA4879B29E5B04F430F80A2C" has no subkey - When I start Seahorse - Then Seahorse has opened - And I enable key synchronization in Seahorse - And I synchronize keys in Seahorse - And the Seahorse operation is successful - Then the key "DF841752B55CD97FDA4879B29E5B04F430F80A2C" has at least 1 subkey - - #14770, #17169 - @fragile - Scenario: Syncing OpenPGP keys using Seahorse started from the OpenPGP Applet should work and be done over Tor. - Given I fetch the "DF841752B55CD97FDA4879B29E5B04F430F80A2C" OpenPGP key using the GnuPG CLI - And the GnuPG fetch is successful - And the "DF841752B55CD97FDA4879B29E5B04F430F80A2C" key is in the live user's public keyring - And the key "DF841752B55CD97FDA4879B29E5B04F430F80A2C" has at least 1 subkey - And I delete the "85C7C1AAA3DFC34623B5516281119B9834AD5681" subkey from the live user's public keyring - And the key "DF841752B55CD97FDA4879B29E5B04F430F80A2C" has no subkey - When I start Seahorse via the OpenPGP Applet - Then Seahorse has opened - And I enable key synchronization in Seahorse - And I synchronize keys in Seahorse - And the Seahorse operation is successful - Then the key "DF841752B55CD97FDA4879B29E5B04F430F80A2C" has at least 1 subkey diff --git a/features/usb_upgrade.feature b/features/usb_upgrade.feature index 38824d8507227304356fc8213bacd69080077fb6..99b171c510c656fb8c4ae428351f3ffdb433dd73 100644 --- a/features/usb_upgrade.feature +++ b/features/usb_upgrade.feature @@ -103,25 +103,71 @@ Feature: Upgrading an old Tails USB installation And the expected persistent files created with the old Tails version are present in the filesystem And all persistent directories from the old Tails version have safe access rights - Scenario: Upgrading Tails with Tails Upgrader through an incremental upgrade + @automatic_upgrade + 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 Tails is fooled to think it is running version 1.0~test - And the file system changes introduced in version 1.1~test are not present + 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 When the network is plugged And Tor is ready - And all notifications have disappeared - Then I am proposed to install an incremental upgrade to version 1.1~test - And I can successfully install the incremental upgrade to version 1.1~test + 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 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 1.1~test + Then Tails is running version 2.2~test And all persistence presets are enabled - And the file system changes introduced in version 1.1~test are present + And the file system changes introduced in version 2.2~test are present + And only the 2.2~test 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 + # 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 When the network is plugged And Tor is ready - And all notifications have disappeared + 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 + 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 + 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 + # 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 + 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 - Then the file system changes introduced in version 1.1~test are present in the Unsafe Browser's chroot + And the file system changes introduced in version 2.3~test 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 + 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 + + @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 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 diff --git a/import-translations b/import-translations index 79ef56dda695a0712bcc1b24373b5cd9fb09d0b9..e7f6c087cfeb4fbcd0e97e9b90d4b4225a1b7d5e 100755 --- a/import-translations +++ b/import-translations @@ -39,9 +39,6 @@ elif [ -f 'po/onioncircuits.pot' ]; then POTFILE=onioncircuits.pot BRANCH='tails-onioncircuits_completed' AFTER_IMPORT='./setup.py build_i18n && ( cd po && for po in *.po ; do msgmerge --update "$po" onioncircuits.pot ; done )' -elif [ -f 'po/tails-perl5lib.pot' ]; then - BRANCH='tails-perl5lib_completed' - AFTER_IMPORT='make -C po pot && make -C po update-po' 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 )' @@ -70,7 +67,8 @@ eval "$GIT_IN_TOR_TRANSLATION_DIR reset --hard \"origin/$BRANCH\"" # Ensure we only keep PO files that are still present in the Transifex # branch we import from. -find "$TAILS_PO_DIR" -name '*.po' -delete +# XXX: once #16774 is resolved, -delete these files instead. +find "$TAILS_PO_DIR" -name '*.po' -exec rename 's/$/.orig/' '{}' \; # For each completely translated language, merge it, # unless it is translated outside Transifex @@ -100,6 +98,23 @@ else done fi +# The _completed branches we still pull from (because the _release +# branches we need don't exist yet) are mostly empty, so avoid l10n +# regressions by keeping old PO files instead of deleting them. +# +# XXX: remove this hack once #16774 is resolved. +if echo "$BRANCH" | grep -qs -E '_completed$'; then + find "$TAILS_PO_DIR" -name '*.po.orig' -o -name '*.pot.orig' \ + | while read orig_po_file; do + po_file=$(echo "$orig_po_file" | sed 's/\.orig$//') + if ! [ -e "$po_file" ]; then + echo "${po_file} was removed ⇒ restoring ${orig_po_file}" + cp "$orig_po_file" "$po_file" + fi + rm "$orig_po_file" + done +fi + # Update PO files if [ -n "${AFTER_IMPORT:-}" ]; then eval "$AFTER_IMPORT" diff --git a/po/POTFILES.in b/po/POTFILES.in index 6e179294e3e05acbe811726ef708b2e9775135bc..c2ec64d1cf253e779c35fffbdbdc8fdd8ae1e323 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -3,6 +3,7 @@ tmp/pot/60-tor-ready.sh.pot tmp/pot/config.py.pot tmp/pot/configuration-window.ui.pot tmp/pot/electrum.pot +tmp/pot/Frontend.pm.pot tmp/pot/greeter-add_settings_dialog.py.pot tmp/pot/greeter-additional_settings.py.pot tmp/pot/greeter-main_window.py.pot @@ -11,6 +12,7 @@ tmp/pot/greeter-persistent_storage.py.pot tmp/pot/greeter-region_settings.py.pot tmp/pot/keepassxc.pot tmp/pot/replace-su-with-sudo.pot +tmp/pot/RunningSystem.pm.pot tmp/pot/status-menu-helper-extension.js.pot tmp/pot/tails-about.pot tmp/pot/tails-additional-software.pot diff --git a/po/ar.po b/po/ar.po index 71addc56c53687347d9da0cd65129979b6d9171a..7c0a44e193bbe6fbe179b3c720e4aa67600b5a94 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Abanoub Ebied <abanoub_samuel@outlook.com>, 2019 # AbdAlnour Sami <me@abdalnour.me>, 2015 # skygazer <abudayeh.saleh@gmail.com>, 2014 # Ahmed A. <6622227a@gmail.com>, 2016,2019 @@ -31,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\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" "Language-Team: Arabic (http://www.transifex.com/otf/torproject/language/" "ar/)\n" @@ -125,6 +126,271 @@ msgstr "_Launch" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -229,7 +495,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -275,6 +541,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "" @@ -578,7 +862,7 @@ msgid "" "You might prefer to restart Tails and disable MAC spoofing." msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -591,16 +875,11 @@ msgid "" "See https://tails.boum.org/doc/first_steps/upgrade#manual\"" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "خطأ:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "خطأ" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "تحذير: تم اكتشاف بيئة عمل افتراضية!" @@ -930,7 +1209,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -954,7 +1233,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -975,7 +1254,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -1025,23 +1304,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/ca.po b/po/ca.po index 28e1f31aa50cdcb8ee9439ad0afbc1b0fd3439e6..a104a773d3cced7dfcfbc85da69e4e3d359cf564 100644 --- a/po/ca.po +++ b/po/ca.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\n" -"Last-Translator: Benny Beat <bennybeat@gmail.com>\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" "Language-Team: Catalan (http://www.transifex.com/otf/torproject/language/" "ca/)\n" "Language: ca\n" @@ -133,6 +133,271 @@ msgstr "_Executa" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -237,7 +502,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -283,6 +548,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "" @@ -599,7 +882,7 @@ msgstr "" "Potser preferireu reiniciar el Tails i desactivar el falsejament de l'adreça " "MAC " -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -612,16 +895,11 @@ msgid "" "See https://tails.boum.org/doc/first_steps/upgrade#manual\"" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "Hi ha hagut un error:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Error" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Alerta: S'ha detectat una màquina virtual." @@ -964,7 +1242,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -988,7 +1266,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -1009,7 +1287,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -1059,23 +1337,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/cs.po b/po/cs.po index 3a9a3ccfdf9b3f1e4218a1116f27d0eaa05fc99c..e2a5a70a8462a765a610869ff3578256ac999c31 100644 --- a/po/cs.po +++ b/po/cs.po @@ -10,6 +10,7 @@ # Jiří Vírava <appukonrad@gmail.com>, 2013-2014 # trendspotter <j.podhorecky@volny.cz>, 2019 # Plarome, 2019 +# Michal Stanke <mstanke@mozilla.cz>, 2019 # Michal Vašíček <michalvasicek@icloud.com>, 2017 # multiflexi <multi.flexi@seznam.cz>, 2019 # mxsedlacek, 2014 @@ -20,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\n" -"Last-Translator: erinm\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" "Language-Team: Czech (http://www.transifex.com/otf/torproject/language/cs/)\n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -37,7 +38,7 @@ msgstr "Tor je připraven" #: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:43 msgid "You can now access the Internet." -msgstr "Nyní můžete přistupovat k Internetu." +msgstr "Nyní máte přístup k internetu." #: config/chroot_local-includes/etc/whisperback/config.py:69 #, python-format @@ -61,7 +62,7 @@ msgstr "" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1 msgid "Additional Software" -msgstr "" +msgstr "Dodatečný software" #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51 msgid "" @@ -89,7 +90,7 @@ msgstr "" #: config/chroot_local-includes/usr/local/bin/electrum:62 msgid "Persistence is disabled for Electrum" -msgstr "" +msgstr "Persistence je pro Electrum vypnuta" #: config/chroot_local-includes/usr/local/bin/electrum:64 msgid "" @@ -111,11 +112,276 @@ msgstr "_Spustit" #: config/chroot_local-includes/usr/local/bin/electrum:69 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:39 msgid "_Exit" -msgstr "_Odejít" +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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" -msgstr "" +msgstr "Další nastavení" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366 @@ -126,15 +392,15 @@ msgstr "Zrušit" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:46 msgid "Add" -msgstr "" +msgstr "Přidat" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:54 msgid "Back" -msgstr "" +msgstr "Zpět" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:56 msgid "_Administration Password" -msgstr "" +msgstr "_Heslo pro správu" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:156 msgid "_MAC Address Spoofing" @@ -146,19 +412,19 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:215 msgid "Direct (default)" -msgstr "" +msgstr "Přímo (výchozí)" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:217 msgid "Bridge & Proxy" -msgstr "" +msgstr "Bridge & Proxy" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:219 msgid "Offline" -msgstr "" +msgstr "Offline" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:270 msgid "On (default)" -msgstr "" +msgstr "Zapnuto (výchozí)" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:272 msgid "On" @@ -170,15 +436,15 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:276 msgid "Off (default)" -msgstr "" +msgstr "Vypnuto (výchozí)" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171 msgid "Shutdown" -msgstr "" +msgstr "Vypnout" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:176 msgid "_Start Tails" -msgstr "" +msgstr "_Spustit Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:92 #, python-brace-format @@ -217,9 +483,9 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" -msgstr "" +msgstr "Odemknout" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:97 #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:40 @@ -228,7 +494,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:135 msgid "_Language" -msgstr "" +msgstr "_Jazyk" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:153 msgid "_Keyboard Layout" @@ -236,7 +502,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:171 msgid "_Formats" -msgstr "" +msgstr "_Formáty" #: config/chroot_local-includes/usr/local/bin/keepassxc:15 #, sh-format @@ -253,19 +519,37 @@ msgstr "" #: config/chroot_local-includes/usr/local/bin/keepassxc:23 msgid "Rename" -msgstr "" +msgstr "Přejmenovat" #: config/chroot_local-includes/usr/local/bin/keepassxc:24 msgid "Keep current name" -msgstr "" +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." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" -msgstr "" +msgstr "Zamknout obrazovku" #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79 msgid "Suspend" @@ -291,7 +575,7 @@ msgstr "O Tails" #: config/chroot_local-includes/usr/local/bin/tails-about:35 msgid "The Amnesic Incognito Live System" -msgstr "Amnesic Incognito Systém Živě" +msgstr "The Amnesic Incognito Live System" #: config/chroot_local-includes/usr/local/bin/tails-about:36 #, python-format @@ -299,7 +583,7 @@ msgid "" "Build information:\n" "%s" msgstr "" -"Buildovací informace:\n" +"Informace o sestavení:\n" "%s" #: config/chroot_local-includes/usr/local/bin/tails-about:54 @@ -327,18 +611,18 @@ msgstr "" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157 msgid "Configure" -msgstr "" +msgstr "Konfigurovat" #. Translators: Don't translate {beginning} or {last}, they are #. placeholders and will be replaced. #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223 #, python-brace-format msgid "{beginning} and {last}" -msgstr "" +msgstr "{beginning} a {last}" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:224 msgid ", " -msgstr "" +msgstr ", " #. Translators: Don't translate {packages}, it's a placeholder and will #. be replaced. @@ -355,12 +639,12 @@ msgstr "" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294 msgid "Install Every Time" -msgstr "" +msgstr "Instalovat pokaždé" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326 msgid "Install Only Once" -msgstr "" +msgstr "Instalovat pouze jednou" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:301 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:331 @@ -376,7 +660,7 @@ msgstr "" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325 msgid "Create Persistent Storage" -msgstr "" +msgstr "Vytvořit trvalé úložiště" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333 msgid "Creating your persistent storage failed." @@ -410,7 +694,7 @@ msgstr "" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154 msgid "Remove" -msgstr "" +msgstr "Odstranit" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544 msgid "Installing your additional software from persistent storage..." @@ -418,7 +702,7 @@ msgstr "" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546 msgid "This can take several minutes." -msgstr "" +msgstr "Toto může trvat pár minut." #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559 msgid "The installation of your additional software failed" @@ -426,7 +710,7 @@ msgstr "" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574 msgid "Additional software installed successfully" -msgstr "" +msgstr "Dodatečný software byl úspěšně nainstalován" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594 msgid "The check for upgrades of your additional software failed" @@ -445,7 +729,7 @@ msgstr "" #: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37 msgid "Documentation" -msgstr "" +msgstr "Dokumentace" #. Translators: Don't translate {package}, it's a placeholder and will be replaced. #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:94 @@ -509,41 +793,41 @@ msgid "" "Tor needs an accurate clock to work properly, especially for Hidden " "Services. Please wait..." msgstr "" -"Tor potřebuje přesné hodiny aby pracoval správně, zejména kvůli Skrytým " -"Službám. Prosíme čekejte..." +"Pro správné fungování potřebuje síť Tor přesný čas, zejména pro skryté " +"služby. Chvilku strpení prosím..." #: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87 msgid "Failed to synchronize the clock!" -msgstr "Synchronizace hodin se nezdařila!" +msgstr "Synchronizace času se nezdařila!" #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110 msgid "Lock Screen" -msgstr "" +msgstr "Zamknout obrazovku" #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125 msgid "Screen Locker" -msgstr "" +msgstr "Zámek obrazovky" #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131 msgid "Set up a password to unlock the screen." -msgstr "" +msgstr "Nastavte heslo pro odemčení obrazovky." #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:149 msgid "Password" -msgstr "" +msgstr "Heslo" #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:93 msgid "Confirm" -msgstr "" +msgstr "Potvrdit" #: config/chroot_local-includes/usr/local/bin/tails-security-check:124 msgid "This version of Tails has known security issues:" -msgstr "Tato verze Tails obsahuje následující bezpečnostní problémy:" +msgstr "Tato verze Tails obsahuje následující známé bezpečnostní problémy:" #: config/chroot_local-includes/usr/local/bin/tails-security-check:135 msgid "Known security issues" -msgstr "" +msgstr "Známé bezpečnostní problémy" #: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52 #, sh-format @@ -560,7 +844,7 @@ msgstr "" #: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62 msgid "All networking disabled" -msgstr "Veškeré síťování vypnuto" +msgstr "Všechny sítě vypnuty" #: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:63 #, sh-format @@ -570,7 +854,7 @@ msgid "" "You might prefer to restart Tails and disable MAC spoofing." msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -583,23 +867,18 @@ msgid "" "See https://tails.boum.org/doc/first_steps/upgrade#manual\"" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "chyba:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Chyba" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Varování: zjištěn virtuální stroj!" #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74 msgid "Warning: non-free virtual machine detected!" -msgstr "" +msgstr "Varování: detekován nesvobodný virtuální stroj" #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:77 msgid "" @@ -611,19 +890,19 @@ msgstr "" #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:81 msgid "Learn more" -msgstr "" +msgstr "Zjistěte více" #: config/chroot_local-includes/usr/local/bin/tor-browser:46 msgid "Tor is not ready" -msgstr "Tor není připraven" +msgstr "Síť Tor není připravena" #: config/chroot_local-includes/usr/local/bin/tor-browser:47 msgid "Tor is not ready. Start Tor Browser anyway?" -msgstr "Tor není připraven. Přesto spustit Tor Browser?" +msgstr "Síť Tor není připravena. Chcete prohlížeč Tor přesto spustit?" #: config/chroot_local-includes/usr/local/bin/tor-browser:48 msgid "Start Tor Browser" -msgstr "Nastartovat Tor Browser" +msgstr "Spustit prohlížeč Tor" #: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:35 msgid "Tor Status" @@ -638,7 +917,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:64 #, python-brace-format msgid "{volume_label} ({volume_size})" -msgstr "" +msgstr "{volume_label} ({volume_size})" #. Translators: Don't translate {partition_name} or {partition_size}, #. they are placeholders and will be replaced. @@ -666,7 +945,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:121 #, python-brace-format msgid "{partition_name} in {container_path}" -msgstr "" +msgstr "{partition_name} v {container_path}" #. Translators: Don't translate {volume_name} and {path_to_file_container}, #. they are placeholders and will be replaced. You should only have to translate @@ -674,14 +953,14 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128 #, python-brace-format msgid "{volume_name} – {path_to_file_container}" -msgstr "" +msgstr "{volume_name} – {path_to_file_container}" #. Translators: Don't translate {partition_name} and {drive_name}, they #. are placeholders and will be replaced. #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:134 #, python-brace-format msgid "{partition_name} on {drive_name}" -msgstr "" +msgstr "{partition_name} na {drive_name}" #. Translators: Don't translate {volume_name} and {drive_name}, #. they are placeholders and will be replaced. You should only have to translate @@ -689,7 +968,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:141 #, python-brace-format msgid "{volume_name} – {drive_name}" -msgstr "" +msgstr "{volume_name} – {drive_name}" #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228 msgid "Wrong passphrase or parameters" @@ -727,7 +1006,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83 msgid "No file containers added" -msgstr "" +msgstr "Nebyly přidány žádné souborové kontejnery" #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98 msgid "No VeraCrypt devices detected" @@ -736,11 +1015,11 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:40 #: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1 msgid "Unlock VeraCrypt Volumes" -msgstr "" +msgstr "Odemknout svazky VeraCrypt" #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114 msgid "Container already added" -msgstr "" +msgstr "Kontejner již přidán" #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115 #, python-format @@ -767,16 +1046,16 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160 msgid "Not a VeraCrypt container" -msgstr "" +msgstr "Není kontejnerem VeraCrypt" #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161 #, python-format msgid "The file %s does not seem to be a VeraCrypt container." -msgstr "" +msgstr "Soubor %s zřejmě není kontejnerem VeraCrypt." #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163 msgid "Failed to add container" -msgstr "" +msgstr "Selhalo přidávání kontejneru" #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164 #, python-format @@ -791,7 +1070,7 @@ msgstr "" #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:35 msgid "Do you really want to launch the Unsafe Browser?" -msgstr "Opravdu chcete spustit Nebezpečný prohlížeč?" +msgstr "Opravdu chcete spustit Nezabezpečený prohlížeč?" #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37 msgid "" @@ -802,44 +1081,44 @@ msgstr "" #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48 msgid "Starting the Unsafe Browser..." -msgstr "Spoštění nebezpečného prohlížeče..." +msgstr "Spouštění Nezabezpečeného prohlížeče..." #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:49 msgid "This may take a while, so please be patient." -msgstr "Může to nějakou dobu trvat, takže buďte trpěliví." +msgstr "Může to chvíli trvat, chvilku strpení prosím." #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:54 msgid "Shutting down the Unsafe Browser..." -msgstr "Ukončování nebezpečného prohlížeče..." +msgstr "Ukončování Nezabezpečeného prohlížeče..." #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:55 msgid "" "This may take a while, and you may not restart the Unsafe Browser until it " "is properly shut down." msgstr "" -"Tohle může chvíli trvat a nemusíte spustit Nebezpečný Prohlížeč dokud nebude " -"spárvně vypnut." +"Může to chvíli trvat a Nezabezpečený prohlížeč nebudete moci znovu spustit, " +"dokud nebude správně ukončen." #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67 msgid "Failed to restart Tor." -msgstr "Znovuspuštění TORu nebylo úspěšné" +msgstr "Opětovné spuštění sítě Tor nebylo úspěšné." #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1 msgid "Unsafe Browser" -msgstr "Nebezpečný prohlížeč" +msgstr "Nezabezpečený prohlížeč" #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:88 msgid "" "Another Unsafe Browser is currently running, or being cleaned up. Please " "retry in a while." msgstr "" -"Další Nebezpečný Prohlížeč je nyní spuštěn nebo se čistí. Prosíme vraťte se " +"Další Nezabezpečený prohlížeč je spuštěn nebo se čistí. Zkuste to znovu " "později." #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:96 msgid "Failed to setup chroot." -msgstr "Nepodařilo se nastavit \"chroot\"" +msgstr "Nepodařilo se nastavit \"chroot\"." #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103 msgid "Failed to configure browser." @@ -850,7 +1129,7 @@ msgid "" "No DNS server was obtained through DHCP or manually configured in " "NetworkManager." msgstr "" -"Nebyl získán prostřednictvím DHCP nebo ručně nastaven v Síťovém správci " +"Prostřednictvím DHCP ani ručním nastavením v Síťovém správci nebyl nastaven " "žádný DNS server." #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:120 @@ -884,7 +1163,7 @@ msgstr "Zjistěte více o Tails" #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1 msgid "Tor Browser" -msgstr "Tor Browser" +msgstr "Prohlížeč Tor" #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2 msgid "Anonymous Web Browser" @@ -896,11 +1175,11 @@ msgstr "Procházet World Wide Web bez anonymity" #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3 msgid "Unsafe Web Browser" -msgstr "Nebezpečný webový prohlížeč" +msgstr "Nezabezpečený webový prohlížeč" #: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2 msgid "Mount VeraCrypt encrypted file containers and devices" -msgstr "" +msgstr "Připojit zašifrované souborové kontejnery a zařízení Veracrypt" #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:2 msgid "" @@ -910,11 +1189,11 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2 msgid "Tails specific tools" -msgstr "Specifické nástroje Tails" +msgstr "Nástroje specifické pro Tails" #: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy.in.h:1 msgid "To start a Root Terminal, you need to authenticate." -msgstr "" +msgstr "Pro spuštění Root terminálu se musíte ověřit." #: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1 msgid "Remove an additional software package" @@ -928,9 +1207,9 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" -msgstr "" +msgstr "Heslo pro správu" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:34 msgid "" @@ -941,7 +1220,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:69 msgid "Enter an administration password" -msgstr "" +msgstr "Zadejte heslo pro správu" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:107 msgid "Confirm your administration password" @@ -949,10 +1228,10 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:124 msgid "Disable" -msgstr "" +msgstr "Zakázat" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -966,16 +1245,16 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:212 msgid "Spoof all MAC addresses (default)" -msgstr "" +msgstr "Falšovat všechny MAC adresy (výchozí)" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:258 msgid "Don't spoof MAC addresses" -msgstr "" +msgstr "Nefalšovat MAC adresy" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" -msgstr "" +msgstr "Konfigurace sítě" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:327 msgid "" @@ -983,10 +1262,13 @@ msgid "" "configure a Tor bridge or a local proxy. To work completely offline, you can " "disable all networking." msgstr "" +"Pokud je vaše internetové připojení cenzurováno, filtrováno nebo využívá " +"proxy, můžete nakonfigurovat přemostění Tor nebo místní proxy. Chcete-li " +"pracovat zcela offline, můžete zakázat všechna síťová připojení." #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:367 msgid "Connect directly to the Tor network (default)" -msgstr "" +msgstr "Připojit se přímo k síti Tor (výchozí)" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:413 msgid "Configure a Tor bridge or local proxy" @@ -994,17 +1276,17 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:457 msgid "Disable all networking" -msgstr "" +msgstr "Zakázat všechny sítě" #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:100 msgid "" "You will configure the Tor bridge and local proxy later on after connecting " "to a network." -msgstr "" +msgstr "Po připojení k síti nakonfigurujete přemostění Tor a lokální proxy." #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:152 msgid "Welcome to Tails!" -msgstr "" +msgstr "Vítejte v Tails!" #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186 msgid "Language & Region" @@ -1012,34 +1294,34 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:222 msgid "Default Settings" -msgstr "" +msgstr "Výchozí nastavení" #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:285 msgid "Encrypted _Persistent Storage" -msgstr "" +msgstr "Šifrované _Trvalé úložiště" #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 msgid "Show Passphrase" -msgstr "" +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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." -msgstr "" +msgstr "Trvalé úložiště je odemčeno. Restart Tails ho znovu uzamkne." -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" -msgstr "" +msgstr "_Další nastavení" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" -msgstr "" +msgstr "Přidat další nastavení" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." @@ -1047,7 +1329,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61 msgid "File Containers" -msgstr "" +msgstr "Souborové kontejnery" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:80 msgid "_Add" @@ -1055,7 +1337,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:86 msgid "Add a file container" -msgstr "" +msgstr "Přidat souborový kontejner" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:103 msgid "Partitions and Drives" @@ -1073,7 +1355,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38 msgid "Lock this volume" -msgstr "" +msgstr "Zamknout tento svazek" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52 msgid "_Unlock" @@ -1081,8 +1363,8 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61 msgid "Detach this volume" -msgstr "" +msgstr "Odpojit tento svazek" #: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1 msgid "TrueCrypt/VeraCrypt container" -msgstr "" +msgstr "Kontejner TrueCrypt/VeraCrypt" diff --git a/po/de.po b/po/de.po index 31f45d80137ab51243ac869647923263d769a372..32d04430ebc490d74fbfe21366f658bf34152363 100644 --- a/po/de.po +++ b/po/de.po @@ -14,6 +14,7 @@ # Ettore Atalan <atalanttore@googlemail.com>, 2014-2019 # Fritz Hauser <fritz@fritzhauser.com>, 2018 # gerhard <listmember@rinnberger.de>, 2013 +# Jonas Kröber <murmel.schelm@gmail.com>, 2020 # jugendhacker <julian.ribbeck@gmx.de>, 2018 # Konstantin BB, 2015 # Larson März <larson@protonmail.ch>, 2013 @@ -36,9 +37,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\n" -"Last-Translator: erinm\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" "Language-Team: German (http://www.transifex.com/otf/torproject/language/" "de/)\n" "Language: de\n" @@ -144,6 +145,271 @@ msgstr "_Start" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -248,7 +514,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -294,6 +560,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "Sperrbildschirm" @@ -601,7 +885,7 @@ msgid "" "You might prefer to restart Tails and disable MAC spoofing." msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -614,16 +898,11 @@ msgid "" "See https://tails.boum.org/doc/first_steps/upgrade#manual\"" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "Fehler:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Fehler" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Warnung: Virtuelle Maschine erkannt!" @@ -967,7 +1246,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -991,7 +1270,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -1012,7 +1291,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -1062,23 +1341,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/el.po b/po/el.po index efa909a8c8618e5bd56dc8c1144f4cdf4931af13..04b81bfd1b3504e641ff3b785b2d4d58d855986c 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: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\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" "Language-Team: Greek (http://www.transifex.com/otf/torproject/language/el/)\n" "Language: el\n" @@ -136,6 +136,271 @@ msgstr "_Εκκίνηση" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -240,7 +505,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -286,6 +551,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "Κλείδωμα οθόνης" @@ -605,7 +888,7 @@ msgstr "" "Ίσως είναι καλύτερα να επανεκκινήσετε το Tails και να απενεργοποιήσετε την " "μεταμφίεση της MAC." -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -618,16 +901,11 @@ msgid "" "See https://tails.boum.org/doc/first_steps/upgrade#manual\"" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "σφάλμα:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Σφάλμα" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Προειδοποίηση: ανιχνεύτηκε εικονικό μηχάνημα!" @@ -965,7 +1243,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -989,7 +1267,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -1010,7 +1288,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -1060,23 +1338,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/es.po b/po/es.po index 6875c48a92f2f07f6566d614013c95b05edc322f..dfc581ef42c6f765af9d90b8b26536418dde8f4c 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ # Edward Navarro, 2015 # el buve, 2015 # Emma Peel, 2015,2017-2019 -# eulalio barbero espinosa <eulaliob@gmail.com>, 2018-2019 +# eulalio barbero espinosa <eulaliob@gmail.com>, 2018-2020 # Joaquín Serna <bubuanabelas@cryptolab.net>, 2019 # Jose Luis Tirado <joseluis.tirado@gmail.com>, 2014-2015 # Manuel Herrera <ma_herrer@yahoo.com.mx>, 2013 @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-30 19:57+0000\n" -"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" +"POT-Creation-Date: 2020-01-06 11:20+0100\n" +"PO-Revision-Date: 2020-01-06 20:04+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" @@ -138,6 +138,271 @@ msgstr "_Iniciar" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "Configuración adicional" @@ -253,7 +518,7 @@ msgid "Unlocking…" msgstr "Desbloqueando..." #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "Desbloquear" @@ -309,6 +574,24 @@ msgstr "Mantener el nombre actual" 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: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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "Bloquear pantalla" @@ -648,7 +931,7 @@ msgstr "" "deshabilitada.\n" "Quizás prefieras reiniciar Tails y deshabilitar el MAC spoofing." -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -671,16 +954,11 @@ msgstr "" "O realiza una actualización manual.\n" "Lee https://tails.boum.org/doc/first_steps/upgrade#manual" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "error:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Error" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Advertencia: ¡máquina virtual detectada!" @@ -1040,7 +1318,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "Contraseña de administración" @@ -1067,7 +1345,7 @@ msgid "Disable" msgstr "Deshabilitar" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "Falseamiento de dirección MAC" @@ -1092,7 +1370,7 @@ msgid "Don't spoof MAC addresses" msgstr "No falsear direcciones MAC" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "Configuración de la red" @@ -1147,26 +1425,26 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" "Introduce tu frase contraseña para desbloquear el almacenamiento persistente" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" "Tu almacenamiento persistente está desbloqueado. Reinicia Tails para volver " "a bloquearlo." -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "_Configuración adicional" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "Añadir una configuración adicional" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/es_AR.po b/po/es_AR.po index 6ac41eb202d327bb35e3187fdf68f8a03c0949a7..e2c7103c049ac2f3fb00cff8f841bc52aa4a1145 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: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\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" "Language-Team: Spanish (Argentina) (http://www.transifex.com/otf/torproject/" "language/es_AR/)\n" @@ -130,6 +130,271 @@ msgstr "_Iniciar" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -234,7 +499,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -280,6 +545,24 @@ msgstr "" 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: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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "Bloquear pantalla" @@ -620,7 +903,7 @@ msgstr "" "deshabilitadas.\n" "Quizás prefieras reiniciar Tails y deshabilitar esta función." -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -643,16 +926,11 @@ msgstr "" "O hacé una actualización manual.\n" "Mirá https://tails.boum.org/doc/first_steps/upgrade#manual\"" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "error:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Error" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Advertencia: ¡máquina virtual detectada!" @@ -1007,7 +1285,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -1031,7 +1309,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -1052,7 +1330,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -1102,23 +1380,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/fi.po b/po/fi.po index c0c6f27e41afa785868ca5202d5058d9fc52d087..a181ca4a4fcbed582b0567e456d5420c80cb2d76 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: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\n" -"Last-Translator: Mikko Ilmonen <mikko@5x.fi>\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" "Language-Team: Finnish (http://www.transifex.com/otf/torproject/language/" "fi/)\n" "Language: fi\n" @@ -122,6 +122,271 @@ msgstr "_Käynnistä" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -226,7 +491,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -272,6 +537,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "" @@ -579,7 +862,7 @@ msgid "" "You might prefer to restart Tails and disable MAC spoofing." msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -592,16 +875,11 @@ msgid "" "See https://tails.boum.org/doc/first_steps/upgrade#manual\"" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "virhe:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Virhe" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Varoitus: virtuaalikone havaittu!" @@ -937,7 +1215,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -961,7 +1239,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -982,7 +1260,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -1032,23 +1310,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/fr.po b/po/fr.po index 3aec938193295779f3eceed5d768f1114b2b92e1..3b29ab2393c1acde26bf08ca83a3fc3cb1e35be5 100644 --- a/po/fr.po +++ b/po/fr.po @@ -39,8 +39,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\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" "Language-Team: French (http://www.transifex.com/otf/torproject/language/" "fr/)\n" @@ -155,6 +155,271 @@ msgstr "_Lancer" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "Paramètres supplémentaires" @@ -270,7 +535,7 @@ msgid "Unlocking…" msgstr "Déverrouillage…" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "Déverrouiller" @@ -327,6 +592,24 @@ msgstr "Garder le nom actuel" 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: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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "Verrouillage de l’écran" @@ -668,7 +951,7 @@ msgstr "" "Vous pourriez préférer redémarrer Tails et désactiver l’usurpation d’adresse " "MAC." -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -692,16 +975,11 @@ msgstr "" "Ou effectuez une mise à jour manuelle.\n" "Voir https://tails.boum.org/doc/first_steps/upgrade/index.fr.html#manual\"" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "erreur :" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Erreur" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Avertissement : Une machine virtuelle a été détectée !" @@ -1062,7 +1340,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "Mot de passe d’administration" @@ -1089,7 +1367,7 @@ msgid "Disable" msgstr "Désactiver" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "Usurpation d’adresse MAC" @@ -1115,7 +1393,7 @@ msgid "Don't spoof MAC addresses" msgstr "Ne pas usurper les adresses MAC" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "Configuration du réseau" @@ -1168,28 +1446,28 @@ msgstr "_Stockage persistant chiffré" #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 msgid "Show Passphrase" -msgstr "" +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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "Saisir votre phrase de passe pour déverrouiller le stockage persistant" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" "Votre stockage persistant est déverrouillé. Redémarrez Tails pour le " "verrouiller à nouveau." -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "_Paramètres supplémentaires" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "Ajouter un paramètre supplémentaire" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/ga.po b/po/ga.po index 94e21bc09d24781cfbfa0c2311a4d4ceca9e5604..dbebf9b44310172f7b1a6ed377953ff1f4c3ae8a 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: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\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" "Language-Team: Irish (http://www.transifex.com/otf/torproject/language/ga/)\n" "Language: ga\n" @@ -126,6 +126,271 @@ msgstr "_Tosaigh" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "Socruithe Breise" @@ -241,7 +506,7 @@ msgid "Unlocking…" msgstr "Á dhíghlasáil..." #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "Díghlasáil" @@ -296,6 +561,24 @@ msgstr "Níl, ná hathraigh an t-ainm" 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: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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "Cuir an scáileán faoi ghlas" @@ -633,7 +916,7 @@ msgstr "" "sin.\n" "B'fhéidir gurbh fhearr leat Tails a atosú agus dallamullóg MAC a dhíchumasú." -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -656,16 +939,11 @@ msgstr "" "Nó déan nuashonrú de láimh.\n" "Féach https://tails.boum.org/doc/first_steps/upgrade#manual\"" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "earráid:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Earráid" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Rabhadh: braitheadh meaisín fíorúil!" @@ -1025,7 +1303,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "Focal Faire Riaracháin" @@ -1052,7 +1330,7 @@ msgid "Disable" msgstr "Díchumasaigh" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "Bréagsheoltaí MAC" @@ -1077,7 +1355,7 @@ msgid "Don't spoof MAC addresses" msgstr "Ná húsáid bréagsheoltaí MAC riamh" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "Cumraíocht Líonra" @@ -1133,25 +1411,25 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "Cuir isteach an frása faire chun an stóras seasmhach a dhíghlasáil" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" "Tá an stóras seasmhach díghlasáilte. Atosaigh Tails lena chur faoi ghlas " "arís." -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "_Socruithe Breise" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "Cuir socrú breise leis" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/he.po b/po/he.po index 2758c7ccde7a26e524f61e4318ec2ad77c33ed8e..3505f0af8af587b108563826efecf5ffd208d5c3 100644 --- a/po/he.po +++ b/po/he.po @@ -7,7 +7,7 @@ # Emma Peel, 2018 # GenghisKhan <genghiskhan@gmx.ca>, 2013 # ido vasserman <itaizand@gmail.com>, 2019 -# ION, 2017-2019 +# ION, 2017-2020 # Johnny Diralenzo, 2015 # Kunda, 2014 # Ruben <drarbib@gmail.com>, 2014 @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-12-01 16:34+0000\n" +"POT-Creation-Date: 2020-01-06 11:20+0100\n" +"PO-Revision-Date: 2020-01-07 11:27+0000\n" "Last-Translator: ION\n" "Language-Team: Hebrew (http://www.transifex.com/otf/torproject/language/" "he/)\n" @@ -119,6 +119,271 @@ msgstr "_הפעל" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -223,7 +488,7 @@ msgid "Unlocking…" msgstr "מבטל נעילה…" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -269,6 +534,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "נעל מסך" @@ -580,7 +863,7 @@ msgstr "" "כך שכל הרישות מושבת.\n" "אולי תעדיף להפעיל מחדש את Tails ולהשבית זיוף MAC." -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -602,16 +885,11 @@ msgstr "" "או בצע שדרוג ידני.\n" "ראה https://tails.boum.org/doc/first_steps/upgrade#manual\"" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "שגיאה:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "שגיאה" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "אזהרה: מכשיר מדומה התגלה!" @@ -949,7 +1227,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -973,7 +1251,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -994,7 +1272,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -1044,23 +1322,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/hu.po b/po/hu.po index 0efd7a4e0d780649ffddb76d3d38856ef0d526dc..cf0b6130600ce62cd976235d66037414962d3709 100644 --- a/po/hu.po +++ b/po/hu.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\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" "Language-Team: Hungarian (http://www.transifex.com/otf/torproject/language/" "hu/)\n" @@ -132,6 +132,271 @@ msgstr "_Indítás" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -236,7 +501,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -282,6 +547,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "Képernyőzár" @@ -621,7 +904,7 @@ msgstr "" "lett tiltva.\n" "Újraindíthatja a Tails-t és letilthatja a MAC cím cserét." -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -645,16 +928,11 @@ msgstr "" "Vagy végezzen egy manuális frissítést.\n" "Lásd https://tails.boum.org/doc/first_steps/upgrade#manual\"" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "hiba:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Hiba" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Figyelem: virtualizált gép /VM/ érzékelve!" @@ -1006,7 +1284,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -1030,7 +1308,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -1051,7 +1329,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -1101,23 +1379,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/id.po b/po/id.po index b79d3fc911f3f632b2c9bd09d8574c68abed3120..590e0bbb085d49c91668929f64c3651860b50532 100644 --- a/po/id.po +++ b/po/id.po @@ -5,11 +5,13 @@ # Translators: # Astryd Viandila Dahlan, 2015 # cholif yulian <cholifyulian123@gmail.com>, 2015 -# Dwi Cahyono <dwexz_cie@yahoo.com>, 2015 +# wongcie <dwexz_cie@yahoo.com>, 2015 # Emma Peel, 2019 +# Fery Setiawan <gembelweb@gmail.com>, 2020 # Frengky Sinaga <frengkys5@gmail.com>, 2016 # Ibnu Daru Aji, 2014 # ical, 2018-2019 +# Joshua P, 2019 # se7entime <se7entime@disroot.org>, 2015 # L1Nus <multazam_ali@me.com>, 2014 # Robert Dafis <robertdafis@gmail.com>, 2018 @@ -20,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\n" -"Last-Translator: erinm\n" +"POT-Creation-Date: 2020-01-06 11:20+0100\n" +"PO-Revision-Date: 2020-01-10 12:38+0000\n" +"Last-Translator: Fery Setiawan <gembelweb@gmail.com>\n" "Language-Team: Indonesian (http://www.transifex.com/otf/torproject/language/" "id/)\n" "Language: id\n" @@ -113,6 +115,271 @@ msgstr "_Luncurkan" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -217,7 +484,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -263,6 +530,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "" @@ -566,7 +851,7 @@ msgid "" "You might prefer to restart Tails and disable MAC spoofing." msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -579,16 +864,11 @@ msgid "" "See https://tails.boum.org/doc/first_steps/upgrade#manual\"" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "" @@ -918,7 +1198,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -942,7 +1222,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -963,7 +1243,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -1013,23 +1293,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/it.po b/po/it.po index 68d59bb0e698af364c000f95a2d73dafd87fefaf..269a89ecc7cbfb4d547f0a5e45fd4eaa75bd47b3 100644 --- a/po/it.po +++ b/po/it.po @@ -23,7 +23,7 @@ # Monica <momocat19@gmail.com>, 2014 # Monica <momocat19@gmail.com>, 2014 # Random_R, 2013 -# Random_R, 2013-2015,2017-2019 +# Random_R, 2013-2015,2017-2020 # Riccardo Masutti, 2015 # Rosario <oirasor@inventati.org>, 2014 # Rossano Praderi <rossano.praderi@yahoo.com>, 2013 @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 14:14+0000\n" +"POT-Creation-Date: 2020-01-06 11:20+0100\n" +"PO-Revision-Date: 2020-01-07 14:41+0000\n" "Last-Translator: Random_R\n" "Language-Team: Italian (http://www.transifex.com/otf/torproject/language/" "it/)\n" @@ -146,6 +146,271 @@ msgstr "_Avvia" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -250,7 +515,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -304,6 +569,24 @@ msgstr "Mantieni il nome attuale" 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: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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "Blocca schermo" @@ -642,7 +925,7 @@ msgstr "" "Si potrebbe voler riavviare Tails e disabilitare l'oscuramento " "dell'indirizzo MAC." -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -664,16 +947,11 @@ msgstr "" "Oppure fai un aggiornamento manuale.\n" "Vedi https://tails.boum.org/doc/first_steps/upgrade#manual\"" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "errore:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Errore" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Attenzione: macchina virtuale rilevata!" @@ -1031,7 +1309,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -1055,7 +1333,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -1076,7 +1354,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "Configurazione di rete" @@ -1126,23 +1404,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "Inserisci la tua passphrase per sbloccare il volume persistente" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "Il tuo volume persistente è sbloccato. Riavvia Tails per ribloccarlo." -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "_Impostazioni aggiuntive" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/km.po b/po/km.po index 932cfc44ed5d19920a765f5835667c059e0b99c3..e5e8fc88099395dae6d3314159a8e307c47f6b70 100644 --- a/po/km.po +++ b/po/km.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\n" -"Last-Translator: carolyn <carolyn@anhalt.org>\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" "Language-Team: Khmer (http://www.transifex.com/otf/torproject/language/km/)\n" "Language: km\n" "MIME-Version: 1.0\n" @@ -101,6 +101,271 @@ msgstr "ចាប់ផ្ដើម" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -205,7 +470,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -251,6 +516,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "" @@ -557,7 +840,7 @@ msgid "" "You might prefer to restart Tails and disable MAC spoofing." msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -570,16 +853,11 @@ msgid "" "See https://tails.boum.org/doc/first_steps/upgrade#manual\"" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "កំហុស៖" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "កំហុស" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "ព្រមាន៖ បានរកឃើញម៉ាស៊ីននិម្មិត!" @@ -914,7 +1192,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -938,7 +1216,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -959,7 +1237,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -1009,23 +1287,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/ko.po b/po/ko.po index 9c4a18a6dfddae1d603b0d32dd3995f3d2057fb8..57811704d41f0b3246392b278d7f88f328d7d13c 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: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\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" "Language-Team: Korean (http://www.transifex.com/otf/torproject/language/" "ko/)\n" @@ -108,6 +108,271 @@ msgstr "" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -212,7 +477,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -258,6 +523,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "" @@ -561,7 +844,7 @@ msgid "" "You might prefer to restart Tails and disable MAC spoofing." msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -574,16 +857,11 @@ msgid "" "See https://tails.boum.org/doc/first_steps/upgrade#manual\"" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "" @@ -913,7 +1191,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -937,7 +1215,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -958,7 +1236,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -1008,23 +1286,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/lt.po b/po/lt.po index d880d160cae4e07f6dc1070e4da16706672bfe5d..687c4cfc0e5506c6dbfe1bd028732ecc8a7af81a 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,14 +4,14 @@ # # Translators: # Gediminas Golcevas <>, 2014 -# Moo, 2015-2019 +# Moo, 2015-2020 # Tautvydas Ž., 2019 msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-30 11:15+0000\n" +"POT-Creation-Date: 2020-01-06 11:20+0100\n" +"PO-Revision-Date: 2020-01-07 22:47+0000\n" "Last-Translator: Moo\n" "Language-Team: Lithuanian (http://www.transifex.com/otf/torproject/language/" "lt/)\n" @@ -105,6 +105,271 @@ msgstr "" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "Klaida atnaujinant pasirašymo raktą" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "Papildomi nustatymai" @@ -209,7 +474,7 @@ msgid "Unlocking…" msgstr "Atrakinama…" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "Atrakinti" @@ -255,6 +520,24 @@ msgstr "" 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: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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "Užrakinti ekraną" @@ -564,7 +847,7 @@ msgid "" "You might prefer to restart Tails and disable MAC spoofing." msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -588,16 +871,11 @@ msgstr "" "Arba atlikite naujinimą rankiniu būdu.\n" "Žiūrėkite https://tails.boum.org/doc/first_steps/upgrade#manual\"" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "klaida:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Klaida" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Įspėjimas: aptikta virtualioji mašina!" @@ -928,7 +1206,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -952,7 +1230,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -973,7 +1251,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -1023,23 +1301,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/mk.po b/po/mk.po index 2ffd57ab2ece7712da5d2593caf64b20a17ad3d9..d4eb7e435675adb91599f94e28e1ad74331fa20a 100644 --- a/po/mk.po +++ b/po/mk.po @@ -5,14 +5,15 @@ # Translators: # Emma Peel, 2019 # Matej Plavevski <matej.plavevski+github@gmail.com>, 2019 -# Zarko Gjurov <zarkogjurov@gmail.com>, 2019 +# Nena <nena100janovska@gmail.com>, 2019 +# Zarko Gjurov <zarkogjurov@gmail.com>, 2019-2020 msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\n" -"Last-Translator: Liljana Ackovska <liljanagjurova@gmail.com>\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" "Language-Team: Macedonian (http://www.transifex.com/otf/torproject/language/" "mk/)\n" "Language: mk\n" @@ -130,6 +131,343 @@ msgstr "_Лансирање" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" +"За информации за отстранување на грешки, извршете ја оваа команда: sudo " +"tails-debugging-info" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" +"<b>Се појави грешка за време на ажурирањето на сертфикациониот клуч.</b> \\n" +"\\n<b>Ова спречува утрврдување на тоа дали ажурирање/надоградба е достапна " +"нашата веб страна во моментот.</b>\\n\\nПроверете го вашето интернет " +"поврзување, и повторно стартувајте го Tails за да пробате да ажурирате " +"повторно.\\n\\nАко проблемот сеуште постои, одете на file:///usr/share/doc/" +"tails/website/doc/upgrade/error/check.en.html" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "Грешка при ажурирање на сертификациониот клуч" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "Грешка при проверката за ажурирања" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" +"<b>Не можеше да одреди дали ажурирањето е достапно од нашата веб страна.</" +"b>\n" +"\n" +"Проверете го вашето мрежно поврзување, и повторно старувајте го Tails за да " +"се обиде да се ажурира повторно.\n" +"\n" +"Ако проблемот и понатаму го има, одете во file:///usr/share/doc/tails/" +"website/doc/upgrade/error/check.en.html" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" +"нема достапно автоматско ажурирање за оваа верзија на нашата веб страна" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" +"твојот уред не беше создаден со користење на USB слика или со Tails Installer" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "Tails беше стартуван од ДВД или од само-читај уред" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "нема доволно слободен простор на Tails систем партицијата" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "нема достапно доволно меморија на овој систем" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "Нема достапно објаснување за причината '%{reason}s'" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "Ситемот е ажуриран" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 "" +"Достапното делумно ажурирање бара %{space_needed}s од слободниот простор на " +"Tails систем партицијата, но само %{free_space}s е достапен." + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:398 +#, perl-brace-format +msgid "" +"The available incremental upgrade requires %{memory_needed}s of free memory, " +"but only %{free_memory}s is available." +msgstr "" +"Достапното делумно ажурирање бара %{memory_needed}s од слободната меморија, " +"но само %{free_memory}s е достапна." + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:420 +msgid "" +"An incremental upgrade is available, but no full upgrade is.\n" +"This should not happen. Please report a bug." +msgstr "" +"Делумното ажурирање е достапно, но не и целосното ажурирање.\n" +"Ова не би требало да се случи. Ве молиме пријавете грешка." + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:424 +msgid "Error while detecting available upgrades" +msgstr "Грешка за време на детектирањето на достапни ажурирања" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" +"<b>Вие треба да ажурирате во %{name}s %{version}s.</b>\n" +"\n" +"За повеќе информации за оваа нова верзија, одете на %{details_url}s\n" +"\n" +"Ви препорачуваме да ги затворите другите апликации за време на ажурирањето. " +"Преземањето на ажурирањето може да потрае долго време, од неколку минути до " +"неколку часа.\n" +"\n" +"Големина на преземањето: %{size}s\n" +"\n" +"Дали сакате да ажурирате сега?" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "Ажурирање достапно" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "Ажурирај сега" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "Ажурирај подоцна" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" +"<b>Треба да направите рачна надградба во %{name}s %{version}s. </b>\n" +"\n" +"За повеќе информации за новата верзија, одете во %{details_url}s\n" +"\n" +"Не е можно автоматско надградување на вашиот уред во оваа нова верзија: " +"%{explanation}s.\n" +"\n" +"За да научите како да направите рачна надградба, одете на https://tails." +"boum.org/doc/upgrade/#manual" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "Достапна е нова верзија" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "Преземање на ажурирање" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"download.en.html" +msgstr "" +"<b>Ажурирањето не можеше да биде преземено.</b>\\n\\nПроверете го вашето " +"мрежно поврзување, и повторно стартувајте го Tails за да пробате повторно да " +"го ажурирате.\\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 +msgid "Error while downloading the upgrade" +msgstr "Грешка за време на преземање на ажурирањето" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 "" +"Излезната датотека '%{output_file}s' не постои, но ails-iuk-get-target-file " +"не се пожали. Ве молиме пријавете грешка." + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:646 +msgid "Error while creating temporary downloading directory" +msgstr "Грешка за време на создавање на привремениот директориум за преземање" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "Не успеа создавањето на привремен директориум за преземање" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +msgid "" +"<b>Could not choose a download server.</b>\n" +"\n" +"This should not happen. Please report a bug." +msgstr "" +"<b>Не можеше да избере сервер за преземање.</b>\n" +"\n" +"Ова не би требало да се случи. Ве молиме пријавете грешка." + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:677 +msgid "Error while choosing a download server" +msgstr "Грешка за време на избирање на сервер за преземање" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" +"Ажурирањето беше успешно преземено.\n" +"\n" +"Мрежното поврзување нема да биде оневозможено.\n" +"\n" +"Ве молиме зачувајте ја вашата работа и затворете ги сите други апликации." + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "Ажурирањето беше успешно преземено" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "Примени ажурирање" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" +"<b>Твојот Tails уред беше успешно ажуриран.</b>\n" +"\n" +"Некои бебедносни својства беа привремено оневозможени.\n" +"Треба повторно да го стартуваш Tails на оваа нова верзија што е можно " +"поскоро.\n" +"\n" +"Дали сакаш да го стартуваш повторно сега?" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "Повторно стартување на Tails" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "Повторно стартувај сега" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "Повторно стартувај подоцна" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "Грешка при повторното стартување на системот" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "Не успеа повторното стартување на системот" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "Грешка при исклучувањето на мрежата" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "Не успеа исклучувањето на мрежата" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "Ажурирање на системот" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +msgid "" +"<b>Your Tails device is being upgraded...</b>\n" +"\n" +"For security reasons, the networking is now disabled." +msgstr "" +"<b>Твојот Tails уред беше ажуриран...</b>\n" +"\n" +"Од безбедносни причини, поврзувањето на мрежата не е оневозможено." + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:788 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" +"<b>Настана грешка при инсталирањето на ажурирањето.</b>\\n\\nТвојот Tails " +"уре треба да биде поправен и може да не може да биде повторно стартуван.\\n" +"\\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 +msgid "Error while installing the upgrade" +msgstr "Грешка за време инсталирање на ажурирањето" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "Дополнителни поставки" @@ -245,7 +583,7 @@ msgid "Unlocking…" msgstr "Отклучување..." #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "Отклучи" @@ -300,6 +638,28 @@ msgstr "Задржи го моменталното име" msgid "su is disabled. Please use sudo instead." msgstr "su е оневозможен. Ве молиме користете sudo" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" +"Уредот од кој работи Tails не може да биде пронајден. Можеби ја користите " +"'toram' опцијата?" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" +"Дискот од кој работи Tails не може да биде пронајден. Можеби ја користите " +"'toram' опцијата?" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "Екран за заклучување" @@ -328,7 +688,7 @@ msgstr "За Tails" #: config/chroot_local-includes/usr/local/bin/tails-about:35 msgid "The Amnesic Incognito Live System" -msgstr "The Amnesic Incognito Live System" +msgstr "Амнезирачки Анонимен Жив Систем" #: config/chroot_local-includes/usr/local/bin/tails-about:36 #, python-format @@ -437,7 +797,7 @@ msgstr "Можеш да ги инсталираш {packages} автоматск #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345 msgid "To do so, you need to run Tails from a USB stick." -msgstr "" +msgstr "За да го направите тоа, потребно е да го стартувате Tails од USB стик." #. Translators: Don't translate {packages}, it's a placeholder and will be #. replaced. @@ -555,6 +915,8 @@ msgstr "" #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:205 msgid "To do so, install Tails on a USB stick and create a persistent storage." msgstr "" +"За да го направите тоа, потребно е да го инсталирате Tails на USB стик и да " +"создадете постојан склад." #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:251 msgid "[package not available]" @@ -639,7 +1001,7 @@ msgstr "" "Можеби повеќе ќе сакате повторно да го стартувате Tails и да го оневозможите " "MAC спуфингот. " -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -663,16 +1025,11 @@ msgstr "" "Или направете рачна надградба.\n" "Видете https://tails.boum.org/doc/first_steps/upgrade#manual\" " -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "грешка:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Грешка" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Предупредување: беше детектирана виртуелна машина!" @@ -1032,7 +1389,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "Администраторска лозинка" @@ -1059,7 +1416,7 @@ msgid "Disable" msgstr "Оневозможи" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "Спуфинг на MAC адреса" @@ -1085,7 +1442,7 @@ msgid "Don't spoof MAC addresses" msgstr "Не ги имитирај MAC адресите" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "Конфигурирање на мрежа" @@ -1137,26 +1494,26 @@ msgstr "Енкриптиран_Постојан склад" #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326 msgid "Show Passphrase" -msgstr "" +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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "Внесете ја вашата лозинка за да го отклучите постојаниот склад" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "Вашиот постојан скалд е отклучен. Повторно стартувајте го Tails. " -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "_Дополнителни поставки" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "Додади дополнителна поставка" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/nl.po b/po/nl.po index ed0e06fa1f0d46546cf46b0925b9bfab4d17b523..33f43806c72ba780ce303a34e69f3c8d74a2e96a 100644 --- a/po/nl.po +++ b/po/nl.po @@ -18,9 +18,9 @@ # kwadronaut <kwadronaut@autistici.org>, 2017-2019 # LittleNacho <louisboy@msn.com>, 2013 # 53a60eabbf5124a226a7678001f9a57b, 2015 -# Meteor 0id, 2019 +# Meteor0id, 2019 # Nathan Follens, 2015 -# Meteor 0id, 2019 +# Meteor0id, 2019 # Midgard, 2014 # T. Des Maison <ton.siedsma@bof.nl>, 2014 # Thinkwell, 2018 @@ -34,8 +34,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 08:47+0000\n" +"POT-Creation-Date: 2020-01-06 11:20+0100\n" +"PO-Revision-Date: 2020-01-06 13: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" @@ -126,6 +126,271 @@ msgstr "_Starten" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -230,7 +495,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -276,6 +541,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "" @@ -579,7 +862,7 @@ msgid "" "You might prefer to restart Tails and disable MAC spoofing." msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -592,16 +875,11 @@ msgid "" "See https://tails.boum.org/doc/first_steps/upgrade#manual\"" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "" @@ -931,7 +1209,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -955,7 +1233,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -976,7 +1254,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "Netwerkconfiguratie" @@ -1026,23 +1304,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/pl.po b/po/pl.po index 6f21cad63012b3bf9253922b054cb22fd543d682..77681338968e30c409fe705bcee859462926f781 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Adam Stachowicz <saibamenppl@gmail.com>, 2015 +# Saibamen <saibamenppl@gmail.com>, 2015 # Aron <aron.plotnikowski@cryptolab.net>, 2014 # Dawid Job <hoek@tuta.io>, 2016-2017 # Dawid Job <hoek@tuta.io>, 2014 @@ -25,9 +25,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\n" -"Last-Translator: erinm\n" +"POT-Creation-Date: 2020-01-06 11:20+0100\n" +"PO-Revision-Date: 2020-01-06 13:47+0000\n" +"Last-Translator: Filip <filipiczesio@vp.pl>\n" "Language-Team: Polish (http://www.transifex.com/otf/torproject/language/" "pl/)\n" "Language: pl\n" @@ -120,6 +120,271 @@ msgstr "" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -224,7 +489,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -270,6 +535,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "" @@ -573,7 +856,7 @@ msgid "" "You might prefer to restart Tails and disable MAC spoofing." msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -586,16 +869,11 @@ msgid "" "See https://tails.boum.org/doc/first_steps/upgrade#manual\"" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "" @@ -925,7 +1203,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -949,7 +1227,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -970,7 +1248,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -1020,23 +1298,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/pt_BR.po b/po/pt_BR.po index 015740fca3739440bb0273b4af1311065beb16a6..dbbbdfe6886ec5bfafeb96baf234f51bf712248e 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -6,8 +6,9 @@ # Alexei Gonçalves de Oliveira <alexis@gessicahellmann.com>, 2018 # Communia <ameaneantie@riseup.net>, 2013-2018 # carlo giusepe tadei valente sasaki <carlo.gt.valente@gmail.com>, 2014 -# Chacal E., 2019 -# Chacal E., 2019 +# C. E., 2020 +# C. E., 2019 +# C. E., 2019 # Danton Medrado, 2015 # d fau <diegofauser@gmail.com>, 2019 # Eduardo Addad de Oliveira <eduardoaddad@hotmail.com>, 2018-2019 @@ -32,9 +33,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-12-01 19:04+0000\n" -"Last-Translator: Eduardo Addad de Oliveira <eduardoaddad@hotmail.com>\n" +"POT-Creation-Date: 2020-01-06 11:20+0100\n" +"PO-Revision-Date: 2020-01-06 23:03+0000\n" +"Last-Translator: C. E.\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/otf/torproject/" "language/pt_BR/)\n" "Language: pt_BR\n" @@ -136,6 +137,271 @@ msgstr "_Lançar" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "Configurações Adicionais" @@ -240,7 +506,7 @@ msgid "Unlocking…" msgstr "Desbloqueando..." #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "Desbloquear" @@ -288,6 +554,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "Bloquear a tela" @@ -604,7 +888,7 @@ msgstr "" "Talvez seja melhor reiniciar o Tails e desabilitar a máscara de identidade " "MAC." -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -627,16 +911,11 @@ msgstr "" "Ou faça a atualização manualmente\n" "Consulte https://tails.boum.org/doc/first_steps/upgrade#manual\"" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "erro:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Erro" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Aviso: máquina virtual detectada!" @@ -979,7 +1258,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "Senha de Administração" @@ -1007,7 +1286,7 @@ msgid "Disable" msgstr "Desabilitar" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "_Mascaragem de endereços MAC" @@ -1032,7 +1311,7 @@ msgid "Don't spoof MAC addresses" msgstr "Não mascarar endereços MAC" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "Configuração de Rede" @@ -1087,27 +1366,27 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" "Inserir a sua frase secreta para abrir o dispositivo de armazenamento " "persistente" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" "O seu volume de armazenamento persistente está aberto. Reiniciar Tails para " "bloqueá-lo novamente." -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "_Configurações Adicionais" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "Adicionar uma configuração adicional" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/pt_PT.po b/po/pt_PT.po index 1c984305861056f07c177b0e69edd1a0bfc962e6..1303f4a182ab250ff5e04aa4d5cc9ef7abeb4215 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\n" +"POT-Creation-Date: 2020-01-06 11:20+0100\n" +"PO-Revision-Date: 2020-01-06 13:47+0000\n" "Last-Translator: Rui <xymarior@yandex.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/otf/" "torproject/language/pt_PT/)\n" @@ -105,9 +105,274 @@ msgstr "_Iniciar" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" -msgstr "" +msgstr "Definições Adicionais" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40 #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366 @@ -209,7 +474,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -255,6 +520,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "" @@ -383,7 +666,7 @@ msgstr "" #: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345 msgid "To do so, you need to run Tails from a USB stick." -msgstr "" +msgstr "Para fazer isso, precisa de excutar o Tails numa \"pen\" USB." #. Translators: Don't translate {packages}, it's a placeholder and will be #. replaced. @@ -487,6 +770,8 @@ msgstr "" #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:205 msgid "To do so, install Tails on a USB stick and create a persistent storage." msgstr "" +"Para fazer isso, instale o Tails numa \"pen\" e crie um armazenamento " +"persistente." #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:251 msgid "[package not available]" @@ -560,7 +845,7 @@ msgid "" "You might prefer to restart Tails and disable MAC spoofing." msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -573,16 +858,11 @@ msgid "" "See https://tails.boum.org/doc/first_steps/upgrade#manual\"" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "erro:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Erro" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Aviso: detetada máquina virtual!" @@ -912,7 +1192,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -936,7 +1216,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -957,7 +1237,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -996,7 +1276,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:222 msgid "Default Settings" -msgstr "" +msgstr "Definições Predefinidas" #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:285 msgid "Encrypted _Persistent Storage" @@ -1007,27 +1287,29 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" -msgstr "" +msgstr "Definições _Adicionais" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" -msgstr "" +msgstr "Adicionar uma definição adicional" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." msgstr "" +"As definições predefinidas são seguras na maioria das situações. Para " +"adicionar uma definição personalizada, clique no botão abaixo \"+\"." #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61 msgid "File Containers" diff --git a/po/ro.po b/po/ro.po index 51a9674230d5049bcbc58060a4848340e089708e..88d319a82688c8d81cb7fb010209fd479692bbe4 100644 --- a/po/ro.po +++ b/po/ro.po @@ -16,6 +16,7 @@ # kyx <mihaidiaconu@gmail.com>, 2016 # Nicola Radu <estonyte@yahoo.com>, 2014 # Paul Ionut Anton, 2014 +# polearnik <polearnik@mail.ru>, 2019 # Roxana Ardelean (Ene) <roxana.ene@gmail.com>, 2014 # titus <titus0818@gmail.com>, 2014-2015 # tudor isopescu <tudorisop@gmail.com>, 2015 @@ -25,9 +26,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\n" -"Last-Translator: erinm\n" +"POT-Creation-Date: 2020-01-06 11:20+0100\n" +"PO-Revision-Date: 2020-01-06 13:47+0000\n" +"Last-Translator: A C <ana@shiftout.net>\n" "Language-Team: Romanian (http://www.transifex.com/otf/torproject/language/" "ro/)\n" "Language: ro\n" @@ -148,6 +149,271 @@ msgstr "_Lansare" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -252,7 +518,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -298,6 +564,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "Ecran de blocare" @@ -640,7 +924,7 @@ msgstr "" "Ați putea alege să restartați Tails și să dezactivați falsificarea adresei " "MAC." -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -663,16 +947,11 @@ msgstr "" "Puteți de asemenea să actualizați sistemul manual.\n" "Aflați cum la https://tails.boum.org/doc/first_steps/upgrade#manual\"" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "eroare:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Eroare" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Atenție: s-a detectat o mașină virtuală!" @@ -1025,7 +1304,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -1049,7 +1328,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -1070,7 +1349,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -1120,23 +1399,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/sv.po b/po/sv.po index de053c163d71395e850b98f39742a450fa2ea4bb..4310cfd57f288cb8d55833c54a445acaec90742c 100644 --- a/po/sv.po +++ b/po/sv.po @@ -12,7 +12,7 @@ # Jacob Andersson <jacob.c.andersson@protonmail.com>, 2018-2019 # falk3n <johan.falkenstrom@gmail.com>, 2014 # Jonatan Nyberg, 2017 -# Jonatan Nyberg, 2018-2019 +# Jonatan Nyberg, 2018-2020 # Jonatan Nyberg, 2017 # pilino1234 <pilino1234@zoho.eu>, 2016 # miccav, 2014 @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 02:19+0000\n" -"Last-Translator: erinm\n" +"POT-Creation-Date: 2020-01-06 11:20+0100\n" +"PO-Revision-Date: 2020-01-10 16:53+0000\n" +"Last-Translator: Jonatan Nyberg\n" "Language-Team: Swedish (http://www.transifex.com/otf/torproject/language/" "sv/)\n" "Language: sv\n" @@ -137,6 +137,271 @@ msgstr "_Starta" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -241,7 +506,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -287,6 +552,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "Lås skärmen" @@ -622,7 +905,7 @@ msgstr "" "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:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -645,16 +928,11 @@ msgstr "" "Eller gör en manuell uppgradering.\n" "Se https://tails.boum.org/doc/first_steps/upgrade#manual\"" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "fel:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Fel" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Varning: Virtuell maskin upptäcktes!" @@ -1007,7 +1285,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -1031,7 +1309,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -1052,7 +1330,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -1102,23 +1380,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/tails.pot b/po/tails.pot index 3d75a05d0a079864b2b630b2082f65fdf05b23f6..d884243785d0812f770d9ef79bd809df55ce4260 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: 2019-11-28 17:02+0100\n" +"POT-Creation-Date: 2020-01-06 11:20+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" @@ -99,6 +99,271 @@ msgstr "" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "" @@ -203,7 +468,7 @@ msgid "Unlocking…" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "" @@ -249,6 +514,24 @@ msgstr "" msgid "su is disabled. Please use sudo instead." msgstr "" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "" @@ -552,7 +835,7 @@ msgid "" "You might prefer to restart Tails and disable MAC spoofing." msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -565,16 +848,11 @@ msgid "" "See https://tails.boum.org/doc/first_steps/upgrade#manual\"" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "" @@ -904,7 +1182,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "" @@ -928,7 +1206,7 @@ msgid "Disable" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "" @@ -949,7 +1227,7 @@ msgid "Don't spoof MAC addresses" msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "" @@ -999,23 +1277,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/tr.po b/po/tr.po index 4b85929105d3e433e79af492f5b7ef83460f6d5b..211dd71e387e73aceb15dc8f6e7198bd4eb1de40 100644 --- a/po/tr.po +++ b/po/tr.po @@ -29,9 +29,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 05:26+0000\n" -"Last-Translator: Kaya Zeren <kayazeren@gmail.com>\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" "Language-Team: Turkish (http://www.transifex.com/otf/torproject/language/" "tr/)\n" "Language: tr\n" @@ -149,6 +149,271 @@ msgstr "_Başlat" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "Ek Ayarlar" @@ -264,7 +529,7 @@ msgid "Unlocking…" msgstr "Kilit açılıyor..." #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "Kilidi Aç" @@ -320,6 +585,24 @@ 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: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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "Ekranı kilitle" @@ -657,7 +940,7 @@ msgstr "" "Tails uygulamasını yeniden başlatmanız ve MAC maskelemesini kapatmanız " "gerekebilir." -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -683,16 +966,11 @@ msgstr "" "Ayrıntılı bilgi almak için https://tails.boum.org/doc/first_steps/" "upgrade#manual\" adresine bakabilirsiniz" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "hata:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "Hata" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "Uyarı: Sanal makine algılandı!" @@ -1048,7 +1326,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "Yönetici Parolası" @@ -1074,7 +1352,7 @@ msgid "Disable" msgstr "Devre Dışı Bırak" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "MAC Adresi Yanıltması" @@ -1099,7 +1377,7 @@ msgid "Don't spoof MAC addresses" msgstr "MAC adresleri yanıltılmasın" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "Ağ Yapılandırması" @@ -1155,25 +1433,25 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "Kalıcı depolamanın kilidini açmak için parolanızı yazın" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "" "Kalıcı depolama alanının kilidi açıldı. Yeniden kilitlemek için Tails " "uygulamasını yeniden başlatın." -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "_Ek Ayarlar" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "Ek bir ayar ekle" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/po/zh_CN.po b/po/zh_CN.po index 7cf56765ff9de1f317121cfde9c2b2e20ef5f1cc..574075a0a4402eb6874faf613acfc7a305e9eb9f 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -8,6 +8,7 @@ # AngelFalse, 2019 # Chi-Hsun Tsai, 2017 # ciaran <ciaranchen@qq.com>, 2019 +# Cloud P <heige.pcloud@outlook.com>, 2019-2020 # Emma Peel, 2019 # ff98sha, 2019 # Herman Koe <hkoe.academic@gmail.com>, 2018 @@ -32,9 +33,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28 17:02+0100\n" -"PO-Revision-Date: 2019-11-29 13:10+0000\n" -"Last-Translator: ff98sha\n" +"POT-Creation-Date: 2020-01-06 11:20+0100\n" +"PO-Revision-Date: 2020-01-07 21:08+0000\n" +"Last-Translator: Cloud P <heige.pcloud@outlook.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/otf/torproject/" "language/zh_CN/)\n" "Language: zh_CN\n" @@ -138,6 +139,271 @@ msgstr "启动(_L)" 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 +msgid "" +"For debugging information, execute the following command: sudo tails-" +"debugging-info" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244 +msgid "" +"<b>An error occured while updating the signing key.</b>\\n\\n<b>This " +"prevents determining whether an upgrade is available from our website.</b>\\n" +"\\nCheck your network connection, and restart Tails to try upgrading again." +"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250 +msgid "Error while updating the signing key" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279 +msgid "Error while checking for upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282 +msgid "" +"<b>Could not determine whether an upgrade is available from our website.</" +"b>\n" +"\n" +"Check your network connection, and restart Tails to try upgrading again.\n" +"\n" +"If the problem persists, go to file:///usr/share/doc/tails/website/doc/" +"upgrade/error/check.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297 +msgid "no automatic upgrade is available from our website for this version" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303 +msgid "your device was not created using a USB image or Tails Installer" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308 +msgid "Tails was started from a DVD or a read-only device" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313 +msgid "there is not enough free space on the Tails system partition" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318 +msgid "not enough memory is available on this system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324 +#, perl-brace-format +msgid "No explanation available for reason '%{reason}s'." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:345 +msgid "The system is up-to-date" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:350 +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 +#, 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 +#, 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 +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 +msgid "Error while detecting available upgrades" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:434 +#, perl-brace-format +msgid "" +"<b>You should upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"We recommend you close all other applications during the upgrade.\n" +"Downloading the upgrade might take a long time, from several minutes to a " +"few hours.\n" +"\n" +"Download size: %{size}s\n" +"\n" +"Do you want to upgrade now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:448 +msgid "Upgrade available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449 +msgid "Upgrade now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450 +msgid "Upgrade later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:458 +#, perl-brace-format +msgid "" +"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n" +"\n" +"For more information about this new version, go to %{details_url}s\n" +"\n" +"It is not possible to automatically upgrade your device to this new version: " +"%{explanation}s.\n" +"\n" +"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/" +"upgrade/#manual" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:474 +msgid "New version available" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:555 +msgid "Downloading upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:558 +#, 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 +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 " +"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/" +"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 +msgid "Error while downloading the upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:627 +#, 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 +msgid "Error while creating temporary downloading directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:649 +msgid "Failed to create temporary download directory" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:673 +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 +msgid "Error while choosing a download server" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692 +msgid "" +"The upgrade was successfully downloaded.\n" +"\n" +"The network connection will now be disabled.\n" +"\n" +"Please save your work and close all other applications." +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:698 +msgid "Upgrade successfully downloaded" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700 +msgid "Apply upgrade" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707 +msgid "" +"<b>Your Tails device was successfully upgraded.</b>\n" +"\n" +"Some security features were temporarily disabled.\n" +"You should restart Tails on the new version as soon as possible.\n" +"\n" +"Do you want to restart now?" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:712 +msgid "Restart Tails" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713 +msgid "Restart now" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714 +msgid "Restart later" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725 +msgid "Error while restarting the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:728 +msgid "Failed to restart the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743 +msgid "Error while shutting down the network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:746 +msgid "Failed to shutdown network" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:753 +msgid "Upgrading the system" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:755 +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 +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 " +"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/" +"install.en.html" +msgstr "" + +#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798 +msgid "Error while installing the upgrade" +msgstr "" + #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32 msgid "Additional Settings" msgstr "额外设置" @@ -253,7 +519,7 @@ msgid "Unlocking…" msgstr "正在解锁…" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:92 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:395 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394 msgid "Unlock" msgstr "解锁" @@ -306,6 +572,24 @@ msgstr "保持当前名称" msgid "su is disabled. Please use sudo instead." msgstr "su 无法使用。请用 sudo 来替代。" +#: 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/perl5lib/lib/Tails/RunningSystem.pm:225 +msgid "" +"The device Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + +#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253 +msgid "" +"The drive Tails is running from cannot be found. Maybe you used the 'toram' " +"option?" +msgstr "" + #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75 msgid "Lock screen" msgstr "屏幕锁定" @@ -626,7 +910,7 @@ msgstr "" "用。\n" "您可能会选择重启 Tails 并禁用 MAC 伪装。" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38 msgid "" "\"<b>Not enough memory available to check for upgrades.</b>\n" "\n" @@ -648,16 +932,11 @@ msgstr "" "或者手动更新。\n" "参阅:https://tails.boum.org/doc/first_steps/upgrade#manual" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72 +#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24 msgid "error:" msgstr "错误:" -#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73 -#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25 -msgid "Error" -msgstr "错误" - #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71 msgid "Warning: virtual machine detected!" msgstr "警告:检测到虚拟机!" @@ -999,7 +1278,7 @@ msgstr "移除附加软件需要认证 ($(command_line))" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:626 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625 msgid "Administration Password" msgstr "管理密码" @@ -1025,7 +1304,7 @@ msgid "Disable" msgstr "禁用" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:630 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629 msgid "MAC Address Spoofing" msgstr "MAC 地址欺骗" @@ -1049,7 +1328,7 @@ msgid "Don't spoof MAC addresses" msgstr "不欺骗任何 MAC 地址" #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311 -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:634 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633 msgid "Network Configuration" msgstr "网络配置" @@ -1101,23 +1380,23 @@ 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:380 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379 msgid "Enter your passphrase to unlock the persistent storage" msgstr "请输入您的密码以解锁持久存储" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:428 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427 msgid "Your persistent storage is unlocked. Restart Tails to lock it again." msgstr "您的持久存储已解锁。重启 Tails 以再次锁定它。" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:466 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465 msgid "_Additional Settings" msgstr "附加设置(_A)" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:549 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548 msgid "Add an additional setting" msgstr "添加一个额外设置" -#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:598 +#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597 msgid "" "The default settings are safe in most situations. To add a custom setting, " "press the \"+\" button below." diff --git a/refresh-translations b/refresh-translations index e980b6279c55984bc59180262af26bf4a53836a8..f890b2c692b8c5f4f8e22ef462128ddd7fecaf7b 100755 --- a/refresh-translations +++ b/refresh-translations @@ -5,7 +5,18 @@ set -u PERL_PROGS="/usr/local/bin/tails-security-check \ /usr/local/lib/tails-htp-notify-user \ - /usr/local/lib/tails-virt-notify-user" + /usr/local/lib/tails-virt-notify-user \ + $(find config/chroot_local-includes/usr/src/iuk/bin \ + -type f \ + | perl -p -E 's{^config/chroot_local-includes}{}' \ + )" +PERL_LIBS=$(\ + find \ + config/chroot_local-includes/usr/src/iuk/lib \ + config/chroot_local-includes/usr/src/perl5lib/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 \ @@ -86,7 +97,9 @@ create_pot () { mkdir -p "$(dirname ${pot})" xgettext --language="${proglang}" --from-code=UTF-8 \ --add-comments="Translators:" -o "${pot}" "${progpath}" - normalize_pot "${pot}" + if [ -f "${pot}" ]; then + normalize_pot "${pot}" + fi else echo "error: We are supposed to create a POT file for '${prog}'" \ "but '${progpath}' does not exist" @@ -184,7 +197,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 ; do create_pot $prog Perl ; done +for prog in $PERL_PROGS $PERL_LIBS ; 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/submodules/aufs-standalone b/submodules/aufs-standalone index 4f22cb90488fae027f8fbde26ac7ac80cc484f76..32eca4355a554c8d0939572efe335b3577b3b3e3 160000 --- a/submodules/aufs-standalone +++ b/submodules/aufs-standalone @@ -1 +1 @@ -Subproject commit 4f22cb90488fae027f8fbde26ac7ac80cc484f76 +Subproject commit 32eca4355a554c8d0939572efe335b3577b3b3e3 diff --git a/submodules/chutney b/submodules/chutney index 38eacd13ae681cb03049c5f90db505680c9615d6..71b25eeec8ae9e5a6968139917b72c588f583a57 160000 --- a/submodules/chutney +++ b/submodules/chutney @@ -1 +1 @@ -Subproject commit 38eacd13ae681cb03049c5f90db505680c9615d6 +Subproject commit 71b25eeec8ae9e5a6968139917b72c588f583a57 diff --git a/submodules/jenkins-tools b/submodules/jenkins-tools index 47db158410c4beeb9a0b68071c01cac4c0ed8b25..af71169b692fa19bc66b3f67350e8be58efbb30d 160000 --- a/submodules/jenkins-tools +++ b/submodules/jenkins-tools @@ -1 +1 @@ -Subproject commit 47db158410c4beeb9a0b68071c01cac4c0ed8b25 +Subproject commit af71169b692fa19bc66b3f67350e8be58efbb30d diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile index 5ad9958bfed85c532a85e987687467232cb67c57..f58abb607b5fcf5184d3f99a59e81816db6ff3b6 100644 --- a/vagrant/Vagrantfile +++ b/vagrant/Vagrantfile @@ -60,5 +60,11 @@ Vagrant.configure("2") do |config| path: 'apt-cacher-ng-data.qcow2' ) end + if ENV['TAILS_WEBSITE_CACHE' ] == '1' + domain.storage( + :file, size: '5G', allow_existing: true, + path: 'tails-website-cache.qcow2' + ) + end end end diff --git a/vagrant/definitions/tails-builder/postinstall.sh b/vagrant/definitions/tails-builder/postinstall.sh index e77002b7739cdba102212b3ad0d41035cf58f6ac..7bc3d564796a20c6ad4b8e6691ad76a2b93cddb4 100755 --- a/vagrant/definitions/tails-builder/postinstall.sh +++ b/vagrant/definitions/tails-builder/postinstall.sh @@ -87,7 +87,6 @@ apt-get -y install \ debootstrap \ dosfstools \ dpkg-dev \ - eatmydata \ faketime \ gdisk \ gettext \ @@ -95,22 +94,15 @@ apt-get -y install \ git \ ikiwiki \ intltool \ - libfile-chdir-perl \ libfile-slurp-perl \ - libhtml-scrubber-perl \ - libhtml-template-perl \ liblist-moreutils-perl \ - libtext-multimarkdown-perl \ libtimedate-perl \ - liburi-perl libhtml-parser-perl \ - libxml-simple-perl \ - libyaml-libyaml-perl po4a \ - libyaml-perl \ + po4a \ libyaml-syck-perl \ live-build \ lsof \ mtools \ - perlmagick \ + libimage-magick-perl \ psmisc \ python3-gi \ rsync \ @@ -119,8 +111,7 @@ apt-get -y install \ syslinux-common \ syslinux-utils \ time \ - udisks2 \ - whois + udisks2 # Ensure we can use timedatectl apt-get -y install dbus diff --git a/vagrant/provision/assets/build-tails b/vagrant/provision/assets/build-tails index 10558afd76cf5a34d456c6902431e040dce7e7eb..1762a7f28df6925674d5e68223f7d9303cb95a39 100755 --- a/vagrant/provision/assets/build-tails +++ b/vagrant/provision/assets/build-tails @@ -1,4 +1,5 @@ #!/bin/sh +# -*- mode: sh; sh-basic-offset: 8; tab-width: 8; indent-tabs-mode:t; -*- set -e set -x @@ -7,6 +8,10 @@ if [ -n "${TAILS_PROXY:-}" ]; then export http_proxy="${TAILS_PROXY}" fi +if [ "${TAILS_WEBSITE_CACHE}" = 1 ]; then + export WEBSITE_CACHE_BASEDIR=/var/cache/tails-website +fi + as_root_do() { sudo \ ${RSYNC_PROXY:+RSYNC_PROXY="${RSYNC_PROXY}"} \ @@ -16,7 +21,9 @@ as_root_do() { ${no_proxy:+no_proxy="${no_proxy}"} \ ${MKSQUASHFS_OPTIONS:+MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS}"} \ ${APT_SNAPSHOTS_SERIALS:+APT_SNAPSHOTS_SERIALS="${APT_SNAPSHOTS_SERIALS}"} \ - ${TAILS_MERGE_BASE_BRANCH:+TAILS_MERGE_BASE_BRANCH="${TAILS_MERGE_BASE_BRANCH}"} \ + ${TAILS_WEBSITE_CACHE:+TAILS_WEBSITE_CACHE="${TAILS_WEBSITE_CACHE}"} \ + ${WEBSITE_CACHE_BASEDIR:+WEBSITE_CACHE_BASEDIR="${WEBSITE_CACHE_BASEDIR}"} \ + ${TAILS_MERGE_BASE_BRANCH:+TAILS_MERGE_BASE_BRANCH="${TAILS_MERGE_BASE_BRANCH}"} \ ${GIT_COMMIT:+GIT_COMMIT="${GIT_COMMIT}"} \ ${GIT_REF:+GIT_REF="${GIT_REF}"} \ ${BASE_BRANCH_GIT_COMMIT:+BASE_BRANCH_GIT_COMMIT="${BASE_BRANCH_GIT_COMMIT}"} \ @@ -57,36 +64,50 @@ ntp_synchronized() { timedatectl status | grep -qs -E '^\s*System\s+clock\s+synchronized:\s+yes$' } +shrink_acng_cache() { + local proxy_type="$1" + [ "${proxy_type}" = "vmproxy" ] || return 0 + # The apt-cacher-ng cache disk is 15G, so let's ensure at most 10G + # of it is used so there is 5G before each build, which should be + # enough for any build, even if we have to download a complete set + # of new packages for a new Debian release. + as_root_do /usr/lib/apt-cacher-ng/acngtool shrink 10G -f || \ + echo "The clean-up of apt-cacher-ng's cache failed: this is" \ + "not fatal and most likely just means that some disk" \ + "space could not be reclaimed -- in order to fix that" \ + "situation you need to manually investigate " \ + "/var/cache/apt-cacher-ng/apt-cacher-ng-log/main_*.html" >&2 +} + if [ "${TAILS_BUILD_FAILURE_RESCUE}" != 1 ]; then trap cleanup EXIT remove_build_dirs fi TAILS_GIT_DIR="/home/vagrant/amnesia" -if [ ! -d "${TAILS_GIT_DIR}" ]; then - # We use --shared as an time/space optimization, and it is safe - # since our build process doesn't modify any objects (which would - # fail since the host's .git directory is shared read-only). - git clone --shared --local /amnesia.git/.git "${TAILS_GIT_DIR}" - # When we locally Git clone the main repo over the filesystem - # above, it will use the host's local repo as origin, but the - # submodules will continue to use their remote repos. A problem - # with this, beside unnecessary fetching of the network, is that - # any unpublished commits in the host's submodule are - # inaccessible, so if we want to build we first have to push those - # commits to the submodules remote repo. To avoid this, and in - # general try to make sure that the Git state in the builder is - # the same as on the host, we just clone the submodules in the - # same way we do the main repo. - ( - cd "${TAILS_GIT_DIR}/submodules" - for submodule in $(ls -1); do - rm -rf "${submodule}" - git clone --shared \ - "/amnesia.git/.git/modules/submodules/${submodule}" - done - ) -fi +rm -rf "${TAILS_GIT_DIR}" +# We use --shared as an time/space optimization, and it is safe +# since our build process doesn't modify any objects (which would +# fail since the host's .git directory is shared read-only). +git clone --shared --local /amnesia.git/.git "${TAILS_GIT_DIR}" +# When we locally Git clone the main repo over the filesystem +# above, it will use the host's local repo as origin, but the +# submodules will continue to use their remote repos. A problem +# with this, beside unnecessary fetching of the network, is that +# any unpublished commits in the host's submodule are +# inaccessible, so if we want to build we first have to push those +# commits to the submodules remote repo. To avoid this, and in +# general try to make sure that the Git state in the builder is +# the same as on the host, we just clone the submodules in the +# same way we do the main repo. +( + cd "${TAILS_GIT_DIR}/submodules" + for submodule in $(ls -1); do + rm -rf "${submodule}" + git clone --shared \ + "/amnesia.git/.git/modules/submodules/${submodule}" + done +) cd "${TAILS_GIT_DIR}" # Mirror the branches amnesia.git tracks on its "origin" remote as if @@ -135,18 +156,7 @@ if [ -n "$TAILS_DATE_OFFSET" ]; then as_root_do timedatectl set-time "$DESIRED_DATE" fi -if [ "${TAILS_PROXY_TYPE}" = "vmproxy" ]; then - # The apt-cacher-ng cache disk is 15G, so let's ensure at most 10G - # of it is used there is 5G before each build, which should be - # enough for any build, even if we have to download a complete set - # of new packages for a new Debian release. - as_root_do /usr/lib/apt-cacher-ng/acngtool shrink 10G -f || \ - echo "The clean-up of apt-cacher-ng's cache failed: this is" \ - "not fatal and most likely just means that some disk" \ - "space could not be reclaimed -- in order to fix that" \ - "situation you need to manually investigate " \ - "/var/cache/apt-cacher-ng/apt-cacher-ng-log/main_*.html" >&2 -fi +shrink_acng_cache "${TAILS_PROXY_TYPE}" BUILD_DIR=$(mktemp -d /tmp/tails-build.XXXXXXXX) if [ "${TAILS_RAM_BUILD}" ]; then @@ -155,8 +165,10 @@ fi as_root_do rsync -a "${TAILS_GIT_DIR}"/ "${BUILD_DIR}"/ cd "${BUILD_DIR}" -as_root_do lb config --cache false +as_root_do lb config --cache false as_root_do lb build +shrink_acng_cache "${TAILS_PROXY_TYPE}" + mv -f tails-* "${TAILS_GIT_DIR}/" diff --git a/vagrant/provision/setup-tails-builder b/vagrant/provision/setup-tails-builder index f0e35d5e9c31d1e9b59c999632d4edcb6f80a126..56d1770a69c5556b3f36f6d2a23be484d690524d 100755 --- a/vagrant/provision/setup-tails-builder +++ b/vagrant/provision/setup-tails-builder @@ -1,4 +1,5 @@ #!/bin/sh +# -*- mode: sh; sh-basic-offset: 4; indent-tabs-mode:nil; -*- set -e @@ -6,21 +7,25 @@ export http_proxy="${TAILS_PROXY}" export DEBIAN_FRONTEND=noninteractive if [ ! -f /var/lib/vagrant_box_build_from ]; then - echo "${GIT_REF}" > /var/lib/vagrant_box_build_from + echo "${GIT_REF}" > /var/lib/vagrant_box_build_from else - if [ "$(cat /var/lib/vagrant_box_build_from)" != "${GIT_REF}" ]; then - echo "E: The current VM has been created to build $(cat /var/lib/vagrant_box_build_from)." - echo "E: Please first use rake vm:destroy before trying to build again." - exit 1 - fi + if [ "$(cat /var/lib/vagrant_box_build_from)" != "${GIT_REF}" ]; then + echo "E: The current VM has been created to build $(cat /var/lib/vagrant_box_build_from)." + echo "E: Please first use rake vm:destroy before trying to build again." + exit 1 + fi fi latest_serial(){ - local archive="${1}" - ( - cd /amnesia.git - auto/scripts/apt-snapshots-serials get-latest --print-serials-only ${archive} - ) + local archive="${1}" + ( + cd /amnesia.git + auto/scripts/apt-snapshots-serials get-latest --print-serials-only ${archive} + ) +} + +already_provisioned() { + [ -e /run/vagrant-already-provisioned ] } if [ "${TAILS_PROXY_TYPE}" = "vmproxy" ]; then @@ -38,15 +43,38 @@ if [ "${TAILS_PROXY_TYPE}" = "vmproxy" ]; then fi # Install custom configuration for apt-cacher-ng and restart - install -o root -g root -m 644 /vagrant/provision/assets/acng.conf /etc/apt-cacher-ng/acng.conf - [ "${TAILS_OFFLINE_MODE}" = 1 ] || TAILS_OFFLINE_MODE=0 - echo "Offlinemode: ${TAILS_OFFLINE_MODE}" > /etc/apt-cacher-ng/network.conf + install -o root -g root -m 644 /vagrant/provision/assets/acng.conf \ + /etc/apt-cacher-ng/acng.conf + rm -f /etc/apt-cacher-ng/network.conf + echo "Offlinemode: ${TAILS_OFFLINE_MODE:-0}" >> /etc/apt-cacher-ng/network.conf if [ -n "${TAILS_ACNG_PROXY:-}" ]; then echo "Proxy: ${TAILS_ACNG_PROXY}" >> /etc/apt-cacher-ng/network.conf fi systemctl restart apt-cacher-ng.service fi +if [ "$TAILS_WEBSITE_CACHE" = 1 ]; then + echo "I: Configuring website cache directory..." + if [ "${TAILS_PROXY_TYPE}" = "vmproxy" ]; then + WEBSITE_CACHE_DISK=/dev/vdc + else + WEBSITE_CACHE_DISK=/dev/vdb + fi + WEBSITE_CACHE_PARTITION="${WEBSITE_CACHE_DISK}1" + WEBSITE_CACHE_MOUNTPOINT=/var/cache/tails-website + mkdir -p "$WEBSITE_CACHE_MOUNTPOINT" + if [ ! -b "$WEBSITE_CACHE_PARTITION" ]; then + echo '1,,83' | sfdisk "$WEBSITE_CACHE_DISK" + mkfs.ext4 -m 0 "$WEBSITE_CACHE_PARTITION" + fi + if ! mountpoint -q "$WEBSITE_CACHE_MOUNTPOINT"; then + e2fsck -f -p "$WEBSITE_CACHE_PARTITION" || : + mount -o relatime,journal_checksum \ + "$WEBSITE_CACHE_PARTITION" "$WEBSITE_CACHE_MOUNTPOINT" + chown -R vagrant:vagrant "$WEBSITE_CACHE_MOUNTPOINT" + fi +fi + echo "I: Updating debian-security APT source..." # Always set the latest serial for debian-security stable_serial="$(grep -Po '\d{10}' /etc/apt/sources.list)" @@ -56,43 +84,25 @@ sed -i -e "s/${stable_serial}/${security_serial}/g" /etc/apt/sources.list.d/bust echo "I: Current APT sources are:" cat /etc/apt/sources.list /etc/apt/sources.list.d/* -echo "I: Upgrading system..." -apt-key add /amnesia.git/config/chroot_sources/tails.binary.gpg -apt-get update -apt-get -y dist-upgrade +if ! already_provisioned; then + echo "I: Upgrading system..." + apt-key add /amnesia.git/config/chroot_sources/tails.binary.gpg + apt-get update + apt-get -y dist-upgrade -echo "I: Installing build script..." -install -o root -g root -m 755 /vagrant/provision/assets/build-tails /usr/local/bin + echo "I: Cleaning up..." + apt-get -y autoremove + apt-get -y clean -echo "I: Forcing live-build to use the mirrors configured in auto/config..." + echo "I: Configuring Git..." + # Necessary so that vagrant can merge the base branch + git config --global user.name vagrant + git config --global user.email vagrant@tailsbuilder -disable_live_build_conf() -{ - local var="$1" + echo "I: Installing build script..." + install -o root -g root -m 755 /vagrant/provision/assets/build-tails \ + /usr/local/bin - [ -e /etc/live/build.conf ] || return 0 - sed -e "/^[[:space:]]*$var=/d" -i /etc/live/build.conf -} - -for prefix in MIRROR PARENT_MIRROR ; do - for target in BOOTSTRAP BINARY CHROOT ; do - for archive in '' BACKPORTS SECURITY UPDATES VOLATILE ; do - if [ -z "$archive" ] ; then - archive_suffix='' - else - archive_suffix="_${archive}" - fi - var="LB_${prefix}_${target}${archive_suffix}" - disable_live_build_conf "$var" - done - done -done - -echo "I: Cleaning up..." -apt-get -y autoremove -apt-get -y clean - -echo "I: Configuring Git..." -# Necessary so that vagrant can merge the base branch -git config --global user.name vagrant -git config --global user.email vagrant@tailsbuilder + echo "I: Recording the fact this box was provisioned during this boot" + touch /run/vagrant-already-provisioned +fi diff --git a/wiki/src/about.id.po b/wiki/src/about.id.po index e967490b213ce0803f39ad256326f6f186d09f2a..70825b4db69e9683cccc90a29711a0b64212b10f 100644 --- a/wiki/src/about.id.po +++ b/wiki/src/about.id.po @@ -8,14 +8,15 @@ msgstr "" "Project-Id-Version: Tails i10n Team\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2017-07-31 21:51+0000\n" -"PO-Revision-Date: 2018-04-15 11:04+0200\n" -"Last-Translator: Tails translators\n" +"PO-Revision-Date: 2020-01-16 00:25+0000\n" +"Last-Translator: John Doe <osman@surkatty.org>\n" "Language-Team: Tails translators <tails-l10n@boum.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.11\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -62,12 +63,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Plain text #, no-wrap msgid "<a id=\"tor\"></a>\n" -msgstr "" +msgstr "<a id=\"tor\"></a>\n" #. type: Title = #, no-wrap @@ -80,6 +81,8 @@ msgid "" "Tor\n" "---\n" msgstr "" +"Tor\n" +"---\n" #. type: Plain text msgid "" @@ -167,7 +170,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"amnesia\"></a>\n" -msgstr "" +msgstr "<a id=\"amnesia\"></a>\n" #. type: Title = #, no-wrap @@ -202,7 +205,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"cryptography\"></a>\n" -msgstr "" +msgstr "<a id=\"cryptography\"></a>\n" #. type: Title = #, no-wrap diff --git a/wiki/src/about.pt.po b/wiki/src/about.pt.po index a2bfb68be9904eb9c6754467fb21db6d350d8b86..440d5a07b6cd07e5570661868ae0d704c49da3b8 100644 --- a/wiki/src/about.pt.po +++ b/wiki/src/about.pt.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: 1\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2017-07-31 21:51+0000\n" -"PO-Revision-Date: 2018-02-08 18:36+0000\n" -"Last-Translator: drebs <drebs@riseup.net>\n" -"Language-Team: Portuguese " -"<http://translate.tails.boum.org/projects/tails/about/pt/>\n" +"PO-Revision-Date: 2019-12-22 21:02+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" +"about/pt/>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Bookmarks: -1,-1,-1,50,-1,-1,-1,-1,-1,-1\n" diff --git a/wiki/src/about.ru.po b/wiki/src/about.ru.po index 8f602a183b1ccd279b866d3738b5d954f23b60fb..da8c144d02d6d708886b28e987abc5b6ba77a6a6 100644 --- a/wiki/src/about.ru.po +++ b/wiki/src/about.ru.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-02-02 11:29+0000\n" -"PO-Revision-Date: 2018-07-02 11:00+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-22 14:26+0000\n" +"Last-Translator: 1@yopmail.com <1@yopmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ru\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -201,7 +201,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"amnesia\"></a>\n" -msgstr "" +msgstr "<a id=\"amnesia\"></a>\n" #. type: Title = #, no-wrap diff --git a/wiki/src/about/contact.ar.po b/wiki/src/about/contact.ar.po index 9aa66fe760517b134554be59a4d95d2db9088d5e..f613795f93387b4d28e1f575a0af4fa1713a1128 100644 --- a/wiki/src/about/contact.ar.po +++ b/wiki/src/about/contact.ar.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-20 10:00+0000\n" -"PO-Revision-Date: 2018-10-27 12:08+0000\n" -"Last-Translator: Weblate Admin <admin@example.com>\n" +"PO-Revision-Date: 2020-01-22 15:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Arabic <http://translate.tails.boum.org/projects/tails/" "contact/ar/>\n" "Language: ar\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -68,7 +68,7 @@ msgid "<a id=\"amnesia-news\"></a>\n" msgstr "<a id=\"amnesia-news\"></a>\n" #. type: Title - -#, fuzzy, no-wrap +#, no-wrap msgid "amnesia-news\n" msgstr "amnesia-news\n" diff --git a/wiki/src/about/contact.de.po b/wiki/src/about/contact.de.po index aa7ba8a19e62df4364ceb137c415206239beafd6..b75da5c19b0b36b3031bf2ba1b93e9488171da89 100644 --- a/wiki/src/about/contact.de.po +++ b/wiki/src/about/contact.de.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-20 10:00+0000\n" -"PO-Revision-Date: 2019-12-03 18:45+0000\n" -"Last-Translator: K3YpDW <13303@protonmail.com>\n" +"PO-Revision-Date: 2020-01-22 02:26+0000\n" +"Last-Translator: Muri Nicanor <muri@immerda.ch>\n" "Language-Team: \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -89,12 +89,7 @@ msgstr "" "auf dem neuesten Stand zu bleiben." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/amnesia-news\">\n" -#| "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" -#| "\t<input class=\"button\" type=\"submit\" value=\"Subscribe\"/>\n" -#| "</form>\n" +#, no-wrap msgid "" "<p>\n" "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/amnesia-news\">\n" @@ -103,10 +98,13 @@ msgid "" "</form>\n" "</p>\n" msgstr "" -"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/amnesia-news\">\n" +"<p>\n" +"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/" +"amnesia-news\">\n" "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" "\t<input class=\"button\" type=\"submit\" value=\"Abonnieren\"/>\n" "</form>\n" +"</p>\n" #. type: Plain text msgid "" @@ -128,6 +126,18 @@ msgid "" "</form>\n" "</p>\n" msgstr "" +"<p>\n" +"<form action=\"https://lists.autistici.org/cgi-lurker/keyword.cgi\" accept-" +"charset=\"UTF-8\">\n" +" <input type=\"hidden\" name=\"doc-url\" value=\"https://lists.autistici." +"org\">\n" +"\t<input type=\"hidden\" name=\"format\" value=\"de.html\">\n" +"\t<input type=\"text\" name=\"query\" value=\"\" class=\"longtext\" " +"placeholder=\"ml:amnesia-news search terms\" onclick=\"value='ml:amnesia-" +"news '\">\n" +"\t<input type=\"submit\" name=\"submit\" value=\"Archiv durchsuchen\">\n" +"</form>\n" +"</p>\n" #. type: Plain text #, no-wrap @@ -150,12 +160,7 @@ msgstr "" "diskutieren." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-project\">\n" -#| "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" -#| "\t<input class=\"button\" type=\"submit\" value=\"Subscribe\"/>\n" -#| "</form>\n" +#, no-wrap msgid "" "<p>\n" "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-project\">\n" @@ -164,10 +169,13 @@ msgid "" "</form>\n" "</p>\n" msgstr "" -"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-project\">\n" +"<p>\n" +"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/" +"tails-project\">\n" "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" "\t<input class=\"button\" type=\"submit\" value=\"Abonnieren\"/>\n" "</form>\n" +"</p>\n" #. type: Plain text msgid "" @@ -189,6 +197,18 @@ msgid "" "</form>\n" "</p>\n" msgstr "" +"<p>\n" +"<form action=\"https://lists.autistici.org/cgi-lurker/keyword.cgi\" accept-" +"charset=\"UTF-8\">\n" +" <input type=\"hidden\" name=\"doc-url\" value=\"https://lists.autistici." +"org\">\n" +"\t<input type=\"hidden\" name=\"format\" value=\"de.html\">\n" +"\t<input type=\"text\" name=\"query\" value=\"\" class=\"longtext\" " +"placeholder=\"ml:tails-project search terms\" onclick=\"value='ml:tails-" +"project '\">\n" +"\t<input type=\"submit\" name=\"submit\" value=\"Archiv durchsuchen\">\n" +"</form>\n" +"</p>\n" #. type: Plain text #, no-wrap @@ -212,12 +232,7 @@ msgstr "" "wenn Sie [[Code beisteuern|contribute/how/code]] möchten." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-dev\">\n" -#| "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" -#| "\t<input class=\"button\" type=\"submit\" value=\"Subscribe\"/>\n" -#| "</form>\n" +#, no-wrap msgid "" "<p>\n" "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-dev\">\n" @@ -226,10 +241,13 @@ msgid "" "</form>\n" "</p>\n" msgstr "" -"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-dev\">\n" +"<p>\n" +"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/" +"tails-dev\">\n" "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" "\t<input class=\"button\" type=\"submit\" value=\"Abonnieren\"/>\n" "</form>\n" +"</p>\n" #. type: Plain text msgid "" @@ -251,6 +269,18 @@ msgid "" "</form>\n" "</p>\n" msgstr "" +"<p>\n" +"<form action=\"https://lists.autistici.org/cgi-lurker/keyword.cgi\" accept-" +"charset=\"UTF-8\">\n" +" <input type=\"hidden\" name=\"doc-url\" value=\"https://lists.autistici." +"org\">\n" +"\t<input type=\"hidden\" name=\"format\" value=\"de.html\">\n" +"\t<input type=\"text\" name=\"query\" value=\"\" class=\"longtext\" " +"placeholder=\"ml:tails-dev search terms\" onclick=\"value='ml:tails-dev '\">" +"\n" +"\t<input type=\"submit\" name=\"submit\" value=\"Archiv durchsuchen\">\n" +"</form>\n" +"</p>\n" #. type: Plain text #, no-wrap @@ -272,12 +302,7 @@ msgstr "" "contribute/how/testing]] neuer Versionen oder Funktionen helfen möchten." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-testers\">\n" -#| "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" -#| "\t<input class=\"button\" type=\"submit\" value=\"Subscribe\"/>\n" -#| "</form>\n" +#, no-wrap msgid "" "<p>\n" "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-testers\">\n" @@ -286,10 +311,13 @@ msgid "" "</form>\n" "</p>\n" msgstr "" -"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-testers\">\n" +"<p>\n" +"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/" +"tails-testers\">\n" "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" "\t<input class=\"button\" type=\"submit\" value=\"Abonnieren\"/>\n" "</form>\n" +"</p>\n" #. type: Plain text msgid "" @@ -311,6 +339,18 @@ msgid "" "</form>\n" "</p>\n" msgstr "" +"<p>\n" +"<form action=\"https://lists.autistici.org/cgi-lurker/keyword.cgi\" accept-" +"charset=\"UTF-8\">\n" +" <input type=\"hidden\" name=\"doc-url\" value=\"https://lists.autistici." +"org\">\n" +"\t<input type=\"hidden\" name=\"format\" value=\"de.html\">\n" +"\t<input type=\"text\" name=\"query\" value=\"\" class=\"longtext\" " +"placeholder=\"ml:tails-testers search terms\" onclick=\"value='ml:tails-" +"testers '\">\n" +"\t<input type=\"submit\" name=\"submit\" value=\"Archiv durchsuchen\">\n" +"</form>\n" +"</p>\n" #. type: Plain text #, no-wrap @@ -333,12 +373,7 @@ msgstr "" "betreffen." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-ux\">\n" -#| "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" -#| "\t<input class=\"button\" type=\"submit\" value=\"Subscribe\"/>\n" -#| "</form>\n" +#, no-wrap msgid "" "<p>\n" "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-ux\">\n" @@ -347,10 +382,13 @@ msgid "" "</form>\n" "</p>\n" msgstr "" -"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-ux\">\n" +"<p>\n" +"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/" +"tails-ux\">\n" "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" "\t<input class=\"button\" type=\"submit\" value=\"Abonnieren\"/>\n" "</form>\n" +"</p>\n" #. type: Plain text msgid "" @@ -371,6 +409,17 @@ msgid "" "</form>\n" "</p>\n" msgstr "" +"<p>\n" +"<form action=\"https://lists.autistici.org/cgi-lurker/keyword.cgi\" accept-" +"charset=\"UTF-8\">\n" +" <input type=\"hidden\" name=\"doc-url\" value=\"https://lists.autistici." +"org\">\n" +"\t<input type=\"hidden\" name=\"format\" value=\"de.html\">\n" +"\t<input type=\"text\" name=\"query\" value=\"\" class=\"longtext\" " +"placeholder=\"ml:tails-ux search terms\" onclick=\"value='ml:tails-ux '\">\n" +"\t<input type=\"submit\" name=\"submit\" value=\"Archiv durchsuchen\">\n" +"</form>\n" +"</p>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/about/contact.es.po b/wiki/src/about/contact.es.po index 48c759311e3398a8f6a3e824e490ef55fe08c4a7..b6e50648fccbbe30114f27d83f6555cb85b27cd4 100644 --- a/wiki/src/about/contact.es.po +++ b/wiki/src/about/contact.es.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-20 10:00+0000\n" -"PO-Revision-Date: 2019-10-23 08:41+0000\n" -"Last-Translator: Camila B <camiii@pm.me>\n" +"PO-Revision-Date: 2020-01-19 18:25+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "contact/es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -216,12 +216,7 @@ msgstr "" "quieres [[aportar código|contribute/how/code]]." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-dev\">\n" -#| "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" -#| "\t<input class=\"button\" type=\"submit\" value=\"Subscribe\"/>\n" -#| "</form>\n" +#, no-wrap msgid "" "<p>\n" "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-dev\">\n" @@ -231,7 +226,8 @@ msgid "" "</p>\n" msgstr "" "<p>\n" -"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-dev\">\n" +"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/" +"tails-dev\">\n" "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" "\t<input class=\"button\" type=\"submit\" value=\"Suscribirse\"/>\n" "</form>\n" @@ -285,12 +281,7 @@ msgstr "" "[[probar|contribute/how/testing]] nuevos lanzamientos o funcionalidades." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-testers\">\n" -#| "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" -#| "\t<input class=\"button\" type=\"submit\" value=\"Subscribe\"/>\n" -#| "</form>\n" +#, no-wrap msgid "" "<p>\n" "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-testers\">\n" @@ -300,7 +291,8 @@ msgid "" "</p>\n" msgstr "" "<p>\n" -"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-testers\">\n" +"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/" +"tails-testers\">\n" "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" "\t<input class=\"button\" type=\"submit\" value=\"Suscribirse\"/>\n" "</form>\n" @@ -355,12 +347,7 @@ msgstr "" "user_experience]]." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-ux\">\n" -#| "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" -#| "\t<input class=\"button\" type=\"submit\" value=\"Subscribe\"/>\n" -#| "</form>\n" +#, no-wrap msgid "" "<p>\n" "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-ux\">\n" @@ -370,7 +357,8 @@ msgid "" "</p>\n" msgstr "" "<p>\n" -"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-ux\">\n" +"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/" +"tails-ux\">\n" "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" "\t<input class=\"button\" type=\"submit\" value=\"Suscribirse\"/>\n" "</form>\n" @@ -516,8 +504,7 @@ msgid "<a id=\"tails-foundations\"></a>\n" msgstr "<a id=\"tails-foundations\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "tails-sysadmins\n" +#, no-wrap msgid "tails-foundations\n" msgstr "tails-foundations\n" @@ -528,6 +515,9 @@ msgid "" "Team|contribute/working_together/roles/foundations_team]], write to\n" "<tails-foundations@boum.org>.\n" msgstr "" +"Para ponerte en contacto con el Tails [[Foundations\n" +"Team|contribute/working_together/roles/foundations_team]], escribe a\n" +"<tails-foundations@boum.org>.\n" #. type: Plain text msgid "" @@ -592,34 +582,30 @@ msgstr "" "openpgp_keys#sysadmins]])." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"tails-foundations\"></a>\n" +#, no-wrap msgid "<a id=\"tails-translations\"></a>\n" -msgstr "<a id=\"tails-foundations\"></a>\n" +msgstr "<a id=\"tails-translations\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "tails-sysadmins\n" +#, no-wrap msgid "tails-translations\n" -msgstr "tails-foundations\n" +msgstr "tails-translations\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "If you want to operate a Tails mirror, write to <tails-mirrors@boum.org>.\n" +#, no-wrap msgid "To talk about the [[Tails translation platform|contribute/how/translate/with_translation_platform]], write to <tails-translations@boum.org>.\n" -msgstr "Si quieres montar un mirror de Tails, escribe a <tails-mirrors@boum.org>.\n" +msgstr "" +"Para hablar de la [[plataforma de traducción de Tails|contribute/how/" +"translate/with_translation_platform]], escribe a <tails-" +"translations@boum.org>.\n" #. type: Plain text -#, fuzzy -#| msgid "" -#| "[[OpenPGP key|tails-foundations.key]] ([[details|doc/about/" -#| "openpgp_keys#foundations]])." msgid "" "[[OpenPGP key|tails-translations.key]] ([[details|doc/about/" "openpgp_keys#translations]])." msgstr "" -"[[Llave OpenPGP|tails-foundations.key]] ([[details|doc/about/" -"openpgp_keys#foundations]])." +"[[Llave OpenPGP|tails-translations.key]] ([[detalles|doc/about/" +"openpgp_keys#translations]])." #. type: Plain text #, no-wrap diff --git a/wiki/src/about/contact.fa.po b/wiki/src/about/contact.fa.po index 75003524678c0aadd2d8dad60127d89c69214be2..d8aa5f6836964916d8f3d6318fd4ceee1e45ff34 100644 --- a/wiki/src/about/contact.fa.po +++ b/wiki/src/about/contact.fa.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-20 10:00+0000\n" -"PO-Revision-Date: 2019-07-29 18:40+0000\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" "Language: fa\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -35,7 +35,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap @@ -45,7 +45,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"caution\">\n" -msgstr "" +msgstr "<div class=\"caution\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/about/contact.id.po b/wiki/src/about/contact.id.po index 545811f148b95c948a4bea90f3b530e793182a23..cf633f3bb4e7a415e2b473b22a1ba6b5a88104fa 100644 --- a/wiki/src/about/contact.id.po +++ b/wiki/src/about/contact.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-20 10:00+0000\n" -"PO-Revision-Date: 2019-10-24 10:30+0000\n" +"PO-Revision-Date: 2020-01-15 21:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -35,7 +35,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/about/contact.it.po b/wiki/src/about/contact.it.po index 2a87e52587fa14585c585c9255a049dfc98b7ecc..da2bc24da3efedc0020a043286f449b426673f8e 100644 --- a/wiki/src/about/contact.it.po +++ b/wiki/src/about/contact.it.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: \n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-20 10:00+0000\n" -"PO-Revision-Date: 2018-12-23 20:11+0100\n" -"Last-Translator: \n" +"PO-Revision-Date: 2020-01-18 16:25+0000\n" +"Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.11\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -25,7 +27,7 @@ msgstr "[[!meta title=\"Contatti\"]]\n" msgid "" "There are many ways to contact us, depending on what you want to talk about." msgstr "" -"Ci sono molti modi per contattarci, dipende da ciò di cui si vuole parlare." +"Ci sono molti modi per contattarci, dipende da ciò di cui volete parlare." #. type: Plain text msgid "All mailing lists are in English unless specified otherwise." @@ -85,12 +87,7 @@ msgstr "" "aggiornati con le comunicazioni e gli annunci sulla sicurezza." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/amnesia-news\">\n" -#| "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" -#| "\t<input class=\"button\" type=\"submit\" value=\"Subscribe\"/>\n" -#| "</form>\n" +#, no-wrap msgid "" "<p>\n" "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/amnesia-news\">\n" @@ -99,10 +96,13 @@ msgid "" "</form>\n" "</p>\n" msgstr "" -"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/amnesia-news\">\n" +"<p>\n" +"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/" +"amnesia-news\">\n" "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" -"\t<input class=\"button\" type=\"submit\" value=\"Subscribe\"/>\n" +"\t<input class=\"button\" type=\"submit\" value=\"Iscrivi\"/>\n" "</form>\n" +"</p>\n" #. type: Plain text msgid "" diff --git a/wiki/src/about/contact.pt.po b/wiki/src/about/contact.pt.po index 13f494846520e82835457a093c6144354e5b7e4d..46477dcae9a81b143a4c1fcecd9d6faa90da1053 100644 --- a/wiki/src/about/contact.pt.po +++ b/wiki/src/about/contact.pt.po @@ -6,21 +6,22 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-20 10:00+0000\n" -"PO-Revision-Date: 2018-12-23 20:11+0100\n" -"Last-Translator: Tails translators <tails@boum.org>\n" +"PO-Revision-Date: 2019-12-28 18:25+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Contact\"]]\n" -msgstr "[[!meta title=\"Contact\"]]\n" +msgstr "[[!meta title=\"Contato\"]]\n" #. type: Plain text msgid "" @@ -32,7 +33,8 @@ msgstr "" #. type: Plain text msgid "All mailing lists are in English unless specified otherwise." msgstr "" -"Todas as listas de e-mail são em inglês, a menos que seja dito o contrário." +"Todas as listas de e-mail são em inglês, a menos que esteja indicado o " +"contrário." #. type: Plain text #, no-wrap @@ -40,10 +42,9 @@ msgid "[[!toc levels=2]]\n" msgstr "[[!toc levels=2]]\n" #. type: Title = -#, fuzzy, no-wrap -#| msgid "Public mailing lists\n" +#, no-wrap msgid "Public mailing lists\n" -msgstr "Listas de e-mail públicas\n" +msgstr "Listas de discussão públicas\n" #. type: Plain text #, no-wrap @@ -57,7 +58,8 @@ msgid "" "send compromising information. Please respect the\n" "[[code of conduct|contribute/working_together/code_of_conduct/]].</p>\n" msgstr "" -"<p>Essas listas de e-mail são públicas: a inscrição é aberta a qualquer pessoa. Não\n" +"<p>Essas listas de discussão são públicas: a inscrição é aberta a qualquer " +"pessoa. Não\n" "envie informações comprometedoras. Por favor, respeite o\n" "[[código de conduta|contribute/working_together/code_of_conduct/]].</p>\n" @@ -72,8 +74,7 @@ msgid "<a id=\"amnesia-news\"></a>\n" msgstr "<a id=\"amnesia-news\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "amnesia-news\n" +#, no-wrap msgid "amnesia-news\n" msgstr "amnesia-news\n" @@ -83,17 +84,12 @@ msgid "" "email. It has a low traffic and it is the right place to stay up-to-date " "with the releases and security announcements." msgstr "" -"amnesia-news@boum.org é a lista de e-mail onde enviamos nossas [[novidades]] " -"por e-mail. Tem baixo tráfego e é o lugar certo para acompanhar as " -"atualizações de lançamentos, além dos anúncios de segurança." +"amnesia-news@boum.org é a lista de discussão para a qual enviamos nossas " +"[[novidades]] por e-mail. Tem baixo tráfego e é o lugar certo para " +"acompanhar as atualizações de lançamentos, além dos anúncios de segurança." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/amnesia-news\">\n" -#| "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" -#| "\t<input class=\"button\" type=\"submit\" value=\"Subscribe\"/>\n" -#| "</form>\n" +#, no-wrap msgid "" "<p>\n" "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/amnesia-news\">\n" @@ -102,10 +98,13 @@ msgid "" "</form>\n" "</p>\n" msgstr "" -"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/amnesia-news\">\n" +"<p>\n" +"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/" +"amnesia-news\">\n" "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" "\t<input class=\"button\" type=\"submit\" value=\"Inscreva-se\"/>\n" "</form>\n" +"</p>\n" #. type: Plain text msgid "" @@ -113,7 +112,7 @@ msgid "" "news.html>." msgstr "" "Arquivo público da lista amnesia-news: <https://lists.autistici.org/list/" -"amnesia-news.html/>." +"amnesia-news.html>." #. type: Plain text #, no-wrap @@ -127,6 +126,18 @@ msgid "" "</form>\n" "</p>\n" msgstr "" +"<p>\n" +"<form action=\"https://lists.autistici.org/cgi-lurker/keyword.cgi\" accept-" +"charset=\"UTF-8\">\n" +" <input type=\"hidden\" name=\"doc-url\" value=\"https://lists.autistici." +"org\">\n" +"\t<input type=\"hidden\" name=\"format\" value=\"en.html\">\n" +"\t<input type=\"text\" name=\"query\" value=\"\" class=\"longtext\" " +"placeholder=\"ml:amnesia-news termos de busca\" onclick=\"value='ml:amnesia-" +"news '\">\n" +"\t<input type=\"submit\" name=\"submit\" value=\"Buscar no arquivo\">\n" +"</form>\n" +"</p>\n" #. type: Plain text #, no-wrap @@ -134,8 +145,7 @@ msgid "<a id=\"tails-project\"></a>\n" msgstr "<a id=\"tails-project\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "tails-project\n" +#, no-wrap msgid "tails-project\n" msgstr "tails-project\n" @@ -148,12 +158,7 @@ msgstr "" "eventos, relatórios mensais e outros assuntos não-técnicos." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-project\">\n" -#| "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" -#| "\t<input class=\"button\" type=\"submit\" value=\"Subscribe\"/>\n" -#| "</form>\n" +#, no-wrap msgid "" "<p>\n" "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-project\">\n" @@ -162,10 +167,13 @@ msgid "" "</form>\n" "</p>\n" msgstr "" -"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-project\">\n" +"<p>\n" +"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/" +"tails-project\">\n" "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" "\t<input class=\"button\" type=\"submit\" value=\"Inscreva-se\"/>\n" "</form>\n" +"</p>\n" #. type: Plain text msgid "" @@ -173,7 +181,7 @@ msgid "" "project.html>." msgstr "" "Arquivo público da lista tails-project: <https://lists.autistici.org/list/" -"tails-project.html/>." +"tails-project.html>." #. type: Plain text #, no-wrap @@ -187,6 +195,18 @@ msgid "" "</form>\n" "</p>\n" msgstr "" +"<p>\n" +"<form action=\"https://lists.autistici.org/cgi-lurker/keyword.cgi\" accept-" +"charset=\"UTF-8\">\n" +" <input type=\"hidden\" name=\"doc-url\" value=\"https://lists.autistici." +"org\">\n" +"\t<input type=\"hidden\" name=\"format\" value=\"en.html\">\n" +"\t<input type=\"text\" name=\"query\" value=\"\" class=\"longtext\" " +"placeholder=\"ml:tails-project termos de busca\" onclick=\"value='ml:tails-" +"project '\">\n" +"\t<input type=\"submit\" name=\"submit\" value=\"Buscar no arquivo\">\n" +"</form>\n" +"</p>\n" #. type: Plain text #, no-wrap @@ -194,8 +214,7 @@ msgid "<a id=\"tails-dev\"></a>\n" msgstr "<a id=\"tails-dev\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "tails-dev\n" +#, no-wrap msgid "tails-dev\n" msgstr "tails-dev\n" @@ -206,16 +225,11 @@ msgid "" "want to [[contribute code|contribute/how/code]]." msgstr "" "tails-dev@boum.org é a lista de e-mail onde o trabalho de desenvolvimento é " -"coordenado e questões do design técnico são discutidas. Inscreva-se se você " -"quer [[contribuir com código|contribute/how/code]]." +"coordenado e questões de design técnico são discutidas. Inscreva-se se você " +"quiser [[contribuir com código|contribute/how/code]]." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-dev\">\n" -#| "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" -#| "\t<input class=\"button\" type=\"submit\" value=\"Subscribe\"/>\n" -#| "</form>\n" +#, no-wrap msgid "" "<p>\n" "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-dev\">\n" @@ -224,10 +238,13 @@ msgid "" "</form>\n" "</p>\n" msgstr "" -"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-dev\">\n" +"<p>\n" +"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/" +"tails-dev\">\n" "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" "\t<input class=\"button\" type=\"submit\" value=\"Inscreva-se\"/>\n" "</form>\n" +"</p>\n" #. type: Plain text msgid "" @@ -235,7 +252,7 @@ msgid "" "html>." msgstr "" "Arquivo público da lista tails-dev: <https://lists.autistici.org/list/tails-" -"dev.html/>." +"dev.html>." #. type: Plain text #, no-wrap @@ -249,6 +266,18 @@ msgid "" "</form>\n" "</p>\n" msgstr "" +"<p>\n" +"<form action=\"https://lists.autistici.org/cgi-lurker/keyword.cgi\" accept-" +"charset=\"UTF-8\">\n" +" <input type=\"hidden\" name=\"doc-url\" value=\"https://lists.autistici." +"org\">\n" +"\t<input type=\"hidden\" name=\"format\" value=\"en.html\">\n" +"\t<input type=\"text\" name=\"query\" value=\"\" class=\"longtext\" " +"placeholder=\"ml:tails-dev termos de busca\" onclick=\"value='ml:tails-dev '" +"\">\n" +"\t<input type=\"submit\" name=\"submit\" value=\"Buscar no arquivo\">\n" +"</form>\n" +"</p>\n" #. type: Plain text #, no-wrap @@ -256,8 +285,7 @@ msgid "<a id=\"tails-testers\"></a>\n" msgstr "<a id=\"tails-testers\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "tails-testers\n" +#, no-wrap msgid "tails-testers\n" msgstr "tails-testers\n" @@ -267,15 +295,10 @@ msgid "" "[[test|contribute/how/testing]] new releases or features." msgstr "" "tails-testers@boum.org é a lista de e-mails para pessoas que querem ajudar " -"[[testando|contribute/how/testing]] novos lançamentos e funcionalidades." +"[[testando|contribute/how/testing]] novos lançamentos ou funcionalidades." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-testers\">\n" -#| "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" -#| "\t<input class=\"button\" type=\"submit\" value=\"Subscribe\"/>\n" -#| "</form>\n" +#, no-wrap msgid "" "<p>\n" "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-testers\">\n" @@ -284,10 +307,13 @@ msgid "" "</form>\n" "</p>\n" msgstr "" -"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-testers\">\n" +"<p>\n" +"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/" +"tails-testers\">\n" "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" "\t<input class=\"button\" type=\"submit\" value=\"Inscreva-se\"/>\n" "</form>\n" +"</p>\n" #. type: Plain text msgid "" @@ -295,7 +321,7 @@ msgid "" "testers.html>." msgstr "" "Arquivo público da lista tails-testers: <https://lists.autistici.org/list/" -"tails-testers.html/>." +"tails-testers.html>." #. type: Plain text #, no-wrap @@ -309,6 +335,18 @@ msgid "" "</form>\n" "</p>\n" msgstr "" +"<p>\n" +"<form action=\"https://lists.autistici.org/cgi-lurker/keyword.cgi\" accept-" +"charset=\"UTF-8\">\n" +" <input type=\"hidden\" name=\"doc-url\" value=\"https://lists.autistici." +"org\">\n" +"\t<input type=\"hidden\" name=\"format\" value=\"en.html\">\n" +"\t<input type=\"text\" name=\"query\" value=\"\" class=\"longtext\" " +"placeholder=\"ml:tails-testers termos de busca\" onclick=\"value='ml:tails-" +"testers '\">\n" +"\t<input type=\"submit\" name=\"submit\" value=\"Buscar no arquivo\">\n" +"</form>\n" +"</p>\n" #. type: Plain text #, no-wrap @@ -316,8 +354,7 @@ msgid "<a id=\"tails-ux\"></a>\n" msgstr "<a id=\"tails-ux\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "tails-ux\n" +#, no-wrap msgid "tails-ux\n" msgstr "tails-ux\n" @@ -326,17 +363,12 @@ msgid "" "tails-ux@boum.org is the list for matters related to [[user experience and " "user interface|contribute/how/user_experience]]." msgstr "" -"tails-ux@boum.org é a lista de e-mails para assuntos relacionados à " -"[[experência de usuário e interface de usuário|contribute/how/" +"tails-ux@boum.org é a lista de e-mails para assuntos relacionados a [[" +"experência de usuário e interface de usuário|contribute/how/" "user_experience]]." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-ux\">\n" -#| "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" -#| "\t<input class=\"button\" type=\"submit\" value=\"Subscribe\"/>\n" -#| "</form>\n" +#, no-wrap msgid "" "<p>\n" "<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-ux\">\n" @@ -345,17 +377,20 @@ msgid "" "</form>\n" "</p>\n" msgstr "" -"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/tails-ux\">\n" +"<p>\n" +"<form method=\"POST\" action=\"https://www.autistici.org/mailman/subscribe/" +"tails-ux\">\n" "\t<input class=\"text\" name=\"email\" value=\"\"/>\n" "\t<input class=\"button\" type=\"submit\" value=\"Inscreva-se\"/>\n" "</form>\n" +"</p>\n" #. type: Plain text msgid "" "Public archive of tails-ux: <https://lists.autistici.org/list/tails-ux.html>." msgstr "" "Arquivo público da lista tails-ux: <https://lists.autistici.org/list/tails-" -"ux.html/>." +"ux.html>." #. type: Plain text #, no-wrap @@ -369,6 +404,18 @@ msgid "" "</form>\n" "</p>\n" msgstr "" +"<p>\n" +"<form action=\"https://lists.autistici.org/cgi-lurker/keyword.cgi\" accept-" +"charset=\"UTF-8\">\n" +" <input type=\"hidden\" name=\"doc-url\" value=\"https://lists.autistici." +"org\">\n" +"\t<input type=\"hidden\" name=\"format\" value=\"en.html\">\n" +"\t<input type=\"text\" name=\"query\" value=\"\" class=\"longtext\" " +"placeholder=\"ml:tails-ux termos de busca\" onclick=\"value='ml:tails-ux '\">" +"\n" +"\t<input type=\"submit\" name=\"submit\" value=\"Buscar no arquivo\">\n" +"</form>\n" +"</p>\n" #. type: Plain text #, no-wrap @@ -376,8 +423,7 @@ msgid "<a id=\"tails-l10n\"></a>\n" msgstr "<a id=\"tails-l10n\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "tails-l10n\n" +#, no-wrap msgid "tails-l10n\n" msgstr "tails-l10n\n" @@ -387,8 +433,7 @@ msgid "[[!inline pages=\"contribute/how/translate/tails-l10n.inline\" raw=\"yes\ msgstr "[[!inline pages=\"contribute/how/translate/tails-l10n.inline\" raw=\"yes\" sort=\"age\"]]\n" #. type: Title = -#, fuzzy, no-wrap -#| msgid "Private email addresses\n" +#, no-wrap msgid "Private email addresses\n" msgstr "Endereços de e-mail privados\n" @@ -398,8 +443,7 @@ msgid "<a id=\"tails-support-private\"></a>\n" msgstr "<a id=\"tails-support-private\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "tails-support-private\n" +#, no-wrap msgid "tails-support-private\n" msgstr "tails-support-private\n" @@ -409,6 +453,9 @@ msgid "" "You can write encrypted emails to <tails-support-private@boum.org> if\n" "you need help in private.\n" msgstr "" +"Você pode enviar emails criptografados para <tails-support-private@boum.org> " +"caso\n" +"precise de ajuda de forma privada.\n" #. type: Plain text msgid "" @@ -428,8 +475,7 @@ msgid "<a id=\"tails-press\"></a>\n" msgstr "<a id=\"tails-press\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "tails-press\n" +#, no-wrap msgid "tails-press\n" msgstr "tails-press\n" @@ -477,16 +523,14 @@ msgstr "" "openpgp_keys#accounting]])." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"tails-accounting\"></a>\n" +#, no-wrap msgid "<a id=\"tails-foundations\"></a>\n" -msgstr "<a id=\"tails-accounting\"></a>\n" +msgstr "<a id=\"tails-foundations\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "tails-sysadmins\n" +#, no-wrap msgid "tails-foundations\n" -msgstr "tails-sysadmins\n" +msgstr "tails-foundations\n" #. type: Plain text #, no-wrap @@ -495,18 +539,17 @@ msgid "" "Team|contribute/working_together/roles/foundations_team]], write to\n" "<tails-foundations@boum.org>.\n" msgstr "" +"Para entrar em contato com o [[Foundations\n" +"Team|contribute/working_together/roles/foundations_team]], escreva para\n" +"<tails-foundations@boum.org>.\n" #. type: Plain text -#, fuzzy -#| msgid "" -#| "[[OpenPGP key|tails-accounting.key]] ([[details|doc/about/" -#| "openpgp_keys#accounting]])." msgid "" "[[OpenPGP key|tails-foundations.key]] ([[details|doc/about/" "openpgp_keys#foundations]])." msgstr "" -"[[Chave OpenPGP|tails-accounting.key]] ([[details|doc/about/" -"openpgp_keys#accounting]])." +"[[Chave OpenPGP|tails-foundations.key]] ([[details|doc/about/" +"openpgp_keys#foundations]])." #. type: Plain text #, no-wrap @@ -541,8 +584,7 @@ msgid "<a id=\"tails-sysadmins\"></a>\n" msgstr "<a id=\"tails-sysadmins\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "tails-sysadmins\n" +#, no-wrap msgid "tails-sysadmins\n" msgstr "tails-sysadmins\n" @@ -564,34 +606,30 @@ msgstr "" "openpgp_keys#sysadmins]])." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"tails-accounting\"></a>\n" +#, no-wrap msgid "<a id=\"tails-translations\"></a>\n" -msgstr "<a id=\"tails-accounting\"></a>\n" +msgstr "<a id=\"tails-translations\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "tails-sysadmins\n" +#, no-wrap msgid "tails-translations\n" -msgstr "tails-sysadmins\n" +msgstr "tails-translations\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "If you want to operate a Tails mirror, write to <tails-mirrors@boum.org>.\n" +#, no-wrap msgid "To talk about the [[Tails translation platform|contribute/how/translate/with_translation_platform]], write to <tails-translations@boum.org>.\n" -msgstr "Se você quer operar um espelho do Tails, escreva para <tails-mirrors@boum.org>.\n" +msgstr "" +"Para falar sobre a [[plataforma de tradução do Tails|contribute/how/" +"translate/with_translation_platform]], escreva para <tails-" +"translations@boum.org>.\n" #. type: Plain text -#, fuzzy -#| msgid "" -#| "[[OpenPGP key|tails-accounting.key]] ([[details|doc/about/" -#| "openpgp_keys#accounting]])." msgid "" "[[OpenPGP key|tails-translations.key]] ([[details|doc/about/" "openpgp_keys#translations]])." msgstr "" -"[[Chave OpenPGP|tails-accounting.key]] ([[details|doc/about/" -"openpgp_keys#accounting]])." +"[[Chave OpenPGP|tails-translations.key]] ([[details|doc/about/" +"openpgp_keys#translations]])." #. type: Plain text #, no-wrap @@ -599,8 +637,7 @@ msgid "<a id=\"tails\"></a>\n" msgstr "<a id=\"tails\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "tails\n" +#, no-wrap msgid "tails\n" msgstr "tails\n" @@ -610,8 +647,8 @@ msgid "" "disclosures, you can write encrypted emails to <tails@boum.org>." msgstr "" "Para assuntos que não foram mencionados acima e para relatar " -"vulnerabilidades, você pode enviar e-mail criptografados para <tails@boum." -"org>." +"vulnerabilidades, você pode enviar e-mails criptografados para " +"<tails@boum.org>." #. type: Plain text msgid "" @@ -625,8 +662,7 @@ msgid "<a id=\"chat\"></a>\n" msgstr "<a id=\"chat\"></a>\n" #. type: Title = -#, fuzzy, no-wrap -#| msgid "Chat rooms\n" +#, no-wrap msgid "Chat rooms\n" msgstr "Bate papo\n" @@ -638,8 +674,8 @@ msgid "" msgstr "" "Você pode entrar nas nossas salas de [[bate papo de usuários|support/chat]] " "e [[bate papo de desenvolvedores|contribute/chat]]. Apenas alguns " -"desenvolvedores Tails ficam por lá, então e-mail é a forma preferencial de " -"contato para qualquer coisa que possa ser de interesse mais amplo da " +"desenvolvedores do Tails ficam por lá, então e-mail é a forma preferencial " +"de contato para qualquer coisa que possa ser de interesse mais amplo da " "comunidade." #, fuzzy diff --git a/wiki/src/blueprint/GNOME_bugs_that_affect_Tails.mdwn b/wiki/src/blueprint/GNOME_bugs_that_affect_Tails.mdwn index 355e8e3e22398fdf2f86fe32914c6be717508eb9..04ee230a0aa880bb5d9eed53ed4a5ea7d586826c 100644 --- a/wiki/src/blueprint/GNOME_bugs_that_affect_Tails.mdwn +++ b/wiki/src/blueprint/GNOME_bugs_that_affect_Tails.mdwn @@ -33,3 +33,5 @@ Feel free to add any relevant issue to this list. * [[!gnome_gitlab seahorse-nautilus/issues/4 desc="seahorse-nautilus: does not or only partially import keys"]] * [[!gnome_gitlab seahorse/issues/22 desc="Seahorse: cannot Import Public SSH Keys"]] * [[!gnome_gitlab gnome-settings-daemon/issues/210 desc="keyboard: Without settings or under GDM make sure to add the US layout"]] +* [[!gnome_gitlab network-manager-applet/issues/84 desc="Simplify the process of connecting to a Wi-Fi network"]] ([[!tails_ticket 14534]]) +* [[!gnome_gitlab gnome-shell/issues/2019 desc="Display an empty Wi-Fi icon when the Wi-Fi is not connected"]] ([[!tails_ticket 14534]]) diff --git a/wiki/src/blueprint/GitLab.mdwn b/wiki/src/blueprint/GitLab.mdwn index cb826a94fbc8265aff49256a963f2b1bb712ff55..87ddc001590e94f7daf5209f2205770e760360ea 100644 --- a/wiki/src/blueprint/GitLab.mdwn +++ b/wiki/src/blueprint/GitLab.mdwn @@ -336,6 +336,8 @@ want to migrate our blueprints to GitLab's # Importing data from Redmine +<a id="specification-for-importing-issues"></a> + ## Specification Note: some of what follows still needs to be negotiated with the @@ -469,23 +471,13 @@ Tails community. It looks like GitLab does not support private comments. - XXX (intrigeri): check if it's OK to publicly leak the fact that - someone (unspecified) posted a private note on an issue, along with - the corresponding timestamp. To list all private notes, grouped by - user: - - ./redlab discuss --verbose -C config.py --private-notes - - - 2019-11-20: asked the 10 affected users if they consent with leaking - this information publicly. - - If folks don't consent to this infoleak, we'll add a link from the - GitLab issue description to the privately archived Redmine, and to - follow an old discussion, one may want to systematically follow this - link to ensure they did not miss a private note. + It's OK to publicly leak the fact that someone (unspecified) posted + a private note on an issue, along with the corresponding timestamp. * Preserve issue assignee + Implementation note: we'll have admin credentials on our GitLab instance. + It is acceptable to require assignees to manually create their GitLab user account themselves before the final migration. @@ -516,9 +508,18 @@ Tails community. * Preserve attribution (authorship) of actions, e.g. which user created an issue, wrote a note, or modified the metadata of an issue + Implementation note: we'll have admin credentials on our GitLab instance. + It's good enough to add this as free-form text in the corresponding issue or note, like e.g. <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues/22>, + but: + + - This information should come first in notes. Otherwise (as + segfault reported) to follow a discussion, one first has to + scroll down to the end of every note to get this key piece of + context, and then scroll back up to read the note itself. + - It would be really nicer if we can _really_ preserve attribution. ### SHOULD @@ -691,24 +692,31 @@ See <https://salsa.debian.org/tails-team/gitlab-migration/wikis/hosting/comparis # Resources -* Tor's [migration plan](https://nc.riseup.net/s/SnQy3yMJewRBwA7) +* Tor's [migration plan](https://nc.torproject.net/s/3MpFApQ7cwfrPZE) from Trac to GitLab. - Their instance is <https://dip.torproject.org/>. - Converted issues: <https://dip.torproject.org/ahf-admin/legacy-20/issues/> - Migration problems: <https://pad.riseup.net/p/gitlab-migration-problems> - - Rough timeline defined on 2019-10-15: - 1. Have a full migration into legacy in Mid November - 2. Ask people to find errors the last two weeks of November - 3. Migration early december - - Meetings: + - Timeline: + 1. Early December: full migration being tested, feedback provided + 2. December 17: meeting ([Agenda and notes](https://pad.riseup.net/p/pKCLewB9RpyjJfRP6X26)) + 3. December 2019: re-run updated migration script + 4. January 2020: migrate to a new GitLab instance + - Older meetings: - [agenda and notes](https://pad.riseup.net/p/e-q1GP43W4gsY_tYUNxf) - 2019-10-15 meeting [logs](http://meetbot.debian.net/tor-meeting/2019/tor-meeting.2019-10-15-17.01.html) - 2019-10-01 meeting [logs](http://meetbot.debian.net/tor-meeting/2019/tor-meeting.2019-10-01-18.00.html) -* KDE migration to Gitlab: +* KDE migration to GitLab: - <https://gitlab.com/gitlab-org/gitlab-foss/issues/57338/designs> - <https://gitlab.com/gitlab-org/gitlab/issues/24900> + - Wrt. workflow (e.g. does everyone push to their own fork or are some people + allowed to push their topic branches to the main repo?), see: + - <https://marc.info/?t=155298413600004&r=1&w=2> + - <https://marc.info/?t=155091510600001&r=3&w=2> + - <https://marc.info/?l=kde-devel&m=155095845826395&w=2> + - <https://marc.info/?l=kde-devel&m=155094926223103&w=2> * Project [import/export](https://docs.gitlab.com/ee/user/project/settings/import_export.html): successfully tested from Salsa to 0xacab (code, MRs, no issues). diff --git a/wiki/src/blueprint/automated_builds_and_tests/jenkins.mdwn b/wiki/src/blueprint/automated_builds_and_tests/jenkins.mdwn index 0e9902c88977eda39d5db50c5d3554e34ed83ad4..96bd7084a314432763c56a37fc40f6a2b7871e1f 100644 --- a/wiki/src/blueprint/automated_builds_and_tests/jenkins.mdwn +++ b/wiki/src/blueprint/automated_builds_and_tests/jenkins.mdwn @@ -1,83 +1,13 @@ [[!meta title="Automated tests implementation details"]] +See the [[design and implementation +documentation|contribute/working_together/roles/sysadmins/Jenkins]] +of our current setup. + For Jenkins resources, see [[blueprint/automated_builds_and_tests/resources]]. [[!toc levels=2]] -Generating jobs -=============== - -We use code that lay in three different Git repositories to generate -automatically the list of Jenkins jobs for branches that are active in -the Tails main Git repo. - -The first brick is the Tails -[[!tails_gitweb_repo pythonlib]], which extracts the list of -active branches and output the needed informations. This list is parsed -by the `generate_tails_iso_jobs` script run by a cronjob and deployed by -our [[!tails_gitweb_repo puppet-tails]] -`tails::jenkins::iso_jobs_generator` manifest. - -This script output yaml files compatible with -[jenkins-job-builder](http://docs.openstack.org/infra/jenkins-job-builder). -It creates one `project` for each active branches, which in turn uses -three JJB `job templates` to create the three jobs for each branch: the -ISO build one, and wrapper job that is used to start the ISO test jobs. - -This changes are pushed to our [[!tails_gitweb_repo jenkins-jobs]] git -repo by the cronjob, and thanks to their automatic deployment in our -`tails::jenkins::master` and `tails::gitolite::hooks::jenkins_jobs` -manifests in our [[!tails_gitweb_repo puppet-tails]] repo, this new -changes are applied automatically to our Jenkins instance. - -Restarting slave VMs between jobs -================================= - -This question is tracked in [[!tails_ticket 9486]]. - -For [[!tails_ticket 5288]] to be robust enough, if the test suite doesn't -_always_ clean between itself properly (e.g. when tests simply hang -and timeout), we might want to restart `isotesterN.lizard` between -each each ISO testing job. - -If such VMs are Jenkins slave, then we can't do it as part of the job -itself, but workarounds are possible, such as having a job restart and -wait for the VM, that triggers another job that actually starts the -tests. Or, instead of running `jenkins-slave` on those VMs, running -one instance thereof somewhere else (in a Docker container on -`jenkins.lizard`?) and then have "restart the testing VM and wait for -it to come up" be part of the testing job. - -This was discussed at least there: - -* <http://jenkins-ci.361315.n4.nabble.com/How-to-reboot-a-slave-during-a-build-td4628820.html> -* <https://stackoverflow.com/questions/5543413/reconfigure-and-reboot-a-hudson-jenkins-slave-as-part-of-a-build> - -We achieve this VM reboot by using 3 chained jobs: - -* First one is a wrapper and trigger 2 other jobs. It is executed on the - isotester the test job is supposed to be assigned to. It puts the - isotester in offline mode and starts the second job, blocking while - waiting for it to complete. This way this isotester is left reserved - while the second job run, and the isotester name can be passed as a build - parameter to the second job. This job is low prio so it waits for - other second and third type of jobs to be completed before starting its - own. -* The second job is executed on the master (which has 4 build - executors). This job ssh into the said isotester and issue the - reboot. It needs to wait a reasonable amount of time for the Jenkins - slave to be stopped by the shutdown process so that no jobs gets assigned - to this isotester meanwhile. Stoping this Jenkins slave daemon usually - takes a few seconds. During testing, 5 seconds proved to be enough of - a delay for that, and more would mean unnecessary lagging time. It then - put the node back online again. This job is higher prio so that it is - not lagging behind other wrapper jobs in the queue. -* The third job is the test job, run on the freshly started isotester. - This one is high prio too to get executed before any other wrapper - jobs. These jobs are set to run concurrently, so that if a first one is - already running, a more recent one triggered by a new build will still - be able to run and not be blocked by the first running one. - <a id="chain"></a> Chaining jobs @@ -111,30 +41,6 @@ These are all supported by JJB v0.9+. As we'll have to pass some parameters, the ParameterizedTrigger plugin is the best candidate for us. -Passing parameters through jobs -=============================== - -We already specified what kind of informations we want to pass from the -build job to the test job. - -The ParameterizedTiggerPlugin is the one usually used for that kind of -work. - -We'll use it for some basic parameter passing through jobs, but given -the test jobs will need to know a lot of them from the build job, we'll -also use the EnvInject plugin we're already using: - - * In the build job, a script will collect every necessary parameters - defined in the automated test blueprint and outputing them in a file - in the /build-artifacts/ directory. - * This file is the one used by the build job, to setup the variables it - needs (currently only $NOTIFY_TO). - * At the end of the build job, this file is archived with the other - artifacts. - * At the beginning of the chained test job, this file is imported in - the workspace along with the build artifacts. The EnvInject pre-build - step uses it to setup the necessary variables. - Define which $OLD_ISO to test against ===================================== @@ -173,21 +79,3 @@ In the end, we will by default use the same ISO for both `--old-iso` and `--iso`, except for the branches used to prepare releases (`devel` and `stable`), so that we know if the upgrades are broken long before the next release. - -Retrieving the ISOs for the test -================================ - -We'll need a way to retrieve the different ISO needed for the test. - -For the ISO related to the upstream build job, this shouln't be a -problem with #9597. We can get it with either wget, or a python script -using python-jenkins. That was the point of this ticket. - -For the last release ISO, we have several means: - -* Using wget to get them from http://iso-history.tails.boum.org. This - website is password protected, but we could set up another private - vhost for the isotesters. -* Using the git-annex repo directly. - -We'll use the first one, as it's easier to implement. diff --git a/wiki/src/blueprint/explain_tails.mdwn b/wiki/src/blueprint/explain_tails.mdwn index 62ce5b8e0f0768669c2ee7b5f1e8992540824d61..3add9890833153ff199ba7c778f82f5f773ce25e 100644 --- a/wiki/src/blueprint/explain_tails.mdwn +++ b/wiki/src/blueprint/explain_tails.mdwn @@ -6,18 +6,24 @@ Structure ========= - Homepage + - Logo - Tagline - Tails in 2 sentences - Main benefits - - [[See the text outline for the new homepage|homepage]] - News - Testimonials / User stories - Partners / Grants -- How does Tails work? + - [[Work in progress on /staging/home|staging/home]] + +- About: How does Tails work? + - In a great deal, a rewriting of [[our current About page|about]] - See also various bits of the [[General information section of our documentation|doc/about]] + - [[Work in progress on /staging/about|staging/about]] + - Get Tails + - Is Tails the right tool for me? - [[Warning|doc/about/warning]], also need some love [[!tails_ticket 8845]] - [[Install Tails|install]] diff --git a/wiki/src/blueprint/hardware_for_automated_tests_take3.mdwn b/wiki/src/blueprint/hardware_for_automated_tests_take3.mdwn index e7f5b3dedfab3707922773338882396f70cf705d..656dc83d76fbb934e86ad223276f29c0c9746cca 100644 --- a/wiki/src/blueprint/hardware_for_automated_tests_take3.mdwn +++ b/wiki/src/blueprint/hardware_for_automated_tests_take3.mdwn @@ -13,6 +13,10 @@ It's working relatively well so far, but we may need to upgrade again soonish, and improvements are always welcome in the contributor UX area: + * Our release process suffers from a number of delays that are in the critical + path and could be shortened if our Jenkins workers were faster: running the + test suite after importing Tor Browser, building the final images to check + for reproducibility, building IUKs. * When Jenkins has built an ISO from one of our main branches or from a branch that _Needs Validation_, since October 2017 we rebuild in in a slightly different build environment to ensure it can be @@ -198,6 +202,8 @@ Cons: * High initial money investment * Hosting this is a hard sell for collocations. * On-going cost for hosting this cluster. + * Needs some development work to fully benefit from the performance + improvements. ### Availability @@ -244,7 +250,8 @@ Summary: virtualization. - With 2 Jenkins executors on the node, each in its own VM that's - able to run one build or test job at a time, with nested virtualization: + able to run one build or test job at a time, with nested virtualization, + and qcow2 disks (probably slower than LVs as used on lizard): - light load, i.e. only one concurrent build/test: each build + test takes 43% less time than on lizard - heavy load, i.e. two concurrent builds/tests: each build + test takes @@ -259,13 +266,36 @@ and test ~40 branches. Even adding only 2 such boxes would increase the maximum throughput of our CI by 69% and immensely lower latency during heavy load times. -This is assuming perfect load distribution, which requires VMs that +### Required development work + +The above benchmarks assume perfect load distribution, which requires +Jenkins slaves that can run both build and test jobs. It works fine in local limited testing but this is not what we have set up on lizard at the moment: there's a risk that a failed test job leaves the system in a bad shape -and breaks the following build job as we don't reboot before build -jobs. We might need to either make test jobs more robust on failure, -or to start rebooting VMs before build jobs as well. +and breaks the following build job as we don't reboot after build +jobs. We might need to either make test jobs more robust on failure +([[!tails_ticket 17216]]), +or to start rebooting the Jenkins slaves after build jobs as well. + +To utilize more fully such nodes, we may need to raise the number of +vCPUs allocated to TailsToaster. For example, assuming 8 hyperthreads +per box, and 2 VMs per box, with our current settings (2 vCPUs +allocated to TailsToaster and Cucumber eats another vCPU core): + + - when running 1 single test suite job, + up to 3 hyperthreads out of 8 are used; + + - when running 2 concurrent test suite jobs, + up to 2×3=6 hyperthreads out of 8 are used. + +Raising this number may make the test suite run faster at least when +there's only 1 test suite job running. It might even make it faster, +in most scenarios, when 2 concurrent test suite jobs are running: they +generally won't be using that much CPU power at the same time. OTOH it +could introduce some test fragility. + +We should first measure if it's worth the effort. ## Run builds and/or tests in the cloud diff --git a/wiki/src/blueprint/l10n_Italian.mdwn b/wiki/src/blueprint/l10n_Italian.mdwn index 7d1697b491df1972c7253539e9c9016175d20ab4..5ffb2a4dadb967cca60aa19fd3a33e9ba7d1ca1f 100644 --- a/wiki/src/blueprint/l10n_Italian.mdwn +++ b/wiki/src/blueprint/l10n_Italian.mdwn @@ -42,13 +42,17 @@ __________ ## Revisioni e sito compilato: - Le versioni proposte di una frase tradotta sono in basso, quasi in fondo alla pagina e puoi vederne un link nella colonna di destra. Nella colonna di destra ci sono anche degli avvertimenti in caso di alcuni "test" non passati da quella frase, come.. manca il punto alla fine, o va a capo in modo strano,... Per revisionare bisogna dare un voto ad un suggerimento di un altr* traduttor*. Se abbiam dei dubbi scriviamo in mailinglist. Quello che fa fede è sempre l'inglese, come testo di riferimento. -Il suggerimento deve ricevere due voti per essere approvato e quindi messo in "staging", ovvero la pagina con il sito compilato. E' possibile che il server voglia un po di tempo per farlo, quindi magari non si trova subito la frase modificata. +E' possibile che il server voglia un po di tempo per farlo, quindi magari non si trova subito la frase modificata. +Mandate una mail in mailinglist per avvisare che è stata tradotta, così verrà revisionata e pubblicata. + +18-20-20 Qui le nuove istruzioni del weblater per chi traduce: + +https://tails.boum.org/contribute/how/translate/with_translation_platform/ Nelle revisioni è importante andare a vedere anche che la pagina funzioni prima di comunicare in lista che è pronta! Infatti ci sono parti di html che NON vanno tradotte: come i link, le class="applications", alcune liste con le parentesi quadre, ... @@ -69,7 +73,7 @@ cambio ".*.po" in ".it.html" e avro': <https://translate.tails.boum.org/staging/doc/about/acknowledgments_and_similar_projects.it.html> -# Aiuto con GIT +# Aiuto con GIT (il metodo precedente al weblate - deprecato) ##mini guida GIT diff --git a/wiki/src/blueprint/macchanger.mdwn b/wiki/src/blueprint/macchanger.mdwn index 7663a35771e7f000739100641f964f68659f06c5..4a7f1760ce82414217701bfed9484f8d09dc552c 100644 --- a/wiki/src/blueprint/macchanger.mdwn +++ b/wiki/src/blueprint/macchanger.mdwn @@ -83,7 +83,7 @@ dispatcher hooks but just like in the section about "Connection failure detection", there's none yet. An alternative would be to do this in -[[!tails_spoof-mac_gitweb config/chroot_local-includes/usr/local/sbin/tails-spoof-mac]], which +[[!tails_gitweb config/chroot_local-includes/usr/local/lib/tails-spoof-mac]], which is run by the udev hook. In the end of the script we could try to verify that the spoofing indeed happened for the NIC in question, and if it didn't we could go into full-out panic mode: diff --git a/wiki/src/blueprint/better_metrics.mdwn b/wiki/src/blueprint/metrics.mdwn similarity index 94% rename from wiki/src/blueprint/better_metrics.mdwn rename to wiki/src/blueprint/metrics.mdwn index c3364cf5430740b6fcb83e6ebb71df01ce8358e1..83e560805065b5f2efcf2b1ceeeb46730e4606fc 100644 --- a/wiki/src/blueprint/better_metrics.mdwn +++ b/wiki/src/blueprint/metrics.mdwn @@ -1,4 +1,4 @@ -[[!meta title="Better metrics"]] +[[!meta title="Metrics"]] ## Current status @@ -81,4 +81,5 @@ these are possible and worth it to gather. ## References +- [The definition of vanity metrics and how to identify them](https://www.tableau.com/learn/articles/vanity-metrics) - [Translating UX Goals into Analytics Measurement Plans](https://www.nngroup.com/articles/ux-goals-analytics/) diff --git a/wiki/src/blueprint/monthly_report.mdwn b/wiki/src/blueprint/monthly_report.mdwn index c0df69910513c037d9837b13659fb9cdff18e069..3577d66ad133d727f79e3fe11d0d6de49ff8f031 100644 --- a/wiki/src/blueprint/monthly_report.mdwn +++ b/wiki/src/blueprint/monthly_report.mdwn @@ -16,6 +16,23 @@ The month in the list corresponds to the month to be reported about. For example, the report about April in the list will be written at the beginning of May. +### 2020 + + - January 2020: sajolida + - February 2020: ignifugo + - March 2020: + - April 2020: sajolida + - May 2020: ignifugo + - June 2020: + - July 2020: sajolida + - August 2020: ignifugo + - September 2020: + - October 2020: sajolida + - November 2020: ignifugo + - December 2020: + +### 2019 + - January 2019: emmapeel - February 2019: intrigeri - March 2019: sajolida diff --git a/wiki/src/blueprint/monthly_report/report_2019_12.mdwn b/wiki/src/blueprint/monthly_report/report_2019_12.mdwn deleted file mode 100644 index 7caf34efac580bf2925e18b6b40f139b2cfb6412..0000000000000000000000000000000000000000 --- a/wiki/src/blueprint/monthly_report/report_2019_12.mdwn +++ /dev/null @@ -1,107 +0,0 @@ -[[!meta title="Tails report for December, 2019"]] -[[!meta date="`date --rfc-2822` eg. Thu, 08 Feb 2018 07:21:15 +0000"]] -[[!pagetemplate template="news.tmpl"]] - -[[!toc ]] - -Releases -======== - -* [[Tails VERSION was released on MONTH DAY|news/version_VERSION]] ([major|bugfix|emergency] release). - -* Tails VERSION+1 is [[scheduled for MONTH DAY|contribute/calendar]]. - -The following changes were introduced in Tails VERSION: - -XXX: Copy the "Changes" section of the release notes, and compact a bit: - -* Remove lines about software upgrade (that's not Tails itself). -* Remove screenshots. -* Remove "New features" and "Upgrades and changes" headlines. -* Remove line about Changelog. - -Code -==== - -XXX: If you feel like it and developers, foundation team, and RMs don't do it themselves, - list important code work that is not covered already by the - Release section (for example, the changes being worked on for - the next version). - -Documentation and website -========================= - -XXX: If you feel like it and technical writers don't do it - themselves, explore the Git history: - - git log --patch --since='1 October' --until='1 November' origin/master -- "doc**.*m*" "about**.*m*" "support**.*m*" "install**.*m*" "upgrade**.*m*" - -User experience -=============== - -XXX: If you feel like it and the UX team does not do it - themselves, check the archives of tails-ux: - <https://lists.autistici.org/list/tails-XXX.html> - -Hot topics on our help desk -=========================== - -XXX: Ask tails-bugs@boum.org to list hot topics for the last month. - -1. - -1. - -1. - -Infrastructure -============== - -Funding -======= - -XXX: The fundraising team should look at the fundraising Git. - - git log --patch --since='1 December' --until='1 January' origin/master - -XXX: The fundraising and accounting teams should look at the archives of <tails-fundraising@boum.org> and <tails-accounting@boum.org>. - -Outreach -======== - -Past events ------------ - -Upcoming events ---------------- - -On-going discussions -==================== - -XXX: Link to the thread on <https://lists.autistici.org/list/tails-XXX.html>. - -Press and testimonials -====================== - -XXX: Copy content from press/media_appearances_2019.mdwn - This page is continuously updated by tails-press@boum.org, so if - it's empty there might be nothing special to report. - -Translations -============ - -XXX: Add the output of (adjust month!): - - sudo apt-get install intltool - git checkout $(git rev-list -n 1 --before="September 1" origin/master) && \ - git submodule update --init && \ - ./wiki/src/contribute/l10n_tricks/language_statistics.sh - -Metrics -======= - -* Tails has been started more than BOOTS/MONTH times this month. This makes BOOTS/DAY boots a day on average. - -[[How do we know this?|support/faq#boot_statistics]] - -XXX: Ask <tails@boum.org> for this number. diff --git a/wiki/src/blueprint/network_connection.mdwn b/wiki/src/blueprint/network_connection.mdwn index 219a488ab7e7dbfdaa8a8239ca00d0b7a6736529..157b7fe775222453ec876c74d60cedf2101e1bab 100644 --- a/wiki/src/blueprint/network_connection.mdwn +++ b/wiki/src/blueprint/network_connection.mdwn @@ -109,7 +109,7 @@ First batch 1. Enable "bridge mode" by default and remove it from the Greeter That is, start Tor Launcher on every connection to a network, if we never successfully connected to tor during this session, - or if our last attempt to connect to tor during this session failed. + or if our last attempt to connect to tor during this session failed. ([[!tails_ticket 17330]]) And then: diff --git a/wiki/src/blueprint/wi-fi_adapters.mdwn b/wiki/src/blueprint/wi-fi_adapters.mdwn index 5e26f922da0870d84e95d3c37440961593f912a4..ecee10b2c7798336f55e71ee94b42a3243dde980 100644 --- a/wiki/src/blueprint/wi-fi_adapters.mdwn +++ b/wiki/src/blueprint/wi-fi_adapters.mdwn @@ -19,6 +19,7 @@ working|doc/anonymous_internet/networkmanager#wi-fi-adapters]]. <tr><td>TP-Link</td><td><a href="https://wikidevi.com/wiki/TP-LINK_TL-WN725N_v2">TL-WN725N v2</a></td><td>Early 2017</td><td>Nano</td><td>0bda:8179</td><td>4.0</td><td>r8188eu</td><td>???</td><td>MAC spoofing fails</td></tr> <tr><td>TP-Link</td><td><a href="https://wikidevi.com/wiki/TP-LINK_TL-WN823N_v2">TL-WN823N v2</a></td><td>Late 2017</td><td>Small</td><td>2357:0109</td><td>4.0</td><td>rtl8xxxu</td><td>rtl8192eu_nic.bin</td><td>Authentication failures</td></tr> <tr><td>TP-Link</td><td><a href="https://wikidevi.com/wiki/TP-LINK_TL-WN821N_v6">TL-WN821N v6</a></td><td>Early 2018</td><td>Long</td><td>2357:0107</td><td>4.0</td><td>None</td><td>None</td><td></td></tr> +<tr><td>TP-Link</td><td>Archer T2U Nano</td><td>Late 2019</td><td>Nano</td><td>2357:011e</td><td>4.0</td><td>None</td><td>None</td><td></td></tr> <!-- <tr><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr> --> diff --git a/wiki/src/contribute.es.po b/wiki/src/contribute.es.po index 12a6b0329fcc06fdc85c377d85a56780e07adc50..1ee19264de0a011634de9bef351926f880848104 100644 --- a/wiki/src/contribute.es.po +++ b/wiki/src/contribute.es.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-10 11:49+0000\n" -"PO-Revision-Date: 2019-08-24 06:21+0000\n" +"PO-Revision-Date: 2020-01-15 08:25+0000\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "contribute/es/>\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -369,10 +369,8 @@ msgid "[[!tails_website contribute/how/promote/material/logo desc=\"Logo\"]]" msgstr "[[!tails_website contribute/how/promote/material/logo desc=\"Logo\"]]" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "[[Design documents|contribute/design]]" msgid "[[Personas|contribute/personas]]" -msgstr "[[Documentos de diseño|contribute/design]]" +msgstr "[[Personas|contribute/personas]]" #. type: Plain text #, no-wrap @@ -471,56 +469,40 @@ msgid "Documentation: BitingBird, sajolida" msgstr "Documentación: BitingBird, sajolida" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "*Onion Circuits*: alan" msgid "*Onion Circuits* (Python): alan" -msgstr "*Onion Circuits*: alan" +msgstr "*Onion Circuits* (Python): alan" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "*OpenPGP Applet*: nodens" msgid "*OpenPGP Applet* (Perl): nodens" -msgstr "*OpenPGP Applet*: nodens" +msgstr "*OpenPGP Applet* (Perl): nodens" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "Persistence setup: intrigeri, kurono" msgid "Persistence setup (Perl): intrigeri, kurono" -msgstr "Persistence setup: intrigeri, kurono" +msgstr "Persistence setup (Perl): intrigeri, kurono" #. type: Bullet: ' - ' msgid "Sysadmin: [[contact|contribute/how/sysadmin/#contact]]" msgstr "Sysadmin: [[contact|contribute/how/sysadmin/#contact]]" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "*Tails Greeter*: alan, intrigeri" msgid "*Tails Greeter* (Python): alan, intrigeri" -msgstr "*Tails Greeter*: alan, intrigeri" +msgstr "*Tails Greeter* (Python): alan, intrigeri" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "*Tails Installer*: alan, kurono, u" msgid "*Tails Installer* (Python): alan, kurono, u" -msgstr "*Tails Installer*: alan, kurono, u" +msgstr "*Tails Installer* (Python): alan, kurono, u" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "*Tails Upgrader*: intrigeri" msgid "*Tails Upgrader* (Perl): intrigeri" -msgstr "*Tails Upgrader*: intrigeri" +msgstr "*Tails Upgrader* (Perl): intrigeri" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "*Tails Verification*: sajolida, anonym" msgid "*Tails Verification* (JavaScript): sajolida, anonym" -msgstr "*Tails Verification*: sajolida, anonym" +msgstr "*Tails Verification* (JavaScript): sajolida, anonym" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "Test suite: anonym" msgid "Test suite (Gherkin, Ruby): anonym" -msgstr "Test suite: anonym" +msgstr "Test suite (Gherkin, Ruby): anonym" #. type: Bullet: ' - ' msgid "*Thunderbird* (Icedove): anonym" @@ -547,10 +529,8 @@ msgid "Website: sajolida" msgstr "Website: sajolida" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "*WhisperBack*: alan" msgid "*WhisperBack* (Python): alan" -msgstr "*WhisperBack*: alan" +msgstr "*WhisperBack* (Python): alan" #. type: Plain text #, no-wrap diff --git a/wiki/src/contribute.fr.po b/wiki/src/contribute.fr.po index bbf24e5f1a08ac634f140714c2b51ee4beca1896..f86fb0835e83c2582acf3c6ac8598f5bb91a0c52 100644 --- a/wiki/src/contribute.fr.po +++ b/wiki/src/contribute.fr.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-10 11:49+0000\n" -"PO-Revision-Date: 2019-10-13 10:51+0000\n" -"Last-Translator: xin <xin@riseup.net>\n" +"PO-Revision-Date: 2020-01-12 13:28+0000\n" +"Last-Translator: Gougueuleu <gougueuleu@gmail.com>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -182,7 +182,7 @@ msgid "" "</div>\n" "</div>\n" msgstr "" -" <p>Des orateurs peuvent recommander Tails à toute sorte d'audience.</p>\n" +" <p>Des orateurs peuvent recommander Tails à toute sorte de public.</p>\n" " <ul>\n" " <li>[[Parler lors d'événements|contribute/how/promote]]</li>\n" " </ul>\n" @@ -198,7 +198,7 @@ msgid "" " <h3>Developer or maintainer</h3>\n" msgstr "" "<div class=\"contribute-roles-3\">\n" -"<h2>Contributer avec vos compétences informatiques</h2>\n" +"<h2>Contribuer par vos compétences informatiques</h2>\n" "<div class=\"contribute-role\" id=\"developer\">\n" " <h3>Développeur ou mainteneur</h3>\n" @@ -245,10 +245,12 @@ msgid "" "<div class=\"contribute-role\" id=\"designer\">\n" " <h3>Designer</h3>\n" msgstr "" -" <p>Des administrateurs système peuvent participer à l'infrastructure derrière Tails.</p>\n" +" <p>Des administrateurs système peuvent participer à l'infrastructure qui " +"sous-tend Tails.</p>\n" " <ul>\n" " <li>[[Faire tourner un miroir HTTP|contribute/how/mirror]]</li>\n" -" <li>[[Améliorer l'infrastructure de Tails|contribute/how/sysadmin]]</li>\n" +" <li>[[Améliorer l'infrastructure de Tails|contribute/how/sysadmin]]</li>" +"\n" " </ul>\n" "</div>\n" "<div class=\"contribute-role\" id=\"designer\">\n" @@ -469,56 +471,40 @@ msgid "Documentation: BitingBird, sajolida" msgstr "Documentation: BitingBird, sajolida" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "*Onion Circuits*: alan" msgid "*Onion Circuits* (Python): alan" -msgstr "*Onion Circuits*: alan" +msgstr "*Onion Circuits* (Python): alan" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "*OpenPGP Applet*: nodens" msgid "*OpenPGP Applet* (Perl): nodens" -msgstr "*OpenPGP Applet*: nodens" +msgstr "*OpenPGP Applet* (Perl): nodens" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "Persistence setup: intrigeri, kurono" msgid "Persistence setup (Perl): intrigeri, kurono" -msgstr "Persistence setup: intrigeri, kurono" +msgstr "Persistence setup (Perl): intrigeri, kurono" #. type: Bullet: ' - ' msgid "Sysadmin: [[contact|contribute/how/sysadmin/#contact]]" msgstr "Sysadmin: [[contact|contribute/how/sysadmin/#contact]]" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "*Tails Greeter*: alan, intrigeri" msgid "*Tails Greeter* (Python): alan, intrigeri" -msgstr "*Tails Greeter*: alan, intrigeri" +msgstr "*Tails Greeter* (Python): alan, intrigeri" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "*Tails Installer*: alan, kurono, u" msgid "*Tails Installer* (Python): alan, kurono, u" -msgstr "*Tails Installer*: alan, kurono, u" +msgstr "*Tails Installer* (Python): alan, kurono, u" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "*Tails Upgrader*: intrigeri" msgid "*Tails Upgrader* (Perl): intrigeri" -msgstr "*Tails Upgrader*: intrigeri" +msgstr "*Tails Upgrader* (Perl): intrigeri" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "*Tails Verification*: sajolida, anonym" msgid "*Tails Verification* (JavaScript): sajolida, anonym" -msgstr "*Tails Verification*: sajolida, anonym" +msgstr "*Tails Verification* (JavaScript): sajolida, anonym" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "Test suite: anonym" msgid "Test suite (Gherkin, Ruby): anonym" -msgstr "Test suite: anonym" +msgstr "Test suite (Gherkin, Ruby): anonym" #. type: Bullet: ' - ' msgid "*Thunderbird* (Icedove): anonym" @@ -545,10 +531,8 @@ msgid "Website: sajolida" msgstr "Website: sajolida" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "*WhisperBack*: alan" msgid "*WhisperBack* (Python): alan" -msgstr "*WhisperBack*: alan" +msgstr "*WhisperBack* (Python): alan" #. type: Plain text #, no-wrap @@ -650,25 +634,7 @@ msgid "[[Document progress|contribute/working_together/document_progress]]" msgstr "[[Document progress|contribute/working_together/document_progress]]" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| " - Teams\n" -#| " - [[Accounting team|contribute/working_together/roles/accounting]]\n" -#| " - [[Foundations team|contribute/working_together/roles/foundations_team]]\n" -#| " - [[Help desk|contribute/working_together/roles/help_desk]]\n" -#| " - [[Release managers|contribute/working_together/roles/release_manager]]\n" -#| " - [[Ticket gardeners|contribute/working_together/roles/ticket_gardener]]\n" -#| " - [[Sysadmins|contribute/working_together/roles/sysadmins]]\n" -#| " - [[Technical writers|contribute/working_together/roles/technical_writer]]\n" -#| " - [[Test suite maintainers|contribute/working_together/roles/test_suite]]\n" -#| " - [[Translation platform maintainers|contribute/working_together/roles/translation_platform]]\n" -#| " - [[UX designers|contribute/working_together/roles/ux]]\n" -#| " - [[Verification extension\n" -#| " maintainers|contribute/working_together/roles/verification_extension]]\n" -#| " - Roles for sponsor deliverables:\n" -#| " - [[Team manager|contribute/working_together/roles/sponsor_deliverables/team_manager]]\n" -#| " - [[Worker|contribute/working_together/roles/sponsor_deliverables/worker]]\n" -#| " - [[Reports sent to sponsors|contribute/reports]]\n" +#, no-wrap msgid "" " - Teams\n" " - [[Accounting and management team|contribute/working_together/roles/accounting]]\n" @@ -689,21 +655,31 @@ msgid "" " - [[Reports sent to sponsors|contribute/reports]]\n" msgstr "" " - Teams\n" -" - [[Accounting team|contribute/working_together/roles/accounting]]\n" -" - [[Foundations team|contribute/working_together/roles/foundations_team]]\n" +" - [[Accounting and management team|contribute/working_together/roles/" +"accounting]]\n" +" - [[Foundations team|contribute/working_together/roles/foundations_team]]" +"\n" " - [[Help desk|contribute/working_together/roles/help_desk]]\n" -" - [[Release managers|contribute/working_together/roles/release_manager]]\n" -" - [[Ticket gardeners|contribute/working_together/roles/ticket_gardener]]\n" +" - [[Release managers|contribute/working_together/roles/release_manager]]" +"\n" +" - [[Ticket gardeners|contribute/working_together/roles/ticket_gardener]]" +"\n" " - [[Sysadmins|contribute/working_together/roles/sysadmins]]\n" -" - [[Technical writers|contribute/working_together/roles/technical_writer]]\n" -" - [[Test suite maintainers|contribute/working_together/roles/test_suite]]\n" -" - [[Translation platform maintainers|contribute/working_together/roles/translation_platform]]\n" +" - [[Technical writers|contribute/working_together/roles/" +"technical_writer]]\n" +" - [[Test suite maintainers|contribute/working_together/roles/test_suite]]" +"\n" +" - [[Translation platform maintainers|contribute/working_together/roles/" +"translation_platform]]\n" " - [[UX designers|contribute/working_together/roles/ux]]\n" " - [[Verification extension\n" -" maintainers|contribute/working_together/roles/verification_extension]]\n" +" maintainers|contribute/working_together/roles/verification_extension]]" +"\n" " - Roles for sponsor deliverables:\n" -" - [[Team manager|contribute/working_together/roles/sponsor_deliverables/team_manager]]\n" -" - [[Worker|contribute/working_together/roles/sponsor_deliverables/worker]]\n" +" - [[Team manager|contribute/working_together/roles/" +"sponsor_deliverables/team_manager]]\n" +" - [[Worker|contribute/working_together/roles/sponsor_deliverables/" +"worker]]\n" " - [[Reports sent to sponsors|contribute/reports]]\n" #. type: Plain text diff --git a/wiki/src/contribute.id.po b/wiki/src/contribute.id.po index 07d16b7ae553d9508f46ce8fc1d43a4743620591..ffe93b21ea0341b2aec6209b8cc05886696e8405 100644 --- a/wiki/src/contribute.id.po +++ b/wiki/src/contribute.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-10 11:49+0000\n" -"PO-Revision-Date: 2019-10-24 10:30+0000\n" +"PO-Revision-Date: 2020-01-16 00:25+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -41,7 +41,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[!img user.png link=no]]\n" -msgstr "" +msgstr " [[!img user.png link=no]]\n" #. type: Plain text #, no-wrap @@ -68,7 +68,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[!img donate.png link=no]]\n" -msgstr "" +msgstr " [[!img donate.png link=no]]\n" #. type: Plain text #, no-wrap @@ -93,7 +93,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[!img writer.png link=no]]\n" -msgstr "" +msgstr " [[!img writer.png link=no]]\n" #. type: Plain text #, no-wrap @@ -111,7 +111,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[!img translator.png link=no]]\n" -msgstr "" +msgstr " [[!img translator.png link=no]]\n" #. type: Plain text #, no-wrap @@ -128,7 +128,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[!img speaker.png link=no]]\n" -msgstr "" +msgstr " [[!img speaker.png link=no]]\n" #. type: Plain text #, no-wrap @@ -153,7 +153,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[!img software_developer.png link=no]]\n" -msgstr "" +msgstr " [[!img software_developer.png link=no]]\n" #. type: Plain text #, no-wrap @@ -171,7 +171,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[!img system_administrator.png link=no]]\n" -msgstr "" +msgstr " [[!img system_administrator.png link=no]]\n" #. type: Plain text #, no-wrap @@ -189,7 +189,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[!img designer.png link=no]]\n" -msgstr "" +msgstr " [[!img designer.png link=no]]\n" #. type: Plain text #, no-wrap @@ -207,7 +207,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"toc\">\n" -msgstr "" +msgstr "<div class=\"toc\">\n" #. type: Plain text #, no-wrap @@ -231,12 +231,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "</div> <!-- .toc -->\n" -msgstr "" +msgstr "</div> <!-- .toc -->\n" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text msgid "" @@ -252,7 +252,7 @@ msgstr "</div>\n" #. type: Plain text #, no-wrap msgid "<a id=\"reference-documents\"></a>\n" -msgstr "" +msgstr "<a id=\"reference-documents\"></a>\n" #. type: Title = #, no-wrap @@ -287,7 +287,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"tools\"></a>\n" -msgstr "" +msgstr "<a id=\"tools\"></a>\n" #. type: Title = #, no-wrap @@ -322,7 +322,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"mentors\"></a>\n" -msgstr "" +msgstr "<a id=\"mentors\"></a>\n" #. type: Title = #, no-wrap @@ -347,11 +347,11 @@ msgstr "" #. type: Bullet: ' - ' msgid "AppArmor: intrigeri, jvoisin, u" -msgstr "" +msgstr "AppArmor: intrigeri, jvoisin, u" #. type: Bullet: ' - ' msgid "Build system (Vagrant, Rake): anonym" -msgstr "" +msgstr "Build system (Vagrant, Rake): anonym" #. type: Bullet: ' - ' msgid "Debian related work: intrigeri, u" @@ -387,7 +387,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "*Tails Upgrader* (Perl): intrigeri" -msgstr "" +msgstr "*Upgrader Tails* (Perl): intrigeri" #. type: Bullet: ' - ' msgid "*Tails Verification* (JavaScript): sajolida, anonym" @@ -395,11 +395,11 @@ msgstr "" #. type: Bullet: ' - ' msgid "Test suite (Gherkin, Ruby): anonym" -msgstr "" +msgstr "Test suite (Gherkin, Ruby): anonym" #. type: Bullet: ' - ' msgid "*Thunderbird* (Icedove): anonym" -msgstr "" +msgstr "*Thunderbird* (Icedove): anonym" #. type: Bullet: ' - ' msgid "Tor configuration, time syncing, MAC spoofing: anonym" @@ -450,7 +450,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"upstream\"></a>\n" -msgstr "" +msgstr "<a id=\"upstream\"></a>\n" #. type: Title = #, no-wrap @@ -539,7 +539,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"talk\"></a>\n" -msgstr "" +msgstr "<a id=\"talk\"></a>\n" #. type: Title = #, no-wrap diff --git a/wiki/src/contribute/APT_repository/time-based_snapshots.mdwn b/wiki/src/contribute/APT_repository/time-based_snapshots.mdwn index 8cef9b00a63b77df17ce21bbf225bcfb4f913f72..930b4d72c31f1f13ab6809be70ac1ff06dca5c76 100644 --- a/wiki/src/contribute/APT_repository/time-based_snapshots.mdwn +++ b/wiki/src/contribute/APT_repository/time-based_snapshots.mdwn @@ -181,13 +181,13 @@ reproducibility verification. APT snapshots. 4. In the directory for each repository (e.g. `debian`, `torproject`), - adjust `s=jessie` to match the codename of the distribution you + replace `jessie` to match the codename of the distribution you want to remove in the following command and run it: reprepro --delete clearvanished && \ reprepro export && \ reprepro dumpreferences \ - | grep -E '^s=jessie' \ + | grep -E '^s=(tor-nightly-master-)?jessie' \ | awk '{print $1}' \ | sort -u \ | xargs -n 1 reprepro _removereferences && \ diff --git a/wiki/src/contribute/Linux_kernel.mdwn b/wiki/src/contribute/Linux_kernel.mdwn index 5e90cb7e8555263d8b1739048a6c838d6594d87c..d9e9036317f14434fb4fd2cbf18255d850747231 100644 --- a/wiki/src/contribute/Linux_kernel.mdwn +++ b/wiki/src/contribute/Linux_kernel.mdwn @@ -203,7 +203,7 @@ test results. Once happy: If you decided to opt-out from a kernel upgrade we would otherwise automatically include: piggy-back on our [[freeze exception|contribute/APT_repository/time-based_snapshots#design-freeze-exceptions]] -to force the installation of an older kernel. +mechanism to force the installation of an older kernel. Else, you're trying to upgrade the kernel. It turns out you already have prepared the very topic branch we need to do that, so: diff --git a/wiki/src/contribute/build.mdwn b/wiki/src/contribute/build.mdwn index 5ffbf7172b7e6ef633ef9d3622dbf1f92f2c5d34..6917b9aadc9a8728e2ca6803f8285a45267e7ffc 100644 --- a/wiki/src/contribute/build.mdwn +++ b/wiki/src/contribute/build.mdwn @@ -72,13 +72,6 @@ image before building it. # Known issues and workarounds -* If Vagrant fails to start the Tails builder VM with an error similar - to: - - Virtio-9p Failed to initialize fs-driver with id:fsdev-fs0 - - … then see [[!tails_ticket 11411]]. - * If Vagrant fails to start the Tails builder VM with: Initialization parameters must be an attributes hash, got NilClass nil (ArgumentError) @@ -120,7 +113,7 @@ You can customize the build system using two environment variables: For example, you can speed up the build by setting: - export TAILS_BUILD_OPTIONS="ram fastcomp" + export TAILS_BUILD_OPTIONS="ram fastcomp cachewebsite" This will force the build to happen in RAM and SquashFS compression will be done using faster, though less efficient size-wise, settings. @@ -209,6 +202,10 @@ affect reproducibility of the ISO image: * **rescue**: implies **keeprunning** and will also not clean up the build directory, which is useful for investigating build failures. + * **cachewebsite**: enable caching of the built website. + The cache is keyed on the input parameters that primarily determine + the output of the website build. + ## HTTP proxy settings Building Tails requires downloading a little bit more than 2 GiB of @@ -240,7 +237,8 @@ the following build options: if a local HTTP proxy is set. * **vmproxy+extproxy**: use the local proxy configured in the virtual - machine but make it use the local HTTP proxy. + machine but make it use the external HTTP proxy configured through + the `http_proxy` environment variable. * **noproxy**: do not use any HTTP proxy. diff --git a/wiki/src/contribute/build/manually.mdwn b/wiki/src/contribute/build/manually.mdwn deleted file mode 100644 index d34ab22dd3b7a5f98110b6c7e2ddc536d77ea696..0000000000000000000000000000000000000000 --- a/wiki/src/contribute/build/manually.mdwn +++ /dev/null @@ -1,113 +0,0 @@ -[[!meta title="Building a Tails image manually"]] - -[[!toc levels=3]] - -<div class="note"> -This page is totally outdated: all active developers use Vagrant, -which is the only supported way to build Tails at the moment. -</div> - - -In order to build Tails manually, you need a running Debian Jessie -system and some [backports](http://backports.debian.org/). Anything -else will fail. - -# Dependencies - -The following Debian packages need to be installed: - -* our `live-build` 2.x package, adapted for Wheezy and later. Its version is - something like *3.0.5+really+is+2.0.12-0.tails2*. One can install it - from: - - deb http://deb.tails.boum.org/ builder-jessie main - - This APT repository's signing key can be found: - - - in our Git tree (that you have cloned already, right?): - `config/chroot_sources/tails.chroot.gpg` - - at <http://deb.tails.boum.org/key.asc> - - on the keyservers. - - It is certified by the - [[Tails signing key|doc/about/openpgp_keys#signing]], and its - fingerprint is: - - 221F 9A3C 6FA3 E09E 182E 060B C798 8EA7 A358 D82E - - You should pin that repository, so that live-build isn't upgraded to - the version of jessie. - - #/etc/apt/preferences.d/00-builder-jessie-pinning - Package: * - Pin: release o=Debian,a=stable - Pin-Priority: 700 - - Package: * - Pin: origin deb.tails.boum.org - Pin-Priority: 800 - - - Then install these dependencies from Jessie: - - apt install \ - dpkg-dev \ - gettext \ - intltool \ - libfile-slurp-perl \ - liblist-moreutils-perl \ - libyaml-libyaml-perl \ - libyaml-perl \ - libyaml-syck-perl \ - perlmagick \ - po4a \ - syslinux-utils \ - time \ - whois - - And install these dependencies from jessie-backports (please verify - manually that the following command actually does install the - expected versions): - - apt install \ - debootstrap/jessie-backports \ - ikiwiki/jessie-backports - -# Configure live-build - -Remove any line matching `/^\[[:space:]]*LB.*MIRROR.*=/` in -`/etc/live/build.conf`. - -# Build process - -Every build command must be run as `root`, at the root of a clone of the -[[`tails` repository|git]]. A local HTTP proxy is required. - -In short, a build shall be done using: - - lb clean --all && lb config --apt-http-proxy http://localhost:3142 && lb build - -Running `lb config` or `lb build` in an environment that wasn't full -cleaned first is not supported. - -## Customize the build process if needed - -If you need to set custom build settings that are specific to your -local environment, such as a custom Debian mirror or APT proxy, you -probably want to configure live-build a bit. - -The most common customizations are documented on this wiki: - -* to avoid compressing the SquashFS using XZ (efficient, but very - slow), `export MKSQUASHFS_OPTIONS='-comp gzip'` in your - build environment; -* to avoid downloading lots of Debian packages during every build, you - can use [[!debpts apt-cacher-ng]]; however, the build system - constantly switches APT sources for our - [[APT repositories|contribute/APT_repository]], so some custom - configuration is needed to make `apt-cacher-ng` useful: see the - bits about `apt-cacher-ng` in - [[!tails_gitweb vagrant/provision/assets/build-tails]]. - -More documentation about this can be found in the [Debian Live -Manual](http://live.debian.net/manual-2.x/html/live-manual.en.html). diff --git a/wiki/src/contribute/build/reproducible.mdwn b/wiki/src/contribute/build/reproducible.mdwn index 55553fca1db24a1885759c09d2c642a934160ab8..7ffe5e338e5cf4afa1885e0cdcb3c6cb681afd2c 100644 --- a/wiki/src/contribute/build/reproducible.mdwn +++ b/wiki/src/contribute/build/reproducible.mdwn @@ -117,7 +117,7 @@ You can get the SHA-256 of any IUK by setting the `SOURCE` and and then run: - UDF="wiki/src/upgrade/v1/Tails/${SOURCE}/amd64/stable/upgrades.yml" + UDF="wiki/src/upgrade/v2/Tails/${SOURCE}/amd64/stable/upgrades.yml" if gpg --verify ${UDF}.pgp ${UDF}; then python3 <<EOF import yaml diff --git a/wiki/src/contribute/build/website.mdwn b/wiki/src/contribute/build/website.mdwn index 72f3a18497ff31729ab1cefffab64cea8f4a9368..06b27ec22abf3e6e1dcf2989fea987f85c5fd8ba 100644 --- a/wiki/src/contribute/build/website.mdwn +++ b/wiki/src/contribute/build/website.mdwn @@ -15,11 +15,15 @@ changes will apply on the website. Build the website in Linux ========================== +If you are in Tails, see the [[dedicated instructions|website#tails]]. + 1. Update the list of available packages: sudo apt update -2. Install the required packages: +2. Configure APT to install the `po4a` package from Debian Stretch. + +3. Install the required packages: sudo apt install \ ikiwiki \ @@ -27,27 +31,23 @@ Build the website in Linux libyaml-libyaml-perl \ libyaml-syck-perl \ perlmagick \ - po4a/stretch \ + po4a \ ruby - You need to install ikiwiki version 3.20170111~bpo8+1 or newer. - In Debian this version is currently available in Stretch and - jessie-backports. - -3. Clone our main [[Git repository|git]]: +4. Clone our main [[Git repository|git]]: git clone https://git-tails.immerda.ch/tails [[!inline pages="contribute/build/website/src.inline" raw="yes" sort="age"]] -4. Build the website: +5. Build the website: cd tails && \ ./build-website [[!inline pages="contribute/build/website/languages.inline" raw="yes" sort="age"]] -5. You can now browse your local copy of the website in the following folder: +6. You can now browse your local copy of the website in the following folder: <span class="filename">config/chroot_local-includes/usr/share/doc/tails/website/</span> diff --git a/wiki/src/contribute/calendar.mdwn b/wiki/src/contribute/calendar.mdwn index 91c65b9a9389ccdcf155c2caa22c696e70e72960..fdbf9b32c7b65aac466eff624dc4956e33029012 100644 --- a/wiki/src/contribute/calendar.mdwn +++ b/wiki/src/contribute/calendar.mdwn @@ -2,24 +2,13 @@ All times are referenced to Berlin and Paris time. -# 2019Q4 - -* 2019-12-03, 16:00: [[Foundations Team|contribute/working_together/roles/foundations_team]] meeting - -* 2019-12-03: **Release 4.1** (Firefox 68.3, bugfix release — kibi is the RM, anonym is the TR) - -* 2019-12-12, 11:00: Fundraising meeting - -* 2019-12-12, 13:30: Sysadmin team meeting - # 2020Q1 -* 2020-01-07: **Release 4.2** (Firefox 68.4, bugfix release, with one exception — intrigeri is the RM) - - Support for [[!tails_ticket 15281 desc="Endless automatic upgrades"]] - in Tails Upgrader - - Automatic upgrade from 4.0 and 4.1, using the old upgrade system +* 2020-02-05 to 2020-02-12: Accounting & management sprint + +* 2019-02-06, 11:00: Fundraising meeting -* 2020-02-11: **Release 4.3** (Firefox 68.5, bugfix release — intrigeri is the RM) +* 2020-02-11: **Release 4.3** (Firefox 68.5, bugfix release — anonym is the RM, intrigeri in the backup RM and helps with upgrades) Automatic upgrade from 4.2, using the new upgrade system (but still with an aufs-based diff). @@ -29,14 +18,16 @@ All times are referenced to Berlin and Paris time. Alternatively, they can do a manual upgrade. UX will tell RMs which of these options we should advertise. -* 2020-03-10: **Release 4.4** (Firefox 68.6, bugfix release) +* 2020-03-10: **Release 4.4** (Firefox 68.6, bugfix release — kibi is the RM) Automatic upgrade from 4.2 and newer (still with aufs-based diff). * 2020-03-21: potential emergency release that traditionally follows [pwn2own](https://cansecwest.com/) (March 18-20) -* late 2020-03: Release 4.5~rc1 +* late 2020-03: Release 4.5~rc1 (assuming [[!tails_ticket 17376]] is done + by then: kibi is the RM, anonym is around to help if needed as it's + the first RC that kibi releases) - Switch to overlayfs ([[!tails_ticket 8415]]) - If [[!tails_ticket 15806 desc="GRUB"]] and [[!tails_ticket 6560 desc="Secure Boot"]] diff --git a/wiki/src/contribute/design/incremental_upgrades.mdwn b/wiki/src/contribute/design/incremental_upgrades.mdwn index bbdb33025ff3a7a6348f6ae7384e0f2825de0e53..5b8f9531c67a4859fd947ba76ae07bba33050fce 100644 --- a/wiki/src/contribute/design/incremental_upgrades.mdwn +++ b/wiki/src/contribute/design/incremental_upgrades.mdwn @@ -31,11 +31,9 @@ See [[the blueprint|blueprint/incremental_upgrades]]. # Code -Most the code needed to implement this design lives in the `iuk` [Git -repository](https://git-tails.immerda.ch/iuk/). - -The rest lives in the main Tails [[contribute/Git]] repository: +The code that implements this design lives in: +* [[!tails_gitweb_dir config/chroot_local-includes/usr/src/iuk]] * [[!tails_gitweb config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper]] * [[!tails_gitweb config/chroot_local-includes/etc/sudoers.d/zzz_upgrade]] * [[!tails_gitweb config/chroot_local-includes/usr/lib/systemd/user/tails-upgrade-frontend.service]] @@ -110,20 +108,19 @@ pushing the release Git branch live to master. ## Upgrade paths -To ease implementation, only upgrades to the next closest step -are supported. +To ease implementation, we only support upgrades from Tails versions +that have a recent enough Upgrader. E.g. say one has installed Tails 0.11 a while ago, and forgets about it. We then release Tails 0.11.1, and publish a `0.11_to_0.11.1` IUK, advertised by the upgrade-description file for 0.11 users. We then -release Tails 0.11.2, and publish a `0.11.1_to_0.11.2` IUK, advertised -by the upgrade-description file for 0.11.1 users. If the user starts -their Tails 0.11, the upgrade system proposes upgrading to 0.11.1. -Say the user accepts, the upgrade is performed, the user reboots, and -the upgrade system now proposes upgrading to 0.11.2. +release Tails 0.11.2, and publish: -Allowing to run these two steps in a row, without rebooting, is -mainly a GUI problem, and is postponed. +* a `0.11_to_0.11.2` IUK advertised by the upgrade-description file + for users who initially installed 0.11, regardless of whether they + already upgraded to 0.11.1 or not; +* a `0.11.1_to_0.11.2` IUK, advertised by the upgrade-description file + for users who initially installed 0.11.1. ## Infrastructure @@ -139,40 +136,21 @@ We have a `tails-create-iuk` program that takes two Tails full images as input, #### IUK format -An IUK is a tar archive, compatible with GNU tar, that contains the -following files: +An IUK is a SquashFS archive that contains the following files: -* `FORMAT`: contains the version of the IUK format (that is *1*), as - a positive integer encoded in ASCII. +* `FORMAT`: contains the version of the IUK format, as + a positive integer encoded in ASCII (currently it is *2*). * `control.yml`: YAML associative array with the following keys: - - `delete_files`: a list of files to delete from the - system partition. -* zero, one or more `*.tar[.bz2]`: tar archives, compatible with GNU tar, optionally - compressed with bzip2, that contain the set of files to add to, or - upgrade in the system partition: kernel(s), initrd(s), bootloader - configuration, `*.squashfs` (the SquashFS "diff" that must be - stacked on top of the older SquashFS filesystem(s)), etc. - -File paths, both in `*.tar[.bz2]` and in the `delete_files` list, are -relative to the Tails system partition root, and must be compatible -with a FAT32 filesystem. - -Tarballs contained in the IUK are meant to be extracted, one after the -other, sorted by ASCII order. - -#### Initial implementation details - -(This section is not a specification.) - -The initial IUK generator will ship those files in every IUK: - -* `system.tar` contains files that are already compressed - (e.g. kernel, initrd, `*.squashfs`) -* `boot.tar.bz2` contains files that are not compressed yet - (that is: syslinux configuration, modules and utilities) - -These are implementation details the IUK installer software must not -rely upon. + - `delete_files`: a list of file paths to delete from the system + partition. These paths are relative to the Tails system partition + root, and must be compatible with a FAT32 filesystem. +* `overlay`: optional directory whose contents will be extracted onto + the system partition root, overwriting existing files: kernel(s), + initrd(s), bootloader configuration, `live/*.squashfs` (the SquashFS + "diff" that must be stacked on top of the SquashFS filesystem from + the initial version of Tails that was manually installed to the + device), etc. All these files target a FAT32 filesystem, so its + limitations apply (e.g. on filename, file size, permissions). ### Mirrors infrastructure @@ -190,7 +168,8 @@ set up does leave room for such future extension. ### Upgrade-description files We want the client to get an answer to questions such as "I run -version N of product P on architecture A, what stable release upgrade +version N+2 of product P on architecture A, on a device initially +installed as version N and then upgraded to N+2, what stable release upgrade is available?". To allow us changing the way the answer is computed in the future, the amount of work done on the client's side should be kept to a minimum. So, let's insert a level of indirection, and @@ -202,17 +181,16 @@ of upgrade-description file files. #### upgrade-description file URL * `https://tails.boum.org/upgrade` -* URL schema version (so we can change it in the future), that is `v1` - to start with. +* URL schema version (so we can change it in the future), that is currently `v2` * product name (e.g. *Tails*, but some day we may have *TailsServer*, *TailsHandheld* or whatever) -* product version -- the currently running version to upgrade from, - e.g. *0.11* or *0.11.1* +* initial install version -- the version initially installed on the + device to upgrade, e.g. *0.11* or *0.11.1* * build-target (e.g. *amd64*) * channel (e.g. *stable* or *beta*) * `upgrade.yml` -Example: <https://tails.boum.org/upgrade/v1/Tails/0.11/amd64/beta/upgrades.yml> +Example: <https://tails.boum.org/upgrade/v2/Tails/0.11/amd64/beta/upgrades.yml> Such a file shall be shipped along with its OpenPGP detached signature (`upgrades.yml.pgp`). @@ -223,7 +201,7 @@ An upgrade-description file contains a YAML associative array with the following top-level keys: * `product-name` -* `product-version` +* `initial-install-version` * `build-target` * `channel` * `upgrades`: a list of upgrade elements. @@ -263,10 +241,10 @@ Every target file element has the following keys: will need to be specified when this happens.) Example that would be found at -<https://tails.boum.org/upgrade/v1/Tails/0.11.1/amd64/stable/upgrades.yml>: +<https://tails.boum.org/upgrade/v2/Tails/0.11.1/amd64/stable/upgrades.yml>: product-name: Tails - product-version: 0.11.1 + initial-install-version: 0.11.1 channel: stable build-target: amd64 @@ -277,7 +255,7 @@ Example that would be found at upgrade-paths: - type: incremental target-files: - - url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_0.11.1_to_0.11.2.iuk + - url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_0.11.1_to_0.11.2.iuk size: 37345648 sha256: 5c5c47f6155e7807c971251fdad28d5f72ff78db446e43a41e4b900f29229a7d - type: full @@ -304,8 +282,8 @@ followed by the `.iuk` suffix: * product name (e.g. *Tails*) * build-target (e.g. *amd64*) -* product version -- the currently running version to upgrade from, - e.g. *0.11* or *0.11.1* +* initial install version -- the version initially installed on the device to + upgrade, e.g. *0.11* or *0.11.1* * `to` * the version of this upgrade, that is the version of the running product after the upgrade is completed and the system restarted (e.g. @@ -317,10 +295,10 @@ Example: `Tails_amd64_0.11.1_to_0.11.2.iuk` A given IUK is meant to be made available at the URL composed from: -* `http://dl.amnesia.boum.org/tails/iuk/` +* `http://dl.amnesia.boum.org/tails/iuk/v2/` * the IUK file basename -Example: <http://dl.amnesia.boum.org/tails/iuk/Tails_amd64_0.11.1_to_0.11.2.iuk> +Example: <http://dl.amnesia.boum.org/tails/iuk/v2/Tails_amd64_0.11.1_to_0.11.2.iuk> ## Client and user interface @@ -339,7 +317,7 @@ upgrade-description file. * Fetch the upgrade-description file and its signature at these URIs. * Verify the cryptographic signature of the upgrade-description file. * Check that content of the upgrade-description file matches the - currently running system (in terms of product name, product + currently running system (in terms of product name, initial install version, build-target and channel). * Once all these steps have been successfully performed, the content of the upgrade-description file is trusted to be legit, and is @@ -422,13 +400,17 @@ medium read-write. * Verify the IUK is in a supported format. * Remount the boot-medium read-write. -* Extract the IUK archive. -* Move stacked squashfs found in the IUK in place. -* Extract tarballs (`*.tar[.bz2]`) contained in the IUK, one after the - other, sorted by ASCII order. +* Mount the IUK archive. +* If the `overlay` directory exists in the IUK, copy its contents + onto the system partition root, overwriting existing files. +* If a new SquashFS diff file (`live/*.squashfs`) was provided + in the `overlay` directory: + * ensure `live/Tails.module` contains: + - one line that says `filesystem.squashfs` + - one line that contains the filename of that new SquashFS diff + * remove any old SquashFS diff file that is not referenced + by `live/Tails.module` anymore. * Delete files that are listed in the `delete_files` control field. -* Append the new SquashFS diff file name to the `live/Tails.module` - file, in the Tails system partition. * Upgrade syslinux with the binary found in `utils/linux/syslinux` on the Tails system partition. Likewise, upgrade the boot device's MBR with the one found in `utils/mbr/mbr.bin` on the Tails system diff --git a/wiki/src/contribute/design/memory_erasure.mdwn b/wiki/src/contribute/design/memory_erasure.mdwn index 1956bc0b4545b55399b71bc27212c9f8db33d10d..6843906544d52fc93ceec034bc83666699d5b4ea 100644 --- a/wiki/src/contribute/design/memory_erasure.mdwn +++ b/wiki/src/contribute/design/memory_erasure.mdwn @@ -50,6 +50,7 @@ poisoning feature|design/kernel_hardening]], more specifically: * `page_poison` * passing "P" to `slub_debug` +* zeroing heap memory at free time (`init_on_free=1`) [[!tails_gitweb features/erase_memory.feature desc="Automated tests"]] ensure that the most important parts of memory are erased this way. @@ -94,8 +95,8 @@ As discussed in with the authors of `PAX_MEMORY_SANITIZE`, kernel memory poisoning does not clear _all_ kinds of memory once it's freed: - * we enable free poisoning for the buddy allocator and the slub/slab - ones, but there may be other ways the Linux kernel allocates + * we enable free poisoning for the buddy allocator, the slub/slab + ones, and heap memory, but there may be other ways the Linux kernel allocates memory, that are not subject to poisoning; * on shutdown all process memory is freed (and thus erased), but some kernel memory is not erased on shutdown, and is currently diff --git a/wiki/src/contribute/git.mdwn b/wiki/src/contribute/git.mdwn index 10b7b2bdab47de634bc66b74365a44655084e820..f195f19148c36b92a65310d358edea04cdea6f55 100644 --- a/wiki/src/contribute/git.mdwn +++ b/wiki/src/contribute/git.mdwn @@ -46,6 +46,9 @@ General information Git hosting setup at immerda ---------------------------- +Most of our repositories live on `git.tails.boum.org`, which is hosted +by the [immerda](https://www.immerda.ch/) collective. + Documentation for our Git hosting setup at immerda: * [main documentation](https://wiki.immerda.ch/index.php/GitRepositoriesImmerda) @@ -76,7 +79,7 @@ This repository contains the Tails source code and the source of the website. Anyone can check it out like this: - git clone https://git-tails.immerda.ch/tails + git clone https://git.tails.boum.org/tails Developers with write access to the repositories should instead: @@ -89,7 +92,7 @@ And then, in any case, in your new Git clone's directory: For more information about our usage of Git submodules, see [[the dedicated section|git#submodules]]. -We have a [web interface](https://git-tails.immerda.ch/tails/) +We have a [web interface](https://git.tails.boum.org/tails/) available for the main repository. ### Configuration @@ -97,7 +100,7 @@ available for the main repository. Developers with write access to the repositories should: git config --global url.tails@git.tails.boum.org:.insteadOf \ - https://git-tails.immerda.ch/ + https://git.tails.boum.org/ We also recommend the following setting in your Tails clone since it otherwise is too easy to forget pushing updated submodules: @@ -192,13 +195,13 @@ material|contribute/how/promote/material]]. Anyone can check it out like this: - git clone https://git-tails.immerda.ch/promotion-material + git clone https://git.tails.boum.org/promotion-material Developers with write access to the repositories should instead: torsocks git clone gitolite@d53ykjpeekuikgoq.onion:promotion-material -We have a [web interface](https://git-tails.immerda.ch/promotion-material/) +We have a [web interface](https://git.tails.boum.org/promotion-material/) available for the promotion material repository. <a id="puppet"></a> @@ -246,7 +249,7 @@ authoritative repositories for these modules at them already. - Anything you push to these repositories (except `tails_secrets_*`) is automatically synchronized to public mirrors at - <https://git-tails.immerda.ch/>. + <https://git.tails.boum.org/>. - Do not push to the public mirrors: your changes would be overwritten by the next automatic synchronization. @@ -259,11 +262,11 @@ Other repositories ------------------ All other public Tails Git repositories are at -<https://git-tails.immerda.ch/>. +<https://git.tails.boum.org/>. Unauthenticated access is of the form: - git clone https://git-tails.immerda.ch/$REPOSITORY + git clone https://git.tails.boum.org/$REPOSITORY Developers with write access to the repositories should instead: @@ -297,7 +300,7 @@ Creating a new repository ========================= In the vast majority of cases, your new repository will be hosted -at <https://git-tails.immerda.ch/>. Here is how to get it created. +at <https://git.tails.boum.org/>. Here is how to get it created. 1. Send your OpenPGP public key, pasted in the body of an email, to the [[Tails system administrators|about/contact#tails-sysadmins]]. @@ -340,7 +343,7 @@ Initializing a git-remote-gcrypt repository Clone the new, empty repository in a way that tells Git it's going to be encrypted: - git clone gcrypt::tails@git-tails.immerda.ch:$REPOSITORY + git clone gcrypt::tails@git.tails.boum.org:$REPOSITORY Change directory into the newly cloned repository: diff --git a/wiki/src/contribute/how/documentation.mdwn b/wiki/src/contribute/how/documentation.mdwn index acc0028f48d6a9f34162a6df67e5449e3fcc5919..f02628a380001803cd5de049843a118bf23f70ae 100644 --- a/wiki/src/contribute/how/documentation.mdwn +++ b/wiki/src/contribute/how/documentation.mdwn @@ -78,7 +78,7 @@ To use these tools, please first install the dependencies: - Images on our website are compressed and cleaned using the [[compress-image.sh]] script. To run this script you need the - `optipng`, `advancecomp`, and `mat` packages. + `trimage` and `mat2` packages. ## QR codes diff --git a/wiki/src/contribute/how/documentation/compress-image.sh b/wiki/src/contribute/how/documentation/compress-image.sh index 81220a03958e57b8aff8380fc1785dbd561d0ec6..37f1e343dc431e306366f85070dcc8a29b81913d 100755 --- a/wiki/src/contribute/how/documentation/compress-image.sh +++ b/wiki/src/contribute/how/documentation/compress-image.sh @@ -3,13 +3,8 @@ set -e set -u -if [ ! -x /usr/bin/optipng ]; then - echo "Please install the \"optipng\" package." >&2 - exit 1 -fi - -if [ ! -x /usr/bin/advdef ]; then - echo "Please install the \"advancecomp\" package." >&2 +if [ ! -x /usr/bin/trimage ]; then + echo "Please install the \"trimage\" package." >&2 exit 1 fi @@ -19,8 +14,7 @@ if [ ! -x /usr/bin/mat2 ]; then fi for image in "${@}" ; do - optipng -o6 "${image}" - advdef -z3 "${image}" mat2 "${image}" - mv "${image%.*}.cleaned.${image#*.}" "${image}" + trimage -f "${image}" + mv "${image%.*}.cleaned.${image##*.}" "${image}" done diff --git a/wiki/src/contribute/how/documentation/release_notes.mdwn b/wiki/src/contribute/how/documentation/release_notes.mdwn index 9f5e9a894616f7cd1053da3939474d70366d8bda..e0038c05d53c608f44c68cff6d15e92c96d01e80 100644 --- a/wiki/src/contribute/how/documentation/release_notes.mdwn +++ b/wiki/src/contribute/how/documentation/release_notes.mdwn @@ -95,9 +95,10 @@ - Add a picture, for example a screenshot from the release notes or the documentation. - Schedule tweets using [TweetDeck](https://tweetdeck.twitter.com/). - - For example, tweet 3-4 times every 2-4 weeks on different days. + - For example, 3 tweets across 6 months for new cool stuff, and + even a few more tweets for very important features. - Hours that might give a good coverage in Europe, the US (East and West coast), and a bit of South-East Asia are 12:00 and - 18:00 UTC. + 18:00 UTC. 18:00 performs a bit better than 12:00. - My understanding is that TweetDeck displays the time as it is on your computer, so UTC if you are in Tails. diff --git a/wiki/src/contribute/how/documentation/release_notes/template.mdwn b/wiki/src/contribute/how/documentation/release_notes/template.mdwn index e78ba9e8c9dc074e9e58ed901db0d8d0a9938b91..9eba969a8273f211f3247a3ad64468910d47f7cc 100644 --- a/wiki/src/contribute/how/documentation/release_notes/template.mdwn +++ b/wiki/src/contribute/how/documentation/release_notes/template.mdwn @@ -22,7 +22,7 @@ vulnerabilities|security/Numerous_security_holes_in_$VERSION-1]]. You should upg # New features -# Changes and upgrades +# Changes and updates <-- You can reuse the following subsections if the section gets too big: @@ -73,7 +73,7 @@ See the list of [[long-standing issues|support/known_issues]]. XXX: Check which IUK will be available with: - git diff origin/master...origin/web/release-$VERSION wiki/src/upgrade/v1/Tails | grep "to_$VERSION" + git diff origin/master...origin/web/release-$VERSION wiki/src/upgrade/v2/Tails | grep "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/translate/with_Transifex.mdwn b/wiki/src/contribute/how/translate/with_Transifex.mdwn index 299c6e9e4ae7c6a0c419de23fd10ecae66527096..9b651937fc6c569718b92f7225b5812e4c2f62cb 100644 --- a/wiki/src/contribute/how/translate/with_Transifex.mdwn +++ b/wiki/src/contribute/how/translate/with_Transifex.mdwn @@ -7,7 +7,6 @@ after logging in with [Transifex](https://www.transifex.com/). Setup](https://www.transifex.com/otf/torproject/3-tails-tails-persistence-setup-pot/) - [Tails Installer](https://www.transifex.com/otf/torproject/3-tails-liveusb-creator-pot/) - [Tails Upgrader](https://www.transifex.com/otf/torproject/tails-tails-iukpot/) -- [Tails Perl library](https://www.transifex.com/otf/torproject/tails-tails-perl5libpot/) - [WhisperBack](https://www.transifex.com/otf/torproject/3-whisperback-whisperback-pot/) - [A set of various translatable strings](https://www.transifex.com/otf/torproject/tails-misc/) diff --git a/wiki/src/contribute/how/user_experience/interviews/mathias.mdwn b/wiki/src/contribute/how/user_experience/interviews/mathias.mdwn index 3cebbd60056bc4aa40f8d02298e80fc96f031708..e7251b25fc55417aeee6f7d48c115a0504a317f6 100644 --- a/wiki/src/contribute/how/user_experience/interviews/mathias.mdwn +++ b/wiki/src/contribute/how/user_experience/interviews/mathias.mdwn @@ -1,27 +1,27 @@ [[!meta title="Mathias, December 2017"]] -Mathias is a 25 years old video technician living in the north of france. He is also a punk hardcore singer, and is involved in several struggles +Mathias is a 25 years old video technician living in the North of France. He is also a punk hardcore singer and involved in several struggles against the capitalist world. -He first used Tor, and didn't really get interested in Tails, +He first used Tor and didn't really get interested in Tails but he went to a discussion about Tails and then downloaded it just to see how it was. He then realized that Tor was not enough -for his needs, that he needed an amnesic operating system. +for his needs and that he needed an amnesic operating system. -He doesn't have much expertise with Tails, at first he had a -hard time understanding that it started from a usb stick and was -independant from the hard drive. +He doesn't have much expertise with Tails. At first he had a +hard time understanding that it started from a USB stick and was +independent from the hard drive. -He has been using it to anonymously upload videos on youtube. +He has been using it to anonymously upload videos on YouTube. The videos were showing a group of skateboarders riding in the -city, wearing masks and sometimes spray painting on the walls. -They wanted their messages to be publicly viewable, while not +city, wearing masks, and sometimes spray painting on the walls. +They wanted their messages to be publicly visible, while not risking to be discovered by the police. -Tails also makes him want to do more illegal things :) +Tails also makes him want to do more illegal things. -He likes that Tails is nomade, simple, and has a persistence support. But +He likes that Tails is nomad, simple, and has a persistence support. But at first he likes the facts that he can feel the presence of human beings behind the project. -And he doesn't have bad things to say about Tails, because he is not doing +He doesn't have bad things to say about Tails because he is not doing crazy things with it and doesn't know it enough. diff --git a/wiki/src/contribute/how/user_experience/interviews/roberto.mdwn b/wiki/src/contribute/how/user_experience/interviews/roberto.mdwn index 74a6595f54f3fb4d3998911f5e4c9daa205f0b3a..8a4f779107afae304942f4e062952cdaf237005c 100644 --- a/wiki/src/contribute/how/user_experience/interviews/roberto.mdwn +++ b/wiki/src/contribute/how/user_experience/interviews/roberto.mdwn @@ -1,8 +1,8 @@ [[!meta title="Roberto, October 2019"]] -Tails: Tell me more about your work and *Leaks*. +**Tails: Tell me more about your work and *Leaks*.** -Roberto: I'm a journalist and I work for an organization that does +**Roberto:** I'm a journalist and I work for an organization that does investigative journalism. I'm in charge of being the first filter for the information that arrives on *Leaks*. @@ -22,10 +22,10 @@ that are working all across the country. When we started the alliance in 2015, it was very hard to include organizations based outside of the capital town because of the technical burden that it represents. -T: Your organization seems to have a lot of technical staff, are you in -a privileged position in comparison with other news rooms? +**T: Your organization seems to have a lot of technical staff, are you in +a privileged position in comparison with other news rooms?** -R: There is a big lack of technical education among the journalists in +**R:** There is a big lack of technical education among the journalists in the country, especially among the ones outside of the capital town. My organization is extremely privileged in this regard. Because technology is a strong strategic line in the organization, because we have some @@ -43,16 +43,16 @@ their staff like we have in our organization. If I change job tomorrow, I'll know how to use all these tools but I'll go back to working on Windows with them. -T: How does the communication between the different news rooms work? +**T: How does the communication between the different news rooms work?** -R: We work as an assembly. I'm responsible for checking the platform +**R:** We work as an assembly. I'm responsible for checking the platform every week. First, I enter GlobaLeaks using Tails. Then, I send a brief on Signal about what could be investigated. We sometimes have in-person meetings or use other communication channels. -T: So you check the platform once a week. How does it go? +**T: So you check the platform once a week. How does it go?** -R: I open Tails. I hate it! +**R:** I open Tails. I hate it! Once a week, I put my other investigations aside and check the platform religiously. We have a dedicated computer that we only use for this, to @@ -72,9 +72,9 @@ Sometimes we receive videos that are 1 hour long. Sometimes I even have to leave the computer running after office hours to download everything. Then I have to stay in the office because I cannot resume the process. -T: Could it be a problem of GlobaLeaks if you cannot resume the process? +**T: Could it be a problem of GlobaLeaks if you cannot resume the process?** -R: If I pause the process, I risk corrupting the files so I need to have +**R:** If I pause the process, I risk corrupting the files so I need to have a full day ahead. Once I downloaded the files, I also have to clean the metadata in order to clean any identifying information before moving them out of this computer. @@ -84,8 +84,8 @@ care of the files. It's not great but it's how it is and I'm not sure how we could improve things as of now. It takes me a whole day but then I'm sure that the information is safe. -T: You also talked about decrypting the files, which of downloading and -decrypting takes more time? +**T: You also talked about decrypting the files, which of downloading and +decrypting takes more time?** Downloading is super slow. It can take 10 minutes to download a photo of 8 MB. We tried using a USB 3.1 but the computer doesn't support that. @@ -97,78 +97,80 @@ Our hypothesis is that the computer recommended by GlobaLeaks is bad. My life is called "patience". -T: Let's do some tests! The USB is Kingston. It takes 3:30 minutes to +**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 -the desktop, 7 connect to the Wi-Fi, 30 to connect to Tor, more than 1 +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. -T: Why don't you use Tails to communicate with the other news rooms? +**T: Why don't you use Tails to communicate with the other news rooms?** -R: We use communication channels that existed before. In-person meetings +**R:** We use communication channels that existed before. In-person meetings are unquestionable. We also use Ubuntu and encrypted emails. After cleaning the metadata, the leaker is not at risk anymore and we use more usual and efficient tools to communicate. -T: What happens when you run out of space? +**T: What happens when you run out of space?** -R: We have backups hidden somewhere. We install Tails on another +**R:** We have backups hidden somewhere. We install Tails on another pendrive. -T: Who's doing these maintenance operations on the Tails pendrive? +**T: Who's doing these maintenance operations on the Tails pendrive?** -R: I send an email to the technical staff that deals with all the +**R:** I send an email to the technical staff that deals with all the technicalities. I couldn't do it myself. I don't have the skills. Maybe I could learn; that would be ideal. I start to understand some of the processes but it's still too complicated for me. -T: What are the things that you could do on your own and the things that -make you call the technical staff? +**T: What are the things that you could do on your own and the things that +make you call the technical staff?** More than anything, they are upgrades constantly. Sometimes it takes us a whole day to do an upgrade and then there's another one the week after. I could do some parts of it but not everything. -Each time there's a upgrade we have to do a backup, I'm not sure if +Each time there's an upgrade we have to do a backup, I'm not sure if that's for security or for technical reasons. GlobaLeaks also have expiring GPG keys and we have to make sure that the GPG keys match or otherwise I could loose files. -T: What would you like to change in Tails if you could? +**T: What would you like to change in Tails if you could?** -R: I find the menu system cumbersome. I lack something more intuitive +**R:** I find the menu system cumbersome. I lack something more intuitive like the application bar in Ubuntu, like in Apple. It's complicated to access the right application with the touchpad as it sometimes jumps from one menu to the other. Sometimes I use a mouse because it's more comfortable. -T: *I open the Activities overview*. Have you seen this screen before? +**T: *I open the Activities overview*. Have you seen this screen before?** -R: No. It's like a multitask screen. But it's an application that will +**R:** No. It's like a multitask screen. But it's an application that will disappear so I don't think that's is a good solution. It's still 1 extra click. -T: What else takes do you think could be simpler? +**T: What else takes do you think could be simpler?** -R: Choosing the network. I don't like it in Ubuntu either. You need 5 +**R:** Choosing the network. I don't like it in Ubuntu either. You need 5 clicks to choose a Wi-Fi network. In macOS you get the list of networks straight away and you're done with 2 clicks instead of 5. The less clicks, the better. -T: What applications do you use in Tails? +**T: What applications do you use in Tails?** -R: I like KeePass a lot. I didn't know it before working here but now I +**R:** I like KeePass a lot. I didn't know it before working here but now I even have it on my Macs. It became irreplaceable. -T: *I open the System Monitor to check the network speed.* +**T: *I open the System Monitor to check the network speed.*** -R: This is very useful! At least you know whether it's stuck or not. +**R:** This is very useful! At least you know whether it's stuck or not. -T: We downloaded 30 MB in 1:30 min. I think that your problem is with -the computer, not the network. +**T: We downloaded 30 MB in 1:30 min. I think that your problem is with +the computer, not the network.** -R: Maybe I'm so pissed off that I always blame the computer. +**R:** Maybe I'm so pissed off that I always blame the computer. -T: We have a help desk with someone who speaks Spanish. +**T: We have a help desk with someone who speaks Spanish.** -R: It would be useful to have their contact. +**R:** It would be useful to have their contact. diff --git a/wiki/src/contribute/how/user_experience/limesurvey.mdwn b/wiki/src/contribute/how/user_experience/limesurvey.mdwn index fe9105f3403f8d73751ee8adfc5644b42fc8f34d..b80a36cf5ddb8a879dc8ce4238bfe982fd6133ff 100644 --- a/wiki/src/contribute/how/user_experience/limesurvey.mdwn +++ b/wiki/src/contribute/how/user_experience/limesurvey.mdwn @@ -56,6 +56,10 @@ Updating LimeSurvey git log master git log origin/master +1. Identity the tag to which to update: + + git tag + 1. Merge the *updates repo* (or the *upstream* repo) into the *production repo*: diff --git a/wiki/src/contribute/l10n_tricks/transifex_translators.sh b/wiki/src/contribute/l10n_tricks/transifex_translators.sh index f5ed104f01589f105e90cc97563e53c1c3dc74aa..81059a3a4b93cc8f4e63bdd5ea76661d7d3a80ca 100755 --- a/wiki/src/contribute/l10n_tricks/transifex_translators.sh +++ b/wiki/src/contribute/l10n_tricks/transifex_translators.sh @@ -3,7 +3,7 @@ set -e set -u -PROJECTS="liveusb-creator tails-iuk tails-misc tails-perl5lib tails-persistence-setup whisperback" +PROJECTS="liveusb-creator tails-iuk tails-misc tails-persistence-setup whisperback" GIT_TOPLEVEL_DIR=$(git rev-parse --show-toplevel) TOR_TRANSLATION_DIR="$GIT_TOPLEVEL_DIR/tmp/tor-translation" diff --git a/wiki/src/contribute/release_process.mdwn b/wiki/src/contribute/release_process.mdwn index 0d8386c7eda42b746ce0f6a36e242d866036d21f..4b79727d4cf0de927f8cc3f681ae684853cb7368 100644 --- a/wiki/src/contribute/release_process.mdwn +++ b/wiki/src/contribute/release_process.mdwn @@ -5,7 +5,8 @@ See the [[release_schedule]]. <div class="caution"> -Read the remainder of this document from the branch used to prepare the release! +Read the remainder of this document from the branch used to prepare the release +after having merged the current master branch into it! </div> Requirements @@ -15,14 +16,10 @@ To release Tails you'll need some packages installed: * `tidy mktorrent transmission-cli` * aufs DKMS module for your running kernel. -* [[!debpts squashfs-tools]]: - - If you're running Stretch or Buster, ensure you have the latest version - from our custom `iukbuilder-stretch` APT suite. - - If you're running Bullseye or sid, install it from sid. -* `tails-iuk` dependencies, including suggested packages (see - `debian/control` in the `debian` branch of its repo) -* `tails-perl5lib` dependencies (same trick as `tails-iuk` to get the - list) +* [[!debpts squashfs-tools]] 1:4.4-1+0.tails1 + from our custom `iukbuilder-stretch` APT suite. +* `iuk` [[dependencies|contribute/release_process/tails-iuk]] +* `perl5lib` [[dependencies|contribute/release_process/perl5lib]] * `po4a` _from Stretch_: the version in testing/sid extracts Markdown headings in a different way, which makes tons of strings fuzzy. @@ -98,12 +95,10 @@ Also export the following environment variables: repository used to prepare the release (`stable` or `testing`). * `TAILS_SIGNATURE_KEY=A490D0F4D311A4153E2BB7CADBB802B258ACD84F` * `TAILS_SIGNATURE_KEY_LONG_ID=$(echo "${TAILS_SIGNATURE_KEY:?}" | perl -nE 'say substr($_, -17)')` -* `IUK_CHECKOUT`: a checkout of the relevant tag of the `iuk` - Git repository. -* `PERL5LIB_CHECKOUT`: a checkout of the relevant tag of the - `perl5lib` Git repository. * `DIST`: either 'alpha' (for RC:s) or 'stable' (for actual releases) * `export WEBSITE_RELEASE_BRANCH="web/release-${TAG:?}"` +* `export IUKS_DIR="${ISOS:?}/iuks/v2"` +* `export IUKS_HASHES="${IUKS_DIR:?}/to_${VERSION}.sha256sum"` Pre-freeze ========== @@ -228,12 +223,12 @@ import translations from Transifex and sanity-check them: git checkout master && \ git pull && \ "${RELEASE_CHECKOUT:?}"/import-translations && \ - "${RELEASE_CHECKOUT:?}"/submodules/jenkins-tools/slaves/check_po + "${RELEASE_CHECKOUT:?}"/submodules/jenkins-tools/slaves/lint_po Then, for every PO file that has issues: 1. Rollback changes to that file: `git checkout po/LL.po` -2. Run `check_po` again. It should pass this time. +2. Run `lint_po` again. It should pass this time. And finally, commit: @@ -244,9 +239,7 @@ Then see the relevant release processes, and upload the packages to the release branch's custom APT suite: * [[tails-installer]] -* [[perl5lib]] * [[persistence-setup]] -* [[tails-iuk]] * whisperback: * follow [upstream release process](https://git-tails.immerda.ch/whisperback/plain/HACKING) * build a Debian package @@ -266,10 +259,10 @@ and commit the result, including new PO files: cd "${RELEASE_CHECKOUT:?}" && \ ./import-translations && \ ./refresh-translations && \ - ./submodules/jenkins-tools/slaves/check_po && \ + ./submodules/jenkins-tools/slaves/lint_po && \ git add po && git commit -m 'Update PO files.' -If `check_po` complains: +If `lint_po` complains: * rollback the offending PO files and retry; worst case, delete it * send a note to <tails-l10n@boum.org> so that they get in touch with @@ -353,12 +346,19 @@ Then, launch an editor for the needed cleanup of the result: Changelog entries can be dispatched into those usual sections: - * Major changes - * Security fixes - * Bugfixes - * Minor improvements and updates - * Build system - * Test suite +<pre> + * Major changes + + * Security fixes + + * Bugfixes + + * Minor improvements and updates + + * Build system + + * Test suite +</pre> Then, gather other useful information from: @@ -401,23 +401,35 @@ matches the date of the future signature. RELEASE_DATE='2015-11-03' - echo "${VERSION:?}" > wiki/src/inc/stable_amd64_version.html - echo -n "${RELEASE_DATE:?}" > wiki/src/inc/stable_amd64_date.html + echo "${VERSION:?}" > wiki/src/inc/stable_amd64_version.html && \ + echo -n "${RELEASE_DATE:?}" > wiki/src/inc/stable_amd64_date.html && \ for type in img iso; do basename="tails-amd64-${VERSION:?}" filename="${basename:?}.${type:?}" echo "TZ=UTC gpg --no-options --keyid-format long --verify ${filename:?}.sig ${filename:?}" \ > wiki/src/inc/stable_amd64_${type:?}_gpg_verify.html && \ echo "http://dl.amnesia.boum.org/tails/stable/${basename:?}/${filename:?}" \ - > wiki/src/inc/stable_amd64_${type:?}_url.html + > wiki/src/inc/stable_amd64_${type:?}_url.html && \ echo "https://tails.boum.org/torrents/files/${filename:?}.sig" \ - > wiki/src/inc/stable_amd64_${type:?}_sig_url.html + > wiki/src/inc/stable_amd64_${type:?}_sig_url.html && \ echo "https://tails.boum.org/torrents/files/${filename:?}.torrent" \ > wiki/src/inc/stable_amd64_${type:?}_torrent_url.html - done - ./build-website + done && \ + ./build-website --rebuild && \ git commit wiki/src/inc/ -m "Update version and date for ${VERSION:?}." +Signing key downloaded by the Upgrader +-------------------------------------- + + TMP_GNUPG_HOME=$(mktemp -d) + gpg --homedir "${TMP_GNUPG_HOME:?}" --import wiki/src/tails-signing.key && \ + gpg --homedir "${TMP_GNUPG_HOME:?}" --export-options export-minimal \ + --armor --export "${TAILS_SIGNATURE_KEY:?}" \ + > wiki/src/tails-signing-minimal.key && \ + git commit wiki/src/tails-signing-minimal.key \ + -m "Update signing key used by the Upgrader" + rm -rf "${TMP_GNUPG_HOME:?}" + Website translations -------------------- @@ -426,13 +438,16 @@ pages that were added or changed accordingly to changes coming with the new release. This e.g. ensures that the RC call for translation points translators to up-to-date PO files: - ./build-website && git add wiki/src && git commit -m 'Update website PO files.' - git push origin "${RELEASE_BRANCH:?}:${RELEASE_BRANCH:?}" + ./build-website && \ + git add wiki/src && \ + git commit -m 'Update website PO files.' + git push origin "${RELEASE_BRANCH:?}:${RELEASE_BRANCH:?}" Call for translation ==================== -If at freeze time, send a call for translations to tails-l10n, making it clear what +If at freeze time for a major release, send a call for translations +to tails-l10n, making it clear what Git branch the translations must be based on, and what are the priorities. @@ -453,8 +468,7 @@ Enable OpenPGP signing If you have an OpenPGP smart card (i.e. if you are one of the usual release managers) go fetch it. Remember to only plug it when needed! A -pro tip is to never plug it unless prompted which `gpg` will do for -you. Then just unplug it as soon as the `.sig` is done. +pro tip is to never plug it unless prompted which `gpg` will do for you. ### Otherwise: importing the signing key @@ -509,8 +523,8 @@ a signed tag, so it can be overridden later. Yes, there is room for improvement here.) XXX: From this push of a tag, the builds in Jenkins fail because we prevent it -to continue if the last debian/changelog entry has a tag. There are workarounds -we need to decide and implement. +to continue if the last changelog entry is unreleased but corresponds to +an existing tag. There are workarounds we need to decide and implement. Prepare the versioned APT suites ================================ @@ -646,23 +660,27 @@ suite should be ready, so it is time to: export BUILD_MANIFEST="${ARTIFACTS:?}/tails-amd64-${VERSION:?}.build-manifest" +<a id="reproducibility-sanity-check-iso"></a> -1. <a id="reproducibility-sanity-check-iso"></a> - Let's sanity check that Jenkins reproduced your images. +Verify that Jenkins reproduced your images +------------------------------------------ + +to verify that Jenkins reproduced your images: - Visit the URL printed by this command: +1. Visit the URL printed by this command: echo "https://jenkins.tails.boum.org/job/build_Tails_ISO_${RELEASE_BRANCH}/" - Find the job (probably the last one) +2. Find the job (probably the last one) and make sure the ISO and USB images built by Jenkins have the same hash (in the `.shasum` file) as the images you built. - Then: +3. Then: - - If all hashes match: yay, we're good to go! + - If the ISO and USB images hashes match: yay, we're good to go! + The `.build-manifest` may differ — that's OK. - Set the `$MATCHING_JENKINS_BUILD_ID` environment variable + Set the `$MATCHING_JENKINS_IMAGES_BUILD_ID` environment variable to the ID of this job (an integer). - If there is a hash mismatch for one of the images: ouch! Now we are in a @@ -713,24 +731,26 @@ suite should be ready, so it is time to: the nature of the reproducibility failure is clearly described. -1. check out a new branch: +Initialize the website release branch +------------------------------------- + +From now on, we don't want to push new commits on `$RELEASE_BRANCH` +until the new release is out. Otherwise, this would break its build +and the build of every branch based on it, which would effectively +block other development work. So the final steps towards publishing +the release will be done in a new, dedicated branch. - If preparing anything but a final release (e.g. an alpha, beta - or RC): +If preparing anything but a final release (e.g. an alpha, beta +or RC): git checkout -b "${WEBSITE_RELEASE_BRANCH:?}" origin/master && \ git push -u origin "${WEBSITE_RELEASE_BRANCH:?}" - Else, if preparing a final release: +Else, if preparing a final release: git checkout -b "${WEBSITE_RELEASE_BRANCH:?}" "${TAG:?}" && \ git push -u origin "${WEBSITE_RELEASE_BRANCH:?}" - (as soon as a new commit is created on `$RELEASE_BRANCH`, its - build will start failing until a new changelog entry is created, - which we don't want to do on `$RELEASE_BRANCH` before it's merged - into `master` at release time) - Generate the OpenPGP signatures and Torrents ============================================ @@ -777,58 +797,158 @@ Lastly, let's set some variables to be used later: Prepare incremental upgrades ============================ -Build the Incremental Upgrade Kits ----------------------------------- +Since Tails 4.2, we use a new upgrade scheme, which fundamentally +changes what the source version number of an upgrade means: it's now +the version that was *initially installed* and *not* the currently +running version. If this is news to you, see: -Incremental upgrades may be skipped if the delta is too big (like when -migrating to a new Debian release) or if there are changes outside of -the scope for IUKs (like partition table changes). Use common sense! +* the document that explains the benefits for our users: + [[blueprint/Endless_upgrades]]; -Use `tails-create-iuk` to build the following IUKs: +* the corresponding + [[design documentation|contribute/design/incremental_upgrades]]. -* From the two previous *planned* releases, and any emergency releases - in between and after. This should be, more or less, all releases for - the last 12 weeks (although irregularities in Firefox release - schedule may add or remove a few weeks). +The main practical implications at release time are: -* From the last RC for the version being released, e.g. 1.0~rc1 to - 1.0. This should be done even if there was no IUK generated from the - previous stable release since it is a good way to test the iuk code - that'll be used for the incremental upgrade paths to the - next version. +* The Release Manager has to publish more IUKs than they used to. + But they can now publish IUKs (reproducibly) built on Jenkins, + instead of having to upload those they've built locally. -Include each such version in a white-space separated list called -`IUK_SOURCE_VERSIONS`, (e.g. `IUK_SOURCE_VERSIONS="2.8 2.9 2.9.1 2.10~rc1"`), optionally setting `TMPDIR` to an existing absolute path where disk space is available, -and run the following: +* The Release Manager has to sign more UDFs than they used to. - for source_version in $(echo ${IUK_SOURCE_VERSIONS:?}); do +* Computing `$IUK_SOURCE_VERSIONS` is now straightforward enough + that it was automated :) + +Prepare the environment +----------------------- + +Compute the list of initial version install to build IUKs for: + + cd "${RELEASE_CHECKOUT:?}" && \ + export IUK_SOURCE_VERSIONS=$(./bin/iuk-source-versions ${VERSION:?}) + echo "${IUK_SOURCE_VERSIONS?:}" + +Even if it's computed automatically, remember to store it in the file +holding environment variables, it will be used in various places below. + +Build the Incremental Upgrade Kits locally +------------------------------------------ + + mkdir -p "${IUKS_DIR:?}" && \ + for source_version in ${IUK_SOURCE_VERSIONS:?}; do + (set -e squashfs_tools_version="$(dpkg-query --showformat '${Version}\n' --show squashfs-tools)" - if dpkg --compare-versions "$squashfs_tools_version" lt '1:4.4-1~'; then - echo 'ERROR! Your squashfs-tools is too old so any generated IUKs will *not* be reproducible!' + if [ "$squashfs_tools_version" != '1:4.4-1+0.tails1' ]; then + echo "ERROR! Your squashfs-tools is not the required version, so any generated IUKs will *not* be reproducible!" break fi - echo "Generating IUK file from ${source_version:?} to ${VERSION:?}" - sudo su -c "cd ${IUK_CHECKOUT:?} && \ - SOURCE_DATE_EPOCH=$SOURCE_DATE_EPOCH \ + IUK="${IUKS_DIR:?}/Tails_amd64_${source_version:?}_to_${VERSION:?}.iuk" + echo "Generating IUK file from ${source_version:?} to ${VERSION:?}:" + echo " ${IUK:?}" + sudo su -c \ + "SOURCE_DATE_EPOCH=$SOURCE_DATE_EPOCH \ LC_ALL=C \ TMPDIR=\"${TMPDIR:-/tmp}\" \ - PERL5LIB=\"${PERL5LIB_CHECKOUT:?}/lib\" \ - ./bin/tails-create-iuk \ - --squashfs-diff-name \"${VERSION:?}.squashfs\" \ - --old-iso \"${ISOS:?}/tails-amd64-${source_version:?}/tails-amd64-${source_version:?}.iso\" \ - --new-iso \"${ISO_PATH:?}\" \ - --outfile \"${ISOS:?}/Tails_amd64_${source_version:?}_to_${VERSION:?}.iuk\"" + PERL5LIB=\"${RELEASE_CHECKOUT:?}/config/chroot_local-includes/usr/src/perl5lib/lib\" \ + ${RELEASE_CHECKOUT:?}/config/chroot_local-includes/usr/src/iuk/bin/tails-create-iuk \ + --squashfs_diff_name \"${VERSION:?}.squashfs\" \ + --old_iso \"${ISOS:?}/tails-amd64-${source_version:?}/tails-amd64-${source_version:?}.iso\" \ + --new_iso \"${ISO_PATH:?}\" \ + --outfile \"${IUK:?}\"" && \ + sudo chown "$(id --user):$(id --group)" "${IUK:?}" && \ + (cd "$(dirname "${IUK:?}")" && sha256sum "$(basename "${IUK:?}")" >> "${IUKS_HASHES:?}") + ) || { echo "ERROR: failure detected for source version: ${source_version?:}"; break; } done -Note that developer tools for creating IUK and upgrade-description -files are primarily developed and tested on Debian sid. They may -therefore occasionally be broken on Debian stable. As of December 2018 -they work fine on Debian Stretch. +This command takes a long time. In parallel, while it is running, +you can follow the next 2 steps: + + - Push the images to our ISO history git-annex repo + - Build the Incremental Upgrade Kits on Jenkins + +ISO history +----------- + +Push the released ISO and USB images and their artifacts (`.buildlog`, +`.build-manifest`, and `.packages` files) to our Tails ISO history git-annex +repo, so that: + + - The Jenkins `build_IUKs` can fetch them. + - Our isotesters can fetch them from there for their testing + +How to do so is described in the `ISO_history.mdwn` document in the RM team's +Git repo. + +Then, wait (a few minutes) until the images appear +on <https://iso-history.tails.boum.org/>. + +<a id="build-iuks-on-jenkins"></a> + +Build the Incremental Upgrade Kits on Jenkins +------------------------------------------ + +1. On <https://jenkins.tails.boum.org/job/build_IUKs/build?delay=0sec>, + fill the form with these values: + + - `TAILS_GIT_COMMIT`: the value of `$TAG` in your release environment + - `SOURCE_DATE_EPOCH`: the value of `$SOURCE_DATE_EPOCH` in your + release environment + - `SOURCE_VERSIONS`: the value of `$IUK_SOURCE_VERSIONS` in your + release environment + - `NEW_VERSION`: the value of `$VERSION` in your release environment + - `EXTRA_ARGS`: leave it blank + +2. Click the _Build_ button + +3. After a few seconds, a new build appears on top of the _Build + History_ sidebar. Click on the progress bar of this new build. + +4. Set the `$CANDIDATE_JENKINS_IUKS_BUILD_ID` environment variable + to the ID of this job (an integer). + +5. Wait until this *build_IUKs* job completes successfully. + It should take about 10-15 minutes for each member of + the `$IUK_SOURCE_VERSIONS` list. <a id="reproducibility-sanity-check-iuk"></a> -Note that we do not yet build IUKs on Jenkins, otherwise here would be -a great point to compare its IUKs with yours. +Verify that Jenkins reproduced your IUKs +---------------------------------------- + + "${RELEASE_CHECKOUT:?}"/bin/copy-iuks-to-rsync-server-and-verify \ + --hashes-file "${IUKS_HASHES:?}" \ + --jenkins-build-id "${CANDIDATE_JENKINS_IUKS_BUILD_ID:?}" + +If this verification succeeds, move on to the next section. + +Else, if this verification fails, then: + +1. Visit the web page whose URL is printed by the following command: + + echo "https://jenkins.tails.boum.org/job/build_IUKs/${CANDIDATE_JENKINS_IUKS_BUILD_ID:?}/parameters/" + + It tells you which parameters you've passed to the Jenkins job. + +2. Double-check that you've passed the correct parameters. + + If you notice you made a mistake, [[build the IUKs on Jenkins + again|release_process#build-iuks-on-jenkins]], and do the + verification again. + + Else, if the parameters where correct, then follow the next steps. + +3. File a ticket about this problem. + + Specify: + + - Which set of parameters you've passed to the *build_IUKs* + job, so that the person who'll investigate the problem + can reproduce it. + - The ID of the build that failed to reproduce your + locally-built IUKs. + +4. Later on, after you're done with OpenPGP signing, + you will upload the IUKs you've built locally. <a id="prepare-upgrade-description-files"></a> @@ -854,77 +974,43 @@ Prepare upgrade-description files and for the next one, that expresses that *no* upgrade is available for these ones yet. - This is what the `--version` and `--next-version` arguments + This is what the `--version` and `--next_version` arguments in the example command below do. You do not need to modify them. - 2. For every previous release listed in `$IUK_SOURCE_VERSIONS`, - i.e. those that will have a direct incremental upgrade path to - the version being released: create or update its - upgrade-description file to advertise this direct incremental - upgrade path. - - This is what the `--previous-version` arguments generated by the - example command below do. You do not need to modify that part. - - 3. For every recently supported previous release that's _not_ - listed in `$IUK_SOURCE_VERSIONS` (i.e. releases that have no - _direct_ incremental upgrade path to the version being - released): - - - If there's a _multi-step incremental upgrade path_ from this - previous version to the version being released (e.g. by first - upgrading to a version that's in `$IUK_SOURCE_VERSIONS`): tell - the users of that old version to go through this multi-step - incremental upgrade path, i.e. leave its upgrade-description - file unmodified (it already advertises the first step of - this multi-step path). - - To do so, ensure you do not manually pass this previous - release to `--previous-version`. The example command below - does the right thing in this respect already, so this - constraint only matters if you have other reasons to modify - the command. - - - Else, if there's _no incremental upgrade path, be it direct - or multi-step_, from this previous version to the version - being released (which happens for example when releasing - Tails based on a new version of Debian and when we - unintentionally broke incremental upgrades recently): tell the users - of that old version they need to manually upgrade to the version - being released. - - To do so, pass this previous version to `--previous-version`. - You need to do this manually as the example command below - won't do it automatically. + 2. For every recent previous release that's _not_ listed in + `$IUK_SOURCE_VERSIONS` (i.e. those based on an older Debian + release): tell the users of that old version they need to + manually upgrade to the version being released. + + To do so, pass this previous version to `--previous_version`. + You need to do this manually as the example command below won't + do it automatically. Run this command, after adjusting it if needed as explained above: - ( cd ${IUK_CHECKOUT:?} && \ - ./bin/tails-iuk-generate-upgrade-description-files \ - --build-target amd64 \ + ${RELEASE_CHECKOUT:?}/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-generate-upgrade-description-files \ --version "${VERSION:?}" \ $( \ if [ "${DIST:?}" = stable ]; then echo \ - --next-version "${NEXT_PLANNED_MAJOR_VERSION:?}" \ - --next-version "${NEXT_PLANNED_MAJOR_VERSION:?}~rc1" \ - --next-version "${NEXT_PLANNED_BUGFIX_VERSION:?}" \ - --next-version "${NEXT_POTENTIAL_EMERGENCY_VERSION:?}" + --next_version "${NEXT_PLANNED_MAJOR_VERSION:?}" \ + --next_version "${NEXT_PLANNED_MAJOR_VERSION:?}~rc1" \ + --next_version "${NEXT_PLANNED_BUGFIX_VERSION:?}" \ + --next_version "${NEXT_POTENTIAL_EMERGENCY_VERSION:?}" else - echo --next-version $(echo ${VERSION:?} | sed -e 's,~.*$,,') + echo --next_version $(echo ${VERSION:?} | sed -e 's,~.*$,,') fi ) \ $( \ for version in $(echo ${IUK_SOURCE_VERSIONS:?}); do - echo "--previous-version ${version:?}" + echo "--previous_version ${version:?}" done \ ) \ --iso "${ISO_PATH:?}" \ - --iuks "${ISOS:?}" \ - --release-checkout "${RELEASE_CHECKOUT:?}" \ - --major-release "${MAJOR_RELEASE:?}" \ + --iuks "${IUKS_DIR:?}" \ + --release_checkout "${RELEASE_CHECKOUT:?}" \ + --major_release "${MAJOR_RELEASE:?}" \ --channel "${DIST:?}" - ) 1. Create an armoured detached signature for each created or modified upgrade-description file. @@ -940,10 +1026,8 @@ Prepare upgrade-description files && break done mv --force "${udf:?}.asc" "${udf:?}.pgp" - ( \ - cd ${IUK_CHECKOUT:?} && \ - ./bin/tails-iuk-check-upgrade-description-file "${udf:?}" \ - ) || break + ${RELEASE_CHECKOUT:?}/config/chroot_local-includes/usr/src/iuk/bin/tails-iuk-check-upgrade-description-file "${udf:?}" \ + || break fi done @@ -965,9 +1049,9 @@ Prepare upgrade-description files cd ${MASTER_CHECKOUT:?} && \ git fetch && \ git merge origin/master && \ - for old_version in $(echo ${IUK_SOURCE_VERSIONS:?}); do - release_udf="wiki/src/upgrade/v1/Tails/${old_version:?}/amd64/${DIST:?}/upgrades.yml" && \ - test_udf="wiki/src/upgrade/v1/Tails/${old_version:?}/amd64/test/upgrades.yml" && \ + for old_version in $(echo ${IUK_SOURCE_VERSIONS:?} ${VERSION:?}); do + release_udf="wiki/src/upgrade/v2/Tails/${old_version:?}/amd64/${DIST:?}/upgrades.yml" && \ + test_udf="wiki/src/upgrade/v2/Tails/${old_version:?}/amd64/test/upgrades.yml" && \ mkdir -p "$(dirname "$test_udf")" && \ git show origin/${WEBSITE_RELEASE_BRANCH:?}:${release_udf:?} \ | sed -e "s/channel: ${DIST:?}/channel: test/" > ${test_udf:?} && \ @@ -980,7 +1064,7 @@ Prepare upgrade-description files ) XXX: ideally, we should also copy the UDFs that only advertise - a direct, full upgrade path to the version we're releasing, so that + a full upgrade path to the version we're releasing, so that we can manually test that these upgrade paths work as expected. Our manual test suite already has everything in place for this. @@ -998,7 +1082,8 @@ Update the image description file (IDF) used by the browser extension: > "${RELEASE_CHECKOUT:?}"/wiki/src/install/v2/Tails/amd64/stable/latest.json && \ ( cd "${RELEASE_CHECKOUT:?}" && \ git add wiki/src/install/v2/Tails/amd64/stable/latest.json && \ - git commit -m "Update IDF file for Tails Verification." ) + git commit -m "Update IDF file for Tails Verification." && \ + git push origin "${WEBSITE_RELEASE_BRANCH:?}" ) Done with OpenPGP signing ========================= @@ -1032,11 +1117,13 @@ above). Publish the ISO, IMG, and IUKs over HTTP ---------------------------------------- -Upload the IUKs to our rsync server: +If the IUKs reproducibility check you did earlier has failed, +then upload the IUKs you've built to our rsync server +(we trust your machine more than our Jenkins): for source_version in $(echo ${IUK_SOURCE_VERSIONS:?}); do rsync --partial --inplace --progress -v \ - "${ISOS:?}/Tails_amd64_${source_version:?}_to_${VERSION:?}.iuk" \ + "${IUKS_DIR:?}/Tails_amd64_${source_version:?}_to_${VERSION:?}.iuk" \ rsync.lizard: done @@ -1055,8 +1142,8 @@ and on the live website (even for a release candidate): | ssh rsync.lizard gpg --import ssh rsync.lizard << EOF wget --quiet \ - "https://nightly.tails.boum.org/build_Tails_ISO_${RELEASE_BRANCH:?}/builds/${MATCHING_JENKINS_BUILD_ID:?}/archive/build-artifacts/tails-amd64-${VERSION:?}.iso" \ - "https://nightly.tails.boum.org/build_Tails_ISO_${RELEASE_BRANCH:?}/builds/${MATCHING_JENKINS_BUILD_ID:?}/archive/build-artifacts/tails-amd64-${VERSION:?}.img" && \ + "https://nightly.tails.boum.org/build_Tails_ISO_${RELEASE_BRANCH:?}/builds/${MATCHING_JENKINS_IMAGES_BUILD_ID:?}/archive/build-artifacts/tails-amd64-${VERSION:?}.iso" \ + "https://nightly.tails.boum.org/build_Tails_ISO_${RELEASE_BRANCH:?}/builds/${MATCHING_JENKINS_IMAGES_BUILD_ID:?}/archive/build-artifacts/tails-amd64-${VERSION:?}.img" && \ gpg --verify tails-amd64-${VERSION:?}.iso{.sig,} && \ gpg --verify tails-amd64-${VERSION:?}.img{.sig,} EOF @@ -1081,7 +1168,7 @@ and on the live website (even for a release candidate): git push origin master ) -Once the IUKs are uploaded, move them IUKs in place with proper +Move the IUKs in place with proper ownership and permissions and update the time in `project/trace` file on our rsync server and on the live website (even for a release candidate): @@ -1090,7 +1177,7 @@ candidate): sudo chown root:rsync_tails Tails_amd64_*_to_${VERSION:?}.iuk && \ sudo chmod u=rwX,go=rX Tails_amd64_*_to_${VERSION:?}.iuk && \ sudo mv Tails_amd64_*_to_${VERSION:?}.iuk \ - /srv/rsync/tails/tails/${DIST:?}/iuk/ + /srv/rsync/tails/tails/${DIST:?}/iuk/v2/ EOF TRACE_TIME=$(date +%s) && @@ -1139,7 +1226,7 @@ Now you can announce and seed the Torrents for the release you're preparing: cd "${torrent_dirname:?}" && \ mv "../${image_filename:?}.sig" . && \ wget --quiet \ - "https://nightly.tails.boum.org/build_Tails_ISO_${RELEASE_BRANCH:?}/builds/${MATCHING_JENKINS_BUILD_ID:?}/archive/build-artifacts/${image_filename:?}" && \ + "https://nightly.tails.boum.org/build_Tails_ISO_${RELEASE_BRANCH:?}/builds/${MATCHING_JENKINS_IMAGES_BUILD_ID:?}/archive/build-artifacts/${image_filename:?}" && \ gpg --verify ${image_filename:?}{.sig,} && \ cd && \ chgrp -R debian-transmission "${torrent_dirname:?}" && \ @@ -1154,13 +1241,6 @@ Now you can announce and seed the Torrents for the release you're preparing: Test that you can start downloading the ISO and USB images with a BitTorrent client. -ISO history ------------ - -Push the released ISO and USB images and their artifacts (`.buildlog`, `.build-manifest`, and `.packages` files) to our Tails ISO history git-annex repo, so that -our isotesters can fetch them from there for their testing. How to do so -is described in the `ISO_history.mdwn` document in the RM team's Git repo. - Testing ======= @@ -1520,14 +1600,16 @@ this, and skip what does not make sense for a RC. then re-run `ssh bittorrent.lizard transmission-remote --list` and make sure everything looks good 1. Remove any remaining RC for the just-published release from `rsync.lizard:/srv/rsync/tails/tails/alpha/` -1. Remove IUKs that are more than 9 months old from - `/{stable,alpha}/iuk` on the rsync server: +1. If you've published a final release, remove IUKs that upgrade to an + older version as they were superseded by this release: + - first check that it's not going to remove anything we want to keep: ssh rsync.lizard /bin/sh -c \ - \"find /srv/rsync/tails/tails/alpha \ - /srv/rsync/tails/tails/stable \ - -type f -name '*.iuk' -mtime '+270' \ + \"find /srv/rsync/tails/tails/alpha/iuk/v2 \ + /srv/rsync/tails/tails/stable/iuk/v2 \ + -type f -name '*.iuk' \ + -not -name "*_to_${VERSION:?}.iuk" \ -not -name '*~test_*~test.iuk' \ -not -name '*~testoverlayfs_*~testoverlayfs.iuk' \ -ls \ @@ -1536,9 +1618,10 @@ this, and skip what does not make sense for a RC. - then actually delete the files: ssh rsync.lizard /bin/sh -c \ - \"sudo find /srv/rsync/tails/tails/alpha \ - /srv/rsync/tails/tails/stable \ - -type f -name '*.iuk' -mtime '+270' \ + \"find /srv/rsync/tails/tails/alpha/iuk/v2 \ + /srv/rsync/tails/tails/stable/iuk/v2 \ + -type f -name '*.iuk' \ + -not -name "*_to_${VERSION:?}.iuk" \ -not -name '*~test_*~test.iuk' \ -not -name '*~testoverlayfs_*~testoverlayfs.iuk' \ -delete \ @@ -1567,7 +1650,7 @@ this, and skip what does not make sense for a RC. rm -rf "${bare_repo:?}" 1. On the `stable` and `devel` branches, remove all old versions - that were never released from `wiki/src/upgrade/v1/Tails` and + that were never released from `wiki/src/upgrade/v2/Tails` and `debian/changelog`. Explanation: the post-release APT repository steps from the previous stable release will usually have had us prepare for an emergency release that was @@ -1603,12 +1686,18 @@ this, and skip what does not make sense for a RC. echo "Warning: origin '${ARCHIVE:?}' is using the 'latest' snapshot, which is unexpected" >&2 fi else - if [ "${ARCHIVE:?}" = 'debian-security' ]; then - DIST='stretch/updates' - else - DIST='stable' - fi - EXPIRY="$(curl --silent "http://time-based.snapshots.deb.tails.boum.org/${ARCHIVE:?}/dists/${DIST:?}/snapshots/${SERIAL:?}/Release" | sed -n 's/^Valid-Until:\s\+\(.*\)$/\1/p')" + case "${ARCHIVE:?}" in + 'debian-security') + DIST='buster/updates' + ;; + 'torproject') + DIST='buster' + ;; + *) + DIST='stable' + ;; + esac + EXPIRY="$(curl --silent "http://time-based.snapshots.deb.tails.boum.org/${ARCHIVE:?}/dists/${DIST:?}/snapshots/${SERIAL:?}/Release" | sed -n 's/^Valid-Until:\s\+\(.*\)$/\1/p')" fi echo "* Archive '${ARCHIVE:?}' uses snapshot '${SERIAL:?}' which expires on: ${EXPIRY:?}" done @@ -1625,14 +1714,23 @@ this, and skip what does not make sense for a RC. 1. Ensure the next two releases have their own _Release Manager View_. 1. On the [[!tails_roadmap]], update the *Due date* for the *Holes in the Roof* so that this section appears after the next release. +1. In [[contribute/calendar]], remove the entries about the version that you've + just released. 1. Check the Mozilla release calendars: - * [Google calendar](https://www.google.com/calendar/embed?src=mozilla.com_2d37383433353432352d3939%40resource.calendar.google.com) - * [Release schedule](https://wiki.mozilla.org/Release_Management/Calendar) + + * [Google calendar](https://www.google.com/calendar/embed?src=mozilla.com_2d37383433353432352d3939%40resource.calendar.google.com) + * [Release schedule](https://wiki.mozilla.org/Release_Management/Calendar) + + If the upcoming release date in the Mozilla calendar does not match + what we have in [[contribute/calendar]], then alert + <tails-dev@boum.org>, <tails-rm@boum.org>, and explicitly Cc the + designated RM for that upcoming release. + 1. Announce the date of the next release on <tails-dev@boum.org> and <tails-l10n@boum.org>. - - Bcc the usual testers (see `manual_testers.mdwn` in the RM team's - Git repository), asking them to privately tell the RM for that release - whether they can do manual testing on release day. + - Bcc the usual testers (see `manual_testers.mdwn` in the RM team's + Git repository), asking them to privately tell the RM for that release + whether they can do manual testing on release day. 1. If you are the release manager for the next release too, look at the tasks that must be done at the beginning of your shift in the [[release manager role page|contribute/working_together/roles/release_manager]]. diff --git a/wiki/src/contribute/release_process/perl5lib.mdwn b/wiki/src/contribute/release_process/perl5lib.mdwn index 94f0dc31ee1a532af7fe4221eac152d4588976d6..949cfdddbbc12814dd84bdd2db0d9980e074a74d 100644 --- a/wiki/src/contribute/release_process/perl5lib.mdwn +++ b/wiki/src/contribute/release_process/perl5lib.mdwn @@ -1,98 +1,20 @@ -[[!meta title="Releasing perl5lib"]] +[[!meta title="Testing perl5lib"]] [[!toc levels=1]] +Everything on this page happens in the +`config/chroot_local-includes/usr/src/perl5lib` directory. + Install build and test dependencies =================================== - git checkout master && \ - sudo apt install \ - devscripts \ - dh-make-perl \ - libdist-zilla-app-command-authordebs-perl && \ - dzil authordebs --install && \ - git checkout debian && \ - mk-build-deps -i -r --root-cmd sudo - -Update POT and PO files -======================= - - git checkout master && \ - ( cd po && make pot && make update-po ) && \ - git add po && \ - git commit -m 'Update POT and PO files.' - -Make an upstream release -======================== - - git checkout master - -Enable new translations in `po/PACKAGE` and commit. - -Export new upstream version number: - - export VERSION=XXX - -Update version number in `lib/Tails.pm`, commit all -files that need to be, run the upstream test suite, build an upstream -tarball, tag the release, move the tarball out of the build repository -and clean it up: - - perl -pi -E 's,^Version [0-9.]+,Version $ENV{VERSION},' lib/Tails.pm && \ - perl -pi \ - -E "s,^our \\\$VERSION = '[0-9.]+';\$,our \\\$VERSION = '$VERSION';," \ - lib/Tails.pm && \ - git commit lib/Tails.pm -m "Tails-perl5lib $VERSION" && \ - RELEASE_TESTING=1 dzil test && \ - dzil build && \ - git tag -s "Tails-perl5lib_$VERSION" -m "Tails-perl5lib $VERSION" && \ - mv Tails-perl5lib-*.tar.gz .. && \ - git clean -fdx - -Update the Debian package -========================= - -Checkout the branch with Debian package specifics, import the new -upstream tarball, update `debian/changelog`: - - git checkout debian && \ - gbp import-orig --upstream-vcs-tag=Tails-perl5lib_$VERSION \ - ../Tails-perl5lib-$VERSION.tar.gz && \ - gbp dch --auto --spawn-editor=always - -(Do not forget to set the appropriate release.) - -Update the packaging (e.g. look at changes in `dist.ini`), -and then update `debian/changelog` again if needed. - -Commit `debian/changelog`: - - git commit debian/changelog \ - -m "$(echo "$(dpkg-parsechangelog -SSource) ($(dpkg-parsechangelog -SVersion))\n\nGit-Dch: Ignore\n")" - -Build a Debian package (use a Buster/amd64 chroot): - - 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 + cat $(git rev-parse --show-toplevel)/config/chroot_local-packageslists/tails-perl5lib.list \ + | grep -E -v '^#' \ + | xargs sudo apt install && \ + sudo apt install libdist-zilla-app-command-authordebs-perl && \ + dzil authordebs --install -Upload: +Run the test suite +================== - dupload --to tails $CHANGES_FILE + RELEASE_TESTING=1 dzil test diff --git a/wiki/src/contribute/release_process/tails-iuk.mdwn b/wiki/src/contribute/release_process/tails-iuk.mdwn index 05cf8c834bab0cbb337fe74df6ddab7e3bfa381b..d46a87819d79177c3ee6522890458ddb92706e0d 100644 --- a/wiki/src/contribute/release_process/tails-iuk.mdwn +++ b/wiki/src/contribute/release_process/tails-iuk.mdwn @@ -1,126 +1,71 @@ -[[!meta title="Releasing tails-iuk"]] +[[!meta title="Generating IUKs, UDFs, and testing the Upgrader"]] [[!toc levels=1]] +Everything on this page happens in the +`config/chroot_local-includes/usr/src/iuk` directory. + Pre-requisites ============= * a Debian Stretch (or newer) system -* Tails' `devel` APT suite enabled -* the right version of the `tails-perl5lib` package installed * a user that has sudo credentials * Environment: - Export location of a checkout of the `stable` branch of the main Tails Git repository: - export TAILS_GIT_CHECKOUT="$RELEASE_CHECKOUT" + export TAILS_GIT_CHECKOUT="/path/to/your/tails/git/repo" -Install build and test dependencies -=================================== +Install dependencies needed to generate IUKs, UDFs, and to run the test suite +============================================================================= - git checkout master && \ + cat $(git rev-parse --show-toplevel)/config/chroot_local-packageslists/tails-iuk.list \ + | grep -E -v '^#' \ + | xargs sudo apt install && \ sudo apt install \ - devscripts \ - dh-make-perl \ libdist-zilla-app-command-authordebs-perl && \ dzil authordebs --install && \ - git checkout debian && \ - mk-build-deps -i -r --root-cmd sudo - -Update POT and PO files -======================= - - git checkout master && \ - "${TAILS_GIT_CHECKOUT:?}"/import-translations && \ - "${TAILS_GIT_CHECKOUT:?}"/submodules/jenkins-tools/slaves/check_po && \ - git add po && \ - git commit -m 'Update POT and PO files, pull updated translations from Transifex.' - -Make an upstream release -======================== - - git checkout master - -Enable new translations in `po/PACKAGE` and commit. - -Export new upstream version number: - - export VERSION=XXX - -Export source date epoch: + sudo apt install \ + bsdtar \ + libdevice-cdio-perl \ + dosfstools \ + faketime \ + gdisk \ + genisoimage \ + gnutls-bin \ + kpartx \ + libdata-dumper-concise-perl \ + libdatetime-perl \ + libfile-copy-recursive-perl \ + rsync \ + squashfs-tools \ + syslinux + +Run the test suite +================== + +Prepare your environment (which includes getting a `sudo` authentication token, +that's needed by the test suite, and setting a `umask` that runs the tests in +conditions closer to production): export SOURCE_DATE_EPOCH=$(date --utc +%s) - -Update version number in `bin/tails-create-iuk`, commit all files that -need to be. - - perl -pi -E 's,^Version [0-9.]+,Version $ENV{VERSION},' bin/tails-create-iuk && \ - perl -pi -E \ - "s,^our \\\$VERSION = '[0-9.]+';\$,our \\\$VERSION = '$VERSION';," \ - bin/tails-create-iuk && \ - git commit bin/tails-create-iuk -m "tails-iuk $VERSION" - -Run the upstream test suite: - - # get an authentication token, needed by the test suite sudo true - # run the tests in closer to real conditions umask 077 - # Run the test suite +Run the upstream test suite with aufs: + + export UNION_TYPE=aufs NODE_PATH="${TAILS_GIT_CHECKOUT}/submodules/mirror-pool-dispatcher/lib/js" \ PATH="${TAILS_GIT_CHECKOUT}/submodules/mirror-pool-dispatcher/bin:$PATH" \ RELEASE_TESTING=1 \ LC_ALL=C \ 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-iuk $VERSION" && \ - mv Tails-IUK*.tar.gz .. && git clean -fdx - -Update the Debian package -========================= +Run the upstream test suite with overlayfs: -Checkout the branch with Debian package specifics and import the new -upstream tarball, update `debian/changelog`: - - git checkout debian && \ - gbp import-orig --upstream-vcs-tag=$VERSION \ - ../Tails-IUK-$VERSION.tar.gz && \ - gbp dch --auto --spawn-editor=always - -(Do not forget to set the appropriate release.) - -Update the packaging (e.g. look at changes in `dist.ini`), -and then update `debian/changelog` again if needed. - -Commit `debian/changelog`: - - git commit debian/changelog \ - -m "$(echo -e "$(dpkg-parsechangelog -SSource) ($(dpkg-parsechangelog -SVersion))\n\nGit-Dch: Ignore\n")" - -Build a Debian package (use a Buster/amd64 chroot, that has -either tails-perl5lib -installed or the Tails APT repository configured): - - gbp buildpackage && \ - gbp buildpackage --git-tag-only --git-sign-tags && \ - git push --follow-tags origin \ - master:master \ - debian:debian \ - pristine-tar:pristine-tar \ - upstream:upstream - -Add the Debian package to Tails -=============================== - -Sign the package: - - debsign $CHANGES_FILE - -Upload: - - dupload --to tails $CHANGES_FILE + export UNION_TYPE=overlayfs + NODE_PATH="${TAILS_GIT_CHECKOUT}/submodules/mirror-pool-dispatcher/lib/js" \ + PATH="${TAILS_GIT_CHECKOUT}/submodules/mirror-pool-dispatcher/bin:$PATH" \ + RELEASE_TESTING=1 \ + LC_ALL=C \ + dzil test diff --git a/wiki/src/contribute/release_process/test.mdwn b/wiki/src/contribute/release_process/test.mdwn index 956f5870cf437c19b03c02dbd78bc1aff3c3019b..d12ee47eb5a7762ccb1a6c446633b4e738dcf0e6 100644 --- a/wiki/src/contribute/release_process/test.mdwn +++ b/wiki/src/contribute/release_process/test.mdwn @@ -226,70 +226,30 @@ at the application level: # Incremental upgrades -* List the versions from which an upgrade path to this one is described. - On the up-to-date `master` branch in a local - [[clone of the Tails Git repository|contribute/git#main-repo]]: +1. Install _from scratch_ on a USB stick the previous Tails stable release + (that is, at this time, the current published one). + A system that was upgraded to that version will not do. - git grep -E -l " version: '?0.23'?" \ - wiki/src/upgrade/v1/Tails/*/*/test/upgrades.yml +2. Start from that USB stick. - … replacing "0.23" with the version you are testing. +3. Set an administration password in the _Greeter_. -* For each description file, open it and verify if it allows incremental upgrade - or only full upgrade. - -* For each previous version from which an upgrade path is described, install it - and try to upgrade: - * For every incremental upgrade path: make sure the resulting updated - system "works fine" (boots, pretends to be the correct version, - and the following components work fine: Tor, Tor Browser, Unsafe Browser). - * For upgrade paths that only propose a full upgrade: make sure the - user is told to do a manual upgrade. - - If: - - * the update-description files have been published on the - *test* channel already (see <https://tails.boum.org/upgrade/v1/Tails/>) - * and the IUK has been published already (see - <https://archive.torproject.org/amnesia.boum.org/tails/alpha/> - and <https://archive.torproject.org/amnesia.boum.org/tails/stable/>): - - then: +4. Upgrade to the version we're testing: sudo sh -c 'sed -i /^TAILS_CHANNEL=/d /etc/os-release && echo TAILS_CHANNEL=\"test\" >> /etc/os-release' && \ systemctl --user restart tails-upgrade-frontend.service - Else, use a local test setup: - - * A web server on the LAN. - * A copy of `wiki/src/upgrade` from the `stable` or `testing` branch, - for example in `/var/www/tails/upgrade/v1/Tails/3.14~rc2/amd64/stable/updates.yml` - * A copy of the `iuk` directory of our HTTP mirrors, - for example in `/var/www/tails/stable/iuk/Tails_amd64_3.14-rc2_to_3.14.iuk`. - - To synchronize your local copy: - - torsocks rsync -rt --progress --delete mirrors.rsync.tails.boum.org::amnesia-archive/tails/stable/iuk/ /var/www/tails/stable/iuk/ - - * Patch `/etc/hosts` in Tails to point to your web server: - - echo "192.168.1.4 dl.amnesia.boum.org" | sudo tee --append /etc/hosts +5. Once the upgrade has been applied and you're suggested to restart Tails, + do that. - * Patch sudo configuration to allow passing arbitrary arguments to - `tails-upgrade-frontend`: +6. Verify that the resulting, upgraded system "works fine": - sudo sed -i \ - -e 's,/usr/bin/tails-upgrade-frontend ""$,/usr/bin/tails-upgrade-frontend,' \ - /etc/sudoers.d/zzz_upgrade - - * Run the upgrader. It must be called, from inside the system to upgrade, - with every needed option to use the local web server rather than the - online one, for example: - - DISABLE_PROXY=1 SSL_NO_VERIFY=1 \ - tails-upgrade-frontend-wrapper --override-baseurl \ - http://192.168.1.4/tails + * it boots + * it pretends to be the correct version + * Tor works fine + * Tor Browser works fine + * the Unsafe Browser starts # Tails Verification @@ -327,8 +287,6 @@ 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. -### USB - 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 @@ -336,14 +294,6 @@ of files in the SquashFS, which might make them boot somewhat slower. 3. Compare with the boot time of the previous Tails version. The new one should not be significantly slower to start. -### DVD - -1. Boot on bare-metal from DVD, 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 - one should not be significantly slower to start. - # Documentation * The "Tails documentation" desktop launcher should open the @@ -400,5 +350,6 @@ identifying other language names in): # Misc * Check that all seems well during init: (automate: [[!tails_ticket 10277]]) - - `systemctl --failed --all` should say `0 loaded units listed` + - `systemctl --failed --all` should either say `0 loaded units listed`, + or list `rng-tools.service` as the only unit in `failed` state. - the output of `sudo journalctl` should seem OK. diff --git a/wiki/src/contribute/release_process/test/reproducibility.mdwn b/wiki/src/contribute/release_process/test/reproducibility.mdwn index 484492a61fc80b6b7c2262a1aca71a70c2a6c2db..0a1ea704b56580284b2e4226bdf92a887e571538 100644 --- a/wiki/src/contribute/release_process/test/reproducibility.mdwn +++ b/wiki/src/contribute/release_process/test/reproducibility.mdwn @@ -38,8 +38,6 @@ following variables as instructed: * `ISOS` * `RELEASE_BRANCH` * `VERSION` -<!-- * `IUK_CHECKOUT` --> -<!-- * `PERL5LIB_CHECKOUT` --> <!-- Now for the only tricky part, setting `IUK_SOURCE_VERSIONS`. It should --> <!-- simply list the old Tails versions that will get an automatic upgrade --> @@ -138,26 +136,13 @@ Set these environment variables accordingly: <!-- cp --dereference --recursive "${tails_dir}" "${ISOS:?}" --> <!-- done --> -<!-- 2. Set your `iuk` and `perl5lib` Git checkouts to the desired state: --> +<!-- 2. Set your `iuk` Git checkout to the desired state: --> -<!-- PERL5LIB_VERSION="$(awk '/^tails-perl5lib\s/ { print $2 }' "${PACKAGES_FILE:?}")" && \ --> -<!-- if [ -z "${PERL5LIB_VERSION}" ]; then --> -<!-- echo 'Failed to determine PERL5LIB_VERSION, aborting' && \ --> -<!-- false --> -<!-- fi && \ --> -<!-- PERL5LIB_CHECKOUT_TAG="debian/${PERL5LIB_VERSION}" && \ --> <!-- IUK_VERSION="$(awk '/^tails-iuk\s/ { print $2 }' "${PACKAGES_FILE:?}")" && \ --> <!-- if [ -z "${IUK_VERSION}" ]; then --> <!-- echo 'Failed to determine IUK_VERSION, aborting' && \ --> <!-- false --> -<!-- fi && \ --> -<!-- IUK_CHECKOUT_TAG="debian/${IUK_VERSION}" --> -<!-- cd "${PERL5LIB_CHECKOUT:?}" && \ --> -<!-- git fetch && \ --> -<!-- git checkout "${PERL5LIB_CHECKOUT_TAG:?}" && \ --> -<!-- cd "${IUK_CHECKOUT:?}" && \ --> -<!-- git fetch && \ --> -<!-- git checkout "${IUK_CHECKOUT_TAG:?}" --> +<!-- fi --> <!-- 3. Follow the [[Build the Incremental Upgrade --> <!-- Kits|contribute/release_process#prepare-iuk]] instructions. Note that --> @@ -253,7 +238,7 @@ Then check that the hashes and sizes match what you have built: <!-- Examine each UDF by running: --> <!-- for old_version in ${IUK_SOURCE_VERSIONS}; do --> -<!-- url=https://tails.boum.org/upgrade/v1/Tails/${old_version}/amd64/${DIST:?}/upgrades.yml --> +<!-- url=https://tails.boum.org/upgrade/v2/Tails/${old_version}/amd64/${DIST:?}/upgrades.yml --> <!-- ( --> <!-- echo "Looking at '${url}':" --> <!-- echo --> @@ -272,7 +257,7 @@ Then check that the hashes and sizes match what you have built: <!-- for old_version in ${IUK_SOURCE_VERSIONS}; do --> <!-- cat <<EOF --> -<!-- Expected values for https://tails.boum.org/upgrade/v1/Tails/${old_version}/amd64/${DIST:?}/upgrades.yml: --> +<!-- Expected values for https://tails.boum.org/upgrade/v2/Tails/${old_version}/amd64/${DIST:?}/upgrades.yml: --> <!-- sha256: $(sha256sum "${ISOS:?}/Tails_amd64_${old_version}_to_${VERSION:?}.iuk" | cut -f 1 -d ' ' | tr -d '\n') --> <!-- size: $(du --bytes "${ISOS:?}/Tails_amd64_${old_version}_to_${VERSION:?}.iuk" | cut -f1) --> diff --git a/wiki/src/contribute/release_process/tor-browser.mdwn b/wiki/src/contribute/release_process/tor-browser.mdwn index ee405aad598824d7e9cb6d8e6c79d7f80e587f1f..09d0261ef225b564728e597a1365736a950b796b 100644 --- a/wiki/src/contribute/release_process/tor-browser.mdwn +++ b/wiki/src/contribute/release_process/tor-browser.mdwn @@ -41,10 +41,8 @@ Have a look at * <https://archive.torproject.org/tor-package-archive/torbrowser/?C=M;O=D> * <https://www.torproject.org/dist/torbrowser/?C=M;O=D> -* <https://people.torproject.org/~mikeperry/builds/?C=M;O=D> * <https://people.torproject.org/~gk/builds/?C=M;O=D> * <https://people.torproject.org/~boklm/builds/?C=M;O=D> -* <https://people.torproject.org/~linus/builds/?C=M;O=D> and see if the desired version is available. Set `TBB_DIST_URL` to the chosen URL, and set `TBB_VERSION` to the desired Tor Browser version, for @@ -60,19 +58,25 @@ Ensure you include the "-buildN" part. Fetch the version's hash file and its detached signature, and verify with GnuPG: - wget ${TBB_DIST_URL}/sha256sums-unsigned-build.txt{.asc,} && \ + wget ${TBB_DIST_URL:?}/sha256sums-unsigned-build.txt{.asc,} && \ gpg --verify sha256sums-unsigned-build.txt{.asc,} -Filter the tarballs we want and make them available at build time, +Build the list of tarballs we want and their hashes, +so this information is available at build time, when the tarballs are fetched: - grep --color=never "\<tor-browser-linux64-.*\.tar.xz$" sha256sums-unsigned-build.txt \ - | grep -v '\<tor-browser-linux64-debug\.tar\.xz$' \ - > config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt + ( + grep --color=never -E \ + "\stor-browser-linux64-[0-9].*_en-US\.tar\.xz$" \ + sha256sums-unsigned-build.txt \ + && grep --color=never -E \ + "\slangpacks-tor-browser-linux64-.*\.tar\.xz$" \ + sha256sums-unsigned-build.txt \ + ) > config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt Then update the URL to the one chosen above: - echo "${TBB_DIST_URL}" | sed "s,^https://,http://," > \ + echo "${TBB_DIST_URL:?}" | sed "s,^https://,http://," > \ config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt <div class="note"> @@ -87,7 +91,7 @@ we verify the checksum file. Lastly, commit: git commit config/chroot_local-includes/usr/share/tails/tbb-*.txt \ - -m "Upgrade Tor Browser to ${TBB_VERSION}." && \ + -m "Upgrade Tor Browser to ${TBB_VERSION:?}." && \ git show <div class="caution"> @@ -173,41 +177,42 @@ Import a new set of Tor Browser tarballs DL_DIR=$(mktemp --tmpdir -d "tor-browser-${TBB_VERSION}.XXXXXXXXXX") CHROOT_INCLUDES="config/chroot_local-includes" - TBB_SHA256SUMS_FILE="${CHROOT_INCLUDES}/usr/share/tails/tbb-sha256sums.txt" - TBB_DIST_URL_FILE="${CHROOT_INCLUDES}/usr/share/tails/tbb-dist-url.txt" - cd "$TAILS_GIT_REPO" && git checkout "$TBB_IMPORT_BRANCH" - TBB_TARBALLS_BASE_URL="$(cat "${TBB_DIST_URL_FILE}" | sed "s,^http://,https://,")" - current_branch=$(git -C "$TAILS_GIT_REPO" branch | awk '/^\* / { print $2 }') + TBB_SHA256SUMS_FILE="${CHROOT_INCLUDES:?}/usr/share/tails/tbb-sha256sums.txt" + TBB_DIST_URL_FILE="${CHROOT_INCLUDES:?}/usr/share/tails/tbb-dist-url.txt" + cd "${TAILS_GIT_REPO:?}" && git checkout "${TBB_IMPORT_BRANCH:?}" + TBB_TARBALLS_BASE_URL="$(cat "${TBB_DIST_URL_FILE:?}" | sed "s,^http://,https://,")" + current_branch=$(git -C "${TAILS_GIT_REPO:?}" branch | awk '/^\* / { print $2 }') for branch in "$current_branch" ; do - git -C "$TAILS_GIT_REPO" show "$branch:$TBB_SHA256SUMS_FILE" \ + git -C "${TAILS_GIT_REPO:?}" show "$branch:${TBB_SHA256SUMS_FILE:?}" \ | while read expected_sha256 tarball; do ( cd "$DL_DIR" - echo "Retrieving '${TBB_TARBALLS_BASE_URL}/${tarball}'..." + echo "Retrieving '${TBB_TARBALLS_BASE_URL:?}/${tarball:?}'..." curl --remote-name --continue-at - \ - "${TBB_TARBALLS_BASE_URL}/${tarball}" + "${TBB_TARBALLS_BASE_URL:?}/${tarball:?}" ) done ( - cd "$DL_DIR" && \ - git -C "$TAILS_GIT_REPO" show "$branch:$TBB_SHA256SUMS_FILE" \ + cd "${DL_DIR:?}" && \ + git -C "${TAILS_GIT_REPO:?}" show "$branch:${TBB_SHA256SUMS_FILE:?}" \ | sha256sum -c - ) done 2. Move the tarballs into your local Git annex: - cd "$TBB_ARCHIVE" && \ - mkdir "$TBB_VERSION" && cd "$TBB_VERSION" && \ - git annex import --duplicate "$DL_DIR/"* "$TAILS_GIT_REPO/"sha256sums-* + cd "${TBB_ARCHIVE:?}" && \ + mkdir "${TBB_VERSION:?}" && cd "${TBB_VERSION:?}" && \ + git annex import --duplicate "${DL_DIR:?}/"* "${TAILS_GIT_REPO:?}/"sha256sums-* Commit and push your changes ---------------------------- - cd "$TBB_ARCHIVE" && \ - git commit -m "Add Tor Browser ${TBB_VERSION}." && \ + cd "${TBB_ARCHIVE:?}" && \ + git commit -m "Add Tor Browser ${TBB_VERSION:?}." && \ git annex sync && \ - git annex copy --to origin -- "${TBB_VERSION}" + git annex copy --to origin -- "${TBB_VERSION:?}" && \ + git annex sync Wait for the synchronization ---------------------------- @@ -224,12 +229,12 @@ into your `apt-cacher-ng` local cache. Adjust the URL in the main Git repository ----------------------------------------- - cd "$TAILS_GIT_REPO" && \ - git checkout "$TBB_IMPORT_BRANCH" + cd "${TAILS_GIT_REPO:?}" && \ + git checkout "${TBB_IMPORT_BRANCH:?}" current_branch=$(git branch | awk '/^\* / { print $2 }') - for branch in "$current_branch" ; do - git checkout "$branch" && \ - echo "http://torbrowser-archive.tails.boum.org/${TBB_VERSION}/" > \ + for branch in "${current_branch:?}" ; do + git checkout "${branch:?}" && \ + echo "http://torbrowser-archive.tails.boum.org/${TBB_VERSION:?}/" > \ config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt && \ git commit config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt \ -m "Fetch Tor Browser from our own archive." && \ @@ -239,6 +244,8 @@ Adjust the URL in the main Git repository Clean up -------- - cd "$TBB_ARCHIVE" && \ - git annex drop -- "${TBB_VERSION}" && \ - rm -rf "$DL_DIR" + cd "${TBB_ARCHIVE:?}" && \ + git annex drop -- "${TBB_VERSION:?}" && \ + git annex sync && \ + rm -rf "${DL_DIR:?}" && \ + rm "${TAILS_GIT_REPO:?}"/sha256sums-unsigned-build.txt{,.asc} diff --git a/wiki/src/contribute/working_together/roles/release_manager.mdwn b/wiki/src/contribute/working_together/roles/release_manager.mdwn index 382347248686abc64c1a8864ebddc79931785416..c4b94a147086b759affb26b37af6a55069168045 100644 --- a/wiki/src/contribute/working_together/roles/release_manager.mdwn +++ b/wiki/src/contribute/working_together/roles/release_manager.mdwn @@ -18,9 +18,6 @@ and filing tickets for the Foundations Team as needed. to provide any information they could not, such as: - Code freeze date - If this will be a major release: the release schedule for its RC. - Bcc the usual testers (see `manual_testers.mdwn` in the RM team's - Git repository), asking them for availability at the designated - dates for testing the RC. - Ask <tails@boum.org> and <tails-foundations@boum.org> for a _Trusted Reproducer_ who will reproduce the ISO and USB images for the RC and final release within 72 hours after the RM has unplugged their smartcard. When accepting the offer, @@ -28,10 +25,6 @@ and filing tickets for the Foundations Team as needed. the instructions|contribute/release_process/test/reproducibility#preparation]]. - Update [[contribute/calendar]] accordingly. - Update the due date on [[!tails_roadmap]] accordingly. -- Make sure you have hardware handy for the bare metal manual test - that often, no tester can do: - - DVD burner - - at least 2 spare DVD-R or DVD-RW - Make sure you have access to the various systems used to do the release: - being subscribed to the <tails-rm@boum.org> mailing list @@ -56,6 +49,11 @@ and filing tickets for the Foundations Team as needed. - Check when our OpenPGP signing key expires. If that's before, or soon after, the scheduled date for the release _after_ the one your shift is about, then shout. +- The ISO images for *every* previous beta, RC, and final release + based on the version of Debian that will be used for the release + you'll be preparing. + For example, if you're preparing 4.3, you need the ISO images + for 4.0~beta1, 4.0~beta2, 4.0~rc1, 4.0, 4.1, 4.1.1, 4.2, and 4.2.1. ## Two weeks after the beginning of your shift @@ -63,6 +61,8 @@ and filing tickets for the Foundations Team as needed. in the [[contribute/calendar]]. - Create a Foundations Team ticket about upgrading Tor Browser in the release your shift is about. +- Check if you have enough manual testers registered. + If not, ping the usual testers. ## The week before the release date diff --git a/wiki/src/contribute/working_together/roles/sysadmins.mdwn b/wiki/src/contribute/working_together/roles/sysadmins.mdwn index c59b204928b40148444564482192ca374520a647..964a07c80a85fd11eedba11c650bc78de84ef510 100644 --- a/wiki/src/contribute/working_together/roles/sysadmins.mdwn +++ b/wiki/src/contribute/working_together/roles/sysadmins.mdwn @@ -317,10 +317,7 @@ Below, importance level is evaluated based on: * signing keys are managed with the `tails_secrets_jenkins` Puppet module - web server: * some configuration in the manifest ([[!tails_ticket 7107]]) -* design documentation: - - [[sysadmins/automated_builds_in_Jenkins]] - - [[sysadmins/automated_tests_in_Jenkins]] - - [[blueprint/automated_builds_and_tests/jenkins]] +* design documentation: [[sysadmins/Jenkins]] * importance: critical (as a key component of our development process) ## Mail diff --git a/wiki/src/contribute/working_together/roles/sysadmins/Jenkins.mdwn b/wiki/src/contribute/working_together/roles/sysadmins/Jenkins.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..07d72b24e5022efd8a53a2e547cb7ebcdb2b3813 --- /dev/null +++ b/wiki/src/contribute/working_together/roles/sysadmins/Jenkins.mdwn @@ -0,0 +1,60 @@ +[[!meta title="Automated ISO/IMG builds and tests on Jenkins"]] + +[[!toc levels=1]] + +Generating jobs +=============== + +We generate automatically a set of Jenkins jobs for branches that are +active in the Tails main Git repository. + +The first brick extracts the list of active branches and output the +needed information: + + - [[!tails_gitweb config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/git.py]] + - [[!tails_gitweb config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/jenkins.py]] + +This list is parsed by the `generate_tails_iso_jobs` script run by +a cronjob and deployed by our [[!tails_gitweb_repo puppet-tails]] +`tails::jenkins::iso_jobs_generator` manifest. + +This script output YAML files compatible with +[jenkins-job-builder](http://docs.openstack.org/infra/jenkins-job-builder). +It creates one `project` for each active branch, which in turn uses +several JJB `job templates` to create jobs for each branch: + + - `build_Tails_ISO_*` + - `reproducibly_build_Tails_ISO_*` + - `test_Tails_ISO_*` + +This changes are pushed to our [[!tails_gitweb_repo jenkins-jobs]] git +repo by the cronjob, and thanks to their automatic deployment in our +`tails::jenkins::master` and `tails::gitolite::hooks::jenkins_jobs` +manifests in our [[!tails_gitweb_repo puppet-tails]] repo, these new +changes are applied to our Jenkins instance. + +Passing parameters through jobs +=============================== + +We pass information from build job to follow-up jobs (reproducibility +testing, test suite) via two means: + + - the Parameterized Trigger plugin, whenever it's sufficient + + - the EnvInject plugin, for more complex cases: + + * In the build job, a script collects the needed information and + writes it to a file that's saved as a build artifact. + * This file is used by the build job itself, to setup the variables it + needs (currently only `$NOTIFY_TO`). + * Follow-up jobs imported this file in the workspace along with the + build artifacts, then use an EnvInject pre-build step to load it + and set up variables accordingly. + +# Builds + +See [[contribute/working_together/roles/sysadmins/automated_builds_in_Jenkins]]. + +# Tests + +See [[contribute/working_together/roles/sysadmins/automated_tests_in_Jenkins]]. diff --git a/wiki/src/contribute/working_together/roles/sysadmins/automated_builds_in_Jenkins.mdwn b/wiki/src/contribute/working_together/roles/sysadmins/automated_builds_in_Jenkins.mdwn index 54ef46194b412120a20914928ba414f01e82b983..a7cb5837be8e4dedefa32452fecd8ebb6ce1c306 100644 --- a/wiki/src/contribute/working_together/roles/sysadmins/automated_builds_in_Jenkins.mdwn +++ b/wiki/src/contribute/working_together/roles/sysadmins/automated_builds_in_Jenkins.mdwn @@ -1,4 +1,4 @@ -[[!meta title="Automated ISO builds on Jenkins"]] +[[!meta title="Automated ISO/IMG builds on Jenkins"]] We re-use the [[Vagrant-based build system|contribute/build/vagrant-setup]] we have created for developers. diff --git a/wiki/src/contribute/working_together/roles/sysadmins/automated_tests_in_Jenkins.mdwn b/wiki/src/contribute/working_together/roles/sysadmins/automated_tests_in_Jenkins.mdwn index 772cdf6c2c7e289d1f2df973b7d250c7f46e7616..7ec0f3516bf245c4d3832e868a4cda40900aad55 100644 --- a/wiki/src/contribute/working_together/roles/sysadmins/automated_tests_in_Jenkins.mdwn +++ b/wiki/src/contribute/working_together/roles/sysadmins/automated_tests_in_Jenkins.mdwn @@ -1,8 +1,10 @@ -[[!meta title="Automated ISO tests on Jenkins"]] +[[!meta title="Automated ISO/IMG tests on Jenkins"]] -[[!toc levels=1]] +[[!toc levels=2]] -# Full test suite vs. scenarios tagged `@fragile` +# For developers + +## Full test suite vs. scenarios tagged `@fragile` Jenkins generally only runs scenarios that are _not_ tagged `@fragile` in Gherkin. But it runs the full test suite, including scenarios that @@ -17,7 +19,7 @@ are tagged `@fragile`, if the images under test were built: Therefore, to ask Jenkins to run the full test suite on your topic branch, give it a name that ends `+force-all-tests`. -# Trigger a test suite run without rebuilding images +## Trigger a test suite run without rebuilding images Every `build_Tails_ISO_*` job run triggers a test suite run (`test_Tails_ISO_*`), so most of the time, we don't need @@ -35,7 +37,7 @@ get the test suite running eventually: Thankfully, there is a way to trigger a test suite run without having to rebuild images first. To do so, start a "build" of the -corresponding `wrap_test_Tail_ISO_*` job, passing to the +corresponding `test_Tail_ISO_*` job, passing to the `UPSTREAMJOB_BUILD_NUMBER` parameter the ID of the `build_Tail_ISO_*` job build you want to test. @@ -44,10 +46,18 @@ Do <strong>not</strong> directly start a <code>test_Tail_ISO_*</code> job: this is not supported. It would fail most of the time in confusing ways. </div> -# Old ISO used in the test suite in Jenkins +## Jenkins jobs you can safely ignore + +The success/failure of the `keep_node_busy_during_cleanup` job does +not matter. + +# For sysadmins + +## Old ISO used in the test suite in Jenkins Some tests like upgrading Tails are done against a Tails installation made from -the previously released ISO. +the previously released ISO and USB images. Those images are retrieved +using wget from <https://iso-history.tails.boum.org>. In some cases (e.g when the _Tails Installer_ interface has changed), we need to temporarily change this behaviour to make tests work. To have Jenkins @@ -77,3 +87,51 @@ use the ISO being tested instead of the last released one: 2. File a ticket to ensure this temporarily change gets reverted in due time. + +## Restarting slave VMs between test suite jobs + +For background, see [[!tails_ticket 9486]], [[!tails_ticket 11295]], +and [[!tails_ticket 10601]]. + +Our test suite doesn't _always_ clean after itself properly (e.g. +when tests simply hang and timeout), so we have to reboot +`isotesterN.lizard` between ISO test jobs. We have [[!tails_ticket +17216 desc="ideas"]] to solve this problem, but that's where we're at. + +We can't reboot these VMs as part of a test job itself: this would +fail the test job even when the test suite has succeeded. + +Therefore, each "build" of a `test_Tail_ISO_*` job runs the test suite, +and then: + +1. Triggers a high priority "build" of the + `keep_node_busy_during_cleanup` job, on the same node. + That job will ensure the isotester is kept busy until it has + rebooted and is ready for another test suite run. +1. Gives Jenkins some time to add that `keep_node_busy_during_cleanup` + build to the queue. +1. Gives the Jenkins Priority Sorter plugin some time to assign its + intended priority to the `keep_node_busy_during_cleanup` build. +1. Does everything else it should do, such as cleaning up and moving + artifacts around. +1. Finally, triggers a "build" of the `reboot_node` job on the Jenkins + master, which will put the isotester offline, and reboot it. +1. After the isotester has rebooted, when `jenkins-slave.service` starts, + it puts the node back online. + +For more details, see the heavily commented implementation in +[[!tails_gitweb_repo jenkins-jobs]]: + + - `macros/test_Tails_ISO.yaml` + - `macros/keep_node_busy_during_cleanup.yaml` + - `macros/reboot_node.yaml` + +## Executors on the Jenkins master + +We need to ensure the Jenkins master has enough executors configured +so it can run as many `reboot_job` concurrent builds as necessary. + +This job can't run in parallel for a given `test_Tails_ISO_*` build, +so what we strictly need is: as many executors on the master as we +have nodes allowed to run `test_Tails_ISO_*`. This currently means: as +many executors on the master as we have isotesters. diff --git a/wiki/src/contribute/working_together/roles/translation_platform/operations.mdwn b/wiki/src/contribute/working_together/roles/translation_platform/operations.mdwn index e3d8b3e5ad0f67a86dcd8cae1639f57f1db97356..8a452f302a458dca200af2bbce26c833f772ecdd 100644 --- a/wiki/src/contribute/working_together/roles/translation_platform/operations.mdwn +++ b/wiki/src/contribute/working_together/roles/translation_platform/operations.mdwn @@ -71,21 +71,17 @@ Post-upgrade ============ So, after - lets say - pulling a new Weblate version, from the directory -/usr/local/share/weblate you need run, as weblate user: - - sudo -u weblate python3 ./manage.py makemigrations - -Then django will create a set of mysql commands in a file at -`/usr/local/share/weblate/weblate/trans/migrations/`. - -and then you can run: - - sudo -u weblate python3 ./manage.py migrate +/usr/local/share/weblate you need run, the +[[Generic Upgrade Instructions|https://docs.weblate.org/en/latest/admin/upgrade.html#generic-upgrade-instructions]] +as weblate user: In oder to update all checks after an upgrade: sudo -u weblate python3 manage.py updatechecks --all +see [[documentation|https://docs.weblate.org/en/weblate-3.5.1/admin/management.html#updatechecks]]: +"This could be useful only on upgrades which do major changes to checks." + Fix broken `commit_pending` =========================== diff --git a/wiki/src/doc.es.po b/wiki/src/doc.es.po index 75e863b0718f434097d67624f7bf623c179b61a4..5fdf6aee743cc18ee89f96dbe5ef2ea9687083db 100644 --- a/wiki/src/doc.es.po +++ b/wiki/src/doc.es.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-31 11:29+0000\n" -"PO-Revision-Date: 2019-12-03 10:26+0000\n" +"PO-Revision-Date: 2020-01-15 08:25+0000\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/doc/" "es/>\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -119,6 +119,19 @@ msgid "" " [[!traillink Linux|reset/linux]],\n" " [[!traillink Windows|reset/windows]], or\n" msgstr "" +" - [[!traillink Actualizar_una_memoria_USB_de_Tails|upgrade]]\n" +" - [[Actualizando_manualmente_desde_Tails|upgrade/tails-overview]]\n" +" - [[Actualizando_manualmente_desde_Windows|upgrade/win-overview]]\n" +" - [[Actualizando_manualmente_desde_macOS|upgrade/mac-overview]]\n" +" - [[Actualizando_manualmente_desde_Linux|upgrade/linux-overview]]\n" +" - [[Actualizando_manualmente_clonando_desde_otro_Tails|upgrade/clone-" +"overview]]\n" +" - [[!traillink " +"Reparar_una_memoria_USB_de_Tails_que_no_inicia_después_de_una_actualización|" +"upgrade/repair]]\n" +" - Desinstalar Tails o reiniciar una memoria USB usando\n" +" [[!traillink Linux|reset/linux]],\n" +" [[!traillink Windows|reset/windows]], o\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc.fr.po b/wiki/src/doc.fr.po index 6f178ceb9d0b1498a3d1312dd3b77439e28bb8e2..c444dd1c4f87ead12b408a1b422e82c785d5fb01 100644 --- a/wiki/src/doc.fr.po +++ b/wiki/src/doc.fr.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-01 18:23+0000\n" +"PO-Revision-Date: 2020-01-12 13:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -107,13 +107,7 @@ msgid "[[Burning a DVD|install/dvd]]" msgstr "[[Graver un DVD|install/dvd]]" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| " - [[!traillink Upgrading_a_Tails_USB_stick|upgrade]]\n" -#| " - [[!traillink Repairing_a_Tails_USB_stick_that_fails_to_start_after_an_upgrade|upgrade/repair]]\n" -#| " - Uninstalling Tails or resetting a USB stick using\n" -#| " [[!traillink Linux|reset/linux]],\n" -#| " [[!traillink Windows|reset/windows]], or\n" +#, no-wrap msgid "" " - [[!traillink Upgrading_a_Tails_USB_stick|upgrade]]\n" " - [[Manually_upgrading_from_your_Tails|upgrade/tails-overview]]\n" @@ -127,7 +121,16 @@ msgid "" " [[!traillink Windows|reset/windows]], or\n" msgstr "" " - [[!traillink Mettre_à_jour_une_clé_USB_Tails|upgrade]]\n" -" - [[!traillink Réparer_une_clé_USB_Tails_qui_n'arrive_pas_à_démarrer_après_une_mise_à_jour|upgrade/repair]]\n" +" - [[Mettre_à_jour_manuellement_depuis_votre_Tails|upgrade/tails-" +"overview]]\n" +" - [[Mettre_à_jour_manuellement_depuis_Windows|upgrade/win-overview]]\n" +" - [[Mettre_à_jour_manuellement_depuis_macOS|upgrade/mac-overview]]\n" +" - [[Mettre_à_jour_manuellement_depuis_Linux|upgrade/linux-overview]]\n" +" - [[Mettre_à_jour_manuellement_en_clonant_ depuis_un_autre_Tails|upgrade/" +"clone-overview]]\n" +" - [[!traillink " +"Réparer_une_clé_USB_Tails_qui_n'arrive_pas_à_démarrer_après_une_mise_à_jour|" +"upgrade/repair]]\n" " - Désinstaller Tails ou réinitialiser une clé USB avec\n" " [[!traillink Linux|reset/linux]],\n" " [[!traillink Windows|reset/windows]] ou\n" diff --git a/wiki/src/doc.id.po b/wiki/src/doc.id.po index 1cd5fd00d224ca82cb038c608d4bcb10f204c661..ba81df7a04c572395d528a7e9d1c4114d8fbb956 100644 --- a/wiki/src/doc.id.po +++ b/wiki/src/doc.id.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: Tails website\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-10-24 10:30+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-15 21:26+0000\n" +"Last-Translator: Caesar <pinkpidgeon@protonmail.com>\n" "Language-Team: Tails translators <tails-l10n@boum.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap @@ -58,7 +58,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"doc/about.index\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" +msgstr "[[!inline pages=\"doc/about.index.id\" raw=\"yes\" sort=\"age\"]]\n" #. type: Title # #, no-wrap @@ -128,6 +128,7 @@ msgstr "" #, no-wrap msgid "[[!inline pages=\"doc/first_steps.index\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"doc/first_steps.index.id\" raw=\"yes\" sort=\"age\"]]\n" #. type: Title # #, no-wrap @@ -138,6 +139,8 @@ msgstr "" #, no-wrap msgid "[[!inline pages=\"doc/anonymous_internet.index\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"doc/anonymous_internet.index.id\" raw=\"yes\" sort=\"age\"" +"]]\n" #. type: Title # #, no-wrap @@ -148,6 +151,8 @@ msgstr "" #, no-wrap msgid "[[!inline pages=\"doc/encryption_and_privacy.index\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"doc/encryption_and_privacy.index.id\" raw=\"yes\" sort=\"" +"age\"]]\n" #. type: Title # #, no-wrap @@ -158,6 +163,8 @@ msgstr "" #, no-wrap msgid "[[!inline pages=\"doc/sensitive_documents.index\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"doc/sensitive_documents.index.id\" raw=\"yes\" sort=\"age\"" +"]]\n" #. type: Title # #, no-wrap @@ -168,3 +175,4 @@ msgstr "" #, no-wrap msgid "[[!inline pages=\"doc/advanced_topics.index\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"doc/advanced_topics.index.id\" raw=\"yes\" sort=\"age\"]]\n" diff --git a/wiki/src/doc/about.id.po b/wiki/src/doc/about.id.po index 27c3639c45931a92b9c9121c475845f82ca6123b..6331f6079dcd47ebe312d84902386cfb5e791667 100644 --- a/wiki/src/doc/about.id.po +++ b/wiki/src/doc/about.id.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2015-01-15 05:20+0100\n" -"PO-Revision-Date: 2014-12-26 13:00-0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-15 21:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.4\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -24,4 +26,4 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"doc/about.index\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" +msgstr "[[!inline pages=\"doc/about.index.id\" raw=\"yes\" sort=\"age\"]]\n" diff --git a/wiki/src/doc/about.index.pt.po b/wiki/src/doc/about.index.pt.po index 5b78a91646681b7f145ec50edbeb2b0e5c956496..98ce276f78e7ad0288b2629e58d6e8e8b057b957 100644 --- a/wiki/src/doc/about.index.pt.po +++ b/wiki/src/doc/about.index.pt.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-18 19:06+0000\n" -"PO-Revision-Date: 2014-05-23 11:25-0300\n" -"Last-Translator: Tails Developers <amnesia@boum.org>\n" +"PO-Revision-Date: 2019-12-22 21:02+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Bullet: ' - ' msgid "[[!traillink System_requirements|about/requirements]]" @@ -54,6 +54,8 @@ msgid "" "[[!traillink Acknowledgments_and_similar_projects|about/" "acknowledgments_and_similar_projects]]" msgstr "" +"[[!traillink Agradecimentos_e_projetos_similares|about/" +"acknowledgments_and_similar_projects]]" #. type: Bullet: ' - ' msgid "[[!traillink Finances|about/finances]]" diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.ar.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.ar.po index ef4d7b08c1e0173120632b1294bb3b319260a9b2..9baad979d913a6ad51044e516589646d62cdfd79 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.ar.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.ar.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-24 14:05+0000\n" +"POT-Creation-Date: 2019-12-16 13:23+0000\n" "PO-Revision-Date: 2018-07-02 10:56+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -104,12 +104,14 @@ msgid "Discontinued, abandoned or sleeping projects" msgstr "" #. type: Bullet: '* ' -msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +msgid "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos." +"to:80/projects.html)" msgstr "" #. type: Bullet: '* ' msgid "" -"[ELE](https://web.archive.org/web/20101220113317/http://northernsecurity." +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." "net:80/download/ele/)" msgstr "" diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.ca.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.ca.po index 757ce221bfd4bc446de28085b772b1d32114291d..60e9d01a43c1a6168e3a30c2e2cdbc4c1c78e656 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.ca.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.ca.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-24 14:05+0000\n" +"POT-Creation-Date: 2019-12-16 13:23+0000\n" "PO-Revision-Date: 2018-07-02 10:49+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -103,12 +103,14 @@ msgid "Discontinued, abandoned or sleeping projects" msgstr "" #. type: Bullet: '* ' -msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +msgid "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos." +"to:80/projects.html)" msgstr "" #. type: Bullet: '* ' msgid "" -"[ELE](https://web.archive.org/web/20101220113317/http://northernsecurity." +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." "net:80/download/ele/)" msgstr "" diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.de.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.de.po index 77cf9fcd8c4907f9f9a225b1ff6aa04158aca429..261dfd2b262b969a08e376513c61c1c8e2a42865 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.de.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-11-24 14:05+0000\n" +"POT-Creation-Date: 2019-12-16 13:23+0000\n" "PO-Revision-Date: 2018-05-12 15:56+0200\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -123,8 +123,16 @@ msgid "Discontinued, abandoned or sleeping projects" msgstr "Eingestellte, aufgegebene und ruhende Projekte" #. type: Bullet: '* ' -msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" -msgstr "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +#, fuzzy +#| msgid "" +#| "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" +#| "anonymityanywhere.com/)" +msgid "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos." +"to:80/projects.html)" +msgstr "" +"[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" +"anonymityanywhere.com/)" #. type: Bullet: '* ' #, fuzzy @@ -132,7 +140,7 @@ msgstr "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" #| "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" #| "anonymityanywhere.com/)" msgid "" -"[ELE](https://web.archive.org/web/20101220113317/http://northernsecurity." +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." "net:80/download/ele/)" msgstr "" "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" @@ -269,6 +277,9 @@ msgstr "" "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" "anonymityanywhere.com/)" +#~ msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +#~ msgstr "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" + #~ msgid "[ELE](http://www.northernsecurity.net/download/ele/) (dead link)" #~ msgstr "[ELE](http://www.northernsecurity.net/download/ele/) (toter Link)" diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.es.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.es.po index bbb31f629a13fe40ce12de70c26dbfc671af0f26..824ec6b8b825a92b3279faa72ea06382af33bd50 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.es.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.es.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-11-24 14:05+0000\n" -"PO-Revision-Date: 2018-12-04 13:17+0000\n" -"Last-Translator: cacukin <cacukin@cryptolab.net>\n" +"POT-Creation-Date: 2019-12-16 13:23+0000\n" +"PO-Revision-Date: 2020-01-15 08:25+0000\n" +"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "acknowledgments_and_similar_projects/es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -103,16 +103,12 @@ msgid "[Qubes](https://www.qubes-os.org/)" msgstr "[Qubes](https://www.qubes-os.org/)" #. type: Bullet: '* ' -#, fuzzy -#| msgid "" -#| "[Trusted End Node Security](http://www.spi.dod.mil/lipose.htm) " -#| "(previously *Lightweight Portable Security*)" msgid "" "[Trusted End Node Security](https://spi.dod.mil/lipose.htm) (previously " "*Lightweight Portable Security*)" msgstr "" -"[Trusted End Node Security](http://www.spi.dod.mil/lipose.htm) " -"(anteriormente *Lightweight Portable Security*)" +"[Trusted End Node Security](https://spi.dod.mil/lipose.htm) (anteriormente *" +"Lightweight Portable Security*)" #. type: Bullet: '* ' msgid "[Whonix](https://www.whonix.org/)" @@ -124,20 +120,20 @@ msgid "Discontinued, abandoned or sleeping projects" msgstr "Suspendidos, abandonados o proyectos dormidos" #. type: Bullet: '* ' -msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" -msgstr "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +msgid "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos." +"to:80/projects.html)" +msgstr "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:" +"80/projects.html)" #. type: Bullet: '* ' -#, fuzzy -#| msgid "" -#| "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" -#| "anonymityanywhere.com/)" msgid "" -"[ELE](https://web.archive.org/web/20101220113317/http://northernsecurity." +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." "net:80/download/ele/)" msgstr "" -"[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" -"anonymityanywhere.com/)" +"[ELE](https://web.archive.org/web/20050422130010/" +"http://www.northernsecurity.net:80/download/ele/)" #. type: Bullet: '* ' msgid "" @@ -146,16 +142,12 @@ msgstr "" "[Estrella Roja](http://distrowatch.com/table.php?distribution=estrellaroja)" #. type: Bullet: '* ' -#, fuzzy -#| msgid "" -#| "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" -#| "anonymityanywhere.com/)" msgid "" "[Freepto](https://web.archive.org/web/20171022102527/http://www.freepto." "mx:80/en/)" msgstr "" -"[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" -"anonymityanywhere.com/)" +"[Freepto](https://web.archive.org/web/20171022102527/http://www.freepto.mx:" +"80/en/)" #. type: Bullet: '* ' msgid "[Heads](https://heads.dyne.org/)" @@ -163,19 +155,19 @@ msgstr "[Heads](https://heads.dyne.org/)" #. type: Bullet: '* ' msgid "[ICLOAK](https://icloak.me/)" -msgstr "" +msgstr "[ICLOAK](https://icloak.me/)" #. type: Bullet: '* ' msgid "[IprediaOS](http://www.ipredia.org/)" msgstr "[IprediaOS](http://www.ipredia.org/)" #. type: Bullet: '* ' -#, fuzzy -#| msgid "[ISXUbuntu](http://www.isoc-ny.org/wiki/ISXubuntu)" msgid "" "[ISXUbuntu](https://web.archive.org/web/20180625024257/http://www.isoc-ny." "org/wiki/ISXUbuntu)" -msgstr "[ISXUbuntu](http://www.isoc-ny.org/wiki/ISXubuntu)" +msgstr "" +"[ISXUbuntu](https://web.archive.org/web/20180625024257/http://www.isoc-ny." +"org/wiki/ISXUbuntu)" #. type: Bullet: '* ' msgid "" @@ -188,46 +180,32 @@ msgid "[Liberté Linux](http://dee.su/liberte)" msgstr "[Liberté Linux](http://dee.su/liberte)" #. type: Bullet: '* ' -#, fuzzy -#| msgid "" -#| "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" -#| "anonymityanywhere.com/)" msgid "" "[Odebian](https://web.archive.org/web/20140816183354/http://www.odebian.org/)" msgstr "" -"[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" -"anonymityanywhere.com/)" +"[Odebian](https://web.archive.org/web/20140816183354/http://www.odebian.org/)" #. type: Bullet: '* ' msgid "onionOS" -msgstr "" +msgstr "onionOS" #. type: Bullet: '* ' -#, fuzzy -#| msgid "" -#| "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" -#| "anonymityanywhere.com/)" msgid "" "[ParanoidLinux](https://web.archive.org/web/20090425140610/http://" "paranoidlinux.org:80/)" msgstr "" -"[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" -"anonymityanywhere.com/)" +"[ParanoidLinux](https://web.archive.org/web/20090425140610/" +"http://paranoidlinux.org:80/)" #. type: Bullet: '* ' msgid "[Phantomix](http://phantomix.ytternhagen.de/)" msgstr "[Phantomix](http://phantomix.ytternhagen.de/)" #. type: Bullet: '* ' -#, fuzzy -#| msgid "" -#| "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" -#| "anonymityanywhere.com/)" msgid "" "[Polippix](https://web.archive.org/web/20140329210549/http://polippix.org/)" msgstr "" -"[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" -"anonymityanywhere.com/)" +"[Polippix](https://web.archive.org/web/20140329210549/http://polippix.org/)" #. type: Bullet: '* ' msgid "[Privatix](http://www.mandalka.name/privatix/)" @@ -238,12 +216,12 @@ msgid "[SubgraphOS](https://subgraph.com/sgos/)" msgstr "[SubgraphOS](https://subgraph.com/sgos/)" #. type: Bullet: '* ' -#, fuzzy -#| msgid "[The Haven Project](https://www.haven-project.org/) (dead link)" msgid "" "[The Haven Project](https://web.archive.org/web/20171005222753/http://www." "haven-project.org/)" -msgstr "[The Haven Project](https://www.haven-project.org/) (enlace roto)" +msgstr "" +"[The Haven Project](https://web.archive.org/web/20171005222753/http://www" +".haven-project.org/)" #. type: Bullet: '* ' msgid "" @@ -254,22 +232,19 @@ msgstr "" "anonymityanywhere.com/)" #. type: Bullet: '* ' -#, fuzzy -#| msgid "[Ubuntu Privacy Remix](https://www.privacy-cd.org/)" msgid "[Discreete Linux](https://www.privacy-cd.org/)" -msgstr "[Ubuntu Privacy Remix](https://www.privacy-cd.org/)" +msgstr "[Discreete Linux](https://www.privacy-cd.org/)" #. type: Bullet: '* ' -#, fuzzy -#| msgid "" -#| "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" -#| "anonymityanywhere.com/)" msgid "" "[uVirtus](https://web.archive.org/web/20131030050159/https://www.uvirtus." "org/)" msgstr "" -"[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" -"anonymityanywhere.com/)" +"[uVirtus](https://web.archive.org/web/20131030050159/https://www.uvirtus.org/" +")" + +#~ msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +#~ msgstr "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" #~ msgid "[ELE](http://www.northernsecurity.net/download/ele/) (dead link)" #~ msgstr "[ELE](http://www.northernsecurity.net/download/ele/) (enlace roto)" diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.fa.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.fa.po index d3052d9d4de384dcdf4a3cc0f94933418b5e996b..4fef54ca2391a3bdce52972ca260355f5126251c 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.fa.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.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-24 14:05+0000\n" +"POT-Creation-Date: 2019-12-16 13:23+0000\n" "PO-Revision-Date: 2015-10-16 13:03+0000\n" "Last-Translator: sprint5 <translation5@451f.org>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" @@ -125,8 +125,16 @@ msgid "Discontinued, abandoned or sleeping projects" msgstr "پروژههای متوقفشده، متروک یا بهتعویقافتاده" #. type: Bullet: '* ' -msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" -msgstr "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +#, fuzzy +#| msgid "" +#| "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" +#| "anonymityanywhere.com/)" +msgid "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos." +"to:80/projects.html)" +msgstr "" +"[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" +"anonymityanywhere.com/)" #. type: Bullet: '* ' #, fuzzy @@ -134,7 +142,7 @@ msgstr "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" #| "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" #| "anonymityanywhere.com/)" msgid "" -"[ELE](https://web.archive.org/web/20101220113317/http://northernsecurity." +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." "net:80/download/ele/)" msgstr "" "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" @@ -274,6 +282,9 @@ msgstr "" "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" "anonymityanywhere.com/)" +#~ msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +#~ msgstr "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" + #~ msgid "[ELE](http://www.northernsecurity.net/download/ele/) (dead link)" #~ msgstr "[ELE](http://www.northernsecurity.net/download/ele/) (پیوند خراب)" diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.fr.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.fr.po index 38ebf3f744d992b8c128bbd3a4381c1b8d80f27b..bc3b07a12235d6dab5d6f4570cbca9020293106e 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.fr.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.fr.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2019-11-24 14:05+0000\n" -"PO-Revision-Date: 2019-02-03 14:13+0000\n" -"Last-Translator: \n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2019-12-16 13:23+0000\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" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.11\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -45,11 +47,11 @@ msgid "" "declared it to be dead on March 23rd, 2010, and wrote that Tails \"should be " "considered as its spiritual successor\"." msgstr "" -"Tails est inspiré du [[LiveCD Incognito|http://web.archive.org/" -"web/20090220133020/http://anonymityanywhere.com/]]. L'auteur de celui-ci l'a " +"Tails est inspiré du [[LiveCD Incognito|http://web.archive.org/web/" +"20090220133020/http://anonymityanywhere.com/]]. L'auteur de celui-ci l'a " "abandonné le 23 mars 2010 et a déclaré que Tails \"peut être considéré comme " -"son successeur spirituel\" (\"should be considered as its spiritual successor" -"\".)" +"son successeur spirituel\" (\"should be considered as its spiritual " +"successor\")." #. type: Bullet: ' - ' msgid "" @@ -120,16 +122,20 @@ msgid "Discontinued, abandoned or sleeping projects" msgstr "Projets non mis à jour, abandonnés ou arrêtés" #. type: Bullet: '* ' -msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" -msgstr "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +msgid "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos." +"to:80/projects.html)" +msgstr "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:" +"80/projects.html)" #. type: Bullet: '* ' msgid "" -"[ELE](https://web.archive.org/web/20101220113317/http://northernsecurity." +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." "net:80/download/ele/)" msgstr "" -"[ELE](https://web.archive.org/web/20101220113317/http://northernsecurity." -"net:80/download/ele/)" +"[ELE](https://web.archive.org/web/20050422130010/" +"http://www.northernsecurity.net:80/download/ele/)" #. type: Bullet: '* ' msgid "" @@ -151,7 +157,7 @@ msgstr "[Heads](https://heads.dyne.org/)" #. type: Bullet: '* ' msgid "[ICLOAK](https://icloak.me/)" -msgstr "" +msgstr "[ICLOAK](https://icloak.me/)" #. type: Bullet: '* ' msgid "[IprediaOS](http://www.ipredia.org/)" @@ -238,3 +244,6 @@ msgid "" msgstr "" "[uVirtus](https://web.archive.org/web/20131030050159/https://www.uvirtus." "org/)" + +#~ msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +#~ msgstr "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.id.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.id.po index ef6c87687dc71f7f1a4335e5ec0105e1112f1f3a..7d5e7b9b357870ea94660fa80b5f44417fb65a11 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.id.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-11-24 14:05+0000\n" +"POT-Creation-Date: 2019-12-16 13:23+0000\n" "PO-Revision-Date: 2018-05-12 15:56+0200\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -101,12 +101,14 @@ msgid "Discontinued, abandoned or sleeping projects" msgstr "" #. type: Bullet: '* ' -msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +msgid "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos." +"to:80/projects.html)" msgstr "" #. type: Bullet: '* ' msgid "" -"[ELE](https://web.archive.org/web/20101220113317/http://northernsecurity." +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." "net:80/download/ele/)" msgstr "" diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.it.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.it.po index 625025ca9c2ec9dee621e92a3351714ee7bd6975..f7211bd18e4c5e270c84adf22c89c8665e209754 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.it.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.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-11-24 14:05+0000\n" +"POT-Creation-Date: 2019-12-16 13:23+0000\n" "PO-Revision-Date: 2017-07-09 11:16+0000\n" "Last-Translator: \n" "Language-Team: ita <transitails@inventati.org>\n" @@ -124,8 +124,16 @@ msgid "Discontinued, abandoned or sleeping projects" msgstr "Progetti discontinui, abbandonati o dormienti" #. type: Bullet: '* ' -msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" -msgstr "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +#, fuzzy +#| msgid "" +#| "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" +#| "anonymityanywhere.com/)" +msgid "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos." +"to:80/projects.html)" +msgstr "" +"[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" +"anonymityanywhere.com/)" #. type: Bullet: '* ' #, fuzzy @@ -133,7 +141,7 @@ msgstr "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" #| "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" #| "anonymityanywhere.com/)" msgid "" -"[ELE](https://web.archive.org/web/20101220113317/http://northernsecurity." +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." "net:80/download/ele/)" msgstr "" "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" @@ -272,6 +280,9 @@ msgstr "" "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" "anonymityanywhere.com/)" +#~ msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +#~ msgstr "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" + #~ msgid "[ELE](http://www.northernsecurity.net/download/ele/) (dead link)" #~ msgstr "" #~ "[ELE](http://www.northernsecurity.net/download/ele/) (collegamento fuori " diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.mdwn b/wiki/src/doc/about/acknowledgments_and_similar_projects.mdwn index a46846502f80e1d0d36e8cf21f263de78b88ca20..0e88ba1850b83aad9deff06e653cccefe749cd95 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.mdwn +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.mdwn @@ -37,8 +37,8 @@ if some project is listed in the wrong category. ## Discontinued, abandoned or sleeping projects -* [Anonym.OS](http://sourceforge.net/projects/anonym-os/) -* [ELE](https://web.archive.org/web/20101220113317/http://northernsecurity.net:80/download/ele/) +* [Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/projects.html) +* [ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity.net:80/download/ele/) * [Estrella Roja](http://distrowatch.com/table.php?distribution=estrellaroja) * [Freepto](https://web.archive.org/web/20171022102527/http://www.freepto.mx:80/en/) * [Heads](https://heads.dyne.org/) diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.pl.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.pl.po index d8bdd28de231a91a571df746eaf2384afa5d8e09..22dae9f58715eb1560301091c793abadb3ca64a7 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.pl.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.pl.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-24 14:05+0000\n" +"POT-Creation-Date: 2019-12-16 13:23+0000\n" "PO-Revision-Date: 2018-07-02 10:56+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -104,12 +104,14 @@ msgid "Discontinued, abandoned or sleeping projects" msgstr "" #. type: Bullet: '* ' -msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +msgid "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos." +"to:80/projects.html)" msgstr "" #. type: Bullet: '* ' msgid "" -"[ELE](https://web.archive.org/web/20101220113317/http://northernsecurity." +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." "net:80/download/ele/)" msgstr "" diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.pt.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.pt.po index d5fd23990007007ffb568f810e08d3568a1a5068..f39480c2eb73d489303d519daa0541353c192626 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.pt.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.pt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-11-24 14:05+0000\n" -"PO-Revision-Date: 2019-10-27 11:50+0000\n" +"POT-Creation-Date: 2019-12-16 13:23+0000\n" +"PO-Revision-Date: 2019-12-18 11:26+0000\n" "Last-Translator: communia <ameaneantie@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -86,9 +86,8 @@ msgid "" "Feel free to contact us if you think that your project is missing, or if " "some project is listed in the wrong category." msgstr "" -"Sinta-se à vontade para nos contatar se você acha que seu projeto não está " -"listado, ou se algum dos projetos está listado numa categoria que não " -"deveria." +"Sinta-se à vontade para nos contatar se o seu projeto não estiver listado ou " +"se algum dos projetos estiver listado numa categoria que não deveria." #. type: Title ## #, no-wrap @@ -120,8 +119,16 @@ msgid "Discontinued, abandoned or sleeping projects" msgstr "Projetos suspensos, abandonados ou dormentes" #. type: Bullet: '* ' -msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" -msgstr "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +#, fuzzy +#| msgid "" +#| "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" +#| "anonymityanywhere.com/)" +msgid "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos." +"to:80/projects.html)" +msgstr "" +"[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" +"anonymityanywhere.com/)" #. type: Bullet: '* ' #, fuzzy @@ -129,7 +136,7 @@ msgstr "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" #| "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" #| "anonymityanywhere.com/)" msgid "" -"[ELE](https://web.archive.org/web/20101220113317/http://northernsecurity." +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." "net:80/download/ele/)" msgstr "" "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" @@ -267,6 +274,9 @@ msgstr "" "[The Incognito LiveCD](http://web.archive.org/web/20090220133020/http://" "anonymityanywhere.com/)" +#~ msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +#~ msgstr "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" + #~ msgid "[ELE](http://www.northernsecurity.net/download/ele/) (dead link)" #~ msgstr "" #~ "[ELE](http://www.northernsecurity.net/download/ele/) (link quebrado)" diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.ru.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.ru.po index eec46bebe63c603c46f2bd0e5e5cc639b44bfc6b..9b280972a5029c83c42f0db55a22260d359ade8d 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.ru.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.ru.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-24 14:05+0000\n" +"POT-Creation-Date: 2019-12-16 13:23+0000\n" "PO-Revision-Date: 2018-07-02 10:56+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -104,12 +104,14 @@ msgid "Discontinued, abandoned or sleeping projects" msgstr "" #. type: Bullet: '* ' -msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +msgid "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos." +"to:80/projects.html)" msgstr "" #. type: Bullet: '* ' msgid "" -"[ELE](https://web.archive.org/web/20101220113317/http://northernsecurity." +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." "net:80/download/ele/)" msgstr "" diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.sr_Latn.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.sr_Latn.po index c940c857c505d3c9abc7aae47a509002ef353631..e65d138b82028de22078f8bb06ebe342e33ad86e 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.sr_Latn.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.sr_Latn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-24 14:05+0000\n" +"POT-Creation-Date: 2019-12-16 13:23+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" @@ -101,12 +101,14 @@ msgid "Discontinued, abandoned or sleeping projects" msgstr "" #. type: Bullet: '* ' -msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +msgid "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos." +"to:80/projects.html)" msgstr "" #. type: Bullet: '* ' msgid "" -"[ELE](https://web.archive.org/web/20101220113317/http://northernsecurity." +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." "net:80/download/ele/)" msgstr "" diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.tr.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.tr.po index 1deeac92710c3367dc5f000ade439a0ba516dafe..3717f10a9f917c4cb4aba934ab77a75f10b9d7e5 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.tr.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.tr.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-24 14:05+0000\n" +"POT-Creation-Date: 2019-12-16 13:23+0000\n" "PO-Revision-Date: 2018-07-02 11:00+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -103,12 +103,14 @@ msgid "Discontinued, abandoned or sleeping projects" msgstr "" #. type: Bullet: '* ' -msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +msgid "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos." +"to:80/projects.html)" msgstr "" #. type: Bullet: '* ' msgid "" -"[ELE](https://web.archive.org/web/20101220113317/http://northernsecurity." +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." "net:80/download/ele/)" msgstr "" diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.zh.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.zh.po index 892161756a96965999fabc0c2c1fc057b7523f16..f4a2432845bccaff0e9e9b142c35f7cecf8b89e8 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.zh.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.zh.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-24 14:05+0000\n" +"POT-Creation-Date: 2019-12-16 13:23+0000\n" "PO-Revision-Date: 2018-07-02 10:58+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -103,12 +103,14 @@ msgid "Discontinued, abandoned or sleeping projects" msgstr "" #. type: Bullet: '* ' -msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +msgid "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos." +"to:80/projects.html)" msgstr "" #. type: Bullet: '* ' msgid "" -"[ELE](https://web.archive.org/web/20101220113317/http://northernsecurity." +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." "net:80/download/ele/)" msgstr "" diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.zh_TW.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.zh_TW.po index c24dc796b4a89ef1d659bf19b0c41a51b9b5f657..8ecbc706baf8921e8fe1ce0a2345eebaffb49585 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.zh_TW.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.zh_TW.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-24 14:05+0000\n" +"POT-Creation-Date: 2019-12-16 13:23+0000\n" "PO-Revision-Date: 2018-07-02 10:56+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -103,12 +103,14 @@ msgid "Discontinued, abandoned or sleeping projects" msgstr "" #. type: Bullet: '* ' -msgid "[Anonym.OS](http://sourceforge.net/projects/anonym-os/)" +msgid "" +"[Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos." +"to:80/projects.html)" msgstr "" #. type: Bullet: '* ' msgid "" -"[ELE](https://web.archive.org/web/20101220113317/http://northernsecurity." +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." "net:80/download/ele/)" msgstr "" diff --git a/wiki/src/doc/about/features.ar.po b/wiki/src/doc/about/features.ar.po index 53735e26719641bfa4eea16640ec61ff9987a89f..6fceda45620596dc556c81a578968e6b936ed4b1 100644 --- a/wiki/src/doc/about/features.ar.po +++ b/wiki/src/doc/about/features.ar.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-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" "PO-Revision-Date: 2018-03-01 20:05+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -174,6 +174,22 @@ msgid "" "doc/encryption_and_privacy/checksums]])" msgstr "" +#. type: Bullet: '* ' +msgid "" +"[PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"[Tesseract OCR](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: '* ' +msgid "[FFmpeg](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + #. type: Plain text msgid "" "The full packages list can be found in the [BitTorrent files download " @@ -273,3 +289,75 @@ msgid "" "If you wish to make it easier to use Tails for your language speakers, see " "the [[translators guidelines|contribute/how/translate]]." msgstr "" + +msgid "[Scribus](https://www.scribus.net/) for page layout" +msgstr "[Scribus](https://www.scribus.net/), ein Layout-Programm" + +msgid "" +"[[customization|contribute/customize]] (e.g. to add a given missing piece of " +"software) is relatively easy: one may [[contribute/build]] a custom Amnesic " +"Incognito Live System in about one hour on a modern desktop computer" +msgstr "" +"[[Individuelles Anpassen|contribute/customize]] (d.h. ein fehlendes Stück " +"Software hinzuzufügen) ist relativ leicht: ein angepasstes Amnesic Incognito " +"Livesystem kann in ca. einer Stunde auf einem modernen Rechner eigens " +"[[erstellt|contribute/build]] werden" + +msgid "" +"[PiTiVi](http://pitivi.org/) for non-linear audio/video editing ([[More...|" +"doc/sensitive_documents/sound_and_video]])" +msgstr "" +"[PiTiVi](http://pitivi.org/) zur nicht-linearen Audio-/Videobearbeitung " +"([[Mehr...|doc/sensitive_documents/sound_and_video]])" + +msgid "" +"[Traverso](http://traverso-daw.org/) a multi-track audio recorder and editor" +msgstr "" +"[Traverso](http://traverso-daw.org/), ein mehrspuriger Audiorekorder und " +"Editor" + +msgid "" +"[Monkeysign](http://web.monkeysphere.info/monkeysign), a tool for OpenPGP " +"key signing and exchange" +msgstr "" +"[Monkeysign](http://web.monkeysphere.info/monkeysign), ein Werkzeug für das " +"Signieren und Austauschen von OpenPGP-Schlüsseln" + +msgid "[PWGen](http://pwgen-win.sourceforge.net/), a strong password generator" +msgstr "" +"[PWGen](http://pwgen-win.sourceforge.net/), ein Generator für starke " +"Passwörter" + +msgid "" +"[[!wikipedia Shamir's Secret Sharing]] using [gfshare](http://www.digital-" +"scurf.org/software/libgfshare) and [ssss](http://point-at-infinity.org/" +"ssss/)" +msgstr "" +"[[!wikipedia_de Shamir's Secret Sharing]] benutzt [gfshare](http://www." +"digital-scurf.org/software/libgfshare) und [ssss](http://point-at-infinity." +"org/ssss/)" + +msgid "" +"[Keyringer](https://keyringer.pw/), a command line tool to encrypt secrets " +"shared through Git ([[More...|doc/encryption_and_privacy/keyringer]])" +msgstr "" +"[Keyringer](https://keyringer.pw/), eine Software um verschlüsselte " +"Geheimnisse über Git auszutauschen (Kommandozeile) ([[Mehr...|doc/" +"encryption_and_privacy/keyringer]])" + +msgid "" +"[Paperkey](http://www.jabberwocky.com/software/paperkey/) a command line " +"tool to back up OpenPGP secret keys on paper ([[More...|doc/advanced_topics/" +"paperkey]])" +msgstr "" +"[Paperkey](http://www.jabberwocky.com/software/paperkey/), ein " +"Kommandozeilenwerkzeug mit dem Sie geheime OpenPGP-Schlüssel auf Papier " +"sichern können ([[Mehr...|doc/advanced_topics/paperkey]])" + +msgid "" +"You can [[install additional software|doc/first_steps/additional_software]] " +"in Tails: all software packaged for Debian is installable in Tails." +msgstr "" +"Sie können in Tails [[zusätzliche Software installieren|doc/first_steps/" +"additional_software]]: alle Softwarepakete, die es für Debian gibt, können " +"in Tails installiert werden." diff --git a/wiki/src/doc/about/features.ca.po b/wiki/src/doc/about/features.ca.po index 543b7177b44d691d57a8aeb60f9f32ddf38f3a7a..5798880e4d575000e16fb458eb9fac51f02eeb0d 100644 --- a/wiki/src/doc/about/features.ca.po +++ b/wiki/src/doc/about/features.ca.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-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" "PO-Revision-Date: 2018-02-06 15:25+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -173,6 +173,22 @@ msgid "" "doc/encryption_and_privacy/checksums]])" msgstr "" +#. type: Bullet: '* ' +msgid "" +"[PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"[Tesseract OCR](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: '* ' +msgid "[FFmpeg](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + #. type: Plain text msgid "" "The full packages list can be found in the [BitTorrent files download " @@ -272,3 +288,75 @@ msgid "" "If you wish to make it easier to use Tails for your language speakers, see " "the [[translators guidelines|contribute/how/translate]]." msgstr "" + +msgid "[Scribus](https://www.scribus.net/) for page layout" +msgstr "[Scribus](https://www.scribus.net/), ein Layout-Programm" + +msgid "" +"[[customization|contribute/customize]] (e.g. to add a given missing piece of " +"software) is relatively easy: one may [[contribute/build]] a custom Amnesic " +"Incognito Live System in about one hour on a modern desktop computer" +msgstr "" +"[[Individuelles Anpassen|contribute/customize]] (d.h. ein fehlendes Stück " +"Software hinzuzufügen) ist relativ leicht: ein angepasstes Amnesic Incognito " +"Livesystem kann in ca. einer Stunde auf einem modernen Rechner eigens " +"[[erstellt|contribute/build]] werden" + +msgid "" +"[PiTiVi](http://pitivi.org/) for non-linear audio/video editing ([[More...|" +"doc/sensitive_documents/sound_and_video]])" +msgstr "" +"[PiTiVi](http://pitivi.org/) zur nicht-linearen Audio-/Videobearbeitung " +"([[Mehr...|doc/sensitive_documents/sound_and_video]])" + +msgid "" +"[Traverso](http://traverso-daw.org/) a multi-track audio recorder and editor" +msgstr "" +"[Traverso](http://traverso-daw.org/), ein mehrspuriger Audiorekorder und " +"Editor" + +msgid "" +"[Monkeysign](http://web.monkeysphere.info/monkeysign), a tool for OpenPGP " +"key signing and exchange" +msgstr "" +"[Monkeysign](http://web.monkeysphere.info/monkeysign), ein Werkzeug für das " +"Signieren und Austauschen von OpenPGP-Schlüsseln" + +msgid "[PWGen](http://pwgen-win.sourceforge.net/), a strong password generator" +msgstr "" +"[PWGen](http://pwgen-win.sourceforge.net/), ein Generator für starke " +"Passwörter" + +msgid "" +"[[!wikipedia Shamir's Secret Sharing]] using [gfshare](http://www.digital-" +"scurf.org/software/libgfshare) and [ssss](http://point-at-infinity.org/" +"ssss/)" +msgstr "" +"[[!wikipedia_de Shamir's Secret Sharing]] benutzt [gfshare](http://www." +"digital-scurf.org/software/libgfshare) und [ssss](http://point-at-infinity." +"org/ssss/)" + +msgid "" +"[Keyringer](https://keyringer.pw/), a command line tool to encrypt secrets " +"shared through Git ([[More...|doc/encryption_and_privacy/keyringer]])" +msgstr "" +"[Keyringer](https://keyringer.pw/), eine Software um verschlüsselte " +"Geheimnisse über Git auszutauschen (Kommandozeile) ([[Mehr...|doc/" +"encryption_and_privacy/keyringer]])" + +msgid "" +"[Paperkey](http://www.jabberwocky.com/software/paperkey/) a command line " +"tool to back up OpenPGP secret keys on paper ([[More...|doc/advanced_topics/" +"paperkey]])" +msgstr "" +"[Paperkey](http://www.jabberwocky.com/software/paperkey/), ein " +"Kommandozeilenwerkzeug mit dem Sie geheime OpenPGP-Schlüssel auf Papier " +"sichern können ([[Mehr...|doc/advanced_topics/paperkey]])" + +msgid "" +"You can [[install additional software|doc/first_steps/additional_software]] " +"in Tails: all software packaged for Debian is installable in Tails." +msgstr "" +"Sie können in Tails [[zusätzliche Software installieren|doc/first_steps/" +"additional_software]]: alle Softwarepakete, die es für Debian gibt, können " +"in Tails installiert werden." diff --git a/wiki/src/doc/about/features.de.po b/wiki/src/doc/about/features.de.po index 1cd847de9e31d9ba99dea19e3b63eb15c4898ffb..86c323e86c33a418a034c2bc4867dbf30b5d7afc 100644 --- a/wiki/src/doc/about/features.de.po +++ b/wiki/src/doc/about/features.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails translations\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" "PO-Revision-Date: 2019-11-22 16:30+0000\n" "Last-Translator: Muri Nicanor <muri@immerda.ch>\n" "Language-Team: Tails translations <tails-l10n@boum.org>\n" @@ -264,6 +264,30 @@ msgstr "" "[GtkHash](http://gtkhash.sourceforge.net/) zum Berechnen von Prüfsummen " "([[Mehr...|doc/encryption_and_privacy/checksums]])" +#. type: Bullet: '* ' +#, fuzzy +#| msgid "" +#| "[pdf-redact-tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +#| "help with securely redacting and stripping metadata from documents before " +#| "publishing" +msgid "" +"[PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" +"[pdf-redact-tools](https://github.com/firstlookmedia/pdf-redact-tools), um\n" +"dabei zu helfen, Dokumente vor dem Veröffentlichen sicher zu redigieren und\n" +"von Metadaten zu bereinigen" + +#. type: Bullet: '* ' +msgid "" +"[Tesseract OCR](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: '* ' +msgid "[FFmpeg](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + #. type: Plain text msgid "" "The full packages list can be found in the [BitTorrent files download " @@ -307,8 +331,7 @@ msgstr "Weitere Funktionen\n" #. type: Bullet: '* ' msgid "" -"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to " -"newer versions" +"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to newer versions" msgstr "" "ein automatischer Mechanismus zum [[Aktualisieren des USB-Sticks|doc/" "upgrade]] auf eine neuere Version" @@ -448,17 +471,6 @@ msgstr "" #~ "digital-scurf.org/software/libgfshare) und [ssss](http://point-at-" #~ "infinity.org/ssss/)" -#~ msgid "" -#~ "[pdf-redact-tools](https://github.com/firstlookmedia/pdf-redact-tools) to " -#~ "help with securely redacting and stripping metadata from documents before " -#~ "publishing" -#~ msgstr "" -#~ "[pdf-redact-tools](https://github.com/firstlookmedia/pdf-redact-tools), " -#~ "um\n" -#~ "dabei zu helfen, Dokumente vor dem Veröffentlichen sicher zu redigieren " -#~ "und\n" -#~ "von Metadaten zu bereinigen" - #~ msgid "" #~ "[Keyringer](https://keyringer.pw/), a command line tool to encrypt " #~ "secrets shared through Git ([[More...|doc/encryption_and_privacy/" diff --git a/wiki/src/doc/about/features.es.po b/wiki/src/doc/about/features.es.po index c0bc5e35b9db5136a8b52119fc82e0b4b3dd7ad4..afdb5ff87a18fdcf300499221449d8bee1a1f703 100644 --- a/wiki/src/doc/about/features.es.po +++ b/wiki/src/doc/about/features.es.po @@ -6,8 +6,8 @@ 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" -"PO-Revision-Date: 2019-12-07 23:25+0000\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" +"PO-Revision-Date: 2020-01-15 08:25+0000\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "features/es/>\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -30,7 +30,8 @@ msgstr "[[!toc levels=2]]\n" #. type: Plain text msgid "Tails is based on [[Debian|https://www.debian.org/]] 10 (Buster)." -msgstr "Tails se basa en [[Debian|https://www.debian.org/index.es.html]] 10 (Buster)." +msgstr "" +"Tails se basa en [[Debian|https://www.debian.org/index.es.html]] 10 (Buster)." #. type: Title = #, no-wrap @@ -82,36 +83,22 @@ msgstr "" "* [Tor](https://www.torproject.org) con:\n" " - [[aislamiento de streams|contribute/design/stream_isolation]]\n" " - soporte para puentes normales, obfs2, obfs3, obfs4, y ScrambleSuit\n" -" - la interfaz gráfica Onion Circuits ([[Más...|doc/anonymous_internet/" -"tor_status#circuits]])\n" -"* [NetworkManager](http://projects.gnome.org/NetworkManager/) para " -"configurar fácilmente\n" +" - la interfaz gráfica Onion Circuits ([[Más...|doc/anonymous_internet/tor_status#circuits]])\n" +"* [NetworkManager](http://projects.gnome.org/NetworkManager/) para configurar fácilmente\n" "la red ([[Más...|doc/anonymous_internet/networkmanager]])\n" -"* [Tor Browser](https://www.torproject.org/projects/torbrowser.html.en) " -"([[Más...|doc/anonymous_internet/Tor_Browser]]), un navegador web basado en [" -"Mozilla Firefox](http://getfirefox.com) y modificado para proteger tu " -"anonimato con:\n" -" - [Torbutton](https://www.torproject.org/docs/torbutton) para el anonimato " -"y la protección contra el malvado JavaScript\n" +"* [Tor Browser](https://www.torproject.org/projects/torbrowser.html.en) ([[Más...|doc/anonymous_internet/Tor_Browser]]), un navegador web basado en [Mozilla Firefox](http://getfirefox.com) y modificado para proteger tu anonimato con:\n" +" - [Torbutton](https://www.torproject.org/docs/torbutton) para el anonimato y la protección contra el malvado JavaScript\n" " - todas las cookies se tratan como cookies de sesión por defecto;\n" " - [HTTPS Everywhere](https://www.eff.org/https-everywhere)\n" " permite conecciones cifradas con SSL a gran cantidad de servidores web\n" -" - [NoScript](http://noscript.net/) para tener más control sobre JavaScript." -"\n" -" - [uBlock Origin](https://github.com/gorhill/uBlock/) para remover " -"publicidad.\n" +" - [NoScript](http://noscript.net/) para tener más control sobre JavaScript.\n" +" - [uBlock Origin](https://github.com/gorhill/uBlock/) para remover publicidad.\n" "* [Pidgin](http://www.pidgin.im/) preconfigurado con\n" -" [OTR](http://www.cypherpunks.ca/otr/index.php) para mensajería Off-the-" -"Record ([[Más...|doc/anonymous_internet/pidgin]])\n" -"* [OnionShare](https://onionshare.org/) para compartir archivos de manera " -"anónima.\n" -"* [Thunderbird](https://www.thunderbird.net/) con " -"[Enigmail](https://www.enigmail.net/) para soporte OpenPGP, también con " -"lector de noticias RSS y Atom ([[Más...|doc/anonymous_internet/thunderbird]])" -"\n" +" [OTR](http://www.cypherpunks.ca/otr/index.php) para mensajería Off-the-Record ([[Más...|doc/anonymous_internet/pidgin]])\n" +"* [OnionShare](https://onionshare.org/) para compartir archivos de manera anónima.\n" +"* [Thunderbird](https://www.thunderbird.net/) con [Enigmail](https://www.enigmail.net/) para soporte OpenPGP, también con lector de noticias RSS y Atom ([[Más...|doc/anonymous_internet/thunderbird]])\n" "* [Aircrack-ng](http://aircrack-ng.org/) para auditoría de redes wireless\n" -"* [Electrum](https://electrum.org/), cliente de bitcoin fácil de usar " -"([[Más...|doc/anonymous_internet/electrum]])\n" +"* [Electrum](https://electrum.org/), cliente de bitcoin fácil de usar ([[Más...|doc/anonymous_internet/electrum]])\n" #. type: Title - #, no-wrap @@ -236,6 +223,27 @@ msgstr "" "[GtkHash](http://gtkhash.sourceforge.net/) para calcular sumas de " "comprobación ([[More...|doc/encryption_and_privacy/checksums]])" +#. type: Bullet: '* ' +msgid "" +"[PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" +"[PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) para " +"redactar de forma segura y quitar metadatos de los documentos de texto antes " +"de publicarlos" + +#. type: Bullet: '* ' +msgid "" +"[Tesseract OCR](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" +"[Tesseract OCR](https://github.com/tesseract-ocr/tesseract) para convertir " +"imagenes que contienen texto a un documento de texto" + +#. type: Bullet: '* ' +msgid "[FFmpeg](https://ffmpeg.org/) to record and convert audio and video" +msgstr "[FFmpeg](https://ffmpeg.org/) para grabar y convertir audio y video" + #. type: Plain text msgid "" "The full packages list can be found in the [BitTorrent files download " @@ -283,8 +291,7 @@ msgstr "Funcionalidades adicionales\n" #. type: Bullet: '* ' msgid "" -"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to " -"newer versions" +"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to newer versions" msgstr "" "mecanismo automático para [[actualizar una memoria USB|doc/first_steps/" "upgrade]] a nuevas versiones" @@ -418,15 +425,6 @@ msgstr "" #~ "scurf.org/software/libgfshare) y [ssss](http://point-at-infinity.org/" #~ "ssss/)" -#~ msgid "" -#~ "[pdf-redact-tools](https://github.com/firstlookmedia/pdf-redact-tools) to " -#~ "help with securely redacting and stripping metadata from documents before " -#~ "publishing" -#~ msgstr "" -#~ "[pdf-redact-tools](https://github.com/firstlookmedia/pdf-redact-tools) " -#~ "para ayudar a redactar de forma segura y quitar metadatos de los " -#~ "documentos antes de publicarlos" - #~ msgid "" #~ "[Keyringer](https://keyringer.pw/), a command line tool to encrypt " #~ "secrets shared through Git ([[More...|doc/encryption_and_privacy/" diff --git a/wiki/src/doc/about/features.fa.po b/wiki/src/doc/about/features.fa.po index cd8b185b09bf5eb7436dac9f836df62b59789fec..6fec9b2796f6ec63631144b7426ae734fa47b5b4 100644 --- a/wiki/src/doc/about/features.fa.po +++ b/wiki/src/doc/about/features.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-01-07 17:53+0100\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/features/" @@ -273,6 +273,22 @@ msgstr "" "[GtkHash](http://gtkhash.sourceforge.net/) برای محاسبهٔ چکسام ([[بیشتر...|doc/" "encryption_and_privacy/checksums]])" +#. type: Bullet: '* ' +msgid "" +"[PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"[Tesseract OCR](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: '* ' +msgid "[FFmpeg](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + #. type: Plain text msgid "" "The full packages list can be found in the [BitTorrent files download " diff --git a/wiki/src/doc/about/features.fr.po b/wiki/src/doc/about/features.fr.po index e00190a5682f78f2c59882777f15d3b745a1c521..036d79f3bce96d67722029347b58f58e76e62e2c 100644 --- a/wiki/src/doc/about/features.fr.po +++ b/wiki/src/doc/about/features.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2019-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" "PO-Revision-Date: 2018-04-08 23:32+0000\n" "Last-Translator: \n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -231,6 +231,30 @@ msgstr "" "[GtkHash](http://gtkhash.sourceforge.net/) pour calculer les sommes de " "contrôle ([[Plus d'information...|doc/encryption_and_privacy/checksums]])" +#. type: Bullet: '* ' +#, fuzzy +#| msgid "" +#| "[pdf-redact-tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +#| "help with securely redacting and stripping metadata from documents before " +#| "publishing" +msgid "" +"[PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" +"[pdf-redact-tools](https://github.com/firstlookmedia/pdf-redact-tools) pour " +"aider à éditer des documents de façon sécurisé et à en enlever les " +"métadonnées avant publication" + +#. type: Bullet: '* ' +msgid "" +"[Tesseract OCR](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: '* ' +msgid "[FFmpeg](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + #. type: Plain text msgid "" "The full packages list can be found in the [BitTorrent files download " @@ -278,11 +302,10 @@ msgstr "Fonctionnalités supplémentaires\n" #. type: Bullet: '* ' msgid "" -"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to " -"newer versions" +"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to newer versions" msgstr "" -"automatisation de la [[mise à jour d'une clé USB|doc/upgrade]] " -"vers une version plus récente" +"automatisation de la [[mise à jour d'une clé USB|doc/upgrade]] vers une " +"version plus récente" #. type: Bullet: '* ' msgid "" @@ -424,15 +447,6 @@ msgstr "" #~ "www.digital-scurf.org/software/libgfshare) et [ssss](http://point-at-" #~ "infinity.org/ssss/)" -#~ msgid "" -#~ "[pdf-redact-tools](https://github.com/firstlookmedia/pdf-redact-tools) to " -#~ "help with securely redacting and stripping metadata from documents before " -#~ "publishing" -#~ msgstr "" -#~ "[pdf-redact-tools](https://github.com/firstlookmedia/pdf-redact-tools) " -#~ "pour aider à éditer des documents de façon sécurisé et à en enlever les " -#~ "métadonnées avant publication" - #~ msgid "" #~ "[Keyringer](https://keyringer.pw/), a command line tool to encrypt " #~ "secrets shared through Git ([[More...|doc/encryption_and_privacy/" diff --git a/wiki/src/doc/about/features.id.po b/wiki/src/doc/about/features.id.po index 49a7b31a05bdf39f2a51c43b4030d0ce492b2243..02e2424ca506773ba8fe5a060906ddbda593d2d4 100644 --- a/wiki/src/doc/about/features.id.po +++ b/wiki/src/doc/about/features.id.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: Tails translations\n" -"POT-Creation-Date: 2019-05-18 09:54+0200\n" -"PO-Revision-Date: 2018-03-21 16:45+0100\n" -"Last-Translator: Tails translators\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" +"PO-Revision-Date: 2020-01-15 21:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translations <tails-l10n@boum.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.11\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -24,10 +26,10 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Plain text -msgid "Tails is based on [[Debian|https://www.debian.org/]] 9 (Stretch)." +msgid "Tails is based on [[Debian|https://www.debian.org/]] 10 (Buster)." msgstr "" #. type: Title = @@ -69,7 +71,7 @@ msgid "" "* [Pidgin](http://www.pidgin.im/) preconfigured with\n" " [OTR](http://www.cypherpunks.ca/otr/index.php) for Off-the-Record\n" " Messaging ([[More...|doc/anonymous_internet/pidgin]])\n" -"* [OnionShare](https://onionshare.org/) for anonymous filesharing\n" +"* [OnionShare](https://onionshare.org/) for anonymous file sharing\n" "* [Thunderbird](https://www.thunderbird.net/) email client with [Enigmail](https://www.enigmail.net/) for OpenPGP support, also an RSS and Atom news feed reader ([[More...|doc/anonymous_internet/thunderbird]])\n" "* [Aircrack-ng](http://aircrack-ng.org/) for wireless network auditing\n" "* [Electrum](https://electrum.org/), an easy-to-use bitcoin client ([[More...|doc/anonymous_internet/electrum]])\n" @@ -92,10 +94,6 @@ msgid "" "images ([[More...|doc/sensitive_documents/graphics]])" msgstr "" -#. type: Bullet: '* ' -msgid "[Scribus](https://www.scribus.net/) for page layout" -msgstr "" - #. type: Bullet: '* ' msgid "" "GNOME Sound Recorder for recording sound ([[More...|doc/sensitive_documents/" @@ -165,7 +163,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"[KeePassX](http://www.keepassx.org/) password manager ([[More...|doc/" +"[KeePassXC](https://keepassxc.org/) password manager ([[More...|doc/" "encryption_and_privacy/manage_passwords]])" msgstr "" @@ -175,6 +173,22 @@ msgid "" "doc/encryption_and_privacy/checksums]])" msgstr "" +#. type: Bullet: '* ' +msgid "" +"[PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"[Tesseract OCR](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: '* ' +msgid "[FFmpeg](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + #. type: Plain text msgid "" "The full packages list can be found in the [BitTorrent files download " @@ -213,8 +227,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to " -"newer versions" +"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to newer versions" msgstr "" #. type: Bullet: '* ' @@ -223,13 +236,6 @@ msgid "" "org/) ([[More...|doc/advanced_topics/virtualization]])" msgstr "" -#. type: Bullet: '* ' -msgid "" -"[[customization|contribute/customize]] (e.g. to add a given missing piece of " -"software) is relatively easy: one may [[contribute/build]] a custom Amnesic " -"Incognito Live System in about one hour on a modern desktop computer" -msgstr "" - #. type: Bullet: '* ' msgid "" "64-bit PAE-enabled kernel with NX-bit and SMP support on hardware that " @@ -282,3 +288,62 @@ msgid "" "If you wish to make it easier to use Tails for your language speakers, see " "the [[translators guidelines|contribute/how/translate]]." msgstr "" + +msgid "" +"[PiTiVi](http://pitivi.org/) for non-linear audio/video editing ([[More...|" +"doc/sensitive_documents/sound_and_video]])" +msgstr "" +"[PiTiVi](http://pitivi.org/) zur nicht-linearen Audio-/Videobearbeitung " +"([[Mehr...|doc/sensitive_documents/sound_and_video]])" + +msgid "" +"[Traverso](http://traverso-daw.org/) a multi-track audio recorder and editor" +msgstr "" +"[Traverso](http://traverso-daw.org/), ein mehrspuriger Audiorekorder und " +"Editor" + +msgid "" +"[Monkeysign](http://web.monkeysphere.info/monkeysign), a tool for OpenPGP " +"key signing and exchange" +msgstr "" +"[Monkeysign](http://web.monkeysphere.info/monkeysign), ein Werkzeug für das " +"Signieren und Austauschen von OpenPGP-Schlüsseln" + +msgid "[PWGen](http://pwgen-win.sourceforge.net/), a strong password generator" +msgstr "" +"[PWGen](http://pwgen-win.sourceforge.net/), ein Generator für starke " +"Passwörter" + +msgid "" +"[[!wikipedia Shamir's Secret Sharing]] using [gfshare](http://www.digital-" +"scurf.org/software/libgfshare) and [ssss](http://point-at-infinity.org/" +"ssss/)" +msgstr "" +"[[!wikipedia_de Shamir's Secret Sharing]] benutzt [gfshare](http://www." +"digital-scurf.org/software/libgfshare) und [ssss](http://point-at-infinity." +"org/ssss/)" + +msgid "" +"[Keyringer](https://keyringer.pw/), a command line tool to encrypt secrets " +"shared through Git ([[More...|doc/encryption_and_privacy/keyringer]])" +msgstr "" +"[Keyringer](https://keyringer.pw/), eine Software um verschlüsselte " +"Geheimnisse über Git auszutauschen (Kommandozeile) ([[Mehr...|doc/" +"encryption_and_privacy/keyringer]])" + +msgid "" +"[Paperkey](http://www.jabberwocky.com/software/paperkey/) a command line " +"tool to back up OpenPGP secret keys on paper ([[More...|doc/advanced_topics/" +"paperkey]])" +msgstr "" +"[Paperkey](http://www.jabberwocky.com/software/paperkey/), ein " +"Kommandozeilenwerkzeug mit dem Sie geheime OpenPGP-Schlüssel auf Papier " +"sichern können ([[Mehr...|doc/advanced_topics/paperkey]])" + +msgid "" +"You can [[install additional software|doc/first_steps/additional_software]] " +"in Tails: all software packaged for Debian is installable in Tails." +msgstr "" +"Sie können in Tails [[zusätzliche Software installieren|doc/first_steps/" +"additional_software]]: alle Softwarepakete, die es für Debian gibt, können " +"in Tails installiert werden." diff --git a/wiki/src/doc/about/features.it.po b/wiki/src/doc/about/features.it.po index 688cc54d81a5dbd438e4813166a9477ddcc92203..251f5634cd7a066e891982d790b4c8d88bc2cbf2 100644 --- a/wiki/src/doc/about/features.it.po +++ b/wiki/src/doc/about/features.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: revisione ignifugo\n" -"POT-Creation-Date: 2019-08-29 15:15+0200\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" "PO-Revision-Date: 2016-07-14 13:07+0200\n" "Last-Translator: \n" "Language-Team: ita <transitails@inventati.org>\n" @@ -273,6 +273,22 @@ msgstr "" "[GtkHash](http://gtkhash.sourceforge.net/) per calcolare i checksum ([[Plus " "d'information...|doc/encryption_and_privacy/checksums]])" +#. type: Bullet: '* ' +msgid "" +"[PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"[Tesseract OCR](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: '* ' +msgid "[FFmpeg](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + #. type: Plain text #, fuzzy #| msgid "" @@ -323,8 +339,7 @@ msgstr "Caratteristiche aggiuntive\n" #| "automatic mechanism to [[upgrade a USB stick or a SD card|doc/first_steps/" #| "upgrade]] to newer versions" msgid "" -"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to " -"newer versions" +"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to newer versions" msgstr "" "meccanismo automatico per [[aggiornare una chiavetta USB o una scheda SD|doc/" "upgrade]] ad una nuova versione" diff --git a/wiki/src/doc/about/features.mdwn b/wiki/src/doc/about/features.mdwn index 45e885f7e121683d3bcf98655e05f8857c54f4ee..52a2c83c597cbef5236dc90a8c41d9b9102908fc 100644 --- a/wiki/src/doc/about/features.mdwn +++ b/wiki/src/doc/about/features.mdwn @@ -67,6 +67,9 @@ Encryption and privacy * [MAT](https://0xacab.org/jvoisin/mat2) to anonymize metadata in files * [KeePassXC](https://keepassxc.org/) password manager ([[More...|doc/encryption_and_privacy/manage_passwords]]) * [GtkHash](http://gtkhash.sourceforge.net/) to calculate checksums ([[More...|doc/encryption_and_privacy/checksums]]) +* [PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) to redact and strip metadata from text documents before publishing +* [Tesseract OCR](https://github.com/tesseract-ocr/tesseract) to convert images containing text into a text document +* [FFmpeg](https://ffmpeg.org/) to record and convert audio and video The full packages list can be found in the [BitTorrent files download directory](https://tails.boum.org/torrents/files/) (look for files with the `.packages` diff --git a/wiki/src/doc/about/features.pl.po b/wiki/src/doc/about/features.pl.po index 394b521ab81084a857d52008b11786fa96ade712..06e6e5904bcf787628a08024cacf87a72b2d132e 100644 --- a/wiki/src/doc/about/features.pl.po +++ b/wiki/src/doc/about/features.pl.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-05-18 09:54+0200\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" "PO-Revision-Date: 2018-02-22 19:01+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -30,7 +30,7 @@ msgid "[[!toc levels=2]]\n" msgstr "[[!toc levels=2]]\n" #. type: Plain text -msgid "Tails is based on [[Debian|https://www.debian.org/]] 9 (Stretch)." +msgid "Tails is based on [[Debian|https://www.debian.org/]] 10 (Buster)." msgstr "" #. type: Title = @@ -72,7 +72,7 @@ msgid "" "* [Pidgin](http://www.pidgin.im/) preconfigured with\n" " [OTR](http://www.cypherpunks.ca/otr/index.php) for Off-the-Record\n" " Messaging ([[More...|doc/anonymous_internet/pidgin]])\n" -"* [OnionShare](https://onionshare.org/) for anonymous filesharing\n" +"* [OnionShare](https://onionshare.org/) for anonymous file sharing\n" "* [Thunderbird](https://www.thunderbird.net/) email client with [Enigmail](https://www.enigmail.net/) for OpenPGP support, also an RSS and Atom news feed reader ([[More...|doc/anonymous_internet/thunderbird]])\n" "* [Aircrack-ng](http://aircrack-ng.org/) for wireless network auditing\n" "* [Electrum](https://electrum.org/), an easy-to-use bitcoin client ([[More...|doc/anonymous_internet/electrum]])\n" @@ -95,10 +95,6 @@ msgid "" "images ([[More...|doc/sensitive_documents/graphics]])" msgstr "" -#. type: Bullet: '* ' -msgid "[Scribus](https://www.scribus.net/) for page layout" -msgstr "" - #. type: Bullet: '* ' msgid "" "GNOME Sound Recorder for recording sound ([[More...|doc/sensitive_documents/" @@ -168,7 +164,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"[KeePassX](http://www.keepassx.org/) password manager ([[More...|doc/" +"[KeePassXC](https://keepassxc.org/) password manager ([[More...|doc/" "encryption_and_privacy/manage_passwords]])" msgstr "" @@ -178,6 +174,22 @@ msgid "" "doc/encryption_and_privacy/checksums]])" msgstr "" +#. type: Bullet: '* ' +msgid "" +"[PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"[Tesseract OCR](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: '* ' +msgid "[FFmpeg](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + #. type: Plain text msgid "" "The full packages list can be found in the [BitTorrent files download " @@ -216,8 +228,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to " -"newer versions" +"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to newer versions" msgstr "" #. type: Bullet: '* ' @@ -226,13 +237,6 @@ msgid "" "org/) ([[More...|doc/advanced_topics/virtualization]])" msgstr "" -#. type: Bullet: '* ' -msgid "" -"[[customization|contribute/customize]] (e.g. to add a given missing piece of " -"software) is relatively easy: one may [[contribute/build]] a custom Amnesic " -"Incognito Live System in about one hour on a modern desktop computer" -msgstr "" - #. type: Bullet: '* ' msgid "" "64-bit PAE-enabled kernel with NX-bit and SMP support on hardware that " @@ -285,3 +289,62 @@ msgid "" "If you wish to make it easier to use Tails for your language speakers, see " "the [[translators guidelines|contribute/how/translate]]." msgstr "" + +msgid "" +"[PiTiVi](http://pitivi.org/) for non-linear audio/video editing ([[More...|" +"doc/sensitive_documents/sound_and_video]])" +msgstr "" +"[PiTiVi](http://pitivi.org/) zur nicht-linearen Audio-/Videobearbeitung " +"([[Mehr...|doc/sensitive_documents/sound_and_video]])" + +msgid "" +"[Traverso](http://traverso-daw.org/) a multi-track audio recorder and editor" +msgstr "" +"[Traverso](http://traverso-daw.org/), ein mehrspuriger Audiorekorder und " +"Editor" + +msgid "" +"[Monkeysign](http://web.monkeysphere.info/monkeysign), a tool for OpenPGP " +"key signing and exchange" +msgstr "" +"[Monkeysign](http://web.monkeysphere.info/monkeysign), ein Werkzeug für das " +"Signieren und Austauschen von OpenPGP-Schlüsseln" + +msgid "[PWGen](http://pwgen-win.sourceforge.net/), a strong password generator" +msgstr "" +"[PWGen](http://pwgen-win.sourceforge.net/), ein Generator für starke " +"Passwörter" + +msgid "" +"[[!wikipedia Shamir's Secret Sharing]] using [gfshare](http://www.digital-" +"scurf.org/software/libgfshare) and [ssss](http://point-at-infinity.org/" +"ssss/)" +msgstr "" +"[[!wikipedia_de Shamir's Secret Sharing]] benutzt [gfshare](http://www." +"digital-scurf.org/software/libgfshare) und [ssss](http://point-at-infinity." +"org/ssss/)" + +msgid "" +"[Keyringer](https://keyringer.pw/), a command line tool to encrypt secrets " +"shared through Git ([[More...|doc/encryption_and_privacy/keyringer]])" +msgstr "" +"[Keyringer](https://keyringer.pw/), eine Software um verschlüsselte " +"Geheimnisse über Git auszutauschen (Kommandozeile) ([[Mehr...|doc/" +"encryption_and_privacy/keyringer]])" + +msgid "" +"[Paperkey](http://www.jabberwocky.com/software/paperkey/) a command line " +"tool to back up OpenPGP secret keys on paper ([[More...|doc/advanced_topics/" +"paperkey]])" +msgstr "" +"[Paperkey](http://www.jabberwocky.com/software/paperkey/), ein " +"Kommandozeilenwerkzeug mit dem Sie geheime OpenPGP-Schlüssel auf Papier " +"sichern können ([[Mehr...|doc/advanced_topics/paperkey]])" + +msgid "" +"You can [[install additional software|doc/first_steps/additional_software]] " +"in Tails: all software packaged for Debian is installable in Tails." +msgstr "" +"Sie können in Tails [[zusätzliche Software installieren|doc/first_steps/" +"additional_software]]: alle Softwarepakete, die es für Debian gibt, können " +"in Tails installiert werden." diff --git a/wiki/src/doc/about/features.pt.po b/wiki/src/doc/about/features.pt.po index e02cc6e89a9d85abf8fae0b514bc27e9319db618..9d108601f931fafe4e29c2b6eff127c9c3737583 100644 --- a/wiki/src/doc/about/features.pt.po +++ b/wiki/src/doc/about/features.pt.po @@ -7,16 +7,16 @@ 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" -"PO-Revision-Date: 2018-05-05 07:07+0000\n" -"Last-Translator: Mrs. F <mrsf@riseup.net>\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" +"PO-Revision-Date: 2019-12-22 21:00+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -30,7 +30,9 @@ msgstr "[[!toc levels=2]]\n" #. type: Plain text msgid "Tails is based on [[Debian|https://www.debian.org/]] 10 (Buster)." -msgstr "Tails é baseado no [[Debian|https://www.debian.org/index.pt.html]] 10 (Buster)." +msgstr "" +"Tails é baseado no [[Debian|https://www.debian.org/index.pt.html]] 10 " +"(Buster)." #. type: Title = #, no-wrap @@ -269,6 +271,30 @@ msgstr "" "[GtkHash](http://gtkhash.sourceforge.net/) para calcular somas de " "verificação ([[Mais...|doc/encryption_and_privacy/checksums]])" +#. type: Bullet: '* ' +#, fuzzy +#| msgid "" +#| "[pdf-redact-tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +#| "help with securely redacting and stripping metadata from documents before " +#| "publishing" +msgid "" +"[PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" +"[pdf-redact-tools](https://github.com/firstlookmedia/pdf-redact-tools) para " +"ajudar a redigir e remover metadados de documentos com segurança antes da " +"publicação" + +#. type: Bullet: '* ' +msgid "" +"[Tesseract OCR](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: '* ' +msgid "[FFmpeg](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + #. type: Plain text msgid "" "The full packages list can be found in the [BitTorrent files download " @@ -310,8 +336,7 @@ msgstr "Características adicionais\n" #. type: Bullet: '* ' msgid "" -"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to " -"newer versions" +"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to newer versions" msgstr "" "mecanismo automático para [[atualizar um dispositivo USB|doc/first_steps/" "upgrade]] para novas versões" @@ -449,15 +474,6 @@ msgstr "" #~ "www.digital-scurf.org/software/libgfshare) e [ssss](http://point-at-" #~ "infinity.org/ssss/)" -#~ msgid "" -#~ "[pdf-redact-tools](https://github.com/firstlookmedia/pdf-redact-tools) to " -#~ "help with securely redacting and stripping metadata from documents before " -#~ "publishing" -#~ msgstr "" -#~ "[pdf-redact-tools](https://github.com/firstlookmedia/pdf-redact-tools) " -#~ "para ajudar a redigir e remover metadados de documentos com segurança " -#~ "antes da publicação" - #~ msgid "" #~ "[Keyringer](https://keyringer.pw/), a command line tool to encrypt " #~ "secrets shared through Git ([[More...|doc/encryption_and_privacy/" diff --git a/wiki/src/doc/about/features.ru.po b/wiki/src/doc/about/features.ru.po index 4bc78e054b1214a01aaf8476e29a8cb8d036ecda..8a79f828011a568582ec03c12445cb37b92ce65c 100644 --- a/wiki/src/doc/about/features.ru.po +++ b/wiki/src/doc/about/features.ru.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-05-18 09:54+0200\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" "PO-Revision-Date: 2018-02-07 18:59+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -30,7 +30,7 @@ msgid "[[!toc levels=2]]\n" msgstr "[[!toc levels=2]]\n" #. type: Plain text -msgid "Tails is based on [[Debian|https://www.debian.org/]] 9 (Stretch)." +msgid "Tails is based on [[Debian|https://www.debian.org/]] 10 (Buster)." msgstr "" #. type: Title = @@ -72,7 +72,7 @@ msgid "" "* [Pidgin](http://www.pidgin.im/) preconfigured with\n" " [OTR](http://www.cypherpunks.ca/otr/index.php) for Off-the-Record\n" " Messaging ([[More...|doc/anonymous_internet/pidgin]])\n" -"* [OnionShare](https://onionshare.org/) for anonymous filesharing\n" +"* [OnionShare](https://onionshare.org/) for anonymous file sharing\n" "* [Thunderbird](https://www.thunderbird.net/) email client with [Enigmail](https://www.enigmail.net/) for OpenPGP support, also an RSS and Atom news feed reader ([[More...|doc/anonymous_internet/thunderbird]])\n" "* [Aircrack-ng](http://aircrack-ng.org/) for wireless network auditing\n" "* [Electrum](https://electrum.org/), an easy-to-use bitcoin client ([[More...|doc/anonymous_internet/electrum]])\n" @@ -95,10 +95,6 @@ msgid "" "images ([[More...|doc/sensitive_documents/graphics]])" msgstr "" -#. type: Bullet: '* ' -msgid "[Scribus](https://www.scribus.net/) for page layout" -msgstr "" - #. type: Bullet: '* ' msgid "" "GNOME Sound Recorder for recording sound ([[More...|doc/sensitive_documents/" @@ -168,7 +164,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"[KeePassX](http://www.keepassx.org/) password manager ([[More...|doc/" +"[KeePassXC](https://keepassxc.org/) password manager ([[More...|doc/" "encryption_and_privacy/manage_passwords]])" msgstr "" @@ -178,6 +174,22 @@ msgid "" "doc/encryption_and_privacy/checksums]])" msgstr "" +#. type: Bullet: '* ' +msgid "" +"[PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"[Tesseract OCR](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: '* ' +msgid "[FFmpeg](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + #. type: Plain text msgid "" "The full packages list can be found in the [BitTorrent files download " @@ -216,8 +228,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to " -"newer versions" +"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to newer versions" msgstr "" #. type: Bullet: '* ' @@ -226,13 +237,6 @@ msgid "" "org/) ([[More...|doc/advanced_topics/virtualization]])" msgstr "" -#. type: Bullet: '* ' -msgid "" -"[[customization|contribute/customize]] (e.g. to add a given missing piece of " -"software) is relatively easy: one may [[contribute/build]] a custom Amnesic " -"Incognito Live System in about one hour on a modern desktop computer" -msgstr "" - #. type: Bullet: '* ' msgid "" "64-bit PAE-enabled kernel with NX-bit and SMP support on hardware that " @@ -285,3 +289,62 @@ msgid "" "If you wish to make it easier to use Tails for your language speakers, see " "the [[translators guidelines|contribute/how/translate]]." msgstr "" + +msgid "" +"[PiTiVi](http://pitivi.org/) for non-linear audio/video editing ([[More...|" +"doc/sensitive_documents/sound_and_video]])" +msgstr "" +"[PiTiVi](http://pitivi.org/) zur nicht-linearen Audio-/Videobearbeitung " +"([[Mehr...|doc/sensitive_documents/sound_and_video]])" + +msgid "" +"[Traverso](http://traverso-daw.org/) a multi-track audio recorder and editor" +msgstr "" +"[Traverso](http://traverso-daw.org/), ein mehrspuriger Audiorekorder und " +"Editor" + +msgid "" +"[Monkeysign](http://web.monkeysphere.info/monkeysign), a tool for OpenPGP " +"key signing and exchange" +msgstr "" +"[Monkeysign](http://web.monkeysphere.info/monkeysign), ein Werkzeug für das " +"Signieren und Austauschen von OpenPGP-Schlüsseln" + +msgid "[PWGen](http://pwgen-win.sourceforge.net/), a strong password generator" +msgstr "" +"[PWGen](http://pwgen-win.sourceforge.net/), ein Generator für starke " +"Passwörter" + +msgid "" +"[[!wikipedia Shamir's Secret Sharing]] using [gfshare](http://www.digital-" +"scurf.org/software/libgfshare) and [ssss](http://point-at-infinity.org/" +"ssss/)" +msgstr "" +"[[!wikipedia_de Shamir's Secret Sharing]] benutzt [gfshare](http://www." +"digital-scurf.org/software/libgfshare) und [ssss](http://point-at-infinity." +"org/ssss/)" + +msgid "" +"[Keyringer](https://keyringer.pw/), a command line tool to encrypt secrets " +"shared through Git ([[More...|doc/encryption_and_privacy/keyringer]])" +msgstr "" +"[Keyringer](https://keyringer.pw/), eine Software um verschlüsselte " +"Geheimnisse über Git auszutauschen (Kommandozeile) ([[Mehr...|doc/" +"encryption_and_privacy/keyringer]])" + +msgid "" +"[Paperkey](http://www.jabberwocky.com/software/paperkey/) a command line " +"tool to back up OpenPGP secret keys on paper ([[More...|doc/advanced_topics/" +"paperkey]])" +msgstr "" +"[Paperkey](http://www.jabberwocky.com/software/paperkey/), ein " +"Kommandozeilenwerkzeug mit dem Sie geheime OpenPGP-Schlüssel auf Papier " +"sichern können ([[Mehr...|doc/advanced_topics/paperkey]])" + +msgid "" +"You can [[install additional software|doc/first_steps/additional_software]] " +"in Tails: all software packaged for Debian is installable in Tails." +msgstr "" +"Sie können in Tails [[zusätzliche Software installieren|doc/first_steps/" +"additional_software]]: alle Softwarepakete, die es für Debian gibt, können " +"in Tails installiert werden." diff --git a/wiki/src/doc/about/features.sr_Latn.po b/wiki/src/doc/about/features.sr_Latn.po index c81dec2de31c63a1c6d6d303e0ae9ac1fb9db9be..b47fc92d2ea75f21f8680b8bc3496df2ac72ca08 100644 --- a/wiki/src/doc/about/features.sr_Latn.po +++ b/wiki/src/doc/about/features.sr_Latn.po @@ -7,7 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-05-18 09:54+0200\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2020-01-07 17:53+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" @@ -27,7 +28,7 @@ msgid "[[!toc levels=2]]\n" msgstr "" #. type: Plain text -msgid "Tails is based on [[Debian|https://www.debian.org/]] 9 (Stretch)." +msgid "Tails is based on [[Debian|https://www.debian.org/]] 10 (Buster)." msgstr "" #. type: Title = @@ -69,7 +70,7 @@ msgid "" "* [Pidgin](http://www.pidgin.im/) preconfigured with\n" " [OTR](http://www.cypherpunks.ca/otr/index.php) for Off-the-Record\n" " Messaging ([[More...|doc/anonymous_internet/pidgin]])\n" -"* [OnionShare](https://onionshare.org/) for anonymous filesharing\n" +"* [OnionShare](https://onionshare.org/) for anonymous file sharing\n" "* [Thunderbird](https://www.thunderbird.net/) email client with [Enigmail](https://www.enigmail.net/) for OpenPGP support, also an RSS and Atom news feed reader ([[More...|doc/anonymous_internet/thunderbird]])\n" "* [Aircrack-ng](http://aircrack-ng.org/) for wireless network auditing\n" "* [Electrum](https://electrum.org/), an easy-to-use bitcoin client ([[More...|doc/anonymous_internet/electrum]])\n" @@ -92,10 +93,6 @@ msgid "" "images ([[More...|doc/sensitive_documents/graphics]])" msgstr "" -#. type: Bullet: '* ' -msgid "[Scribus](https://www.scribus.net/) for page layout" -msgstr "" - #. type: Bullet: '* ' msgid "" "GNOME Sound Recorder for recording sound ([[More...|doc/sensitive_documents/" @@ -165,7 +162,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"[KeePassX](http://www.keepassx.org/) password manager ([[More...|doc/" +"[KeePassXC](https://keepassxc.org/) password manager ([[More...|doc/" "encryption_and_privacy/manage_passwords]])" msgstr "" @@ -175,6 +172,22 @@ msgid "" "doc/encryption_and_privacy/checksums]])" msgstr "" +#. type: Bullet: '* ' +msgid "" +"[PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"[Tesseract OCR](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: '* ' +msgid "[FFmpeg](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + #. type: Plain text msgid "" "The full packages list can be found in the [BitTorrent files download " @@ -213,8 +226,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to " -"newer versions" +"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to newer versions" msgstr "" #. type: Bullet: '* ' @@ -223,13 +235,6 @@ msgid "" "org/) ([[More...|doc/advanced_topics/virtualization]])" msgstr "" -#. type: Bullet: '* ' -msgid "" -"[[customization|contribute/customize]] (e.g. to add a given missing piece of " -"software) is relatively easy: one may [[contribute/build]] a custom Amnesic " -"Incognito Live System in about one hour on a modern desktop computer" -msgstr "" - #. type: Bullet: '* ' msgid "" "64-bit PAE-enabled kernel with NX-bit and SMP support on hardware that " @@ -282,3 +287,62 @@ msgid "" "If you wish to make it easier to use Tails for your language speakers, see " "the [[translators guidelines|contribute/how/translate]]." msgstr "" + +msgid "" +"[PiTiVi](http://pitivi.org/) for non-linear audio/video editing ([[More...|" +"doc/sensitive_documents/sound_and_video]])" +msgstr "" +"[PiTiVi](http://pitivi.org/) zur nicht-linearen Audio-/Videobearbeitung " +"([[Mehr...|doc/sensitive_documents/sound_and_video]])" + +msgid "" +"[Traverso](http://traverso-daw.org/) a multi-track audio recorder and editor" +msgstr "" +"[Traverso](http://traverso-daw.org/), ein mehrspuriger Audiorekorder und " +"Editor" + +msgid "" +"[Monkeysign](http://web.monkeysphere.info/monkeysign), a tool for OpenPGP " +"key signing and exchange" +msgstr "" +"[Monkeysign](http://web.monkeysphere.info/monkeysign), ein Werkzeug für das " +"Signieren und Austauschen von OpenPGP-Schlüsseln" + +msgid "[PWGen](http://pwgen-win.sourceforge.net/), a strong password generator" +msgstr "" +"[PWGen](http://pwgen-win.sourceforge.net/), ein Generator für starke " +"Passwörter" + +msgid "" +"[[!wikipedia Shamir's Secret Sharing]] using [gfshare](http://www.digital-" +"scurf.org/software/libgfshare) and [ssss](http://point-at-infinity.org/" +"ssss/)" +msgstr "" +"[[!wikipedia_de Shamir's Secret Sharing]] benutzt [gfshare](http://www." +"digital-scurf.org/software/libgfshare) und [ssss](http://point-at-infinity." +"org/ssss/)" + +msgid "" +"[Keyringer](https://keyringer.pw/), a command line tool to encrypt secrets " +"shared through Git ([[More...|doc/encryption_and_privacy/keyringer]])" +msgstr "" +"[Keyringer](https://keyringer.pw/), eine Software um verschlüsselte " +"Geheimnisse über Git auszutauschen (Kommandozeile) ([[Mehr...|doc/" +"encryption_and_privacy/keyringer]])" + +msgid "" +"[Paperkey](http://www.jabberwocky.com/software/paperkey/) a command line " +"tool to back up OpenPGP secret keys on paper ([[More...|doc/advanced_topics/" +"paperkey]])" +msgstr "" +"[Paperkey](http://www.jabberwocky.com/software/paperkey/), ein " +"Kommandozeilenwerkzeug mit dem Sie geheime OpenPGP-Schlüssel auf Papier " +"sichern können ([[Mehr...|doc/advanced_topics/paperkey]])" + +msgid "" +"You can [[install additional software|doc/first_steps/additional_software]] " +"in Tails: all software packaged for Debian is installable in Tails." +msgstr "" +"Sie können in Tails [[zusätzliche Software installieren|doc/first_steps/" +"additional_software]]: alle Softwarepakete, die es für Debian gibt, können " +"in Tails installiert werden." diff --git a/wiki/src/doc/about/features.tr.po b/wiki/src/doc/about/features.tr.po index a91c57c43d00a3c1a4a1db67ea3e270aae774e02..e747b01378fb1b83e54756ebbf59dea8ce401d40 100644 --- a/wiki/src/doc/about/features.tr.po +++ b/wiki/src/doc/about/features.tr.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-05-18 09:54+0200\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" "PO-Revision-Date: 2018-07-01 14:36+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -29,7 +29,7 @@ msgid "[[!toc levels=2]]\n" msgstr "[[!toc levels=2]]\n" #. type: Plain text -msgid "Tails is based on [[Debian|https://www.debian.org/]] 9 (Stretch)." +msgid "Tails is based on [[Debian|https://www.debian.org/]] 10 (Buster)." msgstr "" #. type: Title = @@ -71,7 +71,7 @@ msgid "" "* [Pidgin](http://www.pidgin.im/) preconfigured with\n" " [OTR](http://www.cypherpunks.ca/otr/index.php) for Off-the-Record\n" " Messaging ([[More...|doc/anonymous_internet/pidgin]])\n" -"* [OnionShare](https://onionshare.org/) for anonymous filesharing\n" +"* [OnionShare](https://onionshare.org/) for anonymous file sharing\n" "* [Thunderbird](https://www.thunderbird.net/) email client with [Enigmail](https://www.enigmail.net/) for OpenPGP support, also an RSS and Atom news feed reader ([[More...|doc/anonymous_internet/thunderbird]])\n" "* [Aircrack-ng](http://aircrack-ng.org/) for wireless network auditing\n" "* [Electrum](https://electrum.org/), an easy-to-use bitcoin client ([[More...|doc/anonymous_internet/electrum]])\n" @@ -94,10 +94,6 @@ msgid "" "images ([[More...|doc/sensitive_documents/graphics]])" msgstr "" -#. type: Bullet: '* ' -msgid "[Scribus](https://www.scribus.net/) for page layout" -msgstr "" - #. type: Bullet: '* ' msgid "" "GNOME Sound Recorder for recording sound ([[More...|doc/sensitive_documents/" @@ -167,7 +163,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"[KeePassX](http://www.keepassx.org/) password manager ([[More...|doc/" +"[KeePassXC](https://keepassxc.org/) password manager ([[More...|doc/" "encryption_and_privacy/manage_passwords]])" msgstr "" @@ -177,6 +173,22 @@ msgid "" "doc/encryption_and_privacy/checksums]])" msgstr "" +#. type: Bullet: '* ' +msgid "" +"[PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"[Tesseract OCR](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: '* ' +msgid "[FFmpeg](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + #. type: Plain text msgid "" "The full packages list can be found in the [BitTorrent files download " @@ -215,8 +227,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to " -"newer versions" +"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to newer versions" msgstr "" #. type: Bullet: '* ' @@ -225,13 +236,6 @@ msgid "" "org/) ([[More...|doc/advanced_topics/virtualization]])" msgstr "" -#. type: Bullet: '* ' -msgid "" -"[[customization|contribute/customize]] (e.g. to add a given missing piece of " -"software) is relatively easy: one may [[contribute/build]] a custom Amnesic " -"Incognito Live System in about one hour on a modern desktop computer" -msgstr "" - #. type: Bullet: '* ' msgid "" "64-bit PAE-enabled kernel with NX-bit and SMP support on hardware that " @@ -284,3 +288,62 @@ msgid "" "If you wish to make it easier to use Tails for your language speakers, see " "the [[translators guidelines|contribute/how/translate]]." msgstr "" + +msgid "" +"[PiTiVi](http://pitivi.org/) for non-linear audio/video editing ([[More...|" +"doc/sensitive_documents/sound_and_video]])" +msgstr "" +"[PiTiVi](http://pitivi.org/) zur nicht-linearen Audio-/Videobearbeitung " +"([[Mehr...|doc/sensitive_documents/sound_and_video]])" + +msgid "" +"[Traverso](http://traverso-daw.org/) a multi-track audio recorder and editor" +msgstr "" +"[Traverso](http://traverso-daw.org/), ein mehrspuriger Audiorekorder und " +"Editor" + +msgid "" +"[Monkeysign](http://web.monkeysphere.info/monkeysign), a tool for OpenPGP " +"key signing and exchange" +msgstr "" +"[Monkeysign](http://web.monkeysphere.info/monkeysign), ein Werkzeug für das " +"Signieren und Austauschen von OpenPGP-Schlüsseln" + +msgid "[PWGen](http://pwgen-win.sourceforge.net/), a strong password generator" +msgstr "" +"[PWGen](http://pwgen-win.sourceforge.net/), ein Generator für starke " +"Passwörter" + +msgid "" +"[[!wikipedia Shamir's Secret Sharing]] using [gfshare](http://www.digital-" +"scurf.org/software/libgfshare) and [ssss](http://point-at-infinity.org/" +"ssss/)" +msgstr "" +"[[!wikipedia_de Shamir's Secret Sharing]] benutzt [gfshare](http://www." +"digital-scurf.org/software/libgfshare) und [ssss](http://point-at-infinity." +"org/ssss/)" + +msgid "" +"[Keyringer](https://keyringer.pw/), a command line tool to encrypt secrets " +"shared through Git ([[More...|doc/encryption_and_privacy/keyringer]])" +msgstr "" +"[Keyringer](https://keyringer.pw/), eine Software um verschlüsselte " +"Geheimnisse über Git auszutauschen (Kommandozeile) ([[Mehr...|doc/" +"encryption_and_privacy/keyringer]])" + +msgid "" +"[Paperkey](http://www.jabberwocky.com/software/paperkey/) a command line " +"tool to back up OpenPGP secret keys on paper ([[More...|doc/advanced_topics/" +"paperkey]])" +msgstr "" +"[Paperkey](http://www.jabberwocky.com/software/paperkey/), ein " +"Kommandozeilenwerkzeug mit dem Sie geheime OpenPGP-Schlüssel auf Papier " +"sichern können ([[Mehr...|doc/advanced_topics/paperkey]])" + +msgid "" +"You can [[install additional software|doc/first_steps/additional_software]] " +"in Tails: all software packaged for Debian is installable in Tails." +msgstr "" +"Sie können in Tails [[zusätzliche Software installieren|doc/first_steps/" +"additional_software]]: alle Softwarepakete, die es für Debian gibt, können " +"in Tails installiert werden." diff --git a/wiki/src/doc/about/features.zh.po b/wiki/src/doc/about/features.zh.po index 56c9b1853fc2153b97c75cd210bdb4df28b09fb6..5ae51ade94db4700cb712eba1fdd8fef680a745e 100644 --- a/wiki/src/doc/about/features.zh.po +++ b/wiki/src/doc/about/features.zh.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-05-18 09:54+0200\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" "PO-Revision-Date: 2018-04-01 11:18+0000\n" "Last-Translator: qf <selinaf1917@yahoo.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -29,7 +29,8 @@ msgid "[[!toc levels=2]]\n" msgstr "[[!toc levels=2]]\n" #. type: Plain text -msgid "Tails is based on [[Debian|https://www.debian.org/]] 9 (Stretch)." +#, fuzzy +msgid "Tails is based on [[Debian|https://www.debian.org/]] 10 (Buster)." msgstr "Tails 基于 [[Debian 系统|https://www.debian.org/]] 9 (Stretch)。" #. type: Title = @@ -73,7 +74,7 @@ msgid "" "* [Pidgin](http://www.pidgin.im/) preconfigured with\n" " [OTR](http://www.cypherpunks.ca/otr/index.php) for Off-the-Record\n" " Messaging ([[More...|doc/anonymous_internet/pidgin]])\n" -"* [OnionShare](https://onionshare.org/) for anonymous filesharing\n" +"* [OnionShare](https://onionshare.org/) for anonymous file sharing\n" "* [Thunderbird](https://www.thunderbird.net/) email client with [Enigmail](https://www.enigmail.net/) for OpenPGP support, also an RSS and Atom news feed reader ([[More...|doc/anonymous_internet/thunderbird]])\n" "* [Aircrack-ng](http://aircrack-ng.org/) for wireless network auditing\n" "* [Electrum](https://electrum.org/), an easy-to-use bitcoin client ([[More...|doc/anonymous_internet/electrum]])\n" @@ -96,10 +97,6 @@ msgid "" "images ([[More...|doc/sensitive_documents/graphics]])" msgstr "" -#. type: Bullet: '* ' -msgid "[Scribus](https://www.scribus.net/) for page layout" -msgstr "" - #. type: Bullet: '* ' msgid "" "GNOME Sound Recorder for recording sound ([[More...|doc/sensitive_documents/" @@ -171,7 +168,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"[KeePassX](http://www.keepassx.org/) password manager ([[More...|doc/" +"[KeePassXC](https://keepassxc.org/) password manager ([[More...|doc/" "encryption_and_privacy/manage_passwords]])" msgstr "" @@ -181,6 +178,22 @@ msgid "" "doc/encryption_and_privacy/checksums]])" msgstr "" +#. type: Bullet: '* ' +msgid "" +"[PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"[Tesseract OCR](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: '* ' +msgid "[FFmpeg](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + #. type: Plain text msgid "" "The full packages list can be found in the [BitTorrent files download " @@ -219,8 +232,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to " -"newer versions" +"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to newer versions" msgstr "" #. type: Bullet: '* ' @@ -229,13 +241,6 @@ msgid "" "org/) ([[More...|doc/advanced_topics/virtualization]])" msgstr "" -#. type: Bullet: '* ' -msgid "" -"[[customization|contribute/customize]] (e.g. to add a given missing piece of " -"software) is relatively easy: one may [[contribute/build]] a custom Amnesic " -"Incognito Live System in about one hour on a modern desktop computer" -msgstr "" - #. type: Bullet: '* ' msgid "" "64-bit PAE-enabled kernel with NX-bit and SMP support on hardware that " @@ -289,6 +294,59 @@ msgid "" "the [[translators guidelines|contribute/how/translate]]." msgstr "" +msgid "" +"[PiTiVi](http://pitivi.org/) for non-linear audio/video editing ([[More...|" +"doc/sensitive_documents/sound_and_video]])" +msgstr "" +"[PiTiVi](http://pitivi.org/) zur nicht-linearen Audio-/Videobearbeitung " +"([[Mehr...|doc/sensitive_documents/sound_and_video]])" + +msgid "" +"[Monkeysign](http://web.monkeysphere.info/monkeysign), a tool for OpenPGP " +"key signing and exchange" +msgstr "" +"[Monkeysign](http://web.monkeysphere.info/monkeysign), ein Werkzeug für das " +"Signieren und Austauschen von OpenPGP-Schlüsseln" + +msgid "[PWGen](http://pwgen-win.sourceforge.net/), a strong password generator" +msgstr "" +"[PWGen](http://pwgen-win.sourceforge.net/), ein Generator für starke " +"Passwörter" + +msgid "" +"[[!wikipedia Shamir's Secret Sharing]] using [gfshare](http://www.digital-" +"scurf.org/software/libgfshare) and [ssss](http://point-at-infinity.org/" +"ssss/)" +msgstr "" +"[[!wikipedia_de Shamir's Secret Sharing]] benutzt [gfshare](http://www." +"digital-scurf.org/software/libgfshare) und [ssss](http://point-at-infinity." +"org/ssss/)" + +msgid "" +"[Keyringer](https://keyringer.pw/), a command line tool to encrypt secrets " +"shared through Git ([[More...|doc/encryption_and_privacy/keyringer]])" +msgstr "" +"[Keyringer](https://keyringer.pw/), eine Software um verschlüsselte " +"Geheimnisse über Git auszutauschen (Kommandozeile) ([[Mehr...|doc/" +"encryption_and_privacy/keyringer]])" + +msgid "" +"[Paperkey](http://www.jabberwocky.com/software/paperkey/) a command line " +"tool to back up OpenPGP secret keys on paper ([[More...|doc/advanced_topics/" +"paperkey]])" +msgstr "" +"[Paperkey](http://www.jabberwocky.com/software/paperkey/), ein " +"Kommandozeilenwerkzeug mit dem Sie geheime OpenPGP-Schlüssel auf Papier " +"sichern können ([[Mehr...|doc/advanced_topics/paperkey]])" + +msgid "" +"You can [[install additional software|doc/first_steps/additional_software]] " +"in Tails: all software packaged for Debian is installable in Tails." +msgstr "" +"Sie können in Tails [[zusätzliche Software installieren|doc/first_steps/" +"additional_software]]: alle Softwarepakete, die es für Debian gibt, können " +"in Tails installiert werden." + #~ msgid "" #~ "[Traverso](http://traverso-daw.org/) a multi-track audio recorder and " #~ "editor" diff --git a/wiki/src/doc/about/features.zh_TW.po b/wiki/src/doc/about/features.zh_TW.po index c4efc70216429207c01de7c9703e42e99e2236dc..b0948f6065a31b42e8df21392705559c0de6e663 100644 --- a/wiki/src/doc/about/features.zh_TW.po +++ b/wiki/src/doc/about/features.zh_TW.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-05-18 09:54+0200\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" "PO-Revision-Date: 2018-11-02 08:56+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -29,7 +29,7 @@ msgid "[[!toc levels=2]]\n" msgstr "[[!toc levels=2]]\n" #. type: Plain text -msgid "Tails is based on [[Debian|https://www.debian.org/]] 9 (Stretch)." +msgid "Tails is based on [[Debian|https://www.debian.org/]] 10 (Buster)." msgstr "" #. type: Title = @@ -73,7 +73,7 @@ msgid "" "* [Pidgin](http://www.pidgin.im/) preconfigured with\n" " [OTR](http://www.cypherpunks.ca/otr/index.php) for Off-the-Record\n" " Messaging ([[More...|doc/anonymous_internet/pidgin]])\n" -"* [OnionShare](https://onionshare.org/) for anonymous filesharing\n" +"* [OnionShare](https://onionshare.org/) for anonymous file sharing\n" "* [Thunderbird](https://www.thunderbird.net/) email client with [Enigmail](https://www.enigmail.net/) for OpenPGP support, also an RSS and Atom news feed reader ([[More...|doc/anonymous_internet/thunderbird]])\n" "* [Aircrack-ng](http://aircrack-ng.org/) for wireless network auditing\n" "* [Electrum](https://electrum.org/), an easy-to-use bitcoin client ([[More...|doc/anonymous_internet/electrum]])\n" @@ -96,10 +96,6 @@ msgid "" "images ([[More...|doc/sensitive_documents/graphics]])" msgstr "" -#. type: Bullet: '* ' -msgid "[Scribus](https://www.scribus.net/) for page layout" -msgstr "" - #. type: Bullet: '* ' msgid "" "GNOME Sound Recorder for recording sound ([[More...|doc/sensitive_documents/" @@ -176,8 +172,9 @@ msgid "[MAT](https://0xacab.org/jvoisin/mat2) to anonymize metadata in files" msgstr "[MAT](https://0xacab.org/jvoisin/mat2) 匿名化檔案上的元數據" #. type: Bullet: '* ' +#, fuzzy msgid "" -"[KeePassX](http://www.keepassx.org/) password manager ([[More...|doc/" +"[KeePassXC](https://keepassxc.org/) password manager ([[More...|doc/" "encryption_and_privacy/manage_passwords]])" msgstr "" "[KeePassX](http://www.keepassx.org/) 密碼管理工具 ([[詳細介紹...|doc/" @@ -191,6 +188,22 @@ msgstr "" "[GtkHash](http://gtkhash.sourceforge.net/)用來計算校驗和 ([[進一步了解...|" "doc/encryption_and_privacy/checksums]])" +#. type: Bullet: '* ' +msgid "" +"[PDF Redact Tools](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"[Tesseract OCR](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: '* ' +msgid "[FFmpeg](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + #. type: Plain text msgid "" "The full packages list can be found in the [BitTorrent files download " @@ -231,8 +244,7 @@ msgstr "其餘功能\n" #. type: Bullet: '* ' msgid "" -"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to " -"newer versions" +"automatic mechanism to [[upgrade a USB stick|doc/upgrade]] to newer versions" msgstr "" #. type: Bullet: '* ' @@ -243,16 +255,6 @@ msgstr "" "用戶可利用 [VirtualBox](http://www.virtualbox.org/)的虛擬訪客功能來執行 ([[進" "一步了解...|doc/advanced_topics/virtualization]])" -#. type: Bullet: '* ' -msgid "" -"[[customization|contribute/customize]] (e.g. to add a given missing piece of " -"software) is relatively easy: one may [[contribute/build]] a custom Amnesic " -"Incognito Live System in about one hour on a modern desktop computer" -msgstr "" -"[[自定化|contribute/customize]] (例如新增一個缺少的軟體) 在Tails是很容易的: " -"用戶可以[[貢獻|contribute/build]] 在自己的桌面環境下快速地於一小時內完成自定" -"化的失憶隱身自生系統" - #. type: Bullet: '* ' msgid "" "64-bit PAE-enabled kernel with NX-bit and SMP support on hardware that " @@ -316,6 +318,33 @@ msgstr "" "如果你希望能協助與你相同語言使用者更方便地使用Tails,可參考[[翻譯指引文件|" "contribute/how/translate]]." +msgid "" +"[[!wikipedia Shamir's Secret Sharing]] using [gfshare](http://www.digital-" +"scurf.org/software/libgfshare) and [ssss](http://point-at-infinity.org/" +"ssss/)" +msgstr "" +"[[!wikipedia_de Shamir's Secret Sharing]] benutzt [gfshare](http://www." +"digital-scurf.org/software/libgfshare) und [ssss](http://point-at-infinity." +"org/ssss/)" + +#~ msgid "" +#~ "[[customization|contribute/customize]] (e.g. to add a given missing piece " +#~ "of software) is relatively easy: one may [[contribute/build]] a custom " +#~ "Amnesic Incognito Live System in about one hour on a modern desktop " +#~ "computer" +#~ msgstr "" +#~ "[[自定化|contribute/customize]] (例如新增一個缺少的軟體) 在Tails是很容易" +#~ "的: 用戶可以[[貢獻|contribute/build]] 在自己的桌面環境下快速地於一小時內完" +#~ "成自定化的失憶隱身自生系統" + +#, fuzzy +#~ msgid "" +#~ "[PiTiVi](http://pitivi.org/) for non-linear audio/video editing " +#~ "([[More...|doc/sensitive_documents/sound_and_video]])" +#~ msgstr "" +#~ "GNOME Sound Recorder 可用於錄音 ([[了解更多...|doc/sensitive_documents/" +#~ "sound_and_video]])" + #~ msgid "" #~ "[Traverso](http://traverso-daw.org/) a multi-track audio recorder and " #~ "editor" @@ -350,8 +379,9 @@ msgstr "" #~ "工具用把OpenPGP密鑰備分到紙上([[了解更多...|doc/advanced_topics/" #~ "paperkey]])" +#, fuzzy #~ msgid "" -#~ "You can [[install additional software|doc/advanced_topics/" +#~ "You can [[install additional software|doc/first_steps/" #~ "additional_software]] in Tails: all software packaged for Debian is " #~ "installable in Tails." #~ msgstr "" diff --git a/wiki/src/doc/about/finances.es.po b/wiki/src/doc/about/finances.es.po index 3d8fdbbb7fa45113abd9a0aa0dad41c776f56dc5..05a1b1fde3b3901f9044696696ecc45bfd77f4e4 100644 --- a/wiki/src/doc/about/finances.es.po +++ b/wiki/src/doc/about/finances.es.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-06-01 09:09+0000\n" -"PO-Revision-Date: 2019-11-24 08:26+0000\n" +"PO-Revision-Date: 2020-01-21 18:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "finances/es/>\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -59,27 +59,7 @@ msgid "Income statement for 2018\n" msgstr "Declaración de ganancias para 2018\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tRevenues:\n" -#| "\t- Donations\n" -#| "\t $21908.52 via RiseupLabs\n" -#| "\t $7586.00 via Freedom of the Press Foundation\n" -#| "\t 13709.76€ via Zwiebelfreunde\n" -#| "\t 784.00€ cash\n" -#| "\t 72.35Ƀ bitcoins\n" -#| "\t- Restricted funds\n" -#| "\t $208800.00 Open Technology Fund\n" -#| "\t $77000.00 Mozilla Open Source Support\n" -#| "\t $5000.00 Google Summer of Code\n" -#| "\t- Sponsors\n" -#| "\t 2000.00€ Mediapart\n" -#| "\t- T-Shirts\n" -#| "\t 180.47€ T-Shirts\n" -#| "\t--------------------\n" -#| "\t $320294.52\n" -#| "\t 72.35Ƀ\n" -#| "\t 16674.23€\n" +#, no-wrap msgid "" "\tRevenues:\n" "\t- Donations\n" @@ -103,23 +83,23 @@ msgid "" msgstr "" "\tRevenues:\n" "\t- Donations\n" -"\t $21908.52 via RiseupLabs\n" -"\t $7586.00 via Freedom of the Press Foundation\n" -"\t 13709.76€ via Zwiebelfreunde\n" -"\t 784.00€ cash\n" -"\t 72.35Ƀ bitcoins\n" -"\t- Restricted funds\n" -"\t $208800.00 Open Technology Fund\n" -"\t $77000.00 Mozilla Open Source Support\n" -"\t $5000.00 Google Summer of Code\n" -"\t- Sponsors\n" -"\t 2000.00€ Mediapart\n" -"\t- T-Shirts\n" -"\t 180.47€ T-Shirts\n" +"\t $47094.97 via the DuckDuckGo Challenge\n" +"\t $29535.47 via RiseupLabs\n" +"\t $3954.00 via Freedom of the Press Foundation\n" +"\t 12052.72€ via CCT\n" +"\t 960.80€ cash\n" +"\t 3.56Ƀ bitcoins\n" +"\t- Restricted funds (sponsor deliverables)\n" +"\t 8297.20€ The ISC Project\n" +"\t $37500.00 Open Technology Fund\n" +"\t- Partners\n" +"\t 0.15Ƀ DeepOnion\n" +"\t $200000.00 Handshake_Foundation\n" +"\t $3900.00 Tor\n" "\t--------------------\n" -"\t $320294.52\n" -"\t 72.35Ƀ\n" -"\t 16674.23€\n" +"\t $321984.44\n" +"\t 3.71Ƀ\n" +"\t 21310.72€\n" #. type: Plain text #, fuzzy, no-wrap @@ -415,27 +395,7 @@ msgid "Income statement for 2016\n" msgstr "Declaración de ganancias para 2016\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tRevenues:\n" -#| "\t- Donations\n" -#| "\t $21908.52 via RiseupLabs\n" -#| "\t $7586.00 via Freedom of the Press Foundation\n" -#| "\t 13709.76€ via Zwiebelfreunde\n" -#| "\t 784.00€ cash\n" -#| "\t 72.35Ƀ bitcoins\n" -#| "\t- Restricted funds\n" -#| "\t $208800.00 Open Technology Fund\n" -#| "\t $77000.00 Mozilla Open Source Support\n" -#| "\t $5000.00 Google Summer of Code\n" -#| "\t- Sponsors\n" -#| "\t 2000.00€ Mediapart\n" -#| "\t- T-Shirts\n" -#| "\t 180.47€ T-Shirts\n" -#| "\t--------------------\n" -#| "\t $320294.52\n" -#| "\t 72.35Ƀ\n" -#| "\t 16674.23€\n" +#, no-wrap msgid "" "\tRevenues:\n" "\t- Donations\n" @@ -464,16 +424,16 @@ msgstr "" "\t 13709.76€ via Zwiebelfreunde\n" "\t 784.00€ cash\n" "\t 72.35Ƀ bitcoins\n" -"\t- Restricted funds\n" -"\t $208800.00 Open Technology Fund\n" +"\t- Restricted funds (sponsor deliverables)\n" +"\t $208000.00 Open Technology Fund\n" "\t $77000.00 Mozilla Open Source Support\n" "\t $5000.00 Google Summer of Code\n" -"\t- Sponsors\n" +"\t- Partners\n" "\t 2000.00€ Mediapart\n" -"\t- T-Shirts\n" -"\t 180.47€ T-Shirts\n" +"\t- T-shirts\n" +"\t 180.47€ T-shirts\n" "\t--------------------\n" -"\t $320294.52\n" +"\t $319494.52\n" "\t 72.35Ƀ\n" "\t 16674.23€\n" @@ -593,24 +553,7 @@ msgid "Income statement for 2015\n" msgstr "Declaración de ganancias para 2015\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tRevenues:\n" -#| "\t- Donations\n" -#| "\t $35000.00 via RiseupLabs\n" -#| "\t $8599.00 via Freedom of the Press Foundation\n" -#| "\t 6995.74€ via Zwiebelfreunde\n" -#| "\t $ 47.70 cash\n" -#| "\t 557.05€ cash\n" -#| "\t 31.00Ƀ bitcoins\n" -#| "\t- Restricted funds\n" -#| "\t 70000.00€ Hivos\n" -#| "\t- Misc\n" -#| "\t $1000.00 selling old hardware\n" -#| "\t--------------------\n" -#| "\t $44646.70\n" -#| "\t 31.00Ƀ\n" -#| "\t 77552.79€\n" +#, no-wrap msgid "" "\tRevenues:\n" "\t- Donations\n" @@ -637,7 +580,7 @@ msgstr "" "\t $ 47.70 cash\n" "\t 557.05€ cash\n" "\t 31.00Ƀ bitcoins\n" -"\t- Restricted funds\n" +"\t- Restricted funds (sponsor deliverables)\n" "\t 70000.00€ Hivos\n" "\t- Misc\n" "\t $1000.00 selling old hardware\n" @@ -759,27 +702,7 @@ msgid "Income statement for 2014\n" msgstr "Declaración de ganancias para 2014\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tRevenues:\n" -#| "\t- Donations\n" -#| "\t $33376.83 via Freedom of the Press Foundation\n" -#| "\t 71.67Ƀ via bitcoin\n" -#| "\t 7150.19€ via Zwiebelfreunde\n" -#| "\t 803.50€ misc\n" -#| "\t- Restricted funds\n" -#| "\t $50000.00 Access Now\n" -#| "\t 5000.00€ FFIS\n" -#| "\t 70000.00€ Hivos\n" -#| "\t $34884.00 NDI\n" -#| "\t $25800.00 OpenITP\n" -#| "\t $5000.00 Tor\n" -#| "\t- Misc\n" -#| "\t $3775.00 reverse reversal\n" -#| "\t--------------------\n" -#| "\t $152835.83\n" -#| "\t 71.67Ƀ\n" -#| "\t 82953.69€\n" +#, no-wrap msgid "" "\tRevenues:\n" "\t- Donations\n" @@ -803,23 +726,23 @@ msgid "" msgstr "" "\tRevenues:\n" "\t- Donations\n" -"\t $33376.83 via Freedom of the Press Foundation\n" -"\t 71.67Ƀ via bitcoin\n" -"\t 7150.19€ via Zwiebelfreunde\n" -"\t 803.50€ misc\n" -"\t- Restricted funds\n" -"\t $50000.00 Access Now\n" -"\t 5000.00€ FFIS\n" -"\t 70000.00€ Hivos\n" -"\t $34884.00 NDI\n" -"\t $25800.00 OpenITP\n" -"\t $5000.00 Tor\n" -"\t- Misc\n" -"\t $3775.00 reverse reversal\n" +"\t $21908.52 via RiseupLabs\n" +"\t $7586.00 via Freedom of the Press Foundation\n" +"\t 13709.76€ via Zwiebelfreunde\n" +"\t 784.00€ cash\n" +"\t 72.35Ƀ bitcoins\n" +"\t- Restricted funds (sponsor deliverables)\n" +"\t $208000.00 Open Technology Fund\n" +"\t $77000.00 Mozilla Open Source Support\n" +"\t $5000.00 Google Summer of Code\n" +"\t- Partners\n" +"\t 2000.00€ Mediapart\n" +"\t- T-shirts\n" +"\t 180.47€ T-shirts\n" "\t--------------------\n" -"\t $152835.83\n" -"\t 71.67Ƀ\n" -"\t 82953.69€\n" +"\t $319494.52\n" +"\t 72.35Ƀ\n" +"\t 16674.23€\n" #. type: Plain text #, fuzzy, no-wrap diff --git a/wiki/src/doc/about/finances.id.po b/wiki/src/doc/about/finances.id.po index 8de2fed58b037c6309bb5399b460467886e31061..ed7f63eba1ad0ca57b564f5c8d64d31023b10af0 100644 --- a/wiki/src/doc/about/finances.id.po +++ b/wiki/src/doc/about/finances.id.po @@ -8,14 +8,15 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-06-01 09:09+0000\n" -"PO-Revision-Date: 2018-10-28 09:01+0100\n" -"Last-Translator: Tails translators\n" +"PO-Revision-Date: 2020-01-15 21:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.2\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -25,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/about/finances.pt.po b/wiki/src/doc/about/finances.pt.po index 36eb969621a0adb8ddefea124c597527e427d377..049afc45076f2e0d9ef1b2fdd547165483469eab 100644 --- a/wiki/src/doc/about/finances.pt.po +++ b/wiki/src/doc/about/finances.pt.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-06-01 09:09+0000\n" -"PO-Revision-Date: 2018-04-30 06:16+0000\n" +"PO-Revision-Date: 2019-12-30 13:09+0000\n" "Last-Translator: Mrs. F <mrsf@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -586,17 +586,7 @@ msgid "Income statement for 2013\n" msgstr "Declaração de renda de 2013\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tRevenues:\n" -#| "\t $-21000.00000 NDI\n" -#| "\t $-20000.00000 Tor (bounties program)\n" -#| "\t -29.58 btc bitcoin\n" -#| "\t -330.000000€ tax\n" -#| "\t--------------------\n" -#| "\t $-41000.00000\n" -#| "\t -29.58 btc\n" -#| "\t -330.000000€\n" +#, no-wrap msgid "" "\tRevenues:\n" "\t $21000.00 NDI\n" @@ -608,15 +598,15 @@ msgid "" "\t 29.58Ƀ\n" "\t 330.00€\n" msgstr "" -"\tReceita:\n" -"\t $-21000.00000 NDI\n" -"\t $-20000.00000 Tor (programa de doações)\n" -"\t -29.58 btc bitcoin\n" -"\t -330.000000€ impostos\n" +"\tReceitas:\n" +"\t $21000.00 NDI\n" +"\t $20000.00 Tor (caça a bugs)\n" +"\t 29.58Ƀ bitcoin\n" +"\t 330.00€ impostos\n" "\t--------------------\n" -"\t $-41000.00000\n" -"\t -29.58 btc\n" -"\t -330.000000€\n" +"\t $41000.00\n" +"\t 29.58Ƀ\n" +"\t 330.00€\n" #. type: Plain text #, fuzzy, no-wrap @@ -658,13 +648,7 @@ msgstr "" "\t 3290.650000€\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tTotal:\n" -#| "\t--------------------\n" -#| "\t $-1805.31000\n" -#| "\t -29.58 btc\n" -#| "\t 2960.650000€\n" +#, no-wrap msgid "" "\tTotal:\n" "\t--------------------\n" @@ -674,9 +658,9 @@ msgid "" msgstr "" "\tTotal:\n" "\t--------------------\n" -"\t $-1805.31000\n" -"\t -29.58 btc\n" -"\t 2960.650000€\n" +"\t $1805.31\n" +"\t 29.58Ƀ\n" +"\t -2960.65€\n" #. type: Title = #, no-wrap @@ -684,35 +668,20 @@ msgid "Income statement for 2012\n" msgstr "Declaração de renda de 2012\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tRevenues:\n" -#| "\t -137.30€ tax\n" -#| "\t--------------------\n" -#| "\t -137.30€\n" +#, no-wrap msgid "" "\tRevenues:\n" "\t 137.30€ tax\n" "\t--------------------\n" "\t 137.30€\n" msgstr "" -"\tReceita:\n" -"\t -137.30€ imposto\n" +"\tReceitas:\n" +"\t 137.30€ impostos\n" "\t--------------------\n" -"\t -137.30€\n" +"\t 137.30€\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tExpenses:\n" -#| "\t $3810.71000 hardware\n" -#| "\t 856.79€ hardware\n" -#| "\t 300.00€ hosting\n" -#| "\t 3128.39€ meeting\n" -#| "\t $479.00000 ssl\n" -#| "\t--------------------\n" -#| "\t $4289.71000\n" -#| "\t 4285.18€\n" +#, no-wrap msgid "" "\tExpenses:\n" "\t $-3810.71 hardware\n" @@ -725,22 +694,17 @@ msgid "" "\t -4285.18€\n" msgstr "" "\tDespesas:\n" -"\t $3810.71000 hardware\n" -"\t 856.79€ hardware\n" -"\t 300.00€ hospedagem\n" -"\t 3128.39€ encontro\n" -"\t $479.00000 ssl\n" +"\t $-3810.71 equipamento\n" +"\t -856.79€ equipamento\n" +"\t -300.00€ hospedagem (servidores)\n" +"\t -3128.39€ encontro\n" +"\t $-479.00 Certificados SSL\n" "\t--------------------\n" -"\t $4289.71000\n" -"\t 4285.18€\n" +"\t $-4289.71\n" +"\t -4285.18€\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tTotal:\n" -#| "\t--------------------\n" -#| "\t $4289.71000\n" -#| "\t 4147.88€\n" +#, no-wrap msgid "" "\tTotal:\n" "\t--------------------\n" @@ -749,8 +713,8 @@ msgid "" msgstr "" "\tTotal:\n" "\t--------------------\n" -"\t $4289.71000\n" -"\t 4147.88€\n" +"\t $-4289.71\n" +"\t -4147.88€\n" #. type: Plain text msgid "" @@ -766,33 +730,20 @@ msgid "Income statement for 2011\n" msgstr "Declaração de renda de 2011\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tRevenues:\n" -#| "\t -7500.00€ Tor\n" -#| "\t--------------------\n" -#| "\t -7500.00€\n" +#, no-wrap msgid "" "\tRevenues:\n" "\t 7500.00€ Tor\n" "\t--------------------\n" "\t 7500.00€\n" msgstr "" -"\tReceita:\n" -"\t -7500.00€ Tor\n" +"\tReceitas:\n" +"\t 7500.00€ Tor\n" "\t--------------------\n" -"\t -7500.00€\n" +"\t 7500.00€\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tExpenses:\n" -#| "\t $555.00000 hardware\n" -#| "\t 1075.00€ hosting\n" -#| "\t 3163.32€ meeting\n" -#| "\t--------------------\n" -#| "\t $555.00000\n" -#| "\t 4238.32€\n" +#, no-wrap msgid "" "\tExpenses:\n" "\t $-555.00 hardware\n" @@ -803,20 +754,15 @@ msgid "" "\t -4238.32€\n" msgstr "" "\tDespesas:\n" -"\t $555.00000 hardware\n" -"\t 1075.00€ hospedagem\n" -"\t 3163.32€ encontro\n" +"\t $-555.00 equipamentos\n" +"\t -1075.00€ hospedagem de servidores\n" +"\t -3163.32€ encontro\n" "\t--------------------\n" -"\t $555.00000\n" -"\t 4238.32€\n" +"\t $-555.00\n" +"\t -4238.32€\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tTotal:\n" -#| "\t--------------------\n" -#| "\t $555.00000\n" -#| "\t -3261.68€\n" +#, no-wrap msgid "" "\tTotal:\n" "\t--------------------\n" @@ -825,8 +771,8 @@ msgid "" msgstr "" "\tTotal:\n" "\t--------------------\n" -"\t $555.00000\n" -"\t -3261.68€\n" +"\t $-555.00\n" +"\t 3261.68€\n" #. type: Title = #, no-wrap @@ -834,30 +780,20 @@ msgid "Income statement for 2010\n" msgstr "Declaração de renda de 2010\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tRevenues:\n" -#| "\t -7500.00€ Tor\n" -#| "\t--------------------\n" -#| "\t -7500.00€\n" +#, no-wrap msgid "" "\tRevenues:\n" "\t $8500.00 Tor\n" "\t--------------------\n" "\t $8500.00\n" msgstr "" -"\tReceita:\n" -"\t -7500.00€ Tor\n" +"\tReceitas:\n" +"\t $8500.00 Tor\n" "\t--------------------\n" -"\t -7500.00€\n" +"\t $8500.00\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tExpenses:\n" -#| "\t 2025.00€ hardware\n" -#| "\t--------------------\n" -#| "\t 2025.00€\n" +#, no-wrap msgid "" "\tExpenses:\n" "\t -2025.00€ hardware\n" @@ -865,17 +801,12 @@ msgid "" "\t -2025.00€\n" msgstr "" "\tDespesas:\n" -"\t 2025.00€ hardware\n" +"\t -2025.00€ equipamentos\n" "\t--------------------\n" -"\t 2025.00€\n" +"\t -2025.00€\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tTotal:\n" -#| "\t--------------------\n" -#| "\t $-8500.00000\n" -#| "\t 2025.00€\n" +#, no-wrap msgid "" "\tTotal:\n" "\t--------------------\n" @@ -884,8 +815,8 @@ msgid "" msgstr "" "\tTotal:\n" "\t--------------------\n" -"\t $-8500.00000\n" -"\t 2025.00€\n" +"\t $8500.00\n" +"\t -2025.00€\n" #~ msgid "" #~ "\tRevenues:\n" diff --git a/wiki/src/doc/about/fingerprint.pt.po b/wiki/src/doc/about/fingerprint.pt.po index 3ab77405cda1926f938073dd58761d9c94c0f9df..d212a4794632f9ce08d923c67fb95009c4cddaee 100644 --- a/wiki/src/doc/about/fingerprint.pt.po +++ b/wiki/src/doc/about/fingerprint.pt.po @@ -8,20 +8,21 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-03-05 09:05+0100\n" -"PO-Revision-Date: 2018-04-08 15:19+0000\n" -"Last-Translator: communia <ameaneantie@riseup.net>\n" +"PO-Revision-Date: 2019-12-29 19:25+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Can I hide the fact that I am using Tails?\"]]\n" -msgstr "[[!meta title=\"Eu consigo ocultar o fato de que estou usando Tails?\"]]\n" +msgstr "" +"[[!meta title=\"Eu consigo esconder o fato de que estou usando Tails?\"]]\n" #. type: Plain text msgid "" @@ -52,7 +53,7 @@ msgid "" "this could be used to identify you as a Tails user." msgstr "" "Esta seção explica algumas questões relacionadas à fingerprint do Tails e " -"como isto pode ser usado para identificar você como um usuário Tails." +"como isto pode ser usado para identificar você como um usuário do Tails." #. type: Title = #, no-wrap @@ -71,13 +72,17 @@ msgstr "" "horário, fontes disponívels, etc." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "To make it difficult to distinguish Tails users from TBB users, **the Tor browser tries to provide the same information as the TBB** in order to have similar fingerprints." +#, no-wrap msgid "" "To make it difficult to distinguish Tails users,\n" "**<span class=\"application\">Tor Browser</span> in Tails tries to provide the same information as <span class=\"application\">Tor Browser</span> on other operating systems** in\n" "order to have similar fingerprints.\n" -msgstr "Para tornar mais difícil distinguir usuários Tails de usuários TBB, **o navegador Tor tenta prover a mesma informação que o TBB** para que tenham fingerprints similares." +msgstr "" +"Para que seja mais difícil distinguir usuários do Tails, o\n" +"**<span class=\"application\">Navegador Tor</span> no Tails tenta fornecer " +"as mesmas informações que o <span class=\"application\">Navegador Tor</span> " +"fornece em outros sistemas operacionais**, para que tenham impressões " +"digitais similares.\n" #. type: Plain text #, no-wrap @@ -85,13 +90,16 @@ msgid "<!--\n" msgstr "<!--\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "See the [[fingerprint section of known issues page|support/known_issues#fingerprint]] for a list of known differences between the fingerprints of the Tor browser and the TBB." +#, no-wrap msgid "" "Refer to the [[fingerprint section of our list of known issues\n" "|support/known_issues#fingerprint]] to know if there are differences\n" "between the fingerprints of <span class=\"application\">Tor Browser</span> inside and outside of Tails.\n" -msgstr "Veja a [[seção sobre fingerprint da página de problemas conhecidos|support/known_issues#fingerprint]] para uma lista de diferenças entre as fingerprints do navegador Tor e do TBB." +msgstr "" +"Veja a [[seção sobre impressões digitais da página de problemas conhecidos|" +"support/known_issues#fingerprint]] para saber se existem diferenças entre as " +"impressões digitais do <span class=\"application\">Navegador Tor</span> " +"dentro e fora do Tails.\n" #. type: Plain text #, no-wrap @@ -99,37 +107,30 @@ msgid "-->\n" msgstr "-->\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "For example, Tails includes <span class=\"application\">Adblock\n" -#| "Plus</span> which removes advertisements. If an attacker can determine\n" -#| "that you are not downloading the advertisements that are included in a\n" -#| "webpage, that could help identify you as a Tails user.\n" +#, no-wrap msgid "" "Tails includes the <span class=\"application\">uBlock\n" "Origin</span> extension which removes advertisements. If an attacker can determine\n" "that you are not downloading the advertisements that are included in a\n" "webpage, that could help identify you as a Tails user.\n" msgstr "" -"Por exemplo, o Tails inclui <span class=\"application\">Adblock\n" -"Plus</span> que remove propagandas. Se um atacante puder determinar\n" -"que você não está carregando as propagandas que estão inclusas em uma\n" -"página web, isto poderia ajudá-lo a te identificar como um usuário Tails.\n" +"Tails inclui a extensão <span class=\"application\">uBlock\n" +"Origin</span> que remove propagandas. Se um atacante puder determinar\n" +"que você não está carregando as propagandas que estão incluídas em uma\n" +"página web, isto poderia ajudá-lo a te identificar como alguém que está " +"utilizando Tails.\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "For the moment, you should consider that **no special care is taken\n" -#| "regarding the fingerprint of the [[<span class=\"application\">Unsafe\n" -#| "Browser</span>|doc/anonymous_internet/unsafe_browser]]**.\n" +#, no-wrap msgid "" "No special care is taken\n" "regarding the fingerprint of the [[<span class=\"application\">Unsafe\n" "Browser</span>|doc/anonymous_internet/unsafe_browser]].\n" msgstr "" -"No momento, você deve considerar que **nenhum cuidado especial\n" -"é tomado em relação à fingerprint do [[<span class=\"application\">Navegador\n" -"Inseguro</span>|doc/anonymous_internet/unsafe_browser]]**.\n" +"Nenhum cuidado especial\n" +"é tomado em relação à fingerprint do [[<span class=\"application\">" +"Navegador\n" +"Inseguro</span>|doc/anonymous_internet/unsafe_browser]].\n" #. type: Title = #, no-wrap @@ -142,22 +143,12 @@ msgid "" "connecting to Tor to a local observer. If this is important for you, read " "our documentation about [[doc/first_steps/startup_options/bridge_mode]]." msgstr "" -"Bridges de Tor são na maior parte do tempo uma boa forma de esconder de um " +"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]]." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "A Tails system is **almost exclusively generating Tor activity** on the " -#| "network. Usually TBB users also have network activity outside of Tor, " -#| "either from another web browser or other applications. So the proportion " -#| "of Tor activity could be used to determine whether a user is using Tails " -#| "or the TBB. If you are sharing your Internet connection with other users " -#| "that are not using Tails it is probably harder for your ISP to determine " -#| "whether a single user is generating only Tor traffic and so maybe using " -#| "Tails." msgid "" "A Tails system is **almost exclusively generating Tor activity** on the " "network. Usually users of <span class=\"application\">Tor Browser</span> on " @@ -170,23 +161,17 @@ msgid "" "generating only Tor traffic and so maybe using Tails." msgstr "" "Um sistema Tails **gera, quase que exclusivamente, atividade Tor** na rede. " -"Em geral, usuários TBB também têm atividade na rede fora do Tor, seja por um " -"outro navegador web ou por outras aplicações. Assim, a proporção de " -"atividade Tor poderia ser usada para determinar se um usuário está usando " -"Tails ou TBB. Se você compartilha sua conexão à Internet com outros usuários " -"que não estão usando Tails, é provavelmente mais difícil para seu provedor " -"de serviços de Internet determinar se um usuário único está gerando somente " -"tráfego via Tor e portanto está usando Tails." +"Em geral, quem utiliza o <span class=\"application\">Navegador Tor</span> em " +"outro sistema operacional também tem atividade de rede fora do Tor, seja " +"através de outro navegador ou de outras aplicações. Assim, essa proporção de " +"atividade Tor poderia ser utilizada para determinar se um usuário do <span " +"class=\"application\">Navegador Tor</span> está utilizando Tails ou não. Se " +"você compartilha sua conexão à Internet com outros usuários que não estão " +"usando Tails, é provavelmente mais difícil para seu provedor de serviços de " +"Internet determinar se um único usuário está gerando somente tráfego via Tor " +"e, quem sabe, utilizando Tails." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "Tails **does not use the entry guards mechanism of Tor**. With the [entry " -#| "guard mechanism](https://www.torproject.org/docs/faq#EntryGuards), a Tor " -#| "user always uses the same few relays as first hops. As Tails does not " -#| "store any Tor information between separate working sessions, it does not " -#| "store the entry guards information either. This behaviour could be used " -#| "to distinguish Tails users from TBB users across several working sessions." msgid "" "Tails **does not use the entry guards mechanism of Tor**. With the [entry " "guard mechanism](https://www.torproject.org/docs/faq#EntryGuards), a Tor " @@ -195,22 +180,15 @@ msgid "" "entry guards information either. This behaviour could be used to distinguish " "Tails users across several working sessions." msgstr "" -"Tails **não usa os mecanismos de guarda de entrada do Tor**. Com o " -"[mecanismo de guarda de entrada](https://www.torproject.org/docs/" +"Tails **não utiliza os mecanismos de guarda de entrada do Tor**. Com o [" +"mecanismo de guarda de entrada](https://www.torproject.org/docs/" "faq#EntryGuards), um usuário Tor sempre usa os mesmos repetidores como " "primeiros saltos. Como Tails não guarda nenhuma informação do Tor entre " "sessões de trabalho separadas, ele não guarda as informações de guarda de " "entrada também. Este comportamento poderia ser usado para distinguir " -"usuários Tails de usuários TBB através de diversas sessões de trabalho." +"usuários Tails através de diversas sessões de trabalho." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "When starting, Tails synchronizes the system clock to make sure it is " -#| "accurate. While doing this, if the time is set too much in the past or in " -#| "the future, Tor is shut down and started again. This behavior could be " -#| "used to distinguish Tails from TBB users, especially this happens every " -#| "time Tails starts." msgid "" "When starting, Tails synchronizes the system clock to make sure it is " "accurate. While doing this, if the time is set too much in the past or in " @@ -218,11 +196,11 @@ msgid "" "to distinguish Tails users, especially since this happens every time Tails " "starts." msgstr "" -"Ao iniciar, o Tails sincroniza o relógio do sistema para ter certeza de que " -"está preciso. Ao fazê-lo, se o relógio estiver ajustado para muito no " +"Ao inicializar, Tails sincroniza o relógio do sistema para ter certeza de " +"que está preciso. Ao fazê-lo, se o relógio estiver ajustado para muito no " "passado ou no futuro, Tor é desligado e reiniciado. Este comportamento " -"poderia ser usado para distinguir usuários Tails de usuários TBB, " -"especialmente se isto ocorrer toda vez que o Tails for iniciado." +"poderia ser usado para distinguir usuários Tails, especialmente já que isso " +"ocorre toda vez que o Tails é inicializado." #, fuzzy #~| msgid "Apart from that, **some of the extensions included in Tor browser are different** than the ones included in the TBB. More sophisticated attacks can use those differences to distinguish Tails user from TBB users." diff --git a/wiki/src/doc/about/license.es.po b/wiki/src/doc/about/license.es.po index 35acd01310cb8f242800a145c090c8232ab7242a..180fed0c2143f96d030add0eee79162d75a74c2b 100644 --- a/wiki/src/doc/about/license.es.po +++ b/wiki/src/doc/about/license.es.po @@ -7,8 +7,8 @@ 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" -"PO-Revision-Date: 2018-01-30 14:29+0000\n" -"Last-Translator: Weblate Admin <admin@example.com>\n" +"PO-Revision-Date: 2020-01-21 18:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "license/es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -111,10 +111,12 @@ 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." #. type: Plain text msgid "- Debian logo: Copyright (c) 1999 Software in the Public Interest." -msgstr "" +msgstr "- Debian logo: Copyright (c) 1999 Software in the Public Interest." #. type: Bullet: '- ' msgid "" @@ -245,6 +247,8 @@ msgid "" "[[Laptop|https://thenounproject.com/term/laptop/6729]]: Public Domain, by " "Jean Yashu." msgstr "" +"[[Laptop|https://thenounproject.com/term/laptop/6729]]: Dominio Público, por " +"Jean Yashu." #. type: Bullet: ' - ' msgid "" diff --git a/wiki/src/doc/about/openpgp_keys.es.po b/wiki/src/doc/about/openpgp_keys.es.po index 58c4e84b9c65411bae95ff770b8499412d07f1f1..98bdea04fc02ba0d5b62fcc1fc2d4af0a4d5a64c 100644 --- a/wiki/src/doc/about/openpgp_keys.es.po +++ b/wiki/src/doc/about/openpgp_keys.es.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-08 13:14+0000\n" -"PO-Revision-Date: 2019-09-07 23:06+0000\n" +"PO-Revision-Date: 2020-01-15 08:25+0000\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "openpgp_keys/es/>\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -269,16 +269,7 @@ msgid "Expiration date: same as the primary key." msgstr "Fecha de expiración: la misma de la llave primaria." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| " pub rsa4096/0xDBB802B258ACD84F 2015-01-18 [C] [expires: 2020-01-11]\n" -#| " Key fingerprint = A490 D0F4 D311 A415 3E2B B7CA DBB8 02B2 58AC D84F\n" -#| " uid [ full ] Tails developers (offline long-term identity key) <tails@boum.org>\n" -#| " uid [ full ] Tails developers <tails@boum.org>\n" -#| " sub rsa4096/0xD21DAD38AF281C0B 2017-08-28 [S] [expires: 2020-01-11]\n" -#| " sub rsa4096/0x3020A7A9C2B72733 2017-08-28 [S] [expires: 2020-01-11]\n" -#| " sub ed25519/0x90B2B4BD7AED235F 2017-08-28 [S] [expires: 2020-01-11]\n" -#| " sub rsa4096/0xA8B0F4E45B1B50E2 2018-08-30 [S] [expires: 2020-01-11]\n" +#, no-wrap msgid "" " pub rsa4096/0xDBB802B258ACD84F 2015-01-18 [C] [expires: 2020-10-07]\n" " Key fingerprint = A490 D0F4 D311 A415 3E2B B7CA DBB8 02B2 58AC D84F\n" @@ -289,14 +280,16 @@ msgid "" " sub ed25519/0x90B2B4BD7AED235F 2017-08-28 [S] [expires: 2020-10-07]\n" " sub rsa4096/0xA8B0F4E45B1B50E2 2018-08-30 [S] [expires: 2020-10-07]\n" msgstr "" -" pub rsa4096/0xDBB802B258ACD84F 2015-01-18 [C] [expires: 2020-01-11]\n" -" Key fingerprint = A490 D0F4 D311 A415 3E2B B7CA DBB8 02B2 58AC D84F\n" -" uid [ full ] Tails developers (offline long-term identity key) <tails@boum.org>\n" +" pub rsa4096/0xDBB802B258ACD84F 2015-01-18 [C] [expires: 2020-10-07]\n" +" Key fingerprint = A490 D0F4 D311 A415 3E2B B7CA DBB8 02B2 58AC " +"D84F\n" +" uid [ full ] Tails developers (offline long-term " +"identity key) <tails@boum.org>\n" " uid [ unknown] Tails developers <tails@boum.org>\n" -" sub rsa4096/0xD21DAD38AF281C0B 2017-08-28 [S] [expires: 2020-01-11]\n" -" sub rsa4096/0x3020A7A9C2B72733 2017-08-28 [S] [expires: 2020-01-11]\n" -" sub ed25519/0x90B2B4BD7AED235F 2017-08-28 [S] [expires: 2020-01-11]\n" -" sub rsa4096/0xA8B0F4E45B1B50E2 2018-08-30 [S] [expires: 2020-01-11]\n" +" sub rsa4096/0xD21DAD38AF281C0B 2017-08-28 [S] [expires: 2020-10-07]\n" +" sub rsa4096/0x3020A7A9C2B72733 2017-08-28 [S] [expires: 2020-10-07]\n" +" sub ed25519/0x90B2B4BD7AED235F 2017-08-28 [S] [expires: 2020-10-07]\n" +" sub rsa4096/0xA8B0F4E45B1B50E2 2018-08-30 [S] [expires: 2020-10-07]\n" #. type: Bullet: ' - ' msgid "download it from this website: [[!tails_website tails-signing.key]]" @@ -421,14 +414,7 @@ msgstr "" "accounting@boum.org|about/contact#tails-acccounting]]." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tpub 4096R/0xC436090F4BB47C6F 2014-07-11\n" -#| "\tKey fingerprint = 256D EB90 7788 0CD6 8167 8528 C436 090F 4BB4 7C6F\n" -#| "\tuid Tails accounting team (schleuder list) <tails-accounting@boum.org>\n" -#| "\tuid Tails accounting team (schleuder list) <tails-accounting-request@boum.org>\n" -#| "\tuid Tails accounting team (schleuder list) <tails-accounting-owner@boum.org>\n" -#| "\tsub 4096R/0x289A5B45A9E89475 2014-07-11\n" +#, no-wrap msgid "" " pub rsa4096/0xC436090F4BB47C6F 2014-07-11 [SCEA]\n" " Key fingerprint = 256D EB90 7788 0CD6 8167 8528 C436 090F 4BB4 7C6F\n" @@ -437,12 +423,16 @@ msgid "" " uid [ undef ] Tails accounting team (schleuder list) <tails-accounting-request@boum.org>\n" " sub rsa4096/0x289A5B45A9E89475 2014-07-11 [SEA]\n" msgstr "" -"\tpub 4096R/0xC436090F4BB47C6F 2014-07-11\n" -"\tKey fingerprint = 256D EB90 7788 0CD6 8167 8528 C436 090F 4BB4 7C6F\n" -"\tuid Tails accounting team (schleuder list) <tails-accounting@boum.org>\n" -"\tuid Tails accounting team (schleuder list) <tails-accounting-request@boum.org>\n" -"\tuid Tails accounting team (schleuder list) <tails-accounting-owner@boum.org>\n" -"\tsub 4096R/0x289A5B45A9E89475 2014-07-11\n" +" pub rsa4096/0xC436090F4BB47C6F 2014-07-11 [SCEA]\n" +" Key fingerprint = 256D EB90 7788 0CD6 8167 8528 C436 090F 4BB4 " +"7C6F\n" +" uid [ undef ] Tails accounting team (schleuder list) " +"<tails-accounting@boum.org>\n" +" uid [ undef ] Tails accounting team (schleuder list) " +"<tails-accounting-owner@boum.org>\n" +" uid [ undef ] Tails accounting team (schleuder list) " +"<tails-accounting-request@boum.org>\n" +" sub rsa4096/0x289A5B45A9E89475 2014-07-11 [SEA]\n" #. type: Bullet: ' - ' msgid "download it from this website: [[!tails_website tails-accounting.key]]" @@ -516,14 +506,7 @@ msgstr "" "org|about/contact#tails-mirrors]]." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "\tpub rsa4096/0xD2EDA621B572DD73 2016-04-29 [SCEA]\n" -#| "\t Key fingerprint = 0B08 8E31 D4F8 E59A 3D39 9137 D2ED A621 B572 DD73\n" -#| "\tuid [ unknown] Tails mirror pool managers (schleuder list) <tails-mirrors@boum.org>\n" -#| "\tuid [ unknown] Tails mirror pool managers (schleuder list) <tails-mirrors-request@boum.org>\n" -#| "\tuid [ unknown] Tails mirror pool managers (schleuder list) <tails-mirrors-owner@boum.org>\n" -#| "\tsub rsa4096/0x3DCFC1EB1C62C73C 2016-04-29 [SEA]\n" +#, no-wrap msgid "" " pub rsa4096/0xD2EDA621B572DD73 2016-04-29 [SCEA]\n" " Key fingerprint = 0B08 8E31 D4F8 E59A 3D39 9137 D2ED A621 B572 DD73\n" @@ -532,12 +515,16 @@ msgid "" " uid [ unknown] Tails mirror pool managers (schleuder list) <tails-mirrors-owner@boum.org>\n" " sub rsa4096/0x3DCFC1EB1C62C73C 2016-04-29 [SEA]\n" msgstr "" -"\tpub rsa4096/0xD2EDA621B572DD73 2016-04-29 [SCEA]\n" -"\t Key fingerprint = 0B08 8E31 D4F8 E59A 3D39 9137 D2ED A621 B572 DD73\n" -"\tuid [ unknown] Tails mirror pool managers (schleuder list) <tails-mirrors@boum.org>\n" -"\tuid [ unknown] Tails mirror pool managers (schleuder list) <tails-mirrors-request@boum.org>\n" -"\tuid [ unknown] Tails mirror pool managers (schleuder list) <tails-mirrors-owner@boum.org>\n" -"\tsub rsa4096/0x3DCFC1EB1C62C73C 2016-04-29 [SEA]\n" +" pub rsa4096/0xD2EDA621B572DD73 2016-04-29 [SCEA]\n" +" Key fingerprint = 0B08 8E31 D4F8 E59A 3D39 9137 D2ED A621 B572 " +"DD73\n" +" uid [ unknown] Tails mirror pool managers (schleuder " +"list) <tails-mirrors@boum.org>\n" +" uid [ unknown] Tails mirror pool managers (schleuder " +"list) <tails-mirrors-request@boum.org>\n" +" uid [ unknown] Tails mirror pool managers (schleuder " +"list) <tails-mirrors-owner@boum.org>\n" +" sub rsa4096/0x3DCFC1EB1C62C73C 2016-04-29 [SEA]\n" #. type: Bullet: ' - ' msgid "download it from this website: [[!tails_website tails-mirrors.key]]" @@ -562,14 +549,7 @@ msgstr "" "sysadmins@boum.org|about/contact#tails-sysadmins]]." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| " pub 4096R/0x70F4F03116525F43 2012-08-23 [expires: 2018-05-16]\n" -#| " Key fingerprint = D113 CB6D 5131 D34B A5F0 FE9E 70F4 F031 1652 5F43\n" -#| " uid Tails system administrators <tails-sysadmins@boum.org>\n" -#| " uid Tails system administrators (schleuder list) <tails-sysadmins-owner@boum.org>\n" -#| " uid Tails system administrators (schleuder list) <tails-sysadmins-request@boum.org>\n" -#| " sub 4096R/0x58BA940CCA0A30B4 2012-08-23 [expires: 2018-05-16]\n" +#, no-wrap msgid "" " pub rsa4096/0x70F4F03116525F43 2012-08-23 [SC] [expires: 2020-02-17]\n" " Key fingerprint = D113 CB6D 5131 D34B A5F0 FE9E 70F4 F031 1652 5F43\n" @@ -578,50 +558,41 @@ msgid "" " uid [ unknown] Tails system administrators (schleuder list) <tails-sysadmins-request@boum.org>\n" " sub rsa4096/0x58BA940CCA0A30B4 2012-08-23 [E] [expires: 2020-02-17]\n" msgstr "" -" pub 4096R/0x70F4F03116525F43 2012-08-23 [expires: 2018-05-16]\n" -" Key fingerprint = D113 CB6D 5131 D34B A5F0 FE9E 70F4 F031 1652 5F43\n" -" uid Tails system administrators <tails-sysadmins@boum.org>\n" -" uid Tails system administrators (schleuder list) <tails-sysadmins-owner@boum.org>\n" -" uid Tails system administrators (schleuder list) <tails-sysadmins-request@boum.org>\n" -" sub 4096R/0x58BA940CCA0A30B4 2012-08-23 [expires: 2018-05-16]\n" +" pub rsa4096/0x70F4F03116525F43 2012-08-23 [SC] [expires: 2020-02-17]\n" +" Key fingerprint = D113 CB6D 5131 D34B A5F0 FE9E 70F4 F031 1652 " +"5F43\n" +" uid [ unknown] Tails system administrators <tails-" +"sysadmins@boum.org>\n" +" uid [ unknown] Tails system administrators (schleuder " +"list) <tails-sysadmins-owner@boum.org>\n" +" uid [ unknown] Tails system administrators (schleuder " +"list) <tails-sysadmins-request@boum.org>\n" +" sub rsa4096/0x58BA940CCA0A30B4 2012-08-23 [E] [expires: 2020-02-17]\n" #. type: Bullet: ' - ' msgid "download it from this website: [[!tails_website tails-sysadmins.key]]" msgstr "descárgala de esta página web: [[!tails_website tails-sysadmins.key]]" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"foundations\"></a>\n" +#, no-wrap msgid "<a id=\"translations\"></a>\n" -msgstr "<a id=\"foundations\"></a>\n" +msgstr "<a id=\"translations\"></a>\n" #. type: Title = -#, fuzzy, no-wrap -#| msgid "Sysadmins team key\n" +#, no-wrap msgid "Translations team key\n" -msgstr "Llave del equipo de administración de sistemas\n" +msgstr "Llave del equipo de traducciones\n" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "Use this key to encrypt private emails sent to [[tails-foundations@boum." -#| "org|about/contact#tails-foundations]]." msgid "" "Use this key to encrypt private emails sent to [[tails-translations@boum.org|" "about/contact#tails-translations]]." msgstr "" "Usa esta llave para cifrar mensajes privados enviados a [[tails-" -"foundations@boum.org|about/contact#tails-foundations]]." +"translations@boum.org|about/contact#tails-translations]]." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| " pub rsa4096/0xA827FE0D677E522C 2019-02-24 [SC]\n" -#| " Key fingerprint = EFC9 4A11 CBF6 F00F 509C EB0C A827 FE0D 677E 522C\n" -#| " uid [ unknown] tails-foundations@boum.org <tails-foundations@boum.org>\n" -#| " uid [ unknown] tails-foundations@boum.org <tails-foundations-request@boum.org>\n" -#| " uid [ unknown] tails-foundations@boum.org <tails-foundations-owner@boum.org>\n" -#| " sub rsa4096/0x244F9D7C6DF90D6D 2019-02-24 [E]\n" +#, no-wrap msgid "" " pub rsa4096/0x8D9F6B0A628D9B11 2019-07-25 [SC]\n" " Key fingerprint = F63E 5590 7746 5C5A 1768 32CC 8D9F 6B0A 628D 9B11\n" @@ -630,21 +601,22 @@ msgid "" " uid [ unknown] tails-translations@boum.org <tails-translations-owner@boum.org>\n" " sub rsa4096/0x13C3AEF73EED3FB9 2019-07-25 [E]\n" msgstr "" -" pub rsa4096/0xA827FE0D677E522C 2019-02-24 [SC]\n" -" Key fingerprint = EFC9 4A11 CBF6 F00F 509C EB0C A827 FE0D 677E 522C\n" -" uid [ unknown] tails-foundations@boum.org <tails-foundations@boum.org>\n" -" uid [ unknown] tails-foundations@boum.org <tails-foundations-request@boum.org>\n" -" uid [ unknown] tails-foundations@boum.org <tails-foundations-owner@boum.org>\n" -" sub rsa4096/0x244F9D7C6DF90D6D 2019-02-24 [E]\n" +" pub rsa4096/0x8D9F6B0A628D9B11 2019-07-25 [SC]\n" +" Key fingerprint = F63E 5590 7746 5C5A 1768 32CC 8D9F 6B0A 628D " +"9B11\n" +" uid [ unknown] tails-translations@boum.org <tails-" +"translations@boum.org>\n" +" uid [ unknown] tails-translations@boum.org <tails-" +"translations-request@boum.org>\n" +" uid [ unknown] tails-translations@boum.org <tails-" +"translations-owner@boum.org>\n" +" sub rsa4096/0x13C3AEF73EED3FB9 2019-07-25 [E]\n" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "download it from this website: [[!tails_website tails-foundations.key]]" msgid "" "download it from this website: [[!tails_website tails-translations.key]]" msgstr "" -"descárgala desde este sitio web: [[!tails_website tails-foundations.key]]" +"descárgala desde este sitio web: [[!tails_website tails-translations.key]]" #~ msgid "Signature" #~ msgstr "Firma" diff --git a/wiki/src/doc/about/openpgp_keys.id.po b/wiki/src/doc/about/openpgp_keys.id.po index 7a3702e7ecb9f7c67e69fd0101f938893f3e37af..b2b76ffe1bb6b255d487cd2aa9778a396ffbb1f0 100644 --- a/wiki/src/doc/about/openpgp_keys.id.po +++ b/wiki/src/doc/about/openpgp_keys.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Tails Translators\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-08 13:14+0000\n" -"PO-Revision-Date: 2019-10-24 10:30+0000\n" +"PO-Revision-Date: 2020-01-16 00:25+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails Translator <tails-l10n@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -56,7 +56,7 @@ msgstr "</div>\n" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/about/requirements.id.po b/wiki/src/doc/about/requirements.id.po index a8dba5550389d5eb8d3a7f49145a14c7227199cf..a816afc97f5f47da047a6b9b9195f8877aee3266 100644 --- a/wiki/src/doc/about/requirements.id.po +++ b/wiki/src/doc/about/requirements.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Tails website\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-31 11:16+0000\n" -"PO-Revision-Date: 2019-10-24 10:30+0000\n" +"PO-Revision-Date: 2020-01-15 21:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -30,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/about/requirements.zh.po b/wiki/src/doc/about/requirements.zh.po index 1021e4e1361d1a2e9e05080b98eb0d8c5fba8ac2..3a4c540ab533907e8e3258030c5ecdc3cb722daa 100644 --- a/wiki/src/doc/about/requirements.zh.po +++ b/wiki/src/doc/about/requirements.zh.po @@ -3,18 +3,20 @@ # 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" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-31 11:16+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" "Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -56,7 +58,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "</div>\n" -msgstr "" +msgstr "</div>\n" #. type: Plain text msgid "Hardware requirements:" diff --git a/wiki/src/doc/about/trust.id.po b/wiki/src/doc/about/trust.id.po index 5b688a407190126c1c16ad9dcedc912eacaafc4f..0b5f9ae56b9123fae22c31c7f60369183d056bed 100644 --- a/wiki/src/doc/about/trust.id.po +++ b/wiki/src/doc/about/trust.id.po @@ -8,14 +8,15 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-01-18 14:47+0100\n" -"PO-Revision-Date: 2016-03-28 15:41+0200\n" -"Last-Translator: Tails translators <tails@boum.org>\n" +"PO-Revision-Date: 2020-01-15 21:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -46,7 +47,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/about/trust.pt.po b/wiki/src/doc/about/trust.pt.po index 790ae260015e0f0bae34726927329c9a7e9f4e9d..29204bcdf5284e289238b8df6e30f15b2fc15221 100644 --- a/wiki/src/doc/about/trust.pt.po +++ b/wiki/src/doc/about/trust.pt.po @@ -6,14 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: 1\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-01-18 14:47+0100\n" -"PO-Revision-Date: 2012-07-03 16:55-0300\n" -"Last-Translator: drebs <drebs@riseup.net>\n" +"PO-Revision-Date: 2019-12-22 21:03+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Portuguese <LL@li.org>\n" -"Language: \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" "X-Poedit-Language: Portuguese\n" "X-Poedit-Country: Brazil\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/wiki/src/doc/about/warning.ar.po b/wiki/src/doc/about/warning.ar.po index 44eda57ff5d06cd47f2711a0a34e2803cd121a66..65d06c329e75f3f9e6abe64b420125741e2db25d 100644 --- a/wiki/src/doc/about/warning.ar.po +++ b/wiki/src/doc/about/warning.ar.po @@ -265,7 +265,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Usually, this is automatically done throught SSL certificates checked by your\n" +"Usually, this is automatically done through SSL certificates checked by your\n" "browser against a given set of recognized [[!wikipedia\n" "Certificate_authority desc=\"certificate authorities\"]]).\n" "If you get a security exception message such as this one you might be the victim of\n" @@ -565,3 +565,21 @@ msgid "" "Tails, as well as all the software it includes, are continuously being " "developed and may contain programming errors or security holes." msgstr "" + +msgid "" +"As explained in our documentation about\n" +"[[Tor Browser|anonymous_internet/Tor_Browser#new_identity]],\n" +"its **New identity** feature is not a perfect solution to separate\n" +"different contextual identities. And, as\n" +"[[explained in the FAQ|support/faq#new_identity]], Tails does not\n" +"provide a global <span class=\"guilabel\">New Identity</span>\n" +"feature. **Shutdown and restart Tails instead.**\n" +msgstr "" +"Wie in unserer Dokumentation über den\n" +"[[Tor Browser|anonymous_internet/Tor_Browser#new_identity]]\n" +"beschrieben wird, ist die **Neue Identität** Funktion keine\n" +"perfekte Lösung, um Identitäten für verschiedene Kontexte zu trennen.\n" +"Wie zudem [[in der FAQ erklärt|support/faq#new_identity]] wird, bietet Tails " +"keine\n" +"systemweite Funktion für <span class=\"guilabel\">Neue Identität</span>.\n" +"**Fahren Sie stattdessen Tails herunter und starten Sie es neu.**\n" diff --git a/wiki/src/doc/about/warning.ca.po b/wiki/src/doc/about/warning.ca.po index 439017b60dc060fcaa988ad6c5689cf3ee1c63bb..13ebb65c49f0d54d8c2165a82024b4c61857b280 100644 --- a/wiki/src/doc/about/warning.ca.po +++ b/wiki/src/doc/about/warning.ca.po @@ -264,7 +264,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Usually, this is automatically done throught SSL certificates checked by your\n" +"Usually, this is automatically done through SSL certificates checked by your\n" "browser against a given set of recognized [[!wikipedia\n" "Certificate_authority desc=\"certificate authorities\"]]).\n" "If you get a security exception message such as this one you might be the victim of\n" @@ -564,3 +564,21 @@ msgid "" "Tails, as well as all the software it includes, are continuously being " "developed and may contain programming errors or security holes." msgstr "" + +msgid "" +"As explained in our documentation about\n" +"[[Tor Browser|anonymous_internet/Tor_Browser#new_identity]],\n" +"its **New identity** feature is not a perfect solution to separate\n" +"different contextual identities. And, as\n" +"[[explained in the FAQ|support/faq#new_identity]], Tails does not\n" +"provide a global <span class=\"guilabel\">New Identity</span>\n" +"feature. **Shutdown and restart Tails instead.**\n" +msgstr "" +"Wie in unserer Dokumentation über den\n" +"[[Tor Browser|anonymous_internet/Tor_Browser#new_identity]]\n" +"beschrieben wird, ist die **Neue Identität** Funktion keine\n" +"perfekte Lösung, um Identitäten für verschiedene Kontexte zu trennen.\n" +"Wie zudem [[in der FAQ erklärt|support/faq#new_identity]] wird, bietet Tails " +"keine\n" +"systemweite Funktion für <span class=\"guilabel\">Neue Identität</span>.\n" +"**Fahren Sie stattdessen Tails herunter und starten Sie es neu.**\n" diff --git a/wiki/src/doc/about/warning.de.po b/wiki/src/doc/about/warning.de.po index 392ce52012e806974bb7a8540a09dddd03fe7334..e0207f013a80c12b3d7a9fa807685d97b2804701 100644 --- a/wiki/src/doc/about/warning.de.po +++ b/wiki/src/doc/about/warning.de.po @@ -334,7 +334,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Usually, this is automatically done throught SSL certificates checked by your\n" +"Usually, this is automatically done through SSL certificates checked by your\n" "browser against a given set of recognized [[!wikipedia\n" "Certificate_authority desc=\"certificate authorities\"]]).\n" "If you get a security exception message such as this one you might be the victim of\n" diff --git a/wiki/src/doc/about/warning.es.po b/wiki/src/doc/about/warning.es.po index 5abca12e9ffedbfc6e70a5645cd8feb5f599a7f3..55a3b934d81579f883ddbc80a225bf923e3293a7 100644 --- a/wiki/src/doc/about/warning.es.po +++ b/wiki/src/doc/about/warning.es.po @@ -331,7 +331,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Usually, this is automatically done throught SSL certificates checked by your\n" +"Usually, this is automatically done through SSL certificates checked by your\n" "browser against a given set of recognized [[!wikipedia\n" "Certificate_authority desc=\"certificate authorities\"]]).\n" "If you get a security exception message such as this one you might be the victim of\n" diff --git a/wiki/src/doc/about/warning.fa.po b/wiki/src/doc/about/warning.fa.po index 258720224708fb4d80169ea222c55979ea4270bd..9bb8ec9b94df4c089eb093a7afed69a429af17ea 100644 --- a/wiki/src/doc/about/warning.fa.po +++ b/wiki/src/doc/about/warning.fa.po @@ -339,7 +339,7 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid "" -#| "Usually, this is automatically done throught SSL certificates checked by your\n" +#| "Usually, this is automatically done through SSL certificates checked by your\n" #| "browser against a given set of recognized [[!wikipedia\n" #| "Certificate_authority desc=\"certificate authorities\"]]).\n" #| "If you get a security exception message such as this one you might be victim of\n" @@ -347,7 +347,7 @@ msgstr "" #| "trusted way of checking the certificate's fingerprint with the people running\n" #| "the service.\n" msgid "" -"Usually, this is automatically done throught SSL certificates checked by your\n" +"Usually, this is automatically done through SSL certificates checked by your\n" "browser against a given set of recognized [[!wikipedia\n" "Certificate_authority desc=\"certificate authorities\"]]).\n" "If you get a security exception message such as this one you might be the victim of\n" diff --git a/wiki/src/doc/about/warning.fr.po b/wiki/src/doc/about/warning.fr.po index 928098d15cec36819360ee5c8b0a273cdbb9a093..6c0b643dd2831a06687aad6a237271960093a305 100644 --- a/wiki/src/doc/about/warning.fr.po +++ b/wiki/src/doc/about/warning.fr.po @@ -336,7 +336,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Usually, this is automatically done throught SSL certificates checked by your\n" +"Usually, this is automatically done through SSL certificates checked by your\n" "browser against a given set of recognized [[!wikipedia\n" "Certificate_authority desc=\"certificate authorities\"]]).\n" "If you get a security exception message such as this one you might be the victim of\n" diff --git a/wiki/src/doc/about/warning.id.po b/wiki/src/doc/about/warning.id.po index 2910563702c983ad7108321bbcf39eb0c82786f6..a51570a3f1e6682871426249d8cb5d3c10e3c5a3 100644 --- a/wiki/src/doc/about/warning.id.po +++ b/wiki/src/doc/about/warning.id.po @@ -8,14 +8,15 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2017-11-23 12:04+0000\n" -"PO-Revision-Date: 2017-08-20 19:56+0200\n" -"Last-Translator: Tails translators\n" +"PO-Revision-Date: 2020-01-15 21:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.11\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -34,7 +35,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Plain text #, no-wrap @@ -263,7 +264,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Usually, this is automatically done throught SSL certificates checked by your\n" +"Usually, this is automatically done through SSL certificates checked by your\n" "browser against a given set of recognized [[!wikipedia\n" "Certificate_authority desc=\"certificate authorities\"]]).\n" "If you get a security exception message such as this one you might be the victim of\n" diff --git a/wiki/src/doc/about/warning.it.po b/wiki/src/doc/about/warning.it.po index 10c3871b6ef127ec8f545aad3e3a7254b15334fb..e53577eb38bd2a9d6104bed0b09903cb50336f76 100644 --- a/wiki/src/doc/about/warning.it.po +++ b/wiki/src/doc/about/warning.it.po @@ -343,7 +343,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Usually, this is automatically done throught SSL certificates checked by your\n" +"Usually, this is automatically done through SSL certificates checked by your\n" "browser against a given set of recognized [[!wikipedia\n" "Certificate_authority desc=\"certificate authorities\"]]).\n" "If you get a security exception message such as this one you might be the victim of\n" diff --git a/wiki/src/doc/about/warning.mdwn b/wiki/src/doc/about/warning.mdwn index 9de52e32b98689cf2f7160e0ca7c0a3449fcd655..69ae1c0eea38dcbd9f64db36ed3ce1872df0b6ab 100644 --- a/wiki/src/doc/about/warning.mdwn +++ b/wiki/src/doc/about/warning.mdwn @@ -128,7 +128,7 @@ attacks](https://web.archive.org/web/20120113162841/http://www.teamfurry.com/wor encryption** and while doing so taking extra care at verifying the server authenticity. -Usually, this is automatically done throught SSL certificates checked by your +Usually, this is automatically done through SSL certificates checked by your browser against a given set of recognized [[!wikipedia Certificate_authority desc="certificate authorities"]]). If you get a security exception message such as this one you might be the victim of diff --git a/wiki/src/doc/about/warning.pl.po b/wiki/src/doc/about/warning.pl.po index f7c868ac692a6e0b4b6c39ea2d517be038dd7357..73b6b73c55e12702b92f679b6ca4bdb86a37d1dd 100644 --- a/wiki/src/doc/about/warning.pl.po +++ b/wiki/src/doc/about/warning.pl.po @@ -265,7 +265,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Usually, this is automatically done throught SSL certificates checked by your\n" +"Usually, this is automatically done through SSL certificates checked by your\n" "browser against a given set of recognized [[!wikipedia\n" "Certificate_authority desc=\"certificate authorities\"]]).\n" "If you get a security exception message such as this one you might be the victim of\n" diff --git a/wiki/src/doc/about/warning.pt.po b/wiki/src/doc/about/warning.pt.po index ec045c654a12f1cbccbb2d4cefc0a7434fdc14ed..871818962635dd7eb82cef0a023ce955e9b8332e 100644 --- a/wiki/src/doc/about/warning.pt.po +++ b/wiki/src/doc/about/warning.pt.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-08-29 15:15+0200\n" -"PO-Revision-Date: 2018-04-12 15:36+0000\n" -"Last-Translator: Tails translators <tails-l10n@boum.org>\n" +"PO-Revision-Date: 2019-12-22 21:03+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -332,7 +332,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Usually, this is automatically done throught SSL certificates checked by your\n" +"Usually, this is automatically done through SSL certificates checked by your\n" "browser against a given set of recognized [[!wikipedia\n" "Certificate_authority desc=\"certificate authorities\"]]).\n" "If you get a security exception message such as this one you might be the victim of\n" diff --git a/wiki/src/doc/about/warning.ru.po b/wiki/src/doc/about/warning.ru.po index de6a7f1a45dfe56981ba83872fd0ac1d5d046939..96e12c47ef43e4295acfea0000dd2119199ec803 100644 --- a/wiki/src/doc/about/warning.ru.po +++ b/wiki/src/doc/about/warning.ru.po @@ -265,7 +265,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Usually, this is automatically done throught SSL certificates checked by your\n" +"Usually, this is automatically done through SSL certificates checked by your\n" "browser against a given set of recognized [[!wikipedia\n" "Certificate_authority desc=\"certificate authorities\"]]).\n" "If you get a security exception message such as this one you might be the victim of\n" diff --git a/wiki/src/doc/about/warning.sr_Latn.po b/wiki/src/doc/about/warning.sr_Latn.po index eb49ec67efeb595dd946e2bcff0979302c534e66..d7a3879033ac1f12df0475117bb3bb9034e845aa 100644 --- a/wiki/src/doc/about/warning.sr_Latn.po +++ b/wiki/src/doc/about/warning.sr_Latn.po @@ -275,7 +275,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Usually, this is automatically done throught SSL certificates checked by " +"Usually, this is automatically done through SSL certificates checked by " "your\n" "browser against a given set of recognized [[!wikipedia\n" "Certificate_authority desc=\"certificate authorities\"]]).\n" diff --git a/wiki/src/doc/about/warning.tr.po b/wiki/src/doc/about/warning.tr.po index 0fff6c5e216ab89c1a0385fa898939b395750ea7..31fee28b98a975d7039d0de90a578c4f95cbeadf 100644 --- a/wiki/src/doc/about/warning.tr.po +++ b/wiki/src/doc/about/warning.tr.po @@ -264,7 +264,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Usually, this is automatically done throught SSL certificates checked by your\n" +"Usually, this is automatically done through SSL certificates checked by your\n" "browser against a given set of recognized [[!wikipedia\n" "Certificate_authority desc=\"certificate authorities\"]]).\n" "If you get a security exception message such as this one you might be the victim of\n" diff --git a/wiki/src/doc/about/warning.zh.po b/wiki/src/doc/about/warning.zh.po index d457e65996211268177caac0c854b4bd6c11fb7d..69da45dfa1b5cc979fdb73fa9b48d13d585c59b3 100644 --- a/wiki/src/doc/about/warning.zh.po +++ b/wiki/src/doc/about/warning.zh.po @@ -264,7 +264,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Usually, this is automatically done throught SSL certificates checked by your\n" +"Usually, this is automatically done through SSL certificates checked by your\n" "browser against a given set of recognized [[!wikipedia\n" "Certificate_authority desc=\"certificate authorities\"]]).\n" "If you get a security exception message such as this one you might be the victim of\n" diff --git a/wiki/src/doc/about/warning.zh_TW.po b/wiki/src/doc/about/warning.zh_TW.po index 465e38f5d1f77b6c0a0b0b5b35a97fa9fdffb089..9d6e2d16a2a7e7f88222f5f0f456855aa68f9ffc 100644 --- a/wiki/src/doc/about/warning.zh_TW.po +++ b/wiki/src/doc/about/warning.zh_TW.po @@ -277,7 +277,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Usually, this is automatically done throught SSL certificates checked by " +"Usually, this is automatically done through SSL certificates checked by " "your\n" "browser against a given set of recognized [[!wikipedia\n" "Certificate_authority desc=\"certificate authorities\"]]).\n" diff --git a/wiki/src/doc/advanced_topics.id.po b/wiki/src/doc/advanced_topics.id.po index 992feaa0aa10485a958867d15436098adcd05478..d51d3d21c6d3df963c86a6148b73dc7d3871e24f 100644 --- a/wiki/src/doc/advanced_topics.id.po +++ b/wiki/src/doc/advanced_topics.id.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: \n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2011-11-19 16:05+0100\n" -"PO-Revision-Date: 2016-05-29 18:28-0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-15 21:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.10\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -25,3 +27,4 @@ msgstr "" #, no-wrap msgid "[[!inline pages=\"doc/advanced_topics.index\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"doc/advanced_topics.index.id\" raw=\"yes\" sort=\"age\"]]\n" diff --git a/wiki/src/doc/advanced_topics/virtualization.id.po b/wiki/src/doc/advanced_topics/virtualization.id.po index 922cf4ae98a0ffe53924d15f905e2748eb6a2f05..055ed6180a97e5471012dcd3a31cc82ccecc1ae7 100644 --- a/wiki/src/doc/advanced_topics/virtualization.id.po +++ b/wiki/src/doc/advanced_topics/virtualization.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-05 18:37+0200\n" -"PO-Revision-Date: 2019-10-24 10:30+0000\n" +"PO-Revision-Date: 2020-01-16 00:25+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Plain text msgid "" @@ -64,7 +64,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap @@ -81,7 +81,7 @@ msgstr "</div>\n" #. type: Plain text #, no-wrap msgid "<a id=\"security\"></a>\n" -msgstr "" +msgstr "<a id=\"security\"></a>\n" #. type: Title = #, no-wrap @@ -103,7 +103,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"trustworthy\"></a>\n" -msgstr "" +msgstr "<a id=\"trustworthy\"></a>\n" #. type: Bullet: ' - ' msgid "" @@ -139,7 +139,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"traces\"></a>\n" -msgstr "" +msgstr "<a id=\"traces\"></a>\n" #. type: Bullet: ' - ' msgid "" diff --git a/wiki/src/doc/advanced_topics/virtualization.pt.po b/wiki/src/doc/advanced_topics/virtualization.pt.po index 64916a11b22b57dae4dd6d6b34e9359e0745ed3c..c31e95e10fc7b7659bd71d92b2415299f3e25cc2 100644 --- a/wiki/src/doc/advanced_topics/virtualization.pt.po +++ b/wiki/src/doc/advanced_topics/virtualization.pt.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-05 18:37+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/advanced_topics/virtualization/boxes.id.po b/wiki/src/doc/advanced_topics/virtualization/boxes.id.po index 862ae2d8b7c9506d9f6e66a28a389530f8a7f11f..487d3f4efe27e0d0dbc50cde6606acc90c4ce589 100644 --- a/wiki/src/doc/advanced_topics/virtualization/boxes.id.po +++ b/wiki/src/doc/advanced_topics/virtualization/boxes.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2017-05-19 17:19+0200\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -39,7 +39,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.es.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.es.po index 397d4bec4df38c0726a8e055320306cd4b569845..21561c0d56841b7c18f45a710d228e30e838e288 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.es.po +++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.es.po @@ -7,8 +7,8 @@ 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" -"PO-Revision-Date: 2019-08-23 11:39+0000\n" -"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" +"PO-Revision-Date: 2020-01-19 18:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "advanced_topics_virt_manager/es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,6 +31,12 @@ msgid "" "interface than *VirtualBox* or *GNOME Boxes* but it also has a more\n" "complete set of features.\n" msgstr "" +"[<span class=\"application\">virt-manager</span>](http://virt-manager.org/) " +"es una solución\n" +"de virtualización de software libre para Linux. *virt-manager* tiene una " +"interfaz\n" +"más compleja que *VirtualBox* o *GNOME Boxes* pero también tiene un " +"conjunto más completo de funcionalidades.\n" #. type: Plain text #, no-wrap @@ -50,6 +56,10 @@ msgid "" "volume.</span> See [[Running Tails from a USB\n" "image|virt-manager#usb_image]].</p>\n" msgstr "" +"<p><span class=\"application\">virt-manager</span> es la única solución de\n" +"virtualización que presentamos que permita el uso de \n" +"un volumen persistente.</span> Lee [[Ejecutar Tails desde una imagen\n" +"USB|virt-manager#usb_image]].</p>\n" #. type: Plain text #, no-wrap @@ -62,10 +72,11 @@ msgid "<div class=\"note\">\n" msgstr "<div class=\"note\">\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<p>The following instructions have been tested on Debian Stretch.</p>\n" +#, no-wrap msgid "<p>The following instructions have been tested on Debian 9 (Stretch).</p>\n" -msgstr "<p>Las instrucciones siguientes han sido probadas en Debian Stretch.</p>\n" +msgstr "" +"<p>Las instrucciones siguientes han sido probadas en Debian 9 (Stretch).</p>" +"\n" #. type: Plain text #, no-wrap @@ -73,6 +84,8 @@ msgid "" "<p>Please, [[let us know|about/contact#tails-dev]] if they do not apply\n" "to Debian 10 (Buster).</p>\n" msgstr "" +"<p>Por favor, [[dinos|about/contact#tails-dev]] si no aplican a\n" +"Debian 10 (Buster).</p>\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.fa.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.fa.po index 9985add0b2d1bf90e450c6c2c27197abdb9d5f8e..f3af53e68f7abe49074c3d4bc033ae2840292953 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.fa.po +++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.fa.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-07-29 16:50+0000\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" "Language: fa\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -40,7 +40,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.fr.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.fr.po index 8cf8844d4b50ec42741027ddc4cafd1dfcb8ee82..9b3c621f3659e50a6ea682224e9096e0c0958727 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.fr.po +++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.fr.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-09 07:40+0000\n" +"PO-Revision-Date: 2020-01-24 08:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -70,10 +70,10 @@ msgid "<div class=\"note\">\n" msgstr "<div class=\"note\">\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<p>The following instructions have been tested on Debian Stretch.</p>\n" +#, no-wrap msgid "<p>The following instructions have been tested on Debian 9 (Stretch).</p>\n" -msgstr "<p>Les instructions suivantes ont été testées avec Debian Stretch.</p>\n" +msgstr "" +"<p>Les instructions suivantes ont été testées avec Debian 9 (Stretch).</p>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.id.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.id.po index 33fdd84238f8e452e4db28fc7fed0113d7cd26c0..377171e085463206c6e9c7aeaee8160285ccf49a 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.id.po +++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-10 11:28+0200\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -40,7 +40,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap @@ -59,7 +59,7 @@ msgstr "</div>\n" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.it.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.it.po index c994c53592e5741128d479fd44ecb5a41abe26bb..7cc0912583cb4b926d9ca17d7d6ae8e20d09d03c 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.it.po +++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.it.po @@ -8,15 +8,15 @@ 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" -"PO-Revision-Date: 2019-11-24 09:36+0000\n" -"Last-Translator: Davide <davidesantoro@mail.ru>\n" +"PO-Revision-Date: 2020-01-15 08:25+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -134,7 +134,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " sudo apt install virt-manager libvirt-daemon-system\n" -msgstr "" +msgstr " sudo apt install virt-manager libvirt-daemon-system\n" #. type: Plain text msgid "To install *virt-manager* in Ubuntu, execute the following command:" diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.pt.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.pt.po index 8bc1b826f994e3778742833a8765b616bb311896..c49e942d4ae74194c672cbc9ed22140cd9d9d917 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.pt.po +++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.pt.po @@ -6,21 +6,22 @@ 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" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"virt-manager\"]]\n" -msgstr "" +msgstr "[[!meta title=\"virt-manager\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/advanced_topics/virtualization/virtualbox.id.po b/wiki/src/doc/advanced_topics/virtualization/virtualbox.id.po index 2ed2bd06927f1fd5a65568af68a6b569cad71b19..9c0bbd9a678a91fcde5fa4dd7b094407e4d45494 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virtualbox.id.po +++ b/wiki/src/doc/advanced_topics/virtualization/virtualbox.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2017-08-01 18:57+0300\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -66,7 +66,7 @@ msgstr "</div>\n" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/advanced_topics/wireless_devices.id.po b/wiki/src/doc/advanced_topics/wireless_devices.id.po index d1feac32efdf67ec3e58d089a964ad837202b280..50088458c4a706ee3950b25b792d29983083a5fc 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.id.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.id.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: \n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2017-09-16 01:19+0200\n" -"PO-Revision-Date: 2016-05-21 12:29-0000\n" -"Last-Translator: \n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" +"Last-Translator: Caesar <pinkpidgeon@protonmail.com>\n" "Language-Team: \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.10\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -58,7 +60,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " rfkill list\n" -msgstr "" +msgstr " rfkill list\n" #. type: Plain text #, no-wrap @@ -78,6 +80,15 @@ msgid "" " Soft blocked: yes\n" " Hard blocked: no\n" msgstr "" +" 0: phy0: Wireless LAN\n" +" Soft blocked: no\n" +" Hard blocked: no\n" +" 1: hci0: Bluetooth\n" +" Soft blocked: yes\n" +" Hard blocked: no\n" +" 2: gps0: GPS\n" +" Soft blocked: yes\n" +" Hard blocked: no\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/advanced_topics/wireless_devices.it.po b/wiki/src/doc/advanced_topics/wireless_devices.it.po index 8f28729f19554ddbda8b6054cd769ba5ba97326d..e32a1ae246780a16cc29467f7aff3cbcd77131ed 100644 --- a/wiki/src/doc/advanced_topics/wireless_devices.it.po +++ b/wiki/src/doc/advanced_topics/wireless_devices.it.po @@ -8,13 +8,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2017-09-16 01:19+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-15 08:25+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" -"Language: \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -78,6 +80,15 @@ msgid "" " Soft blocked: yes\n" " Hard blocked: no\n" msgstr "" +" 0: phy0: Wireless LAN\n" +" Soft blocked: no\n" +" Hard blocked: no\n" +" 1: hci0: Bluetooth\n" +" Soft blocked: yes\n" +" Hard blocked: no\n" +" 2: gps0: GPS\n" +" Soft blocked: yes\n" +" Hard blocked: no\n" #. type: Plain text #, no-wrap @@ -97,7 +108,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " rfkill unblock [index]\n" -msgstr "" +msgstr " rfkill unblock [index]\n" #. type: Plain text #, no-wrap @@ -109,7 +120,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " rfkill unblock 2\n" -msgstr "" +msgstr " rfkill unblock 2\n" #. type: Bullet: '4. ' msgid "" diff --git a/wiki/src/doc/anonymous_internet.id.po b/wiki/src/doc/anonymous_internet.id.po index 0dcf2752c014546f4877f3f5e92dad5b4d469ed3..3c7bb03e716254b7fc7857b8aa5451d9120168be 100644 --- a/wiki/src/doc/anonymous_internet.id.po +++ b/wiki/src/doc/anonymous_internet.id.po @@ -3,18 +3,20 @@ # 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" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2011-11-20 16:40+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -25,3 +27,5 @@ msgstr "" #, no-wrap msgid "[[!inline pages=\"doc/anonymous_internet.index\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"doc/anonymous_internet.index.id\" raw=\"yes\" sort=\"age\"" +"]]\n" diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.ar.po b/wiki/src/doc/anonymous_internet/Tor_Browser.ar.po index 708b5573b83aacb50fe72ee00c1e51d4501e6627..ad426cab3bc5288f9ac534371fa35f3fbb70d809 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.ar.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.ar.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2018-07-02 11:54+0000\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Arabic <http://translate.tails.boum.org/projects/tails/" "tor_browser/ar/>\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -164,6 +164,8 @@ msgid "" "<a id=\"https\"></a>\n" "<a id=\"https-everywhere\"></a>\n" msgstr "" +"<a id=\"https\"></a>\n" +"<a id=\"https-everywhere\"></a>\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.ca.po b/wiki/src/doc/anonymous_internet/Tor_Browser.ca.po index 81e7ea28fb1d5ef6cf3e174c179d53e30951e620..c6222872231be5b6b9e3180e251434a79c86a115 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.ca.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.ca.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2018-07-02 11:54+0000\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ca\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -162,6 +162,8 @@ msgid "" "<a id=\"https\"></a>\n" "<a id=\"https-everywhere\"></a>\n" msgstr "" +"<a id=\"https\"></a>\n" +"<a id=\"https-everywhere\"></a>\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.de.po b/wiki/src/doc/anonymous_internet/Tor_Browser.de.po index 4d614225bc0a4d574b490e23aa1d9a3b2c7a7ab1..023b9d844459bcdb40e5dc52f89c0113df8eb958 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.de.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.de.po @@ -8,14 +8,15 @@ 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" -"PO-Revision-Date: 2016-03-28 15:55+0200\n" -"Last-Translator: Tails translators <tails@boum.org>\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails Translation <tails-l10n@boum.org>\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -221,12 +222,13 @@ msgstr "" "zu aktivieren.</p>\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"https-everywhere\"></a>\n" +#, no-wrap msgid "" "<a id=\"https\"></a>\n" "<a id=\"https-everywhere\"></a>\n" -msgstr "<a id=\"https-everywhere\"></a>\n" +msgstr "" +"<a id=\"https\"></a>\n" +"<a id=\"https-everywhere\"></a>\n" #. type: Title = #, fuzzy, no-wrap @@ -483,12 +485,13 @@ msgid "[[!img security-levels.png link=\"no\" alt=\"\"]]\n" msgstr "[[!img noscript.png link=no alt=\"\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"security_slider\"></a>\n" +#, no-wrap msgid "" "<a id=\"circuit_view\"></a>\n" "<a id=\"new_circuit\"></a>\n" -msgstr "<a id=\"security_slider\"></a>\n" +msgstr "" +"<a id=\"circuit_view\"></a>\n" +"<a id=\"new_circuit\"></a>\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.es.po b/wiki/src/doc/anonymous_internet/Tor_Browser.es.po index 341adb5144b58d4ff934acb6c91ec231696e83c3..61e57602ea7d76a4c2a7bd0292ba80e9a8dcc6ee 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.es.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.es.po @@ -7,8 +7,8 @@ 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" -"PO-Revision-Date: 2019-08-27 06:01+0000\n" -"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" +"PO-Revision-Date: 2020-01-24 08:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "tor_browser/es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -85,18 +85,14 @@ msgid "<div class=\"tip\">\n" msgstr "<div class=\"tip\">\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<p>If you want to browse web pages on your local network, refer to our\n" -#| "documentation on [[accessing resources on the local\n" -#| "network|advanced_topics/lan]].</p>\n" +#, no-wrap msgid "" "<p>To browse web pages on your local network, see how to\n" "[[access resources on the local\n" "network|advanced_topics/lan]].</p>\n" msgstr "" -"<p>Si quieres navegar páginas en tu red local, lee nuestra\n" -"documentación sobre [[acceder recursos en tu red\n" +"<p>Para navegar páginas en tu red local, lee cómo\n" +"[[acceder recursos en tu red\n" "local|advanced_topics/lan]].</p>\n" #. type: Plain text @@ -220,26 +216,16 @@ msgstr "" "Usar HTTPS en lugar de HTTP cifra tus comunicaciones cuando navegas la red." #. type: Plain text -#, fuzzy -#| msgid "" -#| "All the data exchanged between your browser and the server you are " -#| "visiting are encrypted. It prevents the [[Tor exit node to eavesdrop on " -#| "your communication|doc/about/warning#exit_node]]." msgid "" "All the data exchanged between your browser and the server you are visiting " "is encrypted. HTTPS prevents the [[Tor exit node from eavesdropping on your " "communications|doc/about/warning#exit_node]]." msgstr "" "Todos los datos que se intercambian entre tu navegador y el servidor que " -"visitas están cifrados. Impide que el [[nodo Tor de salida espíe tus " +"visitas están cifrados. HTTPS impide que el [[nodo Tor de salida espíe tus " "comunicaciones|doc/about/warning#exit_node]]." #. type: Plain text -#, fuzzy -#| msgid "" -#| "HTTPS also includes mechanisms to authenticate the server you are " -#| "communicating with. But those mechanisms can be flawed, [[as explained on " -#| "our warning page|about/warning#man-in-the-middle]]." msgid "" "HTTPS also includes mechanisms to authenticate the server you are " "communicating with. But, those mechanisms can be flawed, [[as explained on " @@ -250,19 +236,14 @@ msgstr "" "nuestra página de advertencia|about/warning#man-in-the-middle]]." #. type: Plain text -#, fuzzy -#| msgid "" -#| "For example, here is how the browser looks like when we try to log in an " -#| "email account at [riseup.net](https://riseup.net/), using their [webmail " -#| "interface](https://mail.riseup.net/):" msgid "" "For example, here is how the browser looks when we try to log in to an email " "account at [riseup.net](https://riseup.net/), using their [webmail interface]" "(https://mail.riseup.net/):" msgstr "" "Por ejemplo, así aparece el navegador cuando intentamos entrar en una cuenta " -"de correo electrónico de [riseup.net](https://riseup.net/), usando su " -"[servicio de web](https://mail.riseup.net/):" +"de correo electrónico de [riseup.net](https://riseup.net/), usando su [" +"servicio de web](https://mail.riseup.net/):" #. type: Plain text #, no-wrap @@ -270,12 +251,6 @@ msgid "[[!img doc/anonymous_internet/Tor_Browser/riseup.png link=no alt=\"\"]]\n msgstr "[[!img doc/anonymous_internet/Tor_Browser/riseup.png link=no alt=\"\"]]\n" #. type: Plain text -#, fuzzy -#| msgid "" -#| "Notice the padlock icon on the left of the address bar saying \"mail." -#| "riseup.net\" and the address beginning with \"https://\" (instead of " -#| "\"http://\"). These are the indicators that an encrypted connection using " -#| "[[!wikipedia HTTPS]] is being used." msgid "" "Notice the padlock icon on the left of the address bar saying \"mail.riseup." "net\". Notice also the address beginning with \"https://\" (instead of " @@ -339,8 +314,6 @@ msgstr "" "reescribir todas las solicitudes a estos sitios sobre HTTPS.\n" #. type: Plain text -#, fuzzy -#| msgid "To learn more about HTTPS Everywhere you can see:" msgid "To learn more about HTTPS Everywhere, you can see:" msgstr "Para aprender más sobre HTTPS Everywhere puedes leer:" @@ -392,12 +365,7 @@ msgid "" msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<p>To understand better the behavior of <span class=\"application\">Tor\n" -#| "Browser</span>, for example regarding JavaScript and cookies, you can\n" -#| "refer to the <a href=\"https://www.torproject.org/projects/torbrowser/design/\">\n" -#| "<span class=\"application\">Tor Browser</span> design document</a>.</p>\n" +#, no-wrap msgid "" "<p>To understand better the behavior of <span class=\"application\">Tor\n" "Browser</span>, for example, regarding JavaScript and cookies, you can\n" @@ -405,9 +373,12 @@ msgid "" "<span class=\"application\">Tor Browser</span> design document</a>.</p>\n" msgstr "" "<p>Para entender mejor el comportamiento de <span class=\"application\">Tor\n" -"Browser</span>, por ejemplo en lo que respecta a JavaScript y las cookies, puedes\n" -"consultar el <a href=\"https://www.torproject.org/projects/torbrowser/design/\">\n" -"documento de diseño de <span class=\"application\">Tor Browser</span></a>.</p>\n" +"Browser</span>, por ejemplo en lo que respecta a JavaScript y las cookies, " +"puedes\n" +"consultar el <a href=\"https://www.torproject.org/projects/torbrowser/design/" +"\">\n" +"documento de diseño de <span class=\"application\">Tor " +"Browser</span></a>.</p>\n" #. type: Plain text #, no-wrap @@ -548,7 +519,7 @@ msgstr "Por eso **JavaScript está habilitado por defecto** en <span class=\"app #. type: Bullet: ' - ' msgid "Closes all open tabs." -msgstr "" +msgstr "Cerrar todas las pestañas abiertas." #. type: Bullet: ' - ' msgid "" @@ -559,10 +530,11 @@ msgstr "" #. type: Bullet: ' - ' msgid "Closes all existing web connections and creates new Tor circuits." msgstr "" +"Cierra todas las conexiones web existentes y crea nuevos circuitos de Tor." #. type: Bullet: ' - ' msgid "Erases the content of the clipboard." -msgstr "" +msgstr "Borra el contenido del portapapeles." #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.fa.po b/wiki/src/doc/anonymous_internet/Tor_Browser.fa.po index 5bc1ab5b6bb49799738ffd2e376fddcba0da71b5..15b6b16b92deab9dbdec9090cf0b9d0680ad97c1 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.fa.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.fa.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-08-27 06:00+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/" "tor_browser/fa/>\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -92,7 +92,7 @@ msgstr "[[!toc levels=2]]\n" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap @@ -213,12 +213,13 @@ msgstr "" "را فعال کنید.</p>\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"https-everywhere\"></a>\n" +#, no-wrap msgid "" "<a id=\"https\"></a>\n" "<a id=\"https-everywhere\"></a>\n" -msgstr "<a id=\"https-everywhere\"></a>\n" +msgstr "" +"<a id=\"https\"></a>\n" +"<a id=\"https-everywhere\"></a>\n" #. type: Title = #, fuzzy, no-wrap diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.fr.po b/wiki/src/doc/anonymous_internet/Tor_Browser.fr.po index dd7dee1824823ee8d589e27453070346c8ae4881..e923fd27e93b6e1c2cceade2e9c1eefea2d6de3f 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.fr.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.fr.po @@ -6,16 +6,17 @@ 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" -"PO-Revision-Date: 2018-10-20 10:52+0000\n" -"Last-Translator: Chre <tor@renaudineau.org>\n" +"PO-Revision-Date: 2020-01-11 17:30+0000\n" +"Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -86,18 +87,14 @@ msgid "<div class=\"tip\">\n" msgstr "<div class=\"tip\">\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<p>If you want to browse web pages on your local network, refer to our\n" -#| "documentation on [[accessing resources on the local\n" -#| "network|advanced_topics/lan]].</p>\n" +#, no-wrap msgid "" "<p>To browse web pages on your local network, see how to\n" "[[access resources on the local\n" "network|advanced_topics/lan]].</p>\n" msgstr "" -"<p>Si vous voulez consulter des pages web sur votre réseau local, reportez-vous à notre\n" -"documentation sur [[l'accès à des ressources sur le réseau\n" +"<p>Pour consulter des pages web sur votre réseau local, regardez comment\n" +"[[accéder à des ressources sur le réseau\n" "local|advanced_topics/lan]].</p>\n" #. type: Plain text @@ -509,6 +506,11 @@ msgid "" " <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"\" class=symbolic link=no]]</span> ▸\n" " <span class=\"guimenuitem\">New Identity</span></span>.\n" msgstr "" +"Pour passer à une nouvelle identité, choisissez\n" +"<span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"\" class=symbolic " +"link=no]]</span> ▸\n" +" <span class=\"guimenuitem\">Nouvelle identité</span></span>.\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.id.po b/wiki/src/doc/anonymous_internet/Tor_Browser.id.po index 6d4b6553f29075fe4d0ccc166ce414c6b22a622b..467cc58ff57715d4b6c71d70711cf1ea00113253 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.id.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.id.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails Translation <tails-l10n@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -65,12 +65,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap @@ -108,7 +108,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap @@ -162,6 +162,8 @@ msgid "" "<a id=\"https\"></a>\n" "<a id=\"https-everywhere\"></a>\n" msgstr "" +"<a id=\"https\"></a>\n" +"<a id=\"https-everywhere\"></a>\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.it.po b/wiki/src/doc/anonymous_internet/Tor_Browser.it.po index 3115725f1d580106e45f514017c4b47cf1e31300..02fd6fc2c9dcaa6e93e140ba145738d75f4077ea 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.it.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.it.po @@ -8,15 +8,15 @@ 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" -"PO-Revision-Date: 2019-11-24 09:36+0000\n" -"Last-Translator: Davide <davidesantoro@mail.ru>\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -162,6 +162,8 @@ msgid "" "<a id=\"https\"></a>\n" "<a id=\"https-everywhere\"></a>\n" msgstr "" +"<a id=\"https\"></a>\n" +"<a id=\"https-everywhere\"></a>\n" #. type: Title = #, no-wrap @@ -329,6 +331,8 @@ msgid "" "<a id=\"circuit_view\"></a>\n" "<a id=\"new_circuit\"></a>\n" msgstr "" +"<a id=\"circuit_view\"></a>\n" +"<a id=\"new_circuit\"></a>\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.pt.po b/wiki/src/doc/anonymous_internet/Tor_Browser.pt.po index 6f462ba36b73b4b816514cfd3f3bf323378fce6d..abed76c076d0f101ca31151f1420e8e80c10ae99 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.pt.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.pt.po @@ -8,15 +8,15 @@ 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" -"PO-Revision-Date: 2014-08-26 15:43-0300\n" -"Last-Translator: Tails Developers <amnesia@boum.org>\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -170,12 +170,13 @@ msgid "" msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"https-everywhere\"></a>\n" +#, no-wrap msgid "" "<a id=\"https\"></a>\n" "<a id=\"https-everywhere\"></a>\n" -msgstr "<a id=\"https-everywhere\"></a>\n" +msgstr "" +"<a id=\"https\"></a>\n" +"<a id=\"https-everywhere\"></a>\n" #. type: Title = #, fuzzy, no-wrap diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.zh.po b/wiki/src/doc/anonymous_internet/Tor_Browser.zh.po index 7cf41bcdca691ed801c52d9856809c5bc981d7e5..8615673cb19d8c88774d8b9d917e4349515eca79 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.zh.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.zh.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2018-12-21 09:03+0000\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -162,6 +162,8 @@ msgid "" "<a id=\"https\"></a>\n" "<a id=\"https-everywhere\"></a>\n" msgstr "" +"<a id=\"https\"></a>\n" +"<a id=\"https-everywhere\"></a>\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.zh_TW.po b/wiki/src/doc/anonymous_internet/Tor_Browser.zh_TW.po index f2007e8853064677c5616b32d336a0c573f027ea..1e560a49ba9a6e711d40b7d1c372f698fb3b031d 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.zh_TW.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.zh_TW.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2018-07-02 11:02+0000\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_TW\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -162,6 +162,8 @@ msgid "" "<a id=\"https\"></a>\n" "<a id=\"https-everywhere\"></a>\n" msgstr "" +"<a id=\"https\"></a>\n" +"<a id=\"https-everywhere\"></a>\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/electrum.ar.po b/wiki/src/doc/anonymous_internet/electrum.ar.po index 0fa9928cfedc6cd8a25789ff33bf4f1f6a064858..1c503a376ca74841560a58b574e83abd1120ecd2 100644 --- a/wiki/src/doc/anonymous_internet/electrum.ar.po +++ b/wiki/src/doc/anonymous_internet/electrum.ar.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2018-07-02 05:08+0000\n" +"PO-Revision-Date: 2020-01-22 15:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Arabic <http://translate.tails.boum.org/projects/tails/" "electrum/ar/>\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -80,9 +80,9 @@ msgid "" msgstr "" #. type: Plain text -#, fuzzy, no-wrap +#, no-wrap msgid "<div class=\"bug\">\n" -msgstr "<div class=\"tip\">\n" +msgstr "<div class=\"bug\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/electrum.id.po b/wiki/src/doc/anonymous_internet/electrum.id.po index 0f044580c54186bd0ce9c335c462902d90a23b79..6c4181067e95819e2a390e03fe76d66758c92d41 100644 --- a/wiki/src/doc/anonymous_internet/electrum.id.po +++ b/wiki/src/doc/anonymous_internet/electrum.id.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -116,7 +116,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/networkmanager.ar.po b/wiki/src/doc/anonymous_internet/networkmanager.ar.po index 512c1a6a75e0d14922b20f1e22d75ee5c9a91cc5..e50cb14ff6bb481bf83faf33e539037f9f2db26d 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.ar.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.ar.po @@ -8,8 +8,8 @@ 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" -"PO-Revision-Date: 2018-07-02 11:43+0000\n" -"Last-Translator: Weblate Admin <admin@example.com>\n" +"PO-Revision-Date: 2020-01-22 15:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Arabic <http://translate.tails.boum.org/projects/tails/" "networkmanager/ar/>\n" "Language: ar\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -28,7 +28,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/networkmanager.de.po b/wiki/src/doc/anonymous_internet/networkmanager.de.po index d8e6fd8935048ab4af8a220006d65274172e1444..f6665525e47b6db6e638303558dbff44a5ebe2b8 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.de.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.de.po @@ -6,15 +6,17 @@ 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" -"PO-Revision-Date: 2017-02-09 20:10+0100\n" -"Last-Translator: Tails translators <tails@boum.org>\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails Translations <tails-l10n@boum.org>\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.11\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -24,7 +26,7 @@ msgstr "[[!meta title=\"Eine Netzwerkverbindung herstellen\"]]\n" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, fuzzy, no-wrap diff --git a/wiki/src/doc/anonymous_internet/networkmanager.es.po b/wiki/src/doc/anonymous_internet/networkmanager.es.po index 290f4c1ffd220e2d3417ddd313ab7d3fc2436177..9662d36e3a7dc98761a7da87a30cb6f3220f5650 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.es.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.es.po @@ -7,7 +7,7 @@ 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" -"PO-Revision-Date: 2019-11-16 12:11+0000\n" +"PO-Revision-Date: 2020-01-19 18:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" "first_stepsindex/es/>\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -119,19 +119,16 @@ msgstr "" "anonymous_internet/unsafe_browser]]." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "For more information, open\n" -#| "<span class=\"application\">[[GNOME Help|first_steps/introduction_to_gnome_and_the_tails_desktop#help]]</span>\n" -#| "and choose <span class=\"guilabel\">Networking, web, email & chat</span>.\n" +#, no-wrap msgid "" "For more information, open\n" "<span class=\"application\">[[GNOME Help|first_steps/introduction_to_gnome_and_the_tails_desktop#help]]</span>\n" "and choose <span class=\"guilabel\">Networking, web & email</span>.\n" msgstr "" "Para más información abre la\n" -"<span class=\"application\">[[ayuda de GNOME|first_steps/introduction_to_gnome_and_the_tails_desktop#help]]</span>\n" -"y elige <span class=\"guilabel\">Red, web, correo-e y chat</span>.\n" +"<span class=\"application\">[[ayuda de GNOME|first_steps/" +"introduction_to_gnome_and_the_tails_desktop#help]]</span>\n" +"y elige <span class=\"guilabel\">Red, web y correo electrónico</span>.\n" #. type: Plain text msgid "" @@ -146,12 +143,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"no-wi-fi\"></a>\n" -msgstr "" +msgstr "<a id=\"no-wi-fi\"></a>\n" #. type: Title = #, no-wrap msgid "Troubleshooting Wi-Fi not working\n" -msgstr "" +msgstr "Resolución de problemas de Wi-Fi que no funciona\n" #. type: Plain text #, no-wrap @@ -166,11 +163,14 @@ msgid "" "workarounds]] if there is a workaround to get your Wi-Fi interface to work " "in Tails." msgstr "" +"Mira en nuestra lista de [[problemas conocidos con Wi-FI|support/known_issues" +"#wi-fi-workarounds]] si hay alguna solución para que tu interfaz Wi-Fi " +"funcione en Tails." #. type: Title = #, no-wrap msgid "Using Tor bridges or a local proxy\n" -msgstr "" +msgstr "Usar puentes de Tor o un proxy local\n" #. type: Plain text msgid "" @@ -185,7 +185,7 @@ msgstr "" #. type: Title = #, no-wrap msgid "Modifying and saving your network settings\n" -msgstr "" +msgstr "Modificar y guardar tus configuraciones de red\n" #. type: Plain text msgid "" diff --git a/wiki/src/doc/anonymous_internet/networkmanager.id.po b/wiki/src/doc/anonymous_internet/networkmanager.id.po index 90e8a57e2d9866c1a3572db83aaf0570472e21ff..3a8a96881cabb067f457726f279e761f86af9945 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.id.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.id.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-01-09 08:03+0000\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails Translations <tails-l10n@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/networkmanager.pt.po b/wiki/src/doc/anonymous_internet/networkmanager.pt.po index 1c40c429c8b8bcc79253d2149cfcd73ed71198be..e945a9754c5f7898bd5948065d346de52e186e76 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.pt.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.pt.po @@ -6,14 +6,17 @@ 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" -"PO-Revision-Date: 2014-08-26 15:44-0300\n" -"Last-Translator: Tails Developers <amnesia@boum.org>\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" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, fuzzy, no-wrap @@ -24,7 +27,7 @@ msgstr "[[!meta title=\"Conectando à rede com o NetworkManager\"]]\n" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, fuzzy, no-wrap 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 18a816aca38e9c2a1fe1fa384de9bf2f7602f54b..930f3714f9e365bb95a851a51c5cbcd62e87ebc4 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 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2019-10-09 19:19+0000\n" -"PO-Revision-Date: 2019-10-08 07:42+0000\n" +"PO-Revision-Date: 2020-01-12 13:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text msgid "If your Wi-Fi interface is not working, either:" @@ -81,17 +81,12 @@ msgstr "Acheter un adaptateur Wi-Fi USB qui fonctionne dans Tails :" #, no-wrap msgid "<!-- <tr><td>D-Link</td><td>DWA-121</td><td>Nano</td><td>150 Mbit/s</td><td>$6</td><td>No</td><td><a href=\"https://www.amazon.com/d/B004X8R7HY\">Amazon</a></td></tr>-->\n" msgstr "" +"<!-- <tr><td>D-Link</td><td>DWA-121</td><td>Nano</td><td>150 Mbit/" +"s</td><td>6$</td><td>Non</td><td><a href=\"https://www.amazon.com/d/" +"B004X8R7HY\">Amazon</a></td></tr>-->\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| " <table>\n" -#| " <tr><th>Vendor</th><th>Model</th><th>Size</th><th>Speed</th><th>Price</th><th>Buy offline</th><th>Buy online</th></tr>\n" -#| " <tr><td>D-Link</td><td>DWA-121</td><td>Nano</td><td>150 Mbit/s</td><td>$6</td><td>No</td><td><a href=\"https://www.amazon.com/d/B004X8R7HY\">Amazon</a></td></tr>\n" -#| " <tr><td>Edimax</td><td>EW-7811Un</td><td>Nano</td><td>150 Mbit/s</td><td>$10</td><td>No</td><td><a href=\"https://www.amazon.com/d/B003MTTJOY\">Amazon</a></td></tr>\n" -#| " <tr><td>Panda Wireless</td><td>Ultra</td><td>Nano</td><td>150 Mbit/s</td><td>$12</td><td>No</td><td><a href=\"https://www.amazon.com/d/B00762YNMG\">Amazon</a></td></tr>\n" -#| " <tr><td>Panda Wireless</td><td>PAU05</td><td>Small</td><td>300 Mbit/s</td><td>$14</td><td>No</td><td><a href=\"https://www.amazon.com/d/B00EQT0YK2\">Amazon</a></td></tr>\n" -#| " </table>\n" +#, no-wrap msgid "" " <table>\n" " <tr><th>Vendor</th><th>Model</th><th>Size</th><th>Speed</th><th>Price</th><th>Buy offline</th><th>Buy online</th></tr>\n" @@ -101,11 +96,17 @@ msgid "" " </table>\n" msgstr "" " <table>\n" -" <tr><th>Fabricant</th><th>Modèle</th><th>Taille</th><th>Vitesse</th><th>Prix</th><th>Achat hors ligne</th><th>Achat en ligne</th></tr>\n" -" <tr><td>D-Link</td><td>DWA-121</td><td>Nano</td><td>150 Mbit/s</td><td>6$</td><td>Non</td><td><a href=\"https://www.amazon.com/d/B004X8R7HY\">Amazon</a></td></tr>\n" -" <tr><td>Edimax</td><td>EW-7811Un</td><td>Nano</td><td>150 Mbit/s</td><td>10$</td><td>Non</td><td><a href=\"https://www.amazon.com/d/B003MTTJOY\">Amazon</a></td></tr>\n" -" <tr><td>Panda Wireless</td><td>Ultra</td><td>Nano</td><td>150 Mbit/s</td><td>12$</td><td>Non</td><td><a href=\"https://www.amazon.com/d/B00762YNMG\">Amazon</a></td></tr>\n" -" <tr><td>Panda Wireless</td><td>PAU05</td><td>Petit</td><td>300 Mbit/s</td><td>14$</td><td>Non</td><td><a href=\"https://www.amazon.com/d/B00EQT0YK2\">Amazon</a></td></tr>\n" +" <tr><th>Fabricant</th><th>Modèle</th><th>Taille</th><th>Vitesse</th><th>Pri" +"x</th><th>Achat hors ligne</th><th>Achat en ligne</th></tr>\n" +" <tr><td>Edimax</td><td>EW-7811Un</td><td>Nano</td><td>150 Mbit/" +"s</td><td>10$</td><td>Non</td><td><a href=\"https://www.amazon.com/d/" +"B003MTTJOY\">Amazon</a></td></tr>\n" +" <tr><td>Panda Wireless</td><td>Ultra</td><td>Nano</td><td>150 Mbit/" +"s</td><td>12$</td><td>Non</td><td><a href=\"https://www.amazon.com/d/" +"B00762YNMG\">Amazon</a></td></tr>\n" +" <tr><td>Panda Wireless</td><td>PAU05</td><td>Petit</td><td>300 Mbit/" +"s</td><td>14$</td><td>Non</td><td><a href=\"https://www.amazon.com/d/" +"B00EQT0YK2\">Amazon</a></td></tr>\n" " </table>\n" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/onionshare.es.po b/wiki/src/doc/anonymous_internet/onionshare.es.po index 54b34cfbb2dbec225d53a25c036158aa0830f707..9e2b413aca20f55c9291872c5ac9e00e04dfb401 100644 --- a/wiki/src/doc/anonymous_internet/onionshare.es.po +++ b/wiki/src/doc/anonymous_internet/onionshare.es.po @@ -7,8 +7,8 @@ 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" -"PO-Revision-Date: 2019-12-01 14:56+0000\n" -"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" +"PO-Revision-Date: 2020-01-19 18:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "onionshare/es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -28,6 +28,8 @@ msgid "" "[OnionShare](https://onionshare.org/) is a tool to share files of any size " "securely and anonymously." msgstr "" +"[OnionShare](https://onionshare.org/) es una herramienta para compartir " +"archivos de cualquier tamaño de forma segura y anónima." #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/onionshare.fr.po b/wiki/src/doc/anonymous_internet/onionshare.fr.po index de1d56e3345bafde4401722da9016804dbd5852c..416439e5b6ada9d722595da9e8a72892bb45d8ef 100644 --- a/wiki/src/doc/anonymous_internet/onionshare.fr.po +++ b/wiki/src/doc/anonymous_internet/onionshare.fr.po @@ -6,15 +6,17 @@ 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" -"PO-Revision-Date: 2019-10-02 21:59+0200\n" -"Last-Translator: Chre <tor@renaudineau.org>\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" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.2.1\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -50,19 +52,15 @@ msgid "Open the <span class=\"application\">Files</span> browser." msgstr "Ouvrez le navigateur de <span class=\"application\">Fichiers</span>." #. type: Bullet: '1. ' -#, fuzzy -#| msgid "" -#| "Right-click on the files or folders that you want to share and choose " -#| "<span class=\"guilabel\">Share via OnionShare</span>. <span class=" -#| "\"application\">OnionShare</span> starts." msgid "" "Right-click (on Mac, click with two fingers) on the files or folders that " "you want to share and choose <span class=\"guilabel\">Share via OnionShare</" "span>. <span class=\"application\">OnionShare</span> starts." msgstr "" -"Faites un clic droit sur les fichiers ou dossiers que vous voulez partager " -"et choisissez <span class=\"guilabel\">Share via OnionShare</span>. <span " -"class=\"application\">OnionShare</span> démarre." +"Faites un clic droit (sur Mac cliquez avec deux doigts) sur les fichiers ou " +"dossiers que vous voulez partager et choisissez <span class=\"guilabel\">" +"Share via OnionShare</span>. <span class=\"application\">OnionShare</span> " +"démarre." #. type: Bullet: '1. ' msgid "To share more files or folders, you can either:" diff --git a/wiki/src/doc/anonymous_internet/onionshare.it.po b/wiki/src/doc/anonymous_internet/onionshare.it.po index 7e961ea1bdc058852197ad78eb43d85ce2cf3b3d..6b08e068f316ef577b8423d24b51fc655f282e45 100644 --- a/wiki/src/doc/anonymous_internet/onionshare.it.po +++ b/wiki/src/doc/anonymous_internet/onionshare.it.po @@ -8,15 +8,15 @@ 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" -"PO-Revision-Date: 2019-06-17 14:20+0000\n" -"Last-Translator: _ignifugo <ignifugo@insicuri.net>\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" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -169,7 +169,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " </div>\n" -msgstr "" +msgstr " </div>\n" #~ msgid "" #~ "Tails includes [OnionShare](https://onionshare.org/), a tool for " diff --git a/wiki/src/doc/anonymous_internet/pidgin.id.po b/wiki/src/doc/anonymous_internet/pidgin.id.po index cbeb7d8f5cfd983a5cc1bcd6e383cd7076f2581c..79f8aa26db627ef28a1e5b0dd28908ef6f7726ec 100644 --- a/wiki/src/doc/anonymous_internet/pidgin.id.po +++ b/wiki/src/doc/anonymous_internet/pidgin.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-08-29 15:15+0200\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -139,7 +139,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/thunderbird.ar.po b/wiki/src/doc/anonymous_internet/thunderbird.ar.po index a45c27744b47ff2e5fee688dd193fbe48ecf0318..97b5a4d6f00687a95ec4204b80af48c446a8d942 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.ar.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.ar.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: 2018-10-23 14:20+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: 2020-01-22 15:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Arabic <http://translate.tails.boum.org/projects/tails/" "thunderbird/ar/>\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -139,6 +139,20 @@ msgid "" "user-manual/quick-start)" msgstr "" +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"caution\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + #. type: Plain text #, no-wrap msgid "<a id=\"torbirdy\"></a>\n" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.ca.po b/wiki/src/doc/anonymous_internet/thunderbird.ca.po index 31487d6a2380668f2dc635a325738fa6e8da3bf6..3457b3b6ea5d2f89b4ef9d931e4c2d34f3d64544 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.ca.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.ca.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-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: 2018-10-23 14:20+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -137,6 +137,20 @@ msgid "" "user-manual/quick-start)" msgstr "" +#. type: Plain text +#, fuzzy, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"tip\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + #. type: Plain text #, no-wrap msgid "<a id=\"torbirdy\"></a>\n" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.de.po b/wiki/src/doc/anonymous_internet/thunderbird.de.po index 896d7ecf6675060ce9c4f47f9fd5559a98887eb3..d196362d88a6d0a0cbbf6b7ac40f741895e1dbd1 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.de.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.de.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: 2016-01-24 11:31+0100\n" -"Last-Translator: Tails translators <tails@boum.org>\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.6\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, fuzzy, no-wrap @@ -41,7 +43,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Plain text #, no-wrap @@ -182,6 +184,21 @@ msgstr "" "[Enigmail: Enigmail Quick Start Guide (englisch)](https://www.enigmail.net/" "index.php/en/user-manual/quick-start)" +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "<div class=\"tip\">\n" +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"tip\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + #. type: Plain text #, no-wrap msgid "<a id=\"torbirdy\"></a>\n" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.es.po b/wiki/src/doc/anonymous_internet/thunderbird.es.po index 6fe2352ccc2d9b0dd37c5a9bada8702ae44b19ce..7e4820935aa99d30894d19dff9f612e6d70a0ae2 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.es.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.es.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: 2018-10-01 19:33+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: 2019-12-27 00:25+0000\n" +"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "thunderbird/es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -166,6 +166,20 @@ msgstr "" "[Enigmail: Enigmail Quick Start Guide](https://www.enigmail.net/index.php/en/" "user-manual/quick-start)" +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"caution\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + #. type: Plain text #, no-wrap msgid "<a id=\"torbirdy\"></a>\n" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.fa.po b/wiki/src/doc/anonymous_internet/thunderbird.fa.po index 23e219e98e00802baff4176e47fd832c278c659f..3ba7bf49712d863de8f6fc7e91800199c8945f7d 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.fa.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.fa.po @@ -3,18 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\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" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -135,6 +137,20 @@ msgid "" "user-manual/quick-start)" msgstr "" +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"caution\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + #. type: Plain text #, no-wrap msgid "<a id=\"torbirdy\"></a>\n" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.fr.po b/wiki/src/doc/anonymous_internet/thunderbird.fr.po index a9f95dbefda54addbf69445743c466c62df58768..dac3609f71afbcc0aec465d476a86df31d8395c3 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.fr.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.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: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: 2019-09-23 14:54+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\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" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -172,14 +172,27 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<a id=\"torbirdy\"></a>\n" +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"caution\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" msgstr "" +#. type: Plain text +#, no-wrap +msgid "<a id=\"torbirdy\"></a>\n" +msgstr "<a id=\"torbirdy\"></a>\n" + #. type: Title = -#, fuzzy, no-wrap -#| msgid "Enhanced privacy with TorBirdy\n" +#, no-wrap msgid "Enhanced privacy\n" -msgstr "Amélioration de la confidentialité avec TorBirdy\n" +msgstr "Amélioration de la confidentialité\n" #. type: Plain text #, fuzzy, no-wrap diff --git a/wiki/src/doc/anonymous_internet/thunderbird.id.po b/wiki/src/doc/anonymous_internet/thunderbird.id.po index 16ac1d153a0f900ad696558ac19cc91aadd84e6b..7a78d42653c83827764f4a4f4bb3465a0bdd5e22 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.id.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.id.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -37,7 +37,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Plain text #, no-wrap @@ -52,7 +52,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap @@ -137,6 +137,20 @@ msgid "" "user-manual/quick-start)" msgstr "" +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + #. type: Plain text #, no-wrap msgid "<a id=\"torbirdy\"></a>\n" @@ -185,7 +199,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/anonymous_internet/thunderbird.it.po b/wiki/src/doc/anonymous_internet/thunderbird.it.po index e74b4d53ad3e43bf2cc5e39287728226bc49b989..079069c9cf99a3703e711c37a8e56b6b853a255e 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.it.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+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" @@ -134,6 +134,21 @@ msgid "" "user-manual/quick-start)" msgstr "" +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "<div class=\"tip\">\n" +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"tip\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + #. type: Plain text #, no-wrap msgid "<a id=\"torbirdy\"></a>\n" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.mdwn b/wiki/src/doc/anonymous_internet/thunderbird.mdwn index aeef26b5f0995e92cfbcde50b8c98038b12c7d80..bb273dca2707d510f56f3daab44b6dad1a0ef253 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.mdwn +++ b/wiki/src/doc/anonymous_internet/thunderbird.mdwn @@ -55,6 +55,15 @@ started with encrypting emails using - [Security-in-a-Box: Thunderbird & OpenPGP - secure email](https://securityinabox.org/en/guide/thunderbird/linux/) - [Enigmail: Enigmail Quick Start Guide](https://www.enigmail.net/index.php/en/user-manual/quick-start) +<div class="caution"> + +<p>If you have GnuPG keys stored in Persistence since before Tails 4.1 +(December 2019), you should [[update your OpenPGP keyserver +configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe +keyservers.</p> + +</div> + <a id="torbirdy"></a> Enhanced privacy diff --git a/wiki/src/doc/anonymous_internet/thunderbird.pl.po b/wiki/src/doc/anonymous_internet/thunderbird.pl.po index 3196e2b20ab1aafbfc087d73224fce5a2b6702a4..add7e3931868fa2d99e57d12078aebf32644fa5f 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.pl.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.pl.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-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: 2018-10-24 10:36+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -138,6 +138,20 @@ msgid "" "user-manual/quick-start)" msgstr "" +#. type: Plain text +#, fuzzy, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"tip\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + #. type: Plain text #, no-wrap msgid "<a id=\"torbirdy\"></a>\n" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.pt.po b/wiki/src/doc/anonymous_internet/thunderbird.pt.po index b8e3a34e08e25aae90aec834a80f0c6196072398..5ed6b9a488d64e6206fdc56961a1edc0e72f0f85 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.pt.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.pt.po @@ -6,16 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2019-12-16 15:52+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" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -136,6 +137,20 @@ msgid "" "user-manual/quick-start)" msgstr "" +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"caution\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + #. type: Plain text #, no-wrap msgid "<a id=\"torbirdy\"></a>\n" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.ru.po b/wiki/src/doc/anonymous_internet/thunderbird.ru.po index 3a996547b2f6a80739410d4275f64807739a2504..10eead9693625bf70860dddeac53590e58da93d2 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.ru.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.ru.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-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: 2018-10-25 10:15+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -138,6 +138,20 @@ msgid "" "user-manual/quick-start)" msgstr "" +#. type: Plain text +#, fuzzy, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"tip\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + #. type: Plain text #, no-wrap msgid "<a id=\"torbirdy\"></a>\n" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.sr_Latn.po b/wiki/src/doc/anonymous_internet/thunderbird.sr_Latn.po index 2e8b478d499c814886901457e94f6f502f19c484..997ba98237a8f456170c91428b78a30952db64da 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.sr_Latn.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.sr_Latn.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-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: 2018-10-26 13:15+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -138,6 +138,20 @@ msgid "" "user-manual/quick-start)" msgstr "" +#. type: Plain text +#, fuzzy, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"tip\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + #. type: Plain text #, no-wrap msgid "<a id=\"torbirdy\"></a>\n" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.tr.po b/wiki/src/doc/anonymous_internet/thunderbird.tr.po index e38cedebc811b6ef7f47ce9cc58a9fd409849a55..78a8c2777c652649504ee73be72909cf12ee13f6 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.tr.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.tr.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: 2018-10-25 10:15+0000\n" -"Last-Translator: Weblate Admin <admin@example.com>\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\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" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -137,6 +137,20 @@ msgid "" "user-manual/quick-start)" msgstr "" +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"caution\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + #. type: Plain text #, no-wrap msgid "<a id=\"torbirdy\"></a>\n" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.zh.po b/wiki/src/doc/anonymous_internet/thunderbird.zh.po index a56ab122b51e3b16568bf6ba8e274ce7675172cf..b98f6bb02380bb61319208ec2acc64f3ad342975 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.zh.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.zh.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-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: 2018-10-23 14:20+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -137,6 +137,20 @@ msgid "" "user-manual/quick-start)" msgstr "" +#. type: Plain text +#, fuzzy, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"tip\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + #. type: Plain text #, no-wrap msgid "<a id=\"torbirdy\"></a>\n" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.zh_TW.po b/wiki/src/doc/anonymous_internet/thunderbird.zh_TW.po index d2056098bd6c76203ee0de1aebf73311606fcc06..5760817c780f0748ea270c6a0930664b1c2f9e48 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.zh_TW.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.zh_TW.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-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: 2018-10-23 14:20+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -137,6 +137,20 @@ msgid "" "user-manual/quick-start)" msgstr "" +#. type: Plain text +#, fuzzy, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"tip\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + #. type: Plain text #, no-wrap msgid "<a id=\"torbirdy\"></a>\n" diff --git a/wiki/src/doc/anonymous_internet/thunderbird/account_creation.inline.de.po b/wiki/src/doc/anonymous_internet/thunderbird/account_creation.inline.de.po index 368b9470c34db3d2e538c4f06a23f5945c366d00..e8ca39496d97e848bb1c42418ef805eede2c0c9c 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird/account_creation.inline.de.po +++ b/wiki/src/doc/anonymous_internet/thunderbird/account_creation.inline.de.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: \n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-06-03 17:37+0000\n" -"PO-Revision-Date: 2016-01-24 16:15+0100\n" -"Last-Translator: Tails translators <tails@boum.org>\n" +"PO-Revision-Date: 2020-01-21 18:26+0000\n" +"Last-Translator: Muri Nicanor <muri@immerda.ch>\n" "Language-Team: \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.6\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Bullet: '1. ' msgid "" @@ -92,6 +94,8 @@ msgid "" "The assistant tries to configure automatically the correct parameters to " "connect to your email provider based on your email address." msgstr "" +"Der Assistent versucht die Einstellungen automatisch richtig zu " +"konfigurieren, um Sie mit Ihrem Email-Provider zu verbinden." #. type: Plain text #, no-wrap @@ -99,6 +103,9 @@ msgid "" " If the automatic configuration fails, consult your email provider\n" " about how to configure your email account manually.\n" msgstr "" +" Falls die automatische Konfiguration fehl schlägt, fragen Sie sich Ihren " +"Email-Provider,\n" +" wie Ihr Email-Account manuell konfiguriert werden muss.\n" #. type: Bullet: '1. ' #, fuzzy diff --git a/wiki/src/doc/anonymous_internet/tor_status.id.po b/wiki/src/doc/anonymous_internet/tor_status.id.po index c2e723a4b7255c93b2b4b293f873cdeb8e2b24f7..b5cd66cfd7ae759de1844b857e37294d982bee38 100644 --- a/wiki/src/doc/anonymous_internet/tor_status.id.po +++ b/wiki/src/doc/anonymous_internet/tor_status.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-06-10 14:10+0000\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-16 00:25+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -33,7 +33,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title = #, no-wrap @@ -66,7 +66,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text msgid "" diff --git a/wiki/src/doc/anonymous_internet/unsafe_browser.id.po b/wiki/src/doc/anonymous_internet/unsafe_browser.id.po index 8cd98528dae12dcbc73eba4a356fb43270d34100..646f2593ca8a2d0f9e18d4615d2c5c592f213660 100644 --- a/wiki/src/doc/anonymous_internet/unsafe_browser.id.po +++ b/wiki/src/doc/anonymous_internet/unsafe_browser.id.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -75,7 +75,7 @@ msgstr "</div>\n" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy.id.po b/wiki/src/doc/encryption_and_privacy.id.po index c3c4396fffaefa6b15df93200e278414d1756c15..080ec6ff622320bff9686507882501771e775b38 100644 --- a/wiki/src/doc/encryption_and_privacy.id.po +++ b/wiki/src/doc/encryption_and_privacy.id.po @@ -6,14 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2014-07-02 02:49+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -24,3 +27,5 @@ msgstr "" #, no-wrap msgid "[[!inline pages=\"doc/encryption_and_privacy.index\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"doc/encryption_and_privacy.index.id\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/doc/encryption_and_privacy/FireGPG_susceptible_to_devastating_attacks.de.po b/wiki/src/doc/encryption_and_privacy/FireGPG_susceptible_to_devastating_attacks.de.po index 8fe9b32ed32cc110d02c3c765ca4893d4c499429..927d973b8422b39457b8b4ea5c8b32152f3a6914 100644 --- a/wiki/src/doc/encryption_and_privacy/FireGPG_susceptible_to_devastating_attacks.de.po +++ b/wiki/src/doc/encryption_and_privacy/FireGPG_susceptible_to_devastating_attacks.de.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2016-07-17 17:44+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -61,7 +61,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/FireGPG_susceptible_to_devastating_attacks.id.po b/wiki/src/doc/encryption_and_privacy/FireGPG_susceptible_to_devastating_attacks.id.po index e3703a6179cb07ca868e0e38611efcac884dbf1f..bd752803292d1690515224ed8661ab0d6037787e 100644 --- a/wiki/src/doc/encryption_and_privacy/FireGPG_susceptible_to_devastating_attacks.id.po +++ b/wiki/src/doc/encryption_and_privacy/FireGPG_susceptible_to_devastating_attacks.id.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2016-07-17 17:44+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -59,7 +59,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/FireGPG_susceptible_to_devastating_attacks.pt.po b/wiki/src/doc/encryption_and_privacy/FireGPG_susceptible_to_devastating_attacks.pt.po index 12bd6e52602617963e4759247479b5980a0d0de1..6089dcde59263d3ca1870630c46a41f45756f093 100644 --- a/wiki/src/doc/encryption_and_privacy/FireGPG_susceptible_to_devastating_attacks.pt.po +++ b/wiki/src/doc/encryption_and_privacy/FireGPG_susceptible_to_devastating_attacks.pt.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2016-07-17 17:44+0300\n" -"PO-Revision-Date: 2018-02-04 22:11+0000\n" -"Last-Translator: Tails translators <amnesia@boum.org>\n" -"Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/fir" -"egpg_susceptible_to_devastating_attacks/pt/>\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/" +"firegpg_susceptible_to_devastating_attacks/pt/>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/checksums.es.po b/wiki/src/doc/encryption_and_privacy/checksums.es.po index bcea94e4c3f735897ff69226704d9bfe51a52131..d3966ad85d9754016a56cbfc3ce1dab2aefe8c07 100644 --- a/wiki/src/doc/encryption_and_privacy/checksums.es.po +++ b/wiki/src/doc/encryption_and_privacy/checksums.es.po @@ -7,8 +7,8 @@ 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" -"PO-Revision-Date: 2019-12-01 14:56+0000\n" -"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" +"PO-Revision-Date: 2020-01-21 18:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" "first_stepsindex/es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -47,16 +47,12 @@ msgid "" msgstr "" #. type: Bullet: ' 1. ' -#, fuzzy -#| msgid "" -#| "Right-click on the file and choose <span class=\"guimenuitem" -#| "\">Properties</span>." msgid "" "Right-click (on Mac, click with two fingers) on the file and choose <span " "class=\"guimenuitem\">Properties</span>." msgstr "" -"Haz click con el botón derecho y elige <span class=\"guimenuitem" -"\">Propiedades</span>." +"Haz click con el botón derecho (con los dos dedos en Mac) y elige <span " +"class=\"guimenuitem\">Propiedades</span>." #. type: Bullet: ' 1. ' msgid "" diff --git a/wiki/src/doc/encryption_and_privacy/checksums.fr.po b/wiki/src/doc/encryption_and_privacy/checksums.fr.po index cd22f2cef549a9a04a3cff996899fba6afeadd78..2af1268c191eeb8cd46085cbfde147f6ed8e4b20 100644 --- a/wiki/src/doc/encryption_and_privacy/checksums.fr.po +++ b/wiki/src/doc/encryption_and_privacy/checksums.fr.po @@ -6,15 +6,17 @@ 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" -"PO-Revision-Date: 2017-08-31 09:30+0000\n" -"Last-Translator: \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" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.11\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -51,16 +53,12 @@ msgstr "" "somme de contrôle." #. type: Bullet: ' 1. ' -#, fuzzy -#| msgid "" -#| "Right-click on the file and choose <span class=\"guimenuitem" -#| "\">Properties</span>." msgid "" "Right-click (on Mac, click with two fingers) on the file and choose <span " "class=\"guimenuitem\">Properties</span>." msgstr "" -"Faites un clic-droit sur le fichier et choisissez <span class=\"guimenuitem" -"\">Propriétés</span>." +"Faites un clic-droit (sur Mac cliquez avec deux doigts) sur le fichier et " +"choisissez <span class=\"guimenuitem\">Propriétés</span>." #. type: Bullet: ' 1. ' msgid "" diff --git a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.de.po b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.de.po index 87b1f89846bc3c9d0c54dcd360ed7fc6cedaf4b7..843324c31d0a815af879f7581d47c26234911233 100644 --- a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.de.po +++ b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.de.po @@ -8,14 +8,15 @@ 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" -"PO-Revision-Date: 2016-08-22 18:28+0200\n" -"Last-Translator: Tails translators <tails@boum.org>\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.8\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, fuzzy, no-wrap @@ -97,6 +98,8 @@ msgstr "" #, no-wrap msgid "[[!inline pages=\"doc/encryption_and_privacy/luks_vs_veracrypt.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"doc/encryption_and_privacy/luks_vs_veracrypt.inline.de\" " +"raw=\"yes\" sort=\"age\"]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.es.po b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.es.po index 6ff289c1af66c3ffb528c8b6ff3b2afd65d96462..2331a0d1f1379da4edf664beba48d298e20bdcef 100644 --- a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.es.po +++ b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.es.po @@ -7,8 +7,8 @@ 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" -"PO-Revision-Date: 2019-11-16 12:11+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-20 13:25+0000\n" +"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" "first_stepsindex/es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -77,6 +77,8 @@ msgstr "El escritorio de GNOME te permite abrir volúmenes cifrados." #, no-wrap msgid "Comparison between <span class=\"application\">LUKS</span> and <span class=\"application\">VeraCrypt</span>\n" msgstr "" +"Comparación entre <span class=\"application\">LUKS</span> y <span class=\"" +"application\">VeraCrypt</span>\n" #. type: Plain text #, no-wrap @@ -147,10 +149,9 @@ msgid "" msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"change\"></a>\n" +#, no-wrap msgid "<a id=\"format\"></a>\n" -msgstr "<a id=\"change\"></a>\n" +msgstr "<a id=\"format\"></a>\n" #. type: Title - #, no-wrap @@ -170,19 +171,14 @@ msgid "In the <span class=\"guilabel\">Format Disk</span> dialog:" msgstr "En el diálogo <span class=\"guilabel\">Formatea Disco</span>:" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "If you want to erase all data securely, choose to <span class=\"guilabel" -#| "\">Overwrite existing data with zeroes</span> in the <span class=" -#| "\"guilabel\">Erase</span> drop-down list." msgid "" "If you want to securely erase all data on the device, choose to <span class=" "\"guilabel\">Overwrite existing data with zeroes</span> in the <span class=" "\"guilabel\">Erase</span> drop-down list." msgstr "" -"Si quieres borrar todos los datos de modo seguro, elige <span class=" -"\"guilabel\">Sobreescribir los datos con ceros</span> en el menú desplegable " -"<span class=\"guilabel\">Borrar</span>." +"Si quieres borrar todos los datos del dispositivo con seguridad, elige <span " +"class=\"guilabel\">Sobreescribir los datos con ceros</span> en el menú " +"desplegable <span class=\"guilabel\">Borrar</span>." #. type: Bullet: ' - ' msgid "" @@ -219,7 +215,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!img empty_device.png link=no alt=\"Free Space 8.1 GB\"]]\n" -msgstr "" +msgstr "[[!img empty_device.png link=no alt=\"Espacio Libre 8.1 GB\"]]\n" #. type: Bullet: ' 1. ' msgid "" @@ -236,10 +232,8 @@ msgid "" msgstr "" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "In the <span class=\"guilabel\">Create Partition</span> dialog:" msgid "In the <span class=\"guilabel\">Create Partition</span> screen:" -msgstr "En el diálogo <span class=\"guilabel\">Crear partición</span>:" +msgstr "En la pantalla <span class=\"guilabel\">Crear partición</span>:" #. type: Bullet: ' - ' msgid "" @@ -253,10 +247,8 @@ msgid " In the example below, we are creating a partition of 4.0 GB on a msgstr "" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "In the <span class=\"guilabel\">Format Disk</span> dialog:" msgid "In the <span class=\"guilabel\">Format Volume</span> screen:" -msgstr "En el diálogo <span class=\"guilabel\">Formatea Disco</span>:" +msgstr "En la pantalla <span class=\"guilabel\">Formatear Volumen</span>:" #. type: Bullet: ' - ' msgid "" @@ -304,10 +296,9 @@ msgid "" msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid " Then click <span class=\"button\">Create</span>.\n" +#, no-wrap msgid " Then click <span class=\"button\">Create</span>.\n" -msgstr " Haz click en <span class=\"button\">Crear</span>.\n" +msgstr " Haz click en <span class=\"button\">Crear</span>.\n" #. type: Bullet: ' 1. ' msgid "" 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 f89671c3b24a528b262ac893a9056d49024b7fb8..431b473eec1e20bfc21ce11e4d58a06218d4bed6 100644 --- a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.fr.po +++ b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.fr.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-24 14:40+0000\n" +"PO-Revision-Date: 2020-01-12 13:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -339,16 +339,12 @@ msgid "In the <span class=\"guilabel\">Set Password</span> screen:" msgstr "Dans l'écran <span class=\"guilabel\">Définir un mot de passe</span> :" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "<span class=\"guilabel\">Passphrase</span>: type a passphrase for the " -#| "encrypted partition and repeat it to confirm." msgid "" "<span class=\"guilabel\">Password</span>: type a passphrase for the " "encrypted partition and repeat it to confirm." msgstr "" -"<span class=\"guilabel\">Phrase de passe</span> : saisir la phrase de passe " -"qui permettra l'accès à la partition chiffrée et la saisir à nouveau pour la " +"<span class=\"guilabel\">Mot de passe</span> : saisir la phrase de passe qui " +"permettra l'accès à la partition chiffrée et la saisir à nouveau pour la " "confirmer." #. type: Plain text diff --git a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.id.po b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.id.po index be458a7cc3e306eb148a4790627e842508eb96b8..600a68c762251489b4d5a65a5ce6f0cd92c55d50 100644 --- a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.id.po +++ b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.id.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap @@ -36,7 +36,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.pt.po b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.pt.po index 9eeae5b632810a5461d494894370023fd409fae4..5d396a5dffa70712878c6f2ae2a0e79bba44270b 100644 --- a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.pt.po +++ b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.pt.po @@ -8,8 +8,8 @@ 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" -"PO-Revision-Date: 2018-02-21 10:52+0000\n" -"Last-Translator: Tails translators <amnesia@boum.org>\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/" "encrypted_volumes/pt/>\n" "Language: pt\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet.ar.po b/wiki/src/doc/encryption_and_privacy/gpgapplet.ar.po index 628168419ad7b3236009e6d951da4a248ff05779..78e39efc5131ad292790d74cc658abbc8e66cea8 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet.ar.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet.ar.po @@ -7,8 +7,8 @@ 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" -"PO-Revision-Date: 2018-07-02 12:02+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\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" "Language: ar\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -48,9 +48,7 @@ msgid "" "[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" msgstr "" -"[[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet." -"png\n" +"[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" #. type: Plain text @@ -79,3 +77,22 @@ msgstr "" msgid "" "Note that the applet doesn't manage your keys, that is done by Seahorse." msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"caution\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "</div>\n" diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet.ca.po b/wiki/src/doc/encryption_and_privacy/gpgapplet.ca.po index 6374e6f9d6738161a3fb9d32397215f218e5585c..1dcd521161dc4892f0d2861a87b02b56997e1980 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet.ca.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet.ca.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-30 12:41+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: 2018-07-02 12:02+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -34,9 +34,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning.ca\" raw=\"" -"yes\" sort=\"age\"]]\n" +msgstr "[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning.ca\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -49,9 +47,7 @@ msgid "" "[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" msgstr "" -"[[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet." -"png\n" +"[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" #. type: Plain text @@ -80,3 +76,22 @@ msgstr "" msgid "" "Note that the applet doesn't manage your keys, that is done by Seahorse." msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet.de.po b/wiki/src/doc/encryption_and_privacy/gpgapplet.de.po index f49418cd0afdc0bce668e619da3ebfa17bfa054a..c2f02de5262fd3ccacbd69ebd13c9485ddff4118 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet.de.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-11-23 12:25+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: 2014-04-04 08:25+0100\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -82,3 +82,22 @@ msgid "" msgstr "" "Beachten Sie, dass nicht das Applet Ihre Schlüssel verwaltet, sondern das " "Programm Seahorse." + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet.es.po b/wiki/src/doc/encryption_and_privacy/gpgapplet.es.po index 7f0e032aeb42de71939aca0b794c16a19276f4e1..2f1949dcdfd6ad6a63d4344674716e07f20234e6 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet.es.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet.es.po @@ -6,17 +6,17 @@ 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" -"PO-Revision-Date: 2018-05-22 08:29+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: 2019-12-27 00:25+0000\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" -"Language-Team: Spanish " -"<https://translate.tails.boum.org/projects/tails/first_stepsindex/es/>\n" +"Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" +"first_stepsindex/es/>\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -37,16 +37,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning.es\" raw=\"" -"yes\" sort=\"age\"]]\n" +msgstr "[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning.es\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap msgid "<span class=\"application\">OpenPGP Applet</span> is located in the notification area.\n" -msgstr "" -"<span class=\"application\">OpenPGP Applet</span> está ubicado en el área de " -"notificación.\n" +msgstr "<span class=\"application\">OpenPGP Applet</span> está ubicado en el área de notificación.\n" #. type: Plain text #, no-wrap @@ -54,9 +50,7 @@ msgid "" "[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" msgstr "" -"[[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet." -"png\n" +"[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" #. type: Plain text @@ -69,26 +63,45 @@ msgid "" "[[Encrypt text with a passphrase|encryption_and_privacy/gpgapplet/" "passphrase_encryption]]" msgstr "" -"[[Cifrar texto con una " -"contraseña|encryption_and_privacy/gpgapplet/passphrase_encryption]]" +"[[Cifrar texto con una contraseña|encryption_and_privacy/gpgapplet/" +"passphrase_encryption]]" #. type: Bullet: ' - ' msgid "" "[[Encrypt and sign text with a public key|encryption_and_privacy/gpgapplet/" "public-key_cryptography]]" msgstr "" -"[[Cifrar y firmar texto con una llave " -"pública|encryption_and_privacy/gpgapplet/public-key_cryptography]]" +"[[Cifrar y firmar texto con una llave pública|encryption_and_privacy/" +"gpgapplet/public-key_cryptography]]" #. type: Bullet: ' - ' msgid "" "[[Decrypt and verify text|encryption_and_privacy/gpgapplet/decrypt_verify]]" msgstr "" -"[[Descifrar y verificar " -"texto|encryption_and_privacy/gpgapplet/decrypt_verify]]" +"[[Descifrar y verificar texto|encryption_and_privacy/gpgapplet/" +"decrypt_verify]]" #. type: Plain text msgid "" "Note that the applet doesn't manage your keys, that is done by Seahorse." msgstr "" "Ten en cuenta que este programa no gestiona tus claves. Eso lo hace Seahorse." + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"caution\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "</div>\n" diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet.fa.po b/wiki/src/doc/encryption_and_privacy/gpgapplet.fa.po index 6c6f338603ce9e2463786fd8dafd549119c797a2..a68dabe6a66dde8f9711dde85276c6369f6f33e2 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet.fa.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet.fa.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2017-11-23 12:25+0000\n" -"PO-Revision-Date: 2015-10-17 07:36+0000\n" -"Last-Translator: sprint5 <translation5@451f.org>\n" +"POT-Creation-Date: 2019-12-16 15:52+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/" "gpgapplet/fa/>\n" "Language: fa\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.4-dev\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -87,3 +87,22 @@ msgid "" "Note that the applet doesn't manage your keys, that is done by Seahorse." msgstr "" "در خاطر داشته باشید که کلیدهای شما توسط Seahorse مدیریت میشود، نه برنامک." + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"caution\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "</div>\n" diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet.fr.po b/wiki/src/doc/encryption_and_privacy/gpgapplet.fr.po index 7397a19fa59499e1001435434d23483f9ae24bc9..020093fd7135dadccff9432c37a40887b9d04a5b 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet.fr.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet.fr.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-11-23 12:25+0000\n" -"PO-Revision-Date: 2014-10-08 14:04-0000\n" -"Last-Translator: \n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: 2020-01-02 13:25+0000\n" +"Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.4\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -84,3 +86,22 @@ msgid "" msgstr "" "Notez que l'applet ne s'occupe pas de la gestion des clés, cela est fait par " "Seahorse." + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"caution\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "</div>\n" diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet.id.po b/wiki/src/doc/encryption_and_privacy/gpgapplet.id.po index d3dec28deeea143c5a46cfe36364aca221024c9f..11068b4a4a0698655e6e97563ab9e924ab390b75 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet.id.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet.id.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-11-23 12:25+0000\n" -"PO-Revision-Date: 2014-04-04 08:25+0100\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: 2020-01-16 00:25+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.4\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -72,3 +74,22 @@ msgstr "" msgid "" "Note that the applet doesn't manage your keys, that is done by Seahorse." msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "</div>\n" diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet.it.po b/wiki/src/doc/encryption_and_privacy/gpgapplet.it.po index 0114762920ddfa64a1773ceac245b2a0e816f79b..b8bf3072d570ec493f58c55d1a93cc279cd1a04f 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet.it.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet.it.po @@ -6,14 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-11-27 17:16+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: 2020-01-11 13:25+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" -"Language: \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -44,9 +47,7 @@ msgid "" "[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" msgstr "" -"[[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet." -"png\n" +"[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" #. type: Plain text @@ -75,3 +76,22 @@ msgstr "" msgid "" "Note that the applet doesn't manage your keys, that is done by Seahorse." msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "</div>\n" diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet.mdwn b/wiki/src/doc/encryption_and_privacy/gpgapplet.mdwn index 88c4bb12fd36718d929934f3f1246a5c07fcae50..584b0a4615f24dc1ae0396f6f9cd46b555f39c72 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet.mdwn +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet.mdwn @@ -18,3 +18,12 @@ With <span class="application">OpenPGP Applet</span> you can: - [[Decrypt and verify text|encryption_and_privacy/gpgapplet/decrypt_verify]] Note that the applet doesn't manage your keys, that is done by Seahorse. + +<div class="caution"> + +<p>If you have GnuPG keys stored in Persistence since before Tails 4.1 +(December 2019), you should [[update your OpenPGP keyserver +configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe +keyservers.</p> + +</div> diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet.pl.po b/wiki/src/doc/encryption_and_privacy/gpgapplet.pl.po index 396a9fc28e0016fcb90a7f6065551b1a531dd2d3..e4c52d5c0b204e740cc7cfae68dce07b7c97f0cf 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet.pl.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet.pl.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-30 12:41+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: 2018-07-02 12:02+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -35,9 +35,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning.pl\" raw=\"" -"yes\" sort=\"age\"]]\n" +msgstr "[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning.pl\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -50,9 +48,7 @@ msgid "" "[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" msgstr "" -"[[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet." -"png\n" +"[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" #. type: Plain text @@ -81,3 +77,22 @@ msgstr "" msgid "" "Note that the applet doesn't manage your keys, that is done by Seahorse." msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet.pt.po b/wiki/src/doc/encryption_and_privacy/gpgapplet.pt.po index dbdceea92fddeba122e09cd06dac1da4740422cb..a8270442bb594850f3b3c73b2296d0c55564ec57 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet.pt.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet.pt.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2017-11-27 17:16+0100\n" -"PO-Revision-Date: 2018-02-08 19:42+0000\n" -"Last-Translator: Tails translators <amnesia@boum.org>\n" +"POT-Creation-Date: 2019-12-16 15:52+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" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -34,9 +34,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning.pt\" raw=\"" -"yes\" sort=\"age\"]]\n" +msgstr "[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning.pt\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -49,9 +47,7 @@ msgid "" "[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" msgstr "" -"[[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet." -"png\n" +"[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" #. type: Plain text @@ -80,3 +76,22 @@ msgstr "" msgid "" "Note that the applet doesn't manage your keys, that is done by Seahorse." msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"caution\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "</div>\n" diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet.ru.po b/wiki/src/doc/encryption_and_privacy/gpgapplet.ru.po index 5ebe93870b7bb80b8c0b82ee84a67b32707bab67..c766be9213b26b21cba3b4c861b9e6ded14131ea 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet.ru.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet.ru.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-02-04 20:54+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: 2018-07-02 12:02+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 2.10.1\n" #. type: Plain text @@ -35,9 +35,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning.ru\" raw=\"" -"yes\" sort=\"age\"]]\n" +msgstr "[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning.ru\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -50,9 +48,7 @@ msgid "" "[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" msgstr "" -"[[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet." -"png\n" +"[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" #. type: Plain text @@ -81,3 +77,22 @@ msgstr "" msgid "" "Note that the applet doesn't manage your keys, that is done by Seahorse." msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet.sr_Latn.po b/wiki/src/doc/encryption_and_privacy/gpgapplet.sr_Latn.po index 70ebfba54082b3121c015e62f409d93871bfd042..c1c529d10c55826713145830e55b8d35df27b1bf 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet.sr_Latn.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet.sr_Latn.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-07-28 08:14+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"Language: sr_Latn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -31,23 +31,18 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning\" raw=\"yes\" " -"sort=\"age\"]]\n" +msgid "[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<span class=\"application\">OpenPGP Applet</span> is located in the " -"notification area.\n" +msgid "<span class=\"application\">OpenPGP Applet</span> is located in the notification area.\n" msgstr "" #. type: Plain text #, no-wrap msgid "" -"[[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" +"[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" msgstr "" @@ -58,20 +53,41 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"[[Encrypt text with a " -"passphrase|encryption_and_privacy/gpgapplet/passphrase_encryption]]" +"[[Encrypt text with a passphrase|encryption_and_privacy/gpgapplet/" +"passphrase_encryption]]" msgstr "" #. type: Bullet: ' - ' msgid "" -"[[Encrypt and sign text with a public " -"key|encryption_and_privacy/gpgapplet/public-key_cryptography]]" +"[[Encrypt and sign text with a public key|encryption_and_privacy/gpgapplet/" +"public-key_cryptography]]" msgstr "" #. type: Bullet: ' - ' -msgid "[[Decrypt and verify text|encryption_and_privacy/gpgapplet/decrypt_verify]]" +msgid "" +"[[Decrypt and verify text|encryption_and_privacy/gpgapplet/decrypt_verify]]" msgstr "" #. type: Plain text -msgid "Note that the applet doesn't manage your keys, that is done by Seahorse." +msgid "" +"Note that the applet doesn't manage your keys, that is done by Seahorse." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet.tr.po b/wiki/src/doc/encryption_and_privacy/gpgapplet.tr.po index 64ee1c7defc14e36dfc9050445c6e5bde2906d20..216ca15ff6c5b02ef16ed516db81fb3a1b8c32f1 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet.tr.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet.tr.po @@ -7,8 +7,8 @@ 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" -"PO-Revision-Date: 2018-07-02 12:04+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\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" "Language: tr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -34,9 +34,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning.tr\" raw=\"" -"yes\" sort=\"age\"]]\n" +msgstr "[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning.tr\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -49,9 +47,7 @@ msgid "" "[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" msgstr "" -"[[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet." -"png\n" +"[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" #. type: Plain text @@ -80,3 +76,22 @@ msgstr "" msgid "" "Note that the applet doesn't manage your keys, that is done by Seahorse." msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"caution\">\n" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "</div>\n" diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet.zh.po b/wiki/src/doc/encryption_and_privacy/gpgapplet.zh.po index 8e34a77cab4ab527b68617fc86b65edad0bf1468..384a009fe37594fc25ee07a767cc76cf1f621fd2 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet.zh.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet.zh.po @@ -7,16 +7,16 @@ 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" -"PO-Revision-Date: 2018-10-25 10:15+0000\n" -"Last-Translator: qf <selinaf1917@yahoo.com>\n" +"POT-Creation-Date: 2019-12-16 15:52+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" "Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -34,9 +34,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning.zh\" raw=\"" -"yes\" sort=\"age\"]]\n" +msgstr "[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning.zh\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -49,9 +47,7 @@ msgid "" "[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" msgstr "" -"[[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet." -"png\n" +"[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" #. type: Plain text @@ -80,3 +76,22 @@ msgstr "" msgid "" "Note that the applet doesn't manage your keys, that is done by Seahorse." msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" +msgstr "</div>\n" diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet.zh_TW.po b/wiki/src/doc/encryption_and_privacy/gpgapplet.zh_TW.po index 269cf891ab1d0cd13ea1f1dcab4540cdb7f469e1..8c99143006bb0ff32ff4b7f684d7645962e6a3d5 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet.zh_TW.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet.zh_TW.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-03-11 11:54+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: 2018-07-02 12:02+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -33,28 +33,21 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning\" raw=\"yes\" " -"sort=\"age\"]]\n" +msgid "[[!inline pages=\"doc/encryption_and_privacy/gpgapplet.warning\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<span class=\"application\">OpenPGP Applet</span> is located in the " -"notification area.\n" +msgid "<span class=\"application\">OpenPGP Applet</span> is located in the notification area.\n" msgstr "" #. type: Plain text #, no-wrap msgid "" -"[[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" +"[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" msgstr "" -"[[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet." -"png\n" +"[[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/openpgp_applet.png\n" "link=no alt=\"\"]]\n" #. type: Plain text @@ -64,20 +57,41 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"[[Encrypt text with a " -"passphrase|encryption_and_privacy/gpgapplet/passphrase_encryption]]" +"[[Encrypt text with a passphrase|encryption_and_privacy/gpgapplet/" +"passphrase_encryption]]" msgstr "" #. type: Bullet: ' - ' msgid "" -"[[Encrypt and sign text with a public " -"key|encryption_and_privacy/gpgapplet/public-key_cryptography]]" +"[[Encrypt and sign text with a public key|encryption_and_privacy/gpgapplet/" +"public-key_cryptography]]" msgstr "" #. type: Bullet: ' - ' -msgid "[[Decrypt and verify text|encryption_and_privacy/gpgapplet/decrypt_verify]]" +msgid "" +"[[Decrypt and verify text|encryption_and_privacy/gpgapplet/decrypt_verify]]" msgstr "" #. type: Plain text -msgid "Note that the applet doesn't manage your keys, that is done by Seahorse." +msgid "" +"Note that the applet doesn't manage your keys, that is done by Seahorse." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\">\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<p>If you have GnuPG keys stored in Persistence since before Tails 4.1\n" +"(December 2019), you should [[update your OpenPGP keyserver\n" +"configuration|doc/encryption_and_privacy/openpgp_keyserver]] to use safe\n" +"keyservers.</p>\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</div>\n" msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet/decrypt_verify.id.po b/wiki/src/doc/encryption_and_privacy/gpgapplet/decrypt_verify.id.po index c3724ae2346e65bb8c4cd1e8ea7253c07af7e485..f6210733918b13e0490be8f509ce92c2afa22c7c 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet/decrypt_verify.id.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet/decrypt_verify.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-09-29 06:52+0000\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -162,7 +162,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet/passphrase_encryption.fa.po b/wiki/src/doc/encryption_and_privacy/gpgapplet/passphrase_encryption.fa.po index 62f150a793c86d4a85393393216f0254de1b8ada..71abeaa008cc8404e76b254976a662e992bf661e 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet/passphrase_encryption.fa.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet/passphrase_encryption.fa.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-09-29 06:52+0000\n" -"PO-Revision-Date: 2019-07-30 11:37+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/" "gpgapplet_passphrase_encryption/fa/>\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -185,9 +185,9 @@ msgstr "" " -----BEGIN PGP MESSAGE-----\"]]\n" #. type: Plain text -#, fuzzy, no-wrap +#, no-wrap msgid "<div class=\"next\">\n" -msgstr "<div class=\"بعدی\">\n" +msgstr "<div class=\"next\">\n" #. type: Plain text #, fuzzy, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet/passphrase_encryption.id.po b/wiki/src/doc/encryption_and_privacy/gpgapplet/passphrase_encryption.id.po index a66b6ffa05294dd605548823c74d36a55e35c2ff..14835fd129baffd09d51b34b93dac3c945bd3e47 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet/passphrase_encryption.id.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet/passphrase_encryption.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-09-29 06:52+0000\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -38,7 +38,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet/public-key_cryptography.fa.po b/wiki/src/doc/encryption_and_privacy/gpgapplet/public-key_cryptography.fa.po index 85930620a4f92b786072d5736f13a1678f64be23..972f1a1623cb451ce8b58ba6f5ddbb3491a9eb45 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet/public-key_cryptography.fa.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet/public-key_cryptography.fa.po @@ -6,9 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-09-29 06:52+0000\n" -"PO-Revision-Date: 2015-10-14 17:02+0000\n" -"Last-Translator: sprint5 <translation5@451f.org>\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/" "gpgapplet_publickey_crypto/fa/>\n" "Language: fa\n" @@ -16,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.4-dev\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -266,9 +267,9 @@ msgstr "" "ویژگی مانا|doc/first_steps/persistence/configure/#gnupg]] را فعال کنید.\n" #. type: Plain text -#, fuzzy, no-wrap +#, no-wrap msgid "<div class=\"next\">\n" -msgstr "<div class=\"بعدی\">\n" +msgstr "<div class=\"next\">\n" #. type: Plain text #, fuzzy, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/gpgapplet/public-key_cryptography.id.po b/wiki/src/doc/encryption_and_privacy/gpgapplet/public-key_cryptography.id.po index e036051b5261622f64e7a1f382643a46e2595271..647b4cee02deb7bb53179be28b46870e6c14b26d 100644 --- a/wiki/src/doc/encryption_and_privacy/gpgapplet/public-key_cryptography.id.po +++ b/wiki/src/doc/encryption_and_privacy/gpgapplet/public-key_cryptography.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-09-29 06:52+0000\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -38,7 +38,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/manage_passwords.id.po b/wiki/src/doc/encryption_and_privacy/manage_passwords.id.po index 1de3e975b0bc469c5f0540e530ab0cccfcbf9209..1816a91a2df47f16ddecd22d7c361b55833bfe2c 100644 --- a/wiki/src/doc/encryption_and_privacy/manage_passwords.id.po +++ b/wiki/src/doc/encryption_and_privacy/manage_passwords.id.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -156,7 +156,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.ar.po b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.ar.po new file mode 100644 index 0000000000000000000000000000000000000000..c7c85eb3404648597b3f3ffb2db27c4a272fde56 --- /dev/null +++ b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.ar.po @@ -0,0 +1,220 @@ +# 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-01-25 10:42+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: ar\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=\"Updating your OpenPGP keyserver configuration\"]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "About keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"OpenPGP keyservers are public repositories of OpenPGP public keys that " +"applications use to discover the public keys of contacts." +msgstr "" + +#. type: Plain text +msgid "" +"In Tails 4.1 (December 2019), we changed the default GnuPG configuration to " +"use <https://keys.openpgp.org/>, also available on <http://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org is more trustworthy than other OpenPGP public keyservers " +"because it only references an OpenPGP public key after sending a " +"confirmation email to each email addresses listed in the key." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org does not distribute third-party signatures, which are the " +"signatures on a key that were made by some other key. Third-party " +"signatures are the signatures used to create the OpenPGP Web of Trust." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " +"your OpenPGP keyring unusable and crash your computer." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" To learn more about keys.openpgp.org, read their\n" +" [About](https://keys.openpgp.org/about) and\n" +" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updating your Tails to use keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"If you have GnuPG keys stored in Persistence since before Tails 4.1, you " +"should update your keyserver configuration." +msgstr "" + +#. type: Plain text +msgid "" +"Tails was previously configured to use the SKS keyserver network, which has " +"been subject to [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html) since June 2019." +msgstr "" + +#. type: Plain text +msgid "" +"Downloading a public key that has been flooded can corrupt your GnuPG " +"keyring, make your keyring extremely slow to operate, and possibly overheat " +"and crash your computer. Only a few keys in the SKS keyserver network have " +"been flooded. Downloading a flooded public key does not compromise the " +"security of your private keys." +msgstr "" + +#. type: Plain text +msgid "To update your keyserver configuration:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *Text Editor*." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Open** and choose **Other Documents...**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Navigate to the *Home* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Right-click (on Mac, click with two fingers) on the list of files in the " +"right pane and choose **Show Hidden Files**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *.gnupg* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *gpg.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *gpg.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *dirmngr.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *dirmngr.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Save both files and close the *Text Editor*." +msgstr "" + +#. type: Plain text +msgid "" +"If you also have encrypted emails stored in the *Thunderbird* Persistence " +"feature:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open *Thunderbird*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In *Thunderbird*, choose <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">Enigmail</span> ▸\n" +" <span class=\"guimenuitem\">Preferences</span></span>.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In the **Enigmail Preferences** dialog, click the **Display Expert\n" +" Settings and Menus**.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Additional tabs appear on top of the dialog.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the **Keyserver** tab." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Specify the following keyserver addresses in the **Specify your " +"keyserver(s)** field:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">vks://keys.openpgp.org, hkps://hkps.pool.sks-keyservers.net, hkps://pgp.mit.edu</p>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Ok**." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" An information dialog appears that starts with *Cannot connect to\n" +" gpg-agent*.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Click **Ok** again to dismiss it.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Close the **Enigmail Preferences** dialog." +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.ca.po b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.ca.po new file mode 100644 index 0000000000000000000000000000000000000000..d321b5583443538ad421015cd0a152ab8c4fe40e --- /dev/null +++ b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.ca.po @@ -0,0 +1,220 @@ +# 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-01-25 10:42+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: ca\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=\"Updating your OpenPGP keyserver configuration\"]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "About keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"OpenPGP keyservers are public repositories of OpenPGP public keys that " +"applications use to discover the public keys of contacts." +msgstr "" + +#. type: Plain text +msgid "" +"In Tails 4.1 (December 2019), we changed the default GnuPG configuration to " +"use <https://keys.openpgp.org/>, also available on <http://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org is more trustworthy than other OpenPGP public keyservers " +"because it only references an OpenPGP public key after sending a " +"confirmation email to each email addresses listed in the key." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org does not distribute third-party signatures, which are the " +"signatures on a key that were made by some other key. Third-party " +"signatures are the signatures used to create the OpenPGP Web of Trust." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " +"your OpenPGP keyring unusable and crash your computer." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" To learn more about keys.openpgp.org, read their\n" +" [About](https://keys.openpgp.org/about) and\n" +" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updating your Tails to use keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"If you have GnuPG keys stored in Persistence since before Tails 4.1, you " +"should update your keyserver configuration." +msgstr "" + +#. type: Plain text +msgid "" +"Tails was previously configured to use the SKS keyserver network, which has " +"been subject to [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html) since June 2019." +msgstr "" + +#. type: Plain text +msgid "" +"Downloading a public key that has been flooded can corrupt your GnuPG " +"keyring, make your keyring extremely slow to operate, and possibly overheat " +"and crash your computer. Only a few keys in the SKS keyserver network have " +"been flooded. Downloading a flooded public key does not compromise the " +"security of your private keys." +msgstr "" + +#. type: Plain text +msgid "To update your keyserver configuration:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *Text Editor*." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Open** and choose **Other Documents...**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Navigate to the *Home* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Right-click (on Mac, click with two fingers) on the list of files in the " +"right pane and choose **Show Hidden Files**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *.gnupg* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *gpg.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *gpg.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *dirmngr.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *dirmngr.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Save both files and close the *Text Editor*." +msgstr "" + +#. type: Plain text +msgid "" +"If you also have encrypted emails stored in the *Thunderbird* Persistence " +"feature:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open *Thunderbird*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In *Thunderbird*, choose <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">Enigmail</span> ▸\n" +" <span class=\"guimenuitem\">Preferences</span></span>.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In the **Enigmail Preferences** dialog, click the **Display Expert\n" +" Settings and Menus**.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Additional tabs appear on top of the dialog.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the **Keyserver** tab." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Specify the following keyserver addresses in the **Specify your " +"keyserver(s)** field:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">vks://keys.openpgp.org, hkps://hkps.pool.sks-keyservers.net, hkps://pgp.mit.edu</p>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Ok**." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" An information dialog appears that starts with *Cannot connect to\n" +" gpg-agent*.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Click **Ok** again to dismiss it.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Close the **Enigmail Preferences** dialog." +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.de.po b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.de.po new file mode 100644 index 0000000000000000000000000000000000000000..0306ff8f099b3cdfd138d4046b3cbe1d1ed6943a --- /dev/null +++ b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.de.po @@ -0,0 +1,220 @@ +# 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-01-25 10:42+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Updating your OpenPGP keyserver configuration\"]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "About keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"OpenPGP keyservers are public repositories of OpenPGP public keys that " +"applications use to discover the public keys of contacts." +msgstr "" + +#. type: Plain text +msgid "" +"In Tails 4.1 (December 2019), we changed the default GnuPG configuration to " +"use <https://keys.openpgp.org/>, also available on <http://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org is more trustworthy than other OpenPGP public keyservers " +"because it only references an OpenPGP public key after sending a " +"confirmation email to each email addresses listed in the key." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org does not distribute third-party signatures, which are the " +"signatures on a key that were made by some other key. Third-party " +"signatures are the signatures used to create the OpenPGP Web of Trust." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " +"your OpenPGP keyring unusable and crash your computer." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" To learn more about keys.openpgp.org, read their\n" +" [About](https://keys.openpgp.org/about) and\n" +" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updating your Tails to use keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"If you have GnuPG keys stored in Persistence since before Tails 4.1, you " +"should update your keyserver configuration." +msgstr "" + +#. type: Plain text +msgid "" +"Tails was previously configured to use the SKS keyserver network, which has " +"been subject to [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html) since June 2019." +msgstr "" + +#. type: Plain text +msgid "" +"Downloading a public key that has been flooded can corrupt your GnuPG " +"keyring, make your keyring extremely slow to operate, and possibly overheat " +"and crash your computer. Only a few keys in the SKS keyserver network have " +"been flooded. Downloading a flooded public key does not compromise the " +"security of your private keys." +msgstr "" + +#. type: Plain text +msgid "To update your keyserver configuration:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *Text Editor*." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Open** and choose **Other Documents...**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Navigate to the *Home* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Right-click (on Mac, click with two fingers) on the list of files in the " +"right pane and choose **Show Hidden Files**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *.gnupg* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *gpg.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *gpg.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *dirmngr.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *dirmngr.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Save both files and close the *Text Editor*." +msgstr "" + +#. type: Plain text +msgid "" +"If you also have encrypted emails stored in the *Thunderbird* Persistence " +"feature:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open *Thunderbird*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In *Thunderbird*, choose <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">Enigmail</span> ▸\n" +" <span class=\"guimenuitem\">Preferences</span></span>.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In the **Enigmail Preferences** dialog, click the **Display Expert\n" +" Settings and Menus**.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Additional tabs appear on top of the dialog.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the **Keyserver** tab." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Specify the following keyserver addresses in the **Specify your " +"keyserver(s)** field:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">vks://keys.openpgp.org, hkps://hkps.pool.sks-keyservers.net, hkps://pgp.mit.edu</p>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Ok**." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" An information dialog appears that starts with *Cannot connect to\n" +" gpg-agent*.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Click **Ok** again to dismiss it.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Close the **Enigmail Preferences** dialog." +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.es.po b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.es.po new file mode 100644 index 0000000000000000000000000000000000000000..0306ff8f099b3cdfd138d4046b3cbe1d1ed6943a --- /dev/null +++ b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.es.po @@ -0,0 +1,220 @@ +# 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-01-25 10:42+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Updating your OpenPGP keyserver configuration\"]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "About keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"OpenPGP keyservers are public repositories of OpenPGP public keys that " +"applications use to discover the public keys of contacts." +msgstr "" + +#. type: Plain text +msgid "" +"In Tails 4.1 (December 2019), we changed the default GnuPG configuration to " +"use <https://keys.openpgp.org/>, also available on <http://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org is more trustworthy than other OpenPGP public keyservers " +"because it only references an OpenPGP public key after sending a " +"confirmation email to each email addresses listed in the key." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org does not distribute third-party signatures, which are the " +"signatures on a key that were made by some other key. Third-party " +"signatures are the signatures used to create the OpenPGP Web of Trust." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " +"your OpenPGP keyring unusable and crash your computer." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" To learn more about keys.openpgp.org, read their\n" +" [About](https://keys.openpgp.org/about) and\n" +" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updating your Tails to use keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"If you have GnuPG keys stored in Persistence since before Tails 4.1, you " +"should update your keyserver configuration." +msgstr "" + +#. type: Plain text +msgid "" +"Tails was previously configured to use the SKS keyserver network, which has " +"been subject to [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html) since June 2019." +msgstr "" + +#. type: Plain text +msgid "" +"Downloading a public key that has been flooded can corrupt your GnuPG " +"keyring, make your keyring extremely slow to operate, and possibly overheat " +"and crash your computer. Only a few keys in the SKS keyserver network have " +"been flooded. Downloading a flooded public key does not compromise the " +"security of your private keys." +msgstr "" + +#. type: Plain text +msgid "To update your keyserver configuration:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *Text Editor*." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Open** and choose **Other Documents...**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Navigate to the *Home* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Right-click (on Mac, click with two fingers) on the list of files in the " +"right pane and choose **Show Hidden Files**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *.gnupg* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *gpg.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *gpg.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *dirmngr.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *dirmngr.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Save both files and close the *Text Editor*." +msgstr "" + +#. type: Plain text +msgid "" +"If you also have encrypted emails stored in the *Thunderbird* Persistence " +"feature:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open *Thunderbird*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In *Thunderbird*, choose <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">Enigmail</span> ▸\n" +" <span class=\"guimenuitem\">Preferences</span></span>.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In the **Enigmail Preferences** dialog, click the **Display Expert\n" +" Settings and Menus**.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Additional tabs appear on top of the dialog.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the **Keyserver** tab." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Specify the following keyserver addresses in the **Specify your " +"keyserver(s)** field:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">vks://keys.openpgp.org, hkps://hkps.pool.sks-keyservers.net, hkps://pgp.mit.edu</p>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Ok**." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" An information dialog appears that starts with *Cannot connect to\n" +" gpg-agent*.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Click **Ok** again to dismiss it.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Close the **Enigmail Preferences** dialog." +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.fa.po b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.fa.po new file mode 100644 index 0000000000000000000000000000000000000000..0306ff8f099b3cdfd138d4046b3cbe1d1ed6943a --- /dev/null +++ b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.fa.po @@ -0,0 +1,220 @@ +# 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-01-25 10:42+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Updating your OpenPGP keyserver configuration\"]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "About keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"OpenPGP keyservers are public repositories of OpenPGP public keys that " +"applications use to discover the public keys of contacts." +msgstr "" + +#. type: Plain text +msgid "" +"In Tails 4.1 (December 2019), we changed the default GnuPG configuration to " +"use <https://keys.openpgp.org/>, also available on <http://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org is more trustworthy than other OpenPGP public keyservers " +"because it only references an OpenPGP public key after sending a " +"confirmation email to each email addresses listed in the key." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org does not distribute third-party signatures, which are the " +"signatures on a key that were made by some other key. Third-party " +"signatures are the signatures used to create the OpenPGP Web of Trust." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " +"your OpenPGP keyring unusable and crash your computer." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" To learn more about keys.openpgp.org, read their\n" +" [About](https://keys.openpgp.org/about) and\n" +" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updating your Tails to use keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"If you have GnuPG keys stored in Persistence since before Tails 4.1, you " +"should update your keyserver configuration." +msgstr "" + +#. type: Plain text +msgid "" +"Tails was previously configured to use the SKS keyserver network, which has " +"been subject to [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html) since June 2019." +msgstr "" + +#. type: Plain text +msgid "" +"Downloading a public key that has been flooded can corrupt your GnuPG " +"keyring, make your keyring extremely slow to operate, and possibly overheat " +"and crash your computer. Only a few keys in the SKS keyserver network have " +"been flooded. Downloading a flooded public key does not compromise the " +"security of your private keys." +msgstr "" + +#. type: Plain text +msgid "To update your keyserver configuration:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *Text Editor*." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Open** and choose **Other Documents...**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Navigate to the *Home* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Right-click (on Mac, click with two fingers) on the list of files in the " +"right pane and choose **Show Hidden Files**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *.gnupg* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *gpg.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *gpg.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *dirmngr.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *dirmngr.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Save both files and close the *Text Editor*." +msgstr "" + +#. type: Plain text +msgid "" +"If you also have encrypted emails stored in the *Thunderbird* Persistence " +"feature:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open *Thunderbird*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In *Thunderbird*, choose <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">Enigmail</span> ▸\n" +" <span class=\"guimenuitem\">Preferences</span></span>.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In the **Enigmail Preferences** dialog, click the **Display Expert\n" +" Settings and Menus**.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Additional tabs appear on top of the dialog.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the **Keyserver** tab." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Specify the following keyserver addresses in the **Specify your " +"keyserver(s)** field:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">vks://keys.openpgp.org, hkps://hkps.pool.sks-keyservers.net, hkps://pgp.mit.edu</p>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Ok**." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" An information dialog appears that starts with *Cannot connect to\n" +" gpg-agent*.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Click **Ok** again to dismiss it.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Close the **Enigmail Preferences** dialog." +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.fr.po b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.fr.po new file mode 100644 index 0000000000000000000000000000000000000000..fee66e61e16e77735fe4f048b86be6ae5706ce2f --- /dev/null +++ b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.fr.po @@ -0,0 +1,221 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-25 10:42+0000\n" +"PO-Revision-Date: 2020-01-24 08:26+0000\n" +"Last-Translator: xin <xin@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Updating your OpenPGP keyserver configuration\"]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "About keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"OpenPGP keyservers are public repositories of OpenPGP public keys that " +"applications use to discover the public keys of contacts." +msgstr "" + +#. type: Plain text +msgid "" +"In Tails 4.1 (December 2019), we changed the default GnuPG configuration to " +"use <https://keys.openpgp.org/>, also available on <http://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org is more trustworthy than other OpenPGP public keyservers " +"because it only references an OpenPGP public key after sending a " +"confirmation email to each email addresses listed in the key." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org does not distribute third-party signatures, which are the " +"signatures on a key that were made by some other key. Third-party " +"signatures are the signatures used to create the OpenPGP Web of Trust." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " +"your OpenPGP keyring unusable and crash your computer." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" To learn more about keys.openpgp.org, read their\n" +" [About](https://keys.openpgp.org/about) and\n" +" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updating your Tails to use keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"If you have GnuPG keys stored in Persistence since before Tails 4.1, you " +"should update your keyserver configuration." +msgstr "" + +#. type: Plain text +msgid "" +"Tails was previously configured to use the SKS keyserver network, which has " +"been subject to [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html) since June 2019." +msgstr "" + +#. type: Plain text +msgid "" +"Downloading a public key that has been flooded can corrupt your GnuPG " +"keyring, make your keyring extremely slow to operate, and possibly overheat " +"and crash your computer. Only a few keys in the SKS keyserver network have " +"been flooded. Downloading a flooded public key does not compromise the " +"security of your private keys." +msgstr "" + +#. type: Plain text +msgid "To update your keyserver configuration:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *Text Editor*." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Open** and choose **Other Documents...**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Navigate to the *Home* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Right-click (on Mac, click with two fingers) on the list of files in the " +"right pane and choose **Show Hidden Files**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *.gnupg* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *gpg.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *gpg.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf>\n" +msgstr " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf>\n" + +#. type: Bullet: '1. ' +msgid "Edit the *dirmngr.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *dirmngr.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf>\n" +msgstr " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf>\n" + +#. type: Bullet: '1. ' +msgid "Save both files and close the *Text Editor*." +msgstr "" + +#. type: Plain text +msgid "" +"If you also have encrypted emails stored in the *Thunderbird* Persistence " +"feature:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open *Thunderbird*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In *Thunderbird*, choose <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">Enigmail</span> ▸\n" +" <span class=\"guimenuitem\">Preferences</span></span>.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In the **Enigmail Preferences** dialog, click the **Display Expert\n" +" Settings and Menus**.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Additional tabs appear on top of the dialog.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the **Keyserver** tab." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Specify the following keyserver addresses in the **Specify your " +"keyserver(s)** field:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">vks://keys.openpgp.org, hkps://hkps.pool.sks-keyservers.net, hkps://pgp.mit.edu</p>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Ok**." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" An information dialog appears that starts with *Cannot connect to\n" +" gpg-agent*.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Click **Ok** again to dismiss it.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Close the **Enigmail Preferences** dialog." +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.id.po b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.id.po new file mode 100644 index 0000000000000000000000000000000000000000..253e97fe26b139714b869975cf6016ab33996f31 --- /dev/null +++ b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.id.po @@ -0,0 +1,220 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: id\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=\"Updating your OpenPGP keyserver configuration\"]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "About keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"OpenPGP keyservers are public repositories of OpenPGP public keys that " +"applications use to discover the public keys of contacts." +msgstr "" + +#. type: Plain text +msgid "" +"In Tails 4.1 (December 2019), we changed the default GnuPG configuration to " +"use <https://keys.openpgp.org/>, also available on <https://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org is more trustworthy than other OpenPGP public keyservers " +"because it only references an OpenPGP public key after sending a " +"confirmation email to each email addresses listed in the key." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org does not distribute third-party signatures, which are the " +"signatures on a key that were made by some other key. Third-party " +"signatures are the signatures used to create the OpenPGP Web of Trust." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " +"your OpenPGP keyring unusable and crash your computer." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" To learn more about keys.openpgp.org, read their\n" +" [About](https://keys.openpgp.org/about) and\n" +" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updating your Tails to use keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"If you have GnuPG keys stored in Persistence since before Tails 4.1, you " +"should update your keyserver configuration." +msgstr "" + +#. type: Plain text +msgid "" +"Tails was previously configured to use the SKS keyserver network, which has " +"been subject to [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html) since June 2019." +msgstr "" + +#. type: Plain text +msgid "" +"Downloading a public key that has been flooded can corrupt your GnuPG " +"keyring, make your keyring extremely slow to operate, and possibly overheat " +"and crash your computer. Only a few keys in the SKS keyserver network have " +"been flooded. Downloading a flooded public key does not compromise the " +"security of your private keys." +msgstr "" + +#. type: Plain text +msgid "To update your keyserver configuration:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *Text Editor*." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Open** and choose **Other Documents...**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Navigate to the *Home* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Right-click (on Mac, click with two fingers) on the list of files in the " +"right pane and choose **Show Hidden Files**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *.gnupg* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *gpg.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *gpg.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *dirmngr.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *dirmngr.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Save both files and close the *Text Editor*." +msgstr "" + +#. type: Plain text +msgid "" +"If you also have encrypted emails stored in the *Thunderbird* Persistence " +"feature:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open *Thunderbird*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In *Thunderbird*, choose <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">Enigmail</span> ▸\n" +" <span class=\"guimenuitem\">Preferences</span></span>.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In the **Enigmail Preferences** dialog, click the **Display Expert\n" +" Settings and Menus**.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Additional tabs appear on top of the dialog.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the **Keyserver** tab." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Specify the following keyserver addresses in the **Specify your " +"keyserver(s)** field:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">vks://keys.openpgp.org, hkps://hkps.pool.sks-keyservers.net, hkps://pgp.mit.edu</p>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Ok**." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" An information dialog appears that starts with *Cannot connect to\n" +" gpg-agent*.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Click **Ok** again to dismiss it.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Close the **Enigmail Preferences** dialog." +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.it.po b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.it.po new file mode 100644 index 0000000000000000000000000000000000000000..0306ff8f099b3cdfd138d4046b3cbe1d1ed6943a --- /dev/null +++ b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.it.po @@ -0,0 +1,220 @@ +# 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-01-25 10:42+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Updating your OpenPGP keyserver configuration\"]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "About keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"OpenPGP keyservers are public repositories of OpenPGP public keys that " +"applications use to discover the public keys of contacts." +msgstr "" + +#. type: Plain text +msgid "" +"In Tails 4.1 (December 2019), we changed the default GnuPG configuration to " +"use <https://keys.openpgp.org/>, also available on <http://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org is more trustworthy than other OpenPGP public keyservers " +"because it only references an OpenPGP public key after sending a " +"confirmation email to each email addresses listed in the key." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org does not distribute third-party signatures, which are the " +"signatures on a key that were made by some other key. Third-party " +"signatures are the signatures used to create the OpenPGP Web of Trust." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " +"your OpenPGP keyring unusable and crash your computer." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" To learn more about keys.openpgp.org, read their\n" +" [About](https://keys.openpgp.org/about) and\n" +" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updating your Tails to use keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"If you have GnuPG keys stored in Persistence since before Tails 4.1, you " +"should update your keyserver configuration." +msgstr "" + +#. type: Plain text +msgid "" +"Tails was previously configured to use the SKS keyserver network, which has " +"been subject to [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html) since June 2019." +msgstr "" + +#. type: Plain text +msgid "" +"Downloading a public key that has been flooded can corrupt your GnuPG " +"keyring, make your keyring extremely slow to operate, and possibly overheat " +"and crash your computer. Only a few keys in the SKS keyserver network have " +"been flooded. Downloading a flooded public key does not compromise the " +"security of your private keys." +msgstr "" + +#. type: Plain text +msgid "To update your keyserver configuration:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *Text Editor*." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Open** and choose **Other Documents...**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Navigate to the *Home* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Right-click (on Mac, click with two fingers) on the list of files in the " +"right pane and choose **Show Hidden Files**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *.gnupg* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *gpg.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *gpg.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *dirmngr.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *dirmngr.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Save both files and close the *Text Editor*." +msgstr "" + +#. type: Plain text +msgid "" +"If you also have encrypted emails stored in the *Thunderbird* Persistence " +"feature:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open *Thunderbird*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In *Thunderbird*, choose <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">Enigmail</span> ▸\n" +" <span class=\"guimenuitem\">Preferences</span></span>.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In the **Enigmail Preferences** dialog, click the **Display Expert\n" +" Settings and Menus**.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Additional tabs appear on top of the dialog.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the **Keyserver** tab." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Specify the following keyserver addresses in the **Specify your " +"keyserver(s)** field:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">vks://keys.openpgp.org, hkps://hkps.pool.sks-keyservers.net, hkps://pgp.mit.edu</p>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Ok**." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" An information dialog appears that starts with *Cannot connect to\n" +" gpg-agent*.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Click **Ok** again to dismiss it.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Close the **Enigmail Preferences** dialog." +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.mdwn b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..c37606e5c8d37224d017785e681a616d408ceed9 --- /dev/null +++ b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.mdwn @@ -0,0 +1,102 @@ +[[!meta title="Updating your OpenPGP keyserver configuration"]] + +# About keys.openpgp.org + +OpenPGP keyservers are public repositories of OpenPGP public keys that +applications use to discover the public keys of contacts. + +In Tails 4.1 (December 2019), we changed the default GnuPG configuration +to use <https://keys.openpgp.org/>, also available on +<http://zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, +as the default OpenPGP keyserver. + + - keys.openpgp.org is more trustworthy than other OpenPGP public + keyservers because it only references an OpenPGP public key after + sending a confirmation email to each email addresses listed in the + key. + + - keys.openpgp.org does not distribute third-party signatures, which + are the signatures on a key that were made by some other key. + Third-party signatures are the signatures used to create the OpenPGP + Web of Trust. + + - keys.openpgp.org prevents [OpenPGP certificate + flooding attacks](https://dkg.fifthhorseman.net/blog/openpgp-certificate-flooding.html), + which can make your OpenPGP keyring unusable and crash your + computer. + + To learn more about keys.openpgp.org, read their + [About](https://keys.openpgp.org/about) and + [FAQ](https://keys.openpgp.org/about/faq) pages. + +# Updating your Tails to use keys.openpgp.org + +If you have GnuPG keys stored in Persistence since before Tails 4.1, you +should update your keyserver configuration. + +Tails was previously configured to use the SKS keyserver network, which +has been subject to [OpenPGP certificate flooding +attacks](https://dkg.fifthhorseman.net/blog/openpgp-certificate-flooding.html) +since June 2019. + +Downloading a public key that has been flooded can corrupt your GnuPG +keyring, make your keyring extremely slow to operate, and possibly overheat and +crash your computer. Only a few keys in the SKS keyserver network have +been flooded. Downloading a flooded public key does not compromise the +security of your private keys. + +To update your keyserver configuration: + +1. Open the *Text Editor*. + +1. Click **Open** and choose **Other Documents...**. + +1. Navigate to the *Home* folder. + +1. Right-click (on Mac, click with two fingers) on the list of files in + the right pane and choose **Show Hidden Files**. + +1. Open the *.gnupg* folder. + +1. Edit the *gpg.conf* file in the *.gnupg* folder. + + Replace its content with the content of our default *gpg.conf* file: + + <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf> + +1. Edit the *dirmngr.conf* file in the *.gnupg* folder. + + Replace its content with the content of our default *dirmngr.conf* file: + + <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf> + +1. Save both files and close the *Text Editor*. + +If you also have encrypted emails stored in the *Thunderbird* +Persistence feature: + +1. Open *Thunderbird*. + +1. In *Thunderbird*, choose <span class="menuchoice"> + <span class="guimenu">Enigmail</span> ▸ + <span class="guimenuitem">Preferences</span></span>. + +1. In the **Enigmail Preferences** dialog, click the **Display Expert + Settings and Menus**. + + Additional tabs appear on top of the dialog. + +1. Open the **Keyserver** tab. + +1. Specify the following keyserver addresses in the **Specify your keyserver(s)** field: + + <p class="pre">vks://keys.openpgp.org, hkps://hkps.pool.sks-keyservers.net, hkps://pgp.mit.edu</p> + +1. Click **Ok**. + + An information dialog appears that starts with *Cannot connect to + gpg-agent*. + + Click **Ok** again to dismiss it. + +1. Close the **Enigmail Preferences** dialog. diff --git a/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.pl.po b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.pl.po new file mode 100644 index 0000000000000000000000000000000000000000..aa40fd05f20b76ef0379de4a02103e6975666aca --- /dev/null +++ b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.pl.po @@ -0,0 +1,220 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: pl\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=\"Updating your OpenPGP keyserver configuration\"]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "About keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"OpenPGP keyservers are public repositories of OpenPGP public keys that " +"applications use to discover the public keys of contacts." +msgstr "" + +#. type: Plain text +msgid "" +"In Tails 4.1 (December 2019), we changed the default GnuPG configuration to " +"use <https://keys.openpgp.org/>, also available on <https://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org is more trustworthy than other OpenPGP public keyservers " +"because it only references an OpenPGP public key after sending a " +"confirmation email to each email addresses listed in the key." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org does not distribute third-party signatures, which are the " +"signatures on a key that were made by some other key. Third-party " +"signatures are the signatures used to create the OpenPGP Web of Trust." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " +"your OpenPGP keyring unusable and crash your computer." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" To learn more about keys.openpgp.org, read their\n" +" [About](https://keys.openpgp.org/about) and\n" +" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updating your Tails to use keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"If you have GnuPG keys stored in Persistence since before Tails 4.1, you " +"should update your keyserver configuration." +msgstr "" + +#. type: Plain text +msgid "" +"Tails was previously configured to use the SKS keyserver network, which has " +"been subject to [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html) since June 2019." +msgstr "" + +#. type: Plain text +msgid "" +"Downloading a public key that has been flooded can corrupt your GnuPG " +"keyring, make your keyring extremely slow to operate, and possibly overheat " +"and crash your computer. Only a few keys in the SKS keyserver network have " +"been flooded. Downloading a flooded public key does not compromise the " +"security of your private keys." +msgstr "" + +#. type: Plain text +msgid "To update your keyserver configuration:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *Text Editor*." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Open** and choose **Other Documents...**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Navigate to the *Home* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Right-click (on Mac, click with two fingers) on the list of files in the " +"right pane and choose **Show Hidden Files**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *.gnupg* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *gpg.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *gpg.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *dirmngr.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *dirmngr.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Save both files and close the *Text Editor*." +msgstr "" + +#. type: Plain text +msgid "" +"If you also have encrypted emails stored in the *Thunderbird* Persistence " +"feature:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open *Thunderbird*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In *Thunderbird*, choose <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">Enigmail</span> ▸\n" +" <span class=\"guimenuitem\">Preferences</span></span>.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In the **Enigmail Preferences** dialog, click the **Display Expert\n" +" Settings and Menus**.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Additional tabs appear on top of the dialog.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the **Keyserver** tab." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Specify the following keyserver addresses in the **Specify your " +"keyserver(s)** field:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">vks://keys.openpgp.org, hkps://hkps.pool.sks-keyservers.net, hkps://pgp.mit.edu</p>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Ok**." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" An information dialog appears that starts with *Cannot connect to\n" +" gpg-agent*.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Click **Ok** again to dismiss it.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Close the **Enigmail Preferences** dialog." +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.pt.po b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.pt.po new file mode 100644 index 0000000000000000000000000000000000000000..0306ff8f099b3cdfd138d4046b3cbe1d1ed6943a --- /dev/null +++ b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.pt.po @@ -0,0 +1,220 @@ +# 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-01-25 10:42+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Updating your OpenPGP keyserver configuration\"]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "About keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"OpenPGP keyservers are public repositories of OpenPGP public keys that " +"applications use to discover the public keys of contacts." +msgstr "" + +#. type: Plain text +msgid "" +"In Tails 4.1 (December 2019), we changed the default GnuPG configuration to " +"use <https://keys.openpgp.org/>, also available on <http://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org is more trustworthy than other OpenPGP public keyservers " +"because it only references an OpenPGP public key after sending a " +"confirmation email to each email addresses listed in the key." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org does not distribute third-party signatures, which are the " +"signatures on a key that were made by some other key. Third-party " +"signatures are the signatures used to create the OpenPGP Web of Trust." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " +"your OpenPGP keyring unusable and crash your computer." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" To learn more about keys.openpgp.org, read their\n" +" [About](https://keys.openpgp.org/about) and\n" +" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updating your Tails to use keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"If you have GnuPG keys stored in Persistence since before Tails 4.1, you " +"should update your keyserver configuration." +msgstr "" + +#. type: Plain text +msgid "" +"Tails was previously configured to use the SKS keyserver network, which has " +"been subject to [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html) since June 2019." +msgstr "" + +#. type: Plain text +msgid "" +"Downloading a public key that has been flooded can corrupt your GnuPG " +"keyring, make your keyring extremely slow to operate, and possibly overheat " +"and crash your computer. Only a few keys in the SKS keyserver network have " +"been flooded. Downloading a flooded public key does not compromise the " +"security of your private keys." +msgstr "" + +#. type: Plain text +msgid "To update your keyserver configuration:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *Text Editor*." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Open** and choose **Other Documents...**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Navigate to the *Home* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Right-click (on Mac, click with two fingers) on the list of files in the " +"right pane and choose **Show Hidden Files**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *.gnupg* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *gpg.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *gpg.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *dirmngr.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *dirmngr.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Save both files and close the *Text Editor*." +msgstr "" + +#. type: Plain text +msgid "" +"If you also have encrypted emails stored in the *Thunderbird* Persistence " +"feature:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open *Thunderbird*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In *Thunderbird*, choose <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">Enigmail</span> ▸\n" +" <span class=\"guimenuitem\">Preferences</span></span>.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In the **Enigmail Preferences** dialog, click the **Display Expert\n" +" Settings and Menus**.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Additional tabs appear on top of the dialog.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the **Keyserver** tab." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Specify the following keyserver addresses in the **Specify your " +"keyserver(s)** field:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">vks://keys.openpgp.org, hkps://hkps.pool.sks-keyservers.net, hkps://pgp.mit.edu</p>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Ok**." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" An information dialog appears that starts with *Cannot connect to\n" +" gpg-agent*.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Click **Ok** again to dismiss it.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Close the **Enigmail Preferences** dialog." +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.ru.po b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.ru.po new file mode 100644 index 0000000000000000000000000000000000000000..4c15859417e817e5f58cd0c5ff568918bdf0460b --- /dev/null +++ b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.ru.po @@ -0,0 +1,220 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: ru\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=\"Updating your OpenPGP keyserver configuration\"]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "About keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"OpenPGP keyservers are public repositories of OpenPGP public keys that " +"applications use to discover the public keys of contacts." +msgstr "" + +#. type: Plain text +msgid "" +"In Tails 4.1 (December 2019), we changed the default GnuPG configuration to " +"use <https://keys.openpgp.org/>, also available on <https://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org is more trustworthy than other OpenPGP public keyservers " +"because it only references an OpenPGP public key after sending a " +"confirmation email to each email addresses listed in the key." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org does not distribute third-party signatures, which are the " +"signatures on a key that were made by some other key. Third-party " +"signatures are the signatures used to create the OpenPGP Web of Trust." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " +"your OpenPGP keyring unusable and crash your computer." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" To learn more about keys.openpgp.org, read their\n" +" [About](https://keys.openpgp.org/about) and\n" +" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updating your Tails to use keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"If you have GnuPG keys stored in Persistence since before Tails 4.1, you " +"should update your keyserver configuration." +msgstr "" + +#. type: Plain text +msgid "" +"Tails was previously configured to use the SKS keyserver network, which has " +"been subject to [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html) since June 2019." +msgstr "" + +#. type: Plain text +msgid "" +"Downloading a public key that has been flooded can corrupt your GnuPG " +"keyring, make your keyring extremely slow to operate, and possibly overheat " +"and crash your computer. Only a few keys in the SKS keyserver network have " +"been flooded. Downloading a flooded public key does not compromise the " +"security of your private keys." +msgstr "" + +#. type: Plain text +msgid "To update your keyserver configuration:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *Text Editor*." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Open** and choose **Other Documents...**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Navigate to the *Home* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Right-click (on Mac, click with two fingers) on the list of files in the " +"right pane and choose **Show Hidden Files**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *.gnupg* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *gpg.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *gpg.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *dirmngr.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *dirmngr.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Save both files and close the *Text Editor*." +msgstr "" + +#. type: Plain text +msgid "" +"If you also have encrypted emails stored in the *Thunderbird* Persistence " +"feature:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open *Thunderbird*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In *Thunderbird*, choose <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">Enigmail</span> ▸\n" +" <span class=\"guimenuitem\">Preferences</span></span>.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In the **Enigmail Preferences** dialog, click the **Display Expert\n" +" Settings and Menus**.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Additional tabs appear on top of the dialog.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the **Keyserver** tab." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Specify the following keyserver addresses in the **Specify your " +"keyserver(s)** field:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">vks://keys.openpgp.org, hkps://hkps.pool.sks-keyservers.net, hkps://pgp.mit.edu</p>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Ok**." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" An information dialog appears that starts with *Cannot connect to\n" +" gpg-agent*.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Click **Ok** again to dismiss it.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Close the **Enigmail Preferences** dialog." +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.sr_Latn.po b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.sr_Latn.po new file mode 100644 index 0000000000000000000000000000000000000000..1409ec12fb92d400f4b01cec68dd4dcfc51992fc --- /dev/null +++ b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.sr_Latn.po @@ -0,0 +1,220 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: sr_Latn\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=\"Updating your OpenPGP keyserver configuration\"]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "About keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"OpenPGP keyservers are public repositories of OpenPGP public keys that " +"applications use to discover the public keys of contacts." +msgstr "" + +#. type: Plain text +msgid "" +"In Tails 4.1 (December 2019), we changed the default GnuPG configuration to " +"use <https://keys.openpgp.org/>, also available on <https://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org is more trustworthy than other OpenPGP public keyservers " +"because it only references an OpenPGP public key after sending a " +"confirmation email to each email addresses listed in the key." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org does not distribute third-party signatures, which are the " +"signatures on a key that were made by some other key. Third-party " +"signatures are the signatures used to create the OpenPGP Web of Trust." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " +"your OpenPGP keyring unusable and crash your computer." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" To learn more about keys.openpgp.org, read their\n" +" [About](https://keys.openpgp.org/about) and\n" +" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updating your Tails to use keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"If you have GnuPG keys stored in Persistence since before Tails 4.1, you " +"should update your keyserver configuration." +msgstr "" + +#. type: Plain text +msgid "" +"Tails was previously configured to use the SKS keyserver network, which has " +"been subject to [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html) since June 2019." +msgstr "" + +#. type: Plain text +msgid "" +"Downloading a public key that has been flooded can corrupt your GnuPG " +"keyring, make your keyring extremely slow to operate, and possibly overheat " +"and crash your computer. Only a few keys in the SKS keyserver network have " +"been flooded. Downloading a flooded public key does not compromise the " +"security of your private keys." +msgstr "" + +#. type: Plain text +msgid "To update your keyserver configuration:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *Text Editor*." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Open** and choose **Other Documents...**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Navigate to the *Home* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Right-click (on Mac, click with two fingers) on the list of files in the " +"right pane and choose **Show Hidden Files**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *.gnupg* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *gpg.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *gpg.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *dirmngr.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *dirmngr.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Save both files and close the *Text Editor*." +msgstr "" + +#. type: Plain text +msgid "" +"If you also have encrypted emails stored in the *Thunderbird* Persistence " +"feature:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open *Thunderbird*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In *Thunderbird*, choose <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">Enigmail</span> ▸\n" +" <span class=\"guimenuitem\">Preferences</span></span>.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In the **Enigmail Preferences** dialog, click the **Display Expert\n" +" Settings and Menus**.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Additional tabs appear on top of the dialog.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the **Keyserver** tab." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Specify the following keyserver addresses in the **Specify your " +"keyserver(s)** field:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">vks://keys.openpgp.org, hkps://hkps.pool.sks-keyservers.net, hkps://pgp.mit.edu</p>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Ok**." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" An information dialog appears that starts with *Cannot connect to\n" +" gpg-agent*.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Click **Ok** again to dismiss it.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Close the **Enigmail Preferences** dialog." +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.tr.po b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.tr.po new file mode 100644 index 0000000000000000000000000000000000000000..7e9b06d7e2b423fa62eee94c5b46b44ceb3d503e --- /dev/null +++ b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.tr.po @@ -0,0 +1,220 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: tr\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=\"Updating your OpenPGP keyserver configuration\"]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "About keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"OpenPGP keyservers are public repositories of OpenPGP public keys that " +"applications use to discover the public keys of contacts." +msgstr "" + +#. type: Plain text +msgid "" +"In Tails 4.1 (December 2019), we changed the default GnuPG configuration to " +"use <https://keys.openpgp.org/>, also available on <https://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org is more trustworthy than other OpenPGP public keyservers " +"because it only references an OpenPGP public key after sending a " +"confirmation email to each email addresses listed in the key." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org does not distribute third-party signatures, which are the " +"signatures on a key that were made by some other key. Third-party " +"signatures are the signatures used to create the OpenPGP Web of Trust." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " +"your OpenPGP keyring unusable and crash your computer." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" To learn more about keys.openpgp.org, read their\n" +" [About](https://keys.openpgp.org/about) and\n" +" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updating your Tails to use keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"If you have GnuPG keys stored in Persistence since before Tails 4.1, you " +"should update your keyserver configuration." +msgstr "" + +#. type: Plain text +msgid "" +"Tails was previously configured to use the SKS keyserver network, which has " +"been subject to [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html) since June 2019." +msgstr "" + +#. type: Plain text +msgid "" +"Downloading a public key that has been flooded can corrupt your GnuPG " +"keyring, make your keyring extremely slow to operate, and possibly overheat " +"and crash your computer. Only a few keys in the SKS keyserver network have " +"been flooded. Downloading a flooded public key does not compromise the " +"security of your private keys." +msgstr "" + +#. type: Plain text +msgid "To update your keyserver configuration:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *Text Editor*." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Open** and choose **Other Documents...**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Navigate to the *Home* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Right-click (on Mac, click with two fingers) on the list of files in the " +"right pane and choose **Show Hidden Files**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *.gnupg* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *gpg.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *gpg.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *dirmngr.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *dirmngr.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Save both files and close the *Text Editor*." +msgstr "" + +#. type: Plain text +msgid "" +"If you also have encrypted emails stored in the *Thunderbird* Persistence " +"feature:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open *Thunderbird*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In *Thunderbird*, choose <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">Enigmail</span> ▸\n" +" <span class=\"guimenuitem\">Preferences</span></span>.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In the **Enigmail Preferences** dialog, click the **Display Expert\n" +" Settings and Menus**.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Additional tabs appear on top of the dialog.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the **Keyserver** tab." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Specify the following keyserver addresses in the **Specify your " +"keyserver(s)** field:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">vks://keys.openpgp.org, hkps://hkps.pool.sks-keyservers.net, hkps://pgp.mit.edu</p>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Ok**." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" An information dialog appears that starts with *Cannot connect to\n" +" gpg-agent*.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Click **Ok** again to dismiss it.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Close the **Enigmail Preferences** dialog." +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.zh.po b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.zh.po new file mode 100644 index 0000000000000000000000000000000000000000..bd2fa83bda0b81f69392505b0cf49031ac5abd43 --- /dev/null +++ b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.zh.po @@ -0,0 +1,220 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: zh\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=\"Updating your OpenPGP keyserver configuration\"]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "About keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"OpenPGP keyservers are public repositories of OpenPGP public keys that " +"applications use to discover the public keys of contacts." +msgstr "" + +#. type: Plain text +msgid "" +"In Tails 4.1 (December 2019), we changed the default GnuPG configuration to " +"use <https://keys.openpgp.org/>, also available on <https://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org is more trustworthy than other OpenPGP public keyservers " +"because it only references an OpenPGP public key after sending a " +"confirmation email to each email addresses listed in the key." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org does not distribute third-party signatures, which are the " +"signatures on a key that were made by some other key. Third-party " +"signatures are the signatures used to create the OpenPGP Web of Trust." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " +"your OpenPGP keyring unusable and crash your computer." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" To learn more about keys.openpgp.org, read their\n" +" [About](https://keys.openpgp.org/about) and\n" +" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updating your Tails to use keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"If you have GnuPG keys stored in Persistence since before Tails 4.1, you " +"should update your keyserver configuration." +msgstr "" + +#. type: Plain text +msgid "" +"Tails was previously configured to use the SKS keyserver network, which has " +"been subject to [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html) since June 2019." +msgstr "" + +#. type: Plain text +msgid "" +"Downloading a public key that has been flooded can corrupt your GnuPG " +"keyring, make your keyring extremely slow to operate, and possibly overheat " +"and crash your computer. Only a few keys in the SKS keyserver network have " +"been flooded. Downloading a flooded public key does not compromise the " +"security of your private keys." +msgstr "" + +#. type: Plain text +msgid "To update your keyserver configuration:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *Text Editor*." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Open** and choose **Other Documents...**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Navigate to the *Home* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Right-click (on Mac, click with two fingers) on the list of files in the " +"right pane and choose **Show Hidden Files**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *.gnupg* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *gpg.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *gpg.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *dirmngr.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *dirmngr.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Save both files and close the *Text Editor*." +msgstr "" + +#. type: Plain text +msgid "" +"If you also have encrypted emails stored in the *Thunderbird* Persistence " +"feature:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open *Thunderbird*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In *Thunderbird*, choose <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">Enigmail</span> ▸\n" +" <span class=\"guimenuitem\">Preferences</span></span>.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In the **Enigmail Preferences** dialog, click the **Display Expert\n" +" Settings and Menus**.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Additional tabs appear on top of the dialog.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the **Keyserver** tab." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Specify the following keyserver addresses in the **Specify your " +"keyserver(s)** field:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">vks://keys.openpgp.org, hkps://hkps.pool.sks-keyservers.net, hkps://pgp.mit.edu</p>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Ok**." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" An information dialog appears that starts with *Cannot connect to\n" +" gpg-agent*.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Click **Ok** again to dismiss it.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Close the **Enigmail Preferences** dialog." +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.zh_TW.po b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..401022ef288fd8caedd4725e24d23c8363bd9d10 --- /dev/null +++ b/wiki/src/doc/encryption_and_privacy/openpgp_keyserver.zh_TW.po @@ -0,0 +1,220 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: zh_TW\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=\"Updating your OpenPGP keyserver configuration\"]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "About keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"OpenPGP keyservers are public repositories of OpenPGP public keys that " +"applications use to discover the public keys of contacts." +msgstr "" + +#. type: Plain text +msgid "" +"In Tails 4.1 (December 2019), we changed the default GnuPG configuration to " +"use <https://keys.openpgp.org/>, also available on <https://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org is more trustworthy than other OpenPGP public keyservers " +"because it only references an OpenPGP public key after sending a " +"confirmation email to each email addresses listed in the key." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org does not distribute third-party signatures, which are the " +"signatures on a key that were made by some other key. Third-party " +"signatures are the signatures used to create the OpenPGP Web of Trust." +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " +"your OpenPGP keyring unusable and crash your computer." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" To learn more about keys.openpgp.org, read their\n" +" [About](https://keys.openpgp.org/about) and\n" +" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updating your Tails to use keys.openpgp.org" +msgstr "" + +#. type: Plain text +msgid "" +"If you have GnuPG keys stored in Persistence since before Tails 4.1, you " +"should update your keyserver configuration." +msgstr "" + +#. type: Plain text +msgid "" +"Tails was previously configured to use the SKS keyserver network, which has " +"been subject to [OpenPGP certificate flooding attacks](https://dkg." +"fifthhorseman.net/blog/openpgp-certificate-flooding.html) since June 2019." +msgstr "" + +#. type: Plain text +msgid "" +"Downloading a public key that has been flooded can corrupt your GnuPG " +"keyring, make your keyring extremely slow to operate, and possibly overheat " +"and crash your computer. Only a few keys in the SKS keyserver network have " +"been flooded. Downloading a flooded public key does not compromise the " +"security of your private keys." +msgstr "" + +#. type: Plain text +msgid "To update your keyserver configuration:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *Text Editor*." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Open** and choose **Other Documents...**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Navigate to the *Home* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Right-click (on Mac, click with two fingers) on the list of files in the " +"right pane and choose **Show Hidden Files**." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the *.gnupg* folder." +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *gpg.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *gpg.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/gpg.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Edit the *dirmngr.conf* file in the *.gnupg* folder." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Replace its content with the content of our default *dirmngr.conf* file:\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <https://git.tails.boum.org/tails/plain/config/chroot_local-includes/etc/skel/.gnupg/dirmngr.conf>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Save both files and close the *Text Editor*." +msgstr "" + +#. type: Plain text +msgid "" +"If you also have encrypted emails stored in the *Thunderbird* Persistence " +"feature:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open *Thunderbird*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In *Thunderbird*, choose <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">Enigmail</span> ▸\n" +" <span class=\"guimenuitem\">Preferences</span></span>.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"1. In the **Enigmail Preferences** dialog, click the **Display Expert\n" +" Settings and Menus**.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Additional tabs appear on top of the dialog.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Open the **Keyserver** tab." +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Specify the following keyserver addresses in the **Specify your " +"keyserver(s)** field:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " <p class=\"pre\">vks://keys.openpgp.org, hkps://hkps.pool.sks-keyservers.net, hkps://pgp.mit.edu</p>\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Click **Ok**." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" An information dialog appears that starts with *Cannot connect to\n" +" gpg-agent*.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Click **Ok** again to dismiss it.\n" +msgstr "" + +#. type: Bullet: '1. ' +msgid "Close the **Enigmail Preferences** dialog." +msgstr "" diff --git a/wiki/src/doc/encryption_and_privacy/secure_deletion.fa.po b/wiki/src/doc/encryption_and_privacy/secure_deletion.fa.po index 99fde8b8665d0668c3f1b5a5532b02dc3be86b3c..cc4403c76fbc651a49f8c95e766444b24bfd8279 100644 --- a/wiki/src/doc/encryption_and_privacy/secure_deletion.fa.po +++ b/wiki/src/doc/encryption_and_privacy/secure_deletion.fa.po @@ -8,8 +8,8 @@ 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" -"PO-Revision-Date: 2015-10-14 19:35+0000\n" -"Last-Translator: sprint5 <translation5@451f.org>\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/" "secure_deletion/fa/>\n" "Language: fa\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.4-dev\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -311,10 +311,9 @@ msgid "Securely erasing an entire device\n" msgstr "پاک کردن امن فضای موجود روی دیسک\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<div class=\"caution\">\n" +#, no-wrap msgid "<div class=\"note\">\n" -msgstr "<div class=\"caution\">\n" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/secure_deletion.fr.po b/wiki/src/doc/encryption_and_privacy/secure_deletion.fr.po index 4998c84425ba354b15973be4e262b833f7664936..fc5a010033d05fb7d2a7ed826b65377b122cee06 100644 --- a/wiki/src/doc/encryption_and_privacy/secure_deletion.fr.po +++ b/wiki/src/doc/encryption_and_privacy/secure_deletion.fr.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-24 14:40+0000\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" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -257,15 +257,11 @@ msgstr "" "\">.Trash-1000</span> ou similaire." #. type: Bullet: ' 1. ' -#, fuzzy -#| msgid "" -#| "Right-click in empty space in the right pane and choose <span class=" -#| "\"guimenuitem\">Wipe available diskspace</span>." msgid "" "Right-click (on Mac, click with two fingers) in empty space in the right " "pane and choose <span class=\"guimenuitem\">Wipe available diskspace</span>." msgstr "" -"Effectuez un clic-droit (sur Mac, cliquez avec deux doigts) dans l'espace " +"Effectuez un clic-droit (sur Mac cliquez avec deux doigts) dans l'espace " "vide puis sélectionnez <span class=\"guimenuitem\">Écraser l'espace disque " "disponible</span>." diff --git a/wiki/src/doc/encryption_and_privacy/secure_deletion.id.po b/wiki/src/doc/encryption_and_privacy/secure_deletion.id.po index 818f40db073c29c7f388cf50970269d8418ed536..6aeda93cd0683d3001ccea0d29d84ddd24cb4734 100644 --- a/wiki/src/doc/encryption_and_privacy/secure_deletion.id.po +++ b/wiki/src/doc/encryption_and_privacy/secure_deletion.id.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-10 11:28+0200\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" +"Last-Translator: Caesar <pinkpidgeon@protonmail.com>\n" "Language-Team: \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Plain text #, no-wrap @@ -249,7 +249,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/secure_deletion.tr.po b/wiki/src/doc/encryption_and_privacy/secure_deletion.tr.po index 613907108704b74c00e8dfb35b42c3ae4f97da49..4f984f741aedbc08655142572f44051da7299167 100644 --- a/wiki/src/doc/encryption_and_privacy/secure_deletion.tr.po +++ b/wiki/src/doc/encryption_and_privacy/secure_deletion.tr.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2018-07-02 10:39+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" "Language: tr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -247,9 +247,9 @@ msgid "Securely erasing an entire device\n" msgstr "" #. type: Plain text -#, fuzzy, no-wrap +#, no-wrap msgid "<div class=\"note\">\n" -msgstr "<div class=\"tip\">\n" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.de.po b/wiki/src/doc/encryption_and_privacy/veracrypt.de.po index 15fc03fd9260a904776b478b881ab02e63154e41..bf83025dd24db563a715952e36f3fd5ef01d64af 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.de.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.de.po @@ -6,14 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-08-07 14:35+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-15 21:28+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -55,6 +58,8 @@ msgstr "" #, no-wrap msgid "[[!inline pages=\"doc/encryption_and_privacy/luks_vs_veracrypt.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"doc/encryption_and_privacy/luks_vs_veracrypt.inline.de\" " +"raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.es.po b/wiki/src/doc/encryption_and_privacy/veracrypt.es.po index fcbaa6f348a171088428fa6c1656c4b849053b4c..91a406acea7e95771b512be0b9c399343f3db558 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.es.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.es.po @@ -6,16 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-08-07 14:35+0200\n" -"PO-Revision-Date: 2018-09-17 16:33+0000\n" -"Last-Translator: Weblate Admin <admin@example.com>\n" +"PO-Revision-Date: 2020-01-19 18:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -43,6 +44,8 @@ msgstr "" #, no-wrap msgid "Comparison between <span class=\"application\">LUKS</span> and <span class=\"application\">VeraCrypt</span>\n" msgstr "" +"Comparación entre <span class=\"application\">LUKS</span> y <span class=\"" +"application\">VeraCrypt</span>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.id.po b/wiki/src/doc/encryption_and_privacy/veracrypt.id.po index a5d8f7abb55a59b736e5b24953b9a2c9ca43a2b2..fae63b03fab8276b8732ba8385e0e4548b1dfec0 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.id.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.id.po @@ -6,14 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-08-07 14:35+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-15 21:28+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -23,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.pt.po b/wiki/src/doc/encryption_and_privacy/veracrypt.pt.po index 12222a1a03b2ed73a65ecb63bc4495e310cb69b3..5716f681ad2c03ea1ea15444f9019c2238283da0 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.pt.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.pt.po @@ -6,14 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-08-07 14:35+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap 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 d88449f645d9801f62c1f50609cc7516b6ee064e..e32923c70da3e01c33c7db5f89eca10a02b15390 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 @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -118,7 +118,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/first_steps.id.po b/wiki/src/doc/first_steps.id.po index a48be93de843d8dbf152284a62fbcdd833c8a150..83ac62231f45ce59aae7e8d385d31cc1ed66459e 100644 --- a/wiki/src/doc/first_steps.id.po +++ b/wiki/src/doc/first_steps.id.po @@ -6,14 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2011-11-20 16:40+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-15 21:28+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -24,3 +27,4 @@ msgstr "" #, no-wrap msgid "[[!inline pages=\"doc/first_steps.index\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"doc/first_steps.index.id\" raw=\"yes\" sort=\"age\"]]\n" diff --git a/wiki/src/doc/first_steps.index.es.po b/wiki/src/doc/first_steps.index.es.po index c4d469c4c5b6c60a789cacd40f31191510d7f499..b905218971338d1139101ad6c367436639811801 100644 --- a/wiki/src/doc/first_steps.index.es.po +++ b/wiki/src/doc/first_steps.index.es.po @@ -7,8 +7,8 @@ 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" -"PO-Revision-Date: 2018-01-30 16:52+0000\n" -"Last-Translator: Weblate Admin <admin@example.com>\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/" "first_stepsindex/es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Bullet: ' - ' msgid "[[!traillink Start_Tails|first_steps/start_tails]]" @@ -27,29 +27,7 @@ msgid "[[!traillink Accessibility|first_steps/accessibility]]" msgstr "[[!traillink Accesibilidad|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 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 Change_the_passphrase_of_the_persistent_volume|first_steps/persistence/change_passphrase]]\n" -#| " - [[!traillink Manually_copy_your_persistent_data_to_a_new_USB_stick|first_steps/persistence/copy]]\n" -#| " - [[!traillink Check_the_file_system_of_the_persistent_volume|first_steps/persistence/check_file_system]]\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" -#| " - [[!traillink Upgrading_a_Tails_USB_stick|first_steps/upgrade]]\n" -#| " - Uninstalling Tails or resetting a USB stick\n" -#| " using [[!traillink Linux|first_steps/reset/linux]],\n" -#| " [[!traillink Windows|first_steps/reset/windows]],\n" -#| " or [[!traillink Mac|first_steps/reset/mac]]\n" +#, no-wrap msgid "" " - [[!traillink Startup_options|first_steps/startup_options]]\n" " - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" @@ -67,26 +45,29 @@ msgid "" " - [[!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 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 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 Cambia_la_frase_contraseña_del_volumen_persistente|first_steps/persistence/change_passphrase]]\n" -" - [[!traillink Copia_tus_datos_persistentes_a_un_dispositivo_nuevo|first_steps/persistence/copy]]\n" -" - [[!traillink Revisa_el_sistema_de_ficheros_del_volumen_persistente|first_steps/persistence/check_file_system]]\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" -" - [[!traillink Actualiza_un_USB_stick_con_Tails|first_steps/upgrade]]\n" -" - Desinstalar Tails or resetear una memoria USB\n" -" usando [[!traillink Linux|first_steps/reset/linux]],\n" -" [[!traillink Windows|first_steps/reset/windows]],\n" -" o [[!traillink Mac|first_steps/reset/mac]]\n" #~ msgid "<div class=\"tip\">\n" #~ msgstr "<div class=\"tip\">\n" diff --git a/wiki/src/doc/first_steps.index.fr.po b/wiki/src/doc/first_steps.index.fr.po index 86fd47e2b4b975c4c5e502f83c30d55e79462216..f7fe6fdcc38f99d61a50610722bd7ffc3221b6f6 100644 --- a/wiki/src/doc/first_steps.index.fr.po +++ b/wiki/src/doc/first_steps.index.fr.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-01 18:23+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" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Bullet: ' - ' msgid "[[!traillink Start_Tails|first_steps/start_tails]]" @@ -27,22 +27,7 @@ msgid "[[!traillink Accessibility|first_steps/accessibility]]" 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 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 Backup_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" +#, no-wrap msgid "" " - [[!traillink Startup_options|first_steps/startup_options]]\n" " - [[!traillink Administration_password|first_steps/startup_options/administration_password]]\n" @@ -60,17 +45,27 @@ msgid "" " - [[!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 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 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 Sauvegarder_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/additional_software.es.po b/wiki/src/doc/first_steps/additional_software.es.po index ee4c8cc38324796a242a9067c648e40895ef8425..c837825d05680e1fa38dba50972f6e8fe9edd43b 100644 --- a/wiki/src/doc/first_steps/additional_software.es.po +++ b/wiki/src/doc/first_steps/additional_software.es.po @@ -7,8 +7,8 @@ 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" -"PO-Revision-Date: 2018-04-17 02:06+0000\n" -"Last-Translator: Tails translators <amnesia@boum.org>\n" +"PO-Revision-Date: 2020-01-21 18:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "additional_software/es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,29 +31,35 @@ msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap msgid "Which additional software can I install in Tails?\n" -msgstr "" +msgstr "¿Qué software adicional puedo instalar en Tails?\n" #. type: Plain text msgid "" "Tails includes a [[limited set of applications|doc/about/features]] but you " "can install more software." msgstr "" +"Tails incluye un [[conjunto limitado de programas|doc/about/features]] pero " +"puedes instalar más." #. type: Plain text msgid "" "This software is distributed in packages that are made available from the " "Debian repositories, which are similar to an app store." msgstr "" +"Estos programas se distribuyen en paquetes disponibles en los repositorios " +"de Debian, que son parecidos a un 'app store'." #. type: Plain text msgid "To know which packages are available in Debian:" -msgstr "" +msgstr "Para saber qué paquetes están disponibles en Debian:" #. type: Bullet: '- ' msgid "" "Browse locally with the <span class=\"application\">Synaptic Package " "Manager</span>:" msgstr "" +"Navega localmente con el <span class=\"application\">Synaptic Package " +"Manager</span>:" #. type: Bullet: '1. ' msgid "" @@ -69,6 +75,10 @@ msgid "" "span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgstr "" +"Elige <span class=\"menuchoice\"> <span class=\"guimenu\"" +">Aplicaciones</span> ▸ <span class=\"guisubmenu\">Herramientas del " +"sistema</span> ▸ <span class=\"guimenuitem\">Synaptic Package " +"Manager</span></span>." #. type: Bullet: ' 1. ' msgid "" @@ -393,10 +403,9 @@ msgid "[[!img persistence/persistent-storage.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Title = -#, fuzzy, no-wrap -#| msgid "Installing additional software packages\n" +#, no-wrap msgid "Removing additional software\n" -msgstr "Instalar paquetes de software adicionales\n" +msgstr "Remover software adicional\n" #. type: Plain text msgid "When you installed the package, if you chose:" @@ -494,10 +503,10 @@ msgid " apt clean\n" msgstr " apt clean\n" #. type: Title = -#, fuzzy, no-wrap -#| msgid "Configuring additional APT repositories\n" +#, no-wrap msgid "Configuring additional APT repositories (for advanced users)\n" -msgstr "Configurar repositorios adicionales de APT\n" +msgstr "" +"Configurar repositorios adicionales de APT (para usuarios/as avanzados/as)\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/first_steps/additional_software.fa.po b/wiki/src/doc/first_steps/additional_software.fa.po index 6c0d1dc5186d7e24b2a4bf602a6e2eede6bb4295..d7bfca6ffa3236cf9bea384ee7bed3b08fb9e979 100644 --- a/wiki/src/doc/first_steps/additional_software.fa.po +++ b/wiki/src/doc/first_steps/additional_software.fa.po @@ -8,8 +8,8 @@ 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" -"PO-Revision-Date: 2015-10-14 19:35+0000\n" -"Last-Translator: sprint5 <translation5@451f.org>\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/" "additional_software/fa/>\n" "Language: fa\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.4-dev\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -27,7 +27,7 @@ msgstr "[[!meta title=\"نصب نرمافزارهای اضافی\"]]\n" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/first_steps/additional_software.id.po b/wiki/src/doc/first_steps/additional_software.id.po index 66a7b19a7eafb31ec2f25443aa7fa5e57c02ab6f..e0e13f48b2ccf1f21efa5e6aca7999570a049d29 100644 --- a/wiki/src/doc/first_steps/additional_software.id.po +++ b/wiki/src/doc/first_steps/additional_software.id.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap @@ -268,7 +268,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/first_steps/additional_software.pt.po b/wiki/src/doc/first_steps/additional_software.pt.po index e58d23f8e31821484a1804ac75c2153d6f14a276..63f89f7d1c857cc2a041ba62415b2cb6fe802a64 100644 --- a/wiki/src/doc/first_steps/additional_software.pt.po +++ b/wiki/src/doc/first_steps/additional_software.pt.po @@ -8,8 +8,8 @@ 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" -"PO-Revision-Date: 2018-02-21 08:31+0000\n" -"Last-Translator: Tails translators <tails-l10n@boum.org>\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/" "additional_software/pt/>\n" "Language: pt\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/first_steps/bug_reporting.ar.po b/wiki/src/doc/first_steps/bug_reporting.ar.po index 0d0a3eec9f3b8e31e5a6ccfc446d8158fdb6a5a5..42863b5d4453b76b0bffbaa26cc49fe8871adba7 100644 --- a/wiki/src/doc/first_steps/bug_reporting.ar.po +++ b/wiki/src/doc/first_steps/bug_reporting.ar.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-12-29 23:52+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-07-02 10:49+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -65,7 +65,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "the [list of things that will be fixed or improved in the next release]" -"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" +"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327)" msgstr "" #. type: Plain text @@ -411,3 +411,28 @@ msgid "" "<https://get.debian.org/cdimage/unofficial/non-free/cd-including-firmware/" "weekly-live-builds/amd64/iso-hybrid/>" msgstr "" + +msgid "" +"Debian also distributes images (*Debian live*) that you can install on a\n" +"USB stick, like Tails. To do so, you can follow our instructions to\n" +"[[Install an intermediary Tails|install/linux/usb#install-intermediary]]\n" +"from Linux using <span class=\"application\">GNOME Disks</span>.\n" +msgstr "" +"Debian stellt auch Images (*Debian live*) zur Verfügung, die Sie auf einen " +"USB-Stick, genauso wie Tails, installieren können.\n" +"Um dies zu tun, können Sie unsere Anweisungen zum [[Installieren eines " +"zwischenzeitlichen Tails|install/linux/usb#install-intermediary]]\n" +"von Linux aus unter der Nutzung von <span class=\"application\">GNOME Disks</" +"span> befolgen.\n" + +msgid "[[Starting a Mac on a DVD|install/mac/dvd#start-dvd]]" +msgstr "[[Starten von DVD mit einem Mac|install/mac/dvd#start-dvd]]" + +msgid "the [[!tails_redmine desc=\"list of things to do\"]]" +msgstr "die [[!tails_redmine desc=\"Todo-Liste\"]]" + +msgid "Special cases\n" +msgstr "Spezialfälle\n" + +msgid "See [[Tails_does_not_start]]." +msgstr "Lesen Sie [[Tails startet nicht|Tails_does_not_start]]." diff --git a/wiki/src/doc/first_steps/bug_reporting.ca.po b/wiki/src/doc/first_steps/bug_reporting.ca.po index 7e203d474dd27bfdd9c66cb7d9b7862c9630d311..a5c14dd818c3a6fcfde735ee1b1fdf8ff2e5f430 100644 --- a/wiki/src/doc/first_steps/bug_reporting.ca.po +++ b/wiki/src/doc/first_steps/bug_reporting.ca.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-12-29 23:52+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-07-02 10:49+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -64,7 +64,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "the [list of things that will be fixed or improved in the next release]" -"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" +"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327)" msgstr "" #. type: Plain text @@ -410,3 +410,28 @@ msgid "" "<https://get.debian.org/cdimage/unofficial/non-free/cd-including-firmware/" "weekly-live-builds/amd64/iso-hybrid/>" msgstr "" + +msgid "" +"Debian also distributes images (*Debian live*) that you can install on a\n" +"USB stick, like Tails. To do so, you can follow our instructions to\n" +"[[Install an intermediary Tails|install/linux/usb#install-intermediary]]\n" +"from Linux using <span class=\"application\">GNOME Disks</span>.\n" +msgstr "" +"Debian stellt auch Images (*Debian live*) zur Verfügung, die Sie auf einen " +"USB-Stick, genauso wie Tails, installieren können.\n" +"Um dies zu tun, können Sie unsere Anweisungen zum [[Installieren eines " +"zwischenzeitlichen Tails|install/linux/usb#install-intermediary]]\n" +"von Linux aus unter der Nutzung von <span class=\"application\">GNOME Disks</" +"span> befolgen.\n" + +msgid "[[Starting a Mac on a DVD|install/mac/dvd#start-dvd]]" +msgstr "[[Starten von DVD mit einem Mac|install/mac/dvd#start-dvd]]" + +msgid "the [[!tails_redmine desc=\"list of things to do\"]]" +msgstr "die [[!tails_redmine desc=\"Todo-Liste\"]]" + +msgid "Special cases\n" +msgstr "Spezialfälle\n" + +msgid "See [[Tails_does_not_start]]." +msgstr "Lesen Sie [[Tails startet nicht|Tails_does_not_start]]." diff --git a/wiki/src/doc/first_steps/bug_reporting.de.po b/wiki/src/doc/first_steps/bug_reporting.de.po index 14b468471e13c7b17cc0ef820237de28321fe552..06648f99cb922eda2ab9c162e588734fe4ed2398 100644 --- a/wiki/src/doc/first_steps/bug_reporting.de.po +++ b/wiki/src/doc/first_steps/bug_reporting.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2018-12-29 23:52+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-06-02 11:21+0200\n" "Last-Translator: Tails translators <tails@boum.org>\n" "Language-Team: Tails Language Team <tails@boum.org>\n" @@ -66,9 +66,13 @@ msgid "the [[list of known issues|support/known_issues]]" msgstr "die [[Liste bekannter Probleme|support/known_issues]]" #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "the [list of things that will be fixed or improved in the next release]" +#| "(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" msgid "" "the [list of things that will be fixed or improved in the next release]" -"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" +"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327)" msgstr "" "die [Liste an Dingen, die in der nächsten Version repariert oder verbessert " "werden](https://redmine.tails.boum.org/code/projects/tails/issues?" @@ -321,7 +325,8 @@ msgstr "" #. type: Plain text msgid "" "Note that if you send the report yourself, it might not be anonymous unless " -"you take special care (for example, using Tor with a throw-away email account)." +"you take special care (for example, using Tor with a throw-away email " +"account)." msgstr "" "Falls Sie die Fehlerbeschreibung selber versenden, denken Sie daran, dass " "diese nicht anonym sein wird, solange Sie keine speziellen Vorkehrungen " @@ -503,9 +508,12 @@ msgstr "" #~ "[[Install an intermediary Tails|install/linux/usb#install-intermediary]]\n" #~ "from Linux using <span class=\"application\">GNOME Disks</span>.\n" #~ msgstr "" -#~ "Debian stellt auch Images (*Debian live*) zur Verfügung, die Sie auf einen USB-Stick, genauso wie Tails, installieren können.\n" -#~ "Um dies zu tun, können Sie unsere Anweisungen zum [[Installieren eines zwischenzeitlichen Tails|install/linux/usb#install-intermediary]]\n" -#~ "von Linux aus unter der Nutzung von <span class=\"application\">GNOME Disks</span> befolgen.\n" +#~ "Debian stellt auch Images (*Debian live*) zur Verfügung, die Sie auf " +#~ "einen USB-Stick, genauso wie Tails, installieren können.\n" +#~ "Um dies zu tun, können Sie unsere Anweisungen zum [[Installieren eines " +#~ "zwischenzeitlichen Tails|install/linux/usb#install-intermediary]]\n" +#~ "von Linux aus unter der Nutzung von <span class=\"application\">GNOME " +#~ "Disks</span> befolgen.\n" #~ msgid "[[Starting a Mac on a DVD|install/mac/dvd#start-dvd]]" #~ msgstr "[[Starten von DVD mit einem Mac|install/mac/dvd#start-dvd]]" diff --git a/wiki/src/doc/first_steps/bug_reporting.es.po b/wiki/src/doc/first_steps/bug_reporting.es.po index e41e5900fee19feeb97e624f8f0837f45eeb2d34..f16359c58f64feadabcf569b3b93dfb2e78663fc 100644 --- a/wiki/src/doc/first_steps/bug_reporting.es.po +++ b/wiki/src/doc/first_steps/bug_reporting.es.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-12-29 23:52+0000\n" -"PO-Revision-Date: 2019-08-24 06:21+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+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/" "bug_reporting/es/>\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -68,11 +68,11 @@ msgstr "la [[lista de problemas conocidos|support/known_issues]]" #. type: Bullet: ' - ' msgid "" "the [list of things that will be fixed or improved in the next release]" -"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" +"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327)" msgstr "" "la [lista de cosas que serán arregladas o mejoradas en las próximas " -"ediciones](https://redmine.tails.boum.org/code/projects/tails/issues?" -"query_id=111)" +"versiones](https://redmine.tails.boum.org/code/projects/tails/" +"issues?query_id=327)" #. type: Plain text #, no-wrap @@ -311,7 +311,8 @@ msgstr "" #. type: Plain text msgid "" "Note that if you send the report yourself, it might not be anonymous unless " -"you take special care (for example, using Tor with a throw-away email account)." +"you take special care (for example, using Tor with a throw-away email " +"account)." msgstr "" "Toma en cuenta que si envías un reporte por ti mismo, éste puede no ser " "anónimo a menos que tomes precauciones (p.ej. usando Tor con una cuenta de " @@ -491,7 +492,8 @@ msgstr "" #~ "from Linux using <span class=\"application\">GNOME Disks</span>.\n" #~ msgstr "" #~ "Debian también distribuye imágenes (*Debian live*) que puedes instalar\n" -#~ "en una memoria USB, como Tails. Para hacerlo sigue nuestras instrucciones para\n" +#~ "en una memoria USB, como Tails. Para hacerlo sigue nuestras instrucciones " +#~ "para\n" #~ "[[Instalar un Tails intermedio|install/linux/usb#install-intermediary]]\n" #~ "desde Linux usando <span class=\"application\">GNOME Disks</span>.\n" diff --git a/wiki/src/doc/first_steps/bug_reporting.fa.po b/wiki/src/doc/first_steps/bug_reporting.fa.po index a21436b1c3e1148f2fd6ba58afe3546452bb681c..1fc2928b4b15ff4ea9a63453b6a20e6b416cdcf5 100644 --- a/wiki/src/doc/first_steps/bug_reporting.fa.po +++ b/wiki/src/doc/first_steps/bug_reporting.fa.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-12-29 23:52+0000\n" -"PO-Revision-Date: 2015-10-06 10:27+0000\n" -"Last-Translator: sprint5 <translation5@451f.org>\n" +"POT-Creation-Date: 2019-12-24 10:35+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/" "bug_reporting/fa/>\n" "Language: fa\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.4-dev\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -65,9 +65,13 @@ msgid "the [[list of known issues|support/known_issues]]" msgstr "[[فهرست مشکلات شناختهشده|support/known_issues]]" #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "the [list of things that will be fixed or improved in the next release]" +#| "(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" msgid "" "the [list of things that will be fixed or improved in the next release]" -"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" +"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327)" msgstr "" "[فهرست موارد و ایرادهایی که در نسخهٔ بعدی برطرف شده یا بهبود خواهند یافت]" "(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" @@ -192,7 +196,7 @@ msgid "" "**Summary** a summary of the bug, try to be short, clear and informative" msgstr "" "**خلاصه** خلاصهای از یک ایراد است. تلاش کنید هرچه مختصرتر و مفیدتر توضیح " -"دهید." +"دهید" #. type: Bullet: ' - ' msgid "**Name of the affected software**" @@ -276,7 +280,7 @@ msgstr "یک **پیوند به کلید**، درصورتی که این کلید #. type: Bullet: ' - ' msgid "a **public key block**, if the key is not publicly available" -msgstr "یک **متن کلید عمومی**، درصورتی که کلید در دسترس عموم نباشد." +msgstr "یک **متن کلید عمومی**، درصورتی که کلید در دسترس عموم نباشد" #. type: Title - #, no-wrap @@ -319,7 +323,8 @@ msgstr "" #. type: Plain text msgid "" "Note that if you send the report yourself, it might not be anonymous unless " -"you take special care (for example, using Tor with a throw-away email account)." +"you take special care (for example, using Tor with a throw-away email " +"account)." msgstr "" "به یاد داشته باشید که در صورت ارسال ایراد به صورت شخصی، ممکن است دیگر ناشناس " "نمانید، مگر این که مراقبتهایی ویژه اتخاذ کنید (برای نمونه استفاده از تور و " @@ -392,10 +397,9 @@ msgid "[[Starting a Mac on a USB stick|install/mac/usb#start-tails]]" msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"whisperback\"></a>\n" +#, no-wrap msgid "<a id=\"debian\"></a>\n" -msgstr "<a id=\"whisperback\"></a>\n" +msgstr "<a id=\"debian\"></a>\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/first_steps/bug_reporting.fr.po b/wiki/src/doc/first_steps/bug_reporting.fr.po index d58366c52312092765c64c73dce76470d36d9530..55beaf094f9ae6d4ed36c4e8092ab1aa54443597 100644 --- a/wiki/src/doc/first_steps/bug_reporting.fr.po +++ b/wiki/src/doc/first_steps/bug_reporting.fr.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2018-12-29 23:52+0000\n" -"PO-Revision-Date: 2019-02-03 13:49+0000\n" -"Last-Translator: \n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" +"PO-Revision-Date: 2020-01-07 15:25+0000\n" +"Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.11\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -67,11 +69,11 @@ msgstr "la [[liste des problèmes connus|support/known_issues]]" #. type: Bullet: ' - ' msgid "" "the [list of things that will be fixed or improved in the next release]" -"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" +"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327)" msgstr "" "la [liste des choses qui seront corrigées ou améliorées dans la prochaine " -"version](https://redmine.tails.boum.org/code/projects/tails/issues?" -"query_id=111)" +"version](https://redmine.tails.boum.org/code/projects/tails/" +"issues?query_id=327)" #. type: Plain text #, no-wrap @@ -318,7 +320,8 @@ msgstr "" #. type: Plain text msgid "" "Note that if you send the report yourself, it might not be anonymous unless " -"you take special care (for example, using Tor with a throw-away email account)." +"you take special care (for example, using Tor with a throw-away email " +"account)." msgstr "" "Ayez conscience du fait que si vous envoyez le rapport vous-même, il " "pourrait ne pas être anonyme, à moins que vous ayez pris des précautions " diff --git a/wiki/src/doc/first_steps/bug_reporting.id.po b/wiki/src/doc/first_steps/bug_reporting.id.po index 7131af3c6e2d2d6e465f9daeb52bb55029b39ce6..e80541737b71445c9310afcc0dd3d74160dee5dc 100644 --- a/wiki/src/doc/first_steps/bug_reporting.id.po +++ b/wiki/src/doc/first_steps/bug_reporting.id.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2018-12-29 23:52+0000\n" -"PO-Revision-Date: 2018-06-02 11:21+0200\n" -"Last-Translator: Tails translators <tails@boum.org>\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" +"PO-Revision-Date: 2020-01-15 21:28+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails Language Team <tails@boum.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.6\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -39,7 +41,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Plain text #, no-wrap @@ -62,7 +64,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "the [list of things that will be fixed or improved in the next release]" -"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" +"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327)" msgstr "" #. type: Plain text @@ -261,7 +263,8 @@ msgstr "" #. type: Plain text msgid "" "Note that if you send the report yourself, it might not be anonymous unless " -"you take special care (for example, using Tor with a throw-away email account)." +"you take special care (for example, using Tor with a throw-away email " +"account)." msgstr "" #. type: Plain text @@ -407,3 +410,28 @@ msgid "" "<https://get.debian.org/cdimage/unofficial/non-free/cd-including-firmware/" "weekly-live-builds/amd64/iso-hybrid/>" msgstr "" + +msgid "" +"Debian also distributes images (*Debian live*) that you can install on a\n" +"USB stick, like Tails. To do so, you can follow our instructions to\n" +"[[Install an intermediary Tails|install/linux/usb#install-intermediary]]\n" +"from Linux using <span class=\"application\">GNOME Disks</span>.\n" +msgstr "" +"Debian stellt auch Images (*Debian live*) zur Verfügung, die Sie auf einen " +"USB-Stick, genauso wie Tails, installieren können.\n" +"Um dies zu tun, können Sie unsere Anweisungen zum [[Installieren eines " +"zwischenzeitlichen Tails|install/linux/usb#install-intermediary]]\n" +"von Linux aus unter der Nutzung von <span class=\"application\">GNOME Disks</" +"span> befolgen.\n" + +msgid "[[Starting a Mac on a DVD|install/mac/dvd#start-dvd]]" +msgstr "[[Starten von DVD mit einem Mac|install/mac/dvd#start-dvd]]" + +msgid "the [[!tails_redmine desc=\"list of things to do\"]]" +msgstr "die [[!tails_redmine desc=\"Todo-Liste\"]]" + +msgid "Special cases\n" +msgstr "Spezialfälle\n" + +msgid "See [[Tails_does_not_start]]." +msgstr "Lesen Sie [[Tails startet nicht|Tails_does_not_start]]." diff --git a/wiki/src/doc/first_steps/bug_reporting.it.po b/wiki/src/doc/first_steps/bug_reporting.it.po index 4adfd6f62646c17d9442caa3078772d6240f19c4..8971e0f3e11ed0ec5aa2ebe76e3a741edad2ddd6 100644 --- a/wiki/src/doc/first_steps/bug_reporting.it.po +++ b/wiki/src/doc/first_steps/bug_reporting.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-12-29 23:52+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-06-02 11:21+0200\n" "Last-Translator: \n" "Language-Team: ita <transitails@inventati.org>\n" @@ -68,9 +68,13 @@ msgid "the [[list of known issues|support/known_issues]]" msgstr "la [[lista dei problemi conosciuti|support/known_issues]]" #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "the [list of things that will be fixed or improved in the next release]" +#| "(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" msgid "" "the [list of things that will be fixed or improved in the next release]" -"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" +"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327)" msgstr "" "la [lista delle cose che saranno risolte o migliorate nella prossima release]" "(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" @@ -316,7 +320,8 @@ msgstr "" #. type: Plain text msgid "" "Note that if you send the report yourself, it might not be anonymous unless " -"you take special care (for example, using Tor with a throw-away email account)." +"you take special care (for example, using Tor with a throw-away email " +"account)." msgstr "" "Si noti che quando invii un rapporto, esso potrebbe non essere anonimo a " "meno che tu non prenda delle precauzioni (per esempio usando Tor con un " @@ -505,8 +510,10 @@ msgstr "" #~ "[[Install an intermediary Tails|install/linux/usb#install-intermediary]]\n" #~ "from Linux using <span class=\"application\">GNOME Disks</span>.\n" #~ msgstr "" -#~ "Anche Debian distribuisce immagini (*Debian live*) che potete installare su una\n" -#~ "chiavetta USB, come Tails. Per farlo, potete seguire le nostre istruzioni su\n" +#~ "Anche Debian distribuisce immagini (*Debian live*) che potete installare " +#~ "su una\n" +#~ "chiavetta USB, come Tails. Per farlo, potete seguire le nostre istruzioni " +#~ "su\n" #~ "[[Install an intermediary Tails|install/linux/usb#install-intermediary]]\n" #~ "da Linux utilizzando <span class=\"application\">GNOME Disks</span>\n" diff --git a/wiki/src/doc/first_steps/bug_reporting.mdwn b/wiki/src/doc/first_steps/bug_reporting.mdwn index 2e4d662f5ebc832bcb7861139e72203b5e8d4b90..1999ff37b9fa7cec3442002ef250430f6a692b77 100644 --- a/wiki/src/doc/first_steps/bug_reporting.mdwn +++ b/wiki/src/doc/first_steps/bug_reporting.mdwn @@ -17,7 +17,7 @@ Check if the bug is already known Have a look at: - the [[list of known issues|support/known_issues]] - - the [list of things that will be fixed or improved in the next release](https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111) + - the [list of things that will be fixed or improved in the next release](https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327) <a id="useful_bug_report"></a> diff --git a/wiki/src/doc/first_steps/bug_reporting.pl.po b/wiki/src/doc/first_steps/bug_reporting.pl.po index 3756c4f129f570e5324785354839dce60bb9a7ec..9434498810f3c6fe1b6f89d19efc5bc7d9a343aa 100644 --- a/wiki/src/doc/first_steps/bug_reporting.pl.po +++ b/wiki/src/doc/first_steps/bug_reporting.pl.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-12-29 23:52+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-07-02 10:49+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -65,7 +65,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "the [list of things that will be fixed or improved in the next release]" -"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" +"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327)" msgstr "" #. type: Plain text @@ -264,7 +264,8 @@ msgstr "" #. type: Plain text msgid "" "Note that if you send the report yourself, it might not be anonymous unless " -"you take special care (for example, using Tor with a throw-away email account)." +"you take special care (for example, using Tor with a throw-away email " +"account)." msgstr "" #. type: Plain text @@ -410,3 +411,28 @@ msgid "" "<https://get.debian.org/cdimage/unofficial/non-free/cd-including-firmware/" "weekly-live-builds/amd64/iso-hybrid/>" msgstr "" + +msgid "" +"Debian also distributes images (*Debian live*) that you can install on a\n" +"USB stick, like Tails. To do so, you can follow our instructions to\n" +"[[Install an intermediary Tails|install/linux/usb#install-intermediary]]\n" +"from Linux using <span class=\"application\">GNOME Disks</span>.\n" +msgstr "" +"Debian stellt auch Images (*Debian live*) zur Verfügung, die Sie auf einen " +"USB-Stick, genauso wie Tails, installieren können.\n" +"Um dies zu tun, können Sie unsere Anweisungen zum [[Installieren eines " +"zwischenzeitlichen Tails|install/linux/usb#install-intermediary]]\n" +"von Linux aus unter der Nutzung von <span class=\"application\">GNOME Disks</" +"span> befolgen.\n" + +msgid "[[Starting a Mac on a DVD|install/mac/dvd#start-dvd]]" +msgstr "[[Starten von DVD mit einem Mac|install/mac/dvd#start-dvd]]" + +msgid "the [[!tails_redmine desc=\"list of things to do\"]]" +msgstr "die [[!tails_redmine desc=\"Todo-Liste\"]]" + +msgid "Special cases\n" +msgstr "Spezialfälle\n" + +msgid "See [[Tails_does_not_start]]." +msgstr "Lesen Sie [[Tails startet nicht|Tails_does_not_start]]." diff --git a/wiki/src/doc/first_steps/bug_reporting.pt.po b/wiki/src/doc/first_steps/bug_reporting.pt.po index 2fefbfc33683095920c2905b791d41545197d6b4..f72d08d2a03493c5866993e3c4aa7c9979581509 100644 --- a/wiki/src/doc/first_steps/bug_reporting.pt.po +++ b/wiki/src/doc/first_steps/bug_reporting.pt.po @@ -6,16 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-12-29 23:52+0000\n" -"PO-Revision-Date: 2018-06-02 11:21+0200\n" -"Last-Translator: Tails Developers <amnesia@boum.org>\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2019-12-24 10:35+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" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -65,9 +66,13 @@ msgid "the [[list of known issues|support/known_issues]]" msgstr "na [[lista de problemas conhecidos|support/known_issues]]" #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "the [list of things that will be fixed or improved in the next release]" +#| "(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" msgid "" "the [list of things that will be fixed or improved in the next release]" -"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" +"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327)" msgstr "" "na [lista de coisas que serão consertadas ou melhoradas no próximo " "lançamento](https://redmine.tails.boum.org/code/projects/tails/issues?" @@ -319,7 +324,8 @@ msgstr "" #. type: Plain text msgid "" "Note that if you send the report yourself, it might not be anonymous unless " -"you take special care (for example, using Tor with a throw-away email account)." +"you take special care (for example, using Tor with a throw-away email " +"account)." msgstr "" "Note que se você enviar um relatório você mesmo, ele pode não ser mais " "anônimo a não ser que você tome cuidados especiais (como por exemplo usar o " diff --git a/wiki/src/doc/first_steps/bug_reporting.ru.po b/wiki/src/doc/first_steps/bug_reporting.ru.po index 48731e717b7916e55ca79ca4b95ebd77b8a7a76e..c56e5f6e01848d83a50e8df1698a7512d6620b43 100644 --- a/wiki/src/doc/first_steps/bug_reporting.ru.po +++ b/wiki/src/doc/first_steps/bug_reporting.ru.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-12-29 23:52+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-07-01 15:56+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -65,7 +65,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "the [list of things that will be fixed or improved in the next release]" -"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" +"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327)" msgstr "" #. type: Plain text @@ -264,7 +264,8 @@ msgstr "" #. type: Plain text msgid "" "Note that if you send the report yourself, it might not be anonymous unless " -"you take special care (for example, using Tor with a throw-away email account)." +"you take special care (for example, using Tor with a throw-away email " +"account)." msgstr "" #. type: Plain text @@ -410,3 +411,28 @@ msgid "" "<https://get.debian.org/cdimage/unofficial/non-free/cd-including-firmware/" "weekly-live-builds/amd64/iso-hybrid/>" msgstr "" + +msgid "" +"Debian also distributes images (*Debian live*) that you can install on a\n" +"USB stick, like Tails. To do so, you can follow our instructions to\n" +"[[Install an intermediary Tails|install/linux/usb#install-intermediary]]\n" +"from Linux using <span class=\"application\">GNOME Disks</span>.\n" +msgstr "" +"Debian stellt auch Images (*Debian live*) zur Verfügung, die Sie auf einen " +"USB-Stick, genauso wie Tails, installieren können.\n" +"Um dies zu tun, können Sie unsere Anweisungen zum [[Installieren eines " +"zwischenzeitlichen Tails|install/linux/usb#install-intermediary]]\n" +"von Linux aus unter der Nutzung von <span class=\"application\">GNOME Disks</" +"span> befolgen.\n" + +msgid "[[Starting a Mac on a DVD|install/mac/dvd#start-dvd]]" +msgstr "[[Starten von DVD mit einem Mac|install/mac/dvd#start-dvd]]" + +msgid "the [[!tails_redmine desc=\"list of things to do\"]]" +msgstr "die [[!tails_redmine desc=\"Todo-Liste\"]]" + +msgid "Special cases\n" +msgstr "Spezialfälle\n" + +msgid "See [[Tails_does_not_start]]." +msgstr "Lesen Sie [[Tails startet nicht|Tails_does_not_start]]." diff --git a/wiki/src/doc/first_steps/bug_reporting.sr_Latn.po b/wiki/src/doc/first_steps/bug_reporting.sr_Latn.po index 7628b6943e0f0fa086a3e6b330401a9ce35f2e56..f423f95493717fd765508f953624b6d6ed8a3d59 100644 --- a/wiki/src/doc/first_steps/bug_reporting.sr_Latn.po +++ b/wiki/src/doc/first_steps/bug_reporting.sr_Latn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-12-29 23:52+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+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" @@ -62,7 +62,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "the [list of things that will be fixed or improved in the next release]" -"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" +"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327)" msgstr "" #. type: Plain text @@ -261,7 +261,8 @@ msgstr "" #. type: Plain text msgid "" "Note that if you send the report yourself, it might not be anonymous unless " -"you take special care (for example, using Tor with a throw-away email account)." +"you take special care (for example, using Tor with a throw-away email " +"account)." msgstr "" #. type: Plain text @@ -407,3 +408,28 @@ msgid "" "<https://get.debian.org/cdimage/unofficial/non-free/cd-including-firmware/" "weekly-live-builds/amd64/iso-hybrid/>" msgstr "" + +msgid "" +"Debian also distributes images (*Debian live*) that you can install on a\n" +"USB stick, like Tails. To do so, you can follow our instructions to\n" +"[[Install an intermediary Tails|install/linux/usb#install-intermediary]]\n" +"from Linux using <span class=\"application\">GNOME Disks</span>.\n" +msgstr "" +"Debian stellt auch Images (*Debian live*) zur Verfügung, die Sie auf einen " +"USB-Stick, genauso wie Tails, installieren können.\n" +"Um dies zu tun, können Sie unsere Anweisungen zum [[Installieren eines " +"zwischenzeitlichen Tails|install/linux/usb#install-intermediary]]\n" +"von Linux aus unter der Nutzung von <span class=\"application\">GNOME Disks</" +"span> befolgen.\n" + +msgid "[[Starting a Mac on a DVD|install/mac/dvd#start-dvd]]" +msgstr "[[Starten von DVD mit einem Mac|install/mac/dvd#start-dvd]]" + +msgid "the [[!tails_redmine desc=\"list of things to do\"]]" +msgstr "die [[!tails_redmine desc=\"Todo-Liste\"]]" + +msgid "Special cases\n" +msgstr "Spezialfälle\n" + +msgid "See [[Tails_does_not_start]]." +msgstr "Lesen Sie [[Tails startet nicht|Tails_does_not_start]]." diff --git a/wiki/src/doc/first_steps/bug_reporting.tr.po b/wiki/src/doc/first_steps/bug_reporting.tr.po index d5b28f11f459a2c666c3c29dc770b2249fba1860..af95a5b78ecf7612dc621993af14fa743e38199a 100644 --- a/wiki/src/doc/first_steps/bug_reporting.tr.po +++ b/wiki/src/doc/first_steps/bug_reporting.tr.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-12-29 23:52+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-07-02 10:48+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -64,7 +64,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "the [list of things that will be fixed or improved in the next release]" -"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" +"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327)" msgstr "" #. type: Plain text @@ -263,7 +263,8 @@ msgstr "" #. type: Plain text msgid "" "Note that if you send the report yourself, it might not be anonymous unless " -"you take special care (for example, using Tor with a throw-away email account)." +"you take special care (for example, using Tor with a throw-away email " +"account)." msgstr "" #. type: Plain text @@ -409,3 +410,28 @@ msgid "" "<https://get.debian.org/cdimage/unofficial/non-free/cd-including-firmware/" "weekly-live-builds/amd64/iso-hybrid/>" msgstr "" + +msgid "" +"Debian also distributes images (*Debian live*) that you can install on a\n" +"USB stick, like Tails. To do so, you can follow our instructions to\n" +"[[Install an intermediary Tails|install/linux/usb#install-intermediary]]\n" +"from Linux using <span class=\"application\">GNOME Disks</span>.\n" +msgstr "" +"Debian stellt auch Images (*Debian live*) zur Verfügung, die Sie auf einen " +"USB-Stick, genauso wie Tails, installieren können.\n" +"Um dies zu tun, können Sie unsere Anweisungen zum [[Installieren eines " +"zwischenzeitlichen Tails|install/linux/usb#install-intermediary]]\n" +"von Linux aus unter der Nutzung von <span class=\"application\">GNOME Disks</" +"span> befolgen.\n" + +msgid "[[Starting a Mac on a DVD|install/mac/dvd#start-dvd]]" +msgstr "[[Starten von DVD mit einem Mac|install/mac/dvd#start-dvd]]" + +msgid "the [[!tails_redmine desc=\"list of things to do\"]]" +msgstr "die [[!tails_redmine desc=\"Todo-Liste\"]]" + +msgid "Special cases\n" +msgstr "Spezialfälle\n" + +msgid "See [[Tails_does_not_start]]." +msgstr "Lesen Sie [[Tails startet nicht|Tails_does_not_start]]." diff --git a/wiki/src/doc/first_steps/bug_reporting.zh.po b/wiki/src/doc/first_steps/bug_reporting.zh.po index c109283257b9ee146308dfc535191056e089b1e5..c64ec716511f8d163900b2480337db29cd54e8b5 100644 --- a/wiki/src/doc/first_steps/bug_reporting.zh.po +++ b/wiki/src/doc/first_steps/bug_reporting.zh.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-12-29 23:52+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-07-02 10:49+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -64,7 +64,7 @@ msgstr "[[已知的问题列表|support/known_issues]]" #. type: Bullet: ' - ' msgid "" "the [list of things that will be fixed or improved in the next release]" -"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" +"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327)" msgstr "" #. type: Plain text @@ -263,7 +263,8 @@ msgstr "" #. type: Plain text msgid "" "Note that if you send the report yourself, it might not be anonymous unless " -"you take special care (for example, using Tor with a throw-away email account)." +"you take special care (for example, using Tor with a throw-away email " +"account)." msgstr "" #. type: Plain text @@ -409,3 +410,28 @@ msgid "" "<https://get.debian.org/cdimage/unofficial/non-free/cd-including-firmware/" "weekly-live-builds/amd64/iso-hybrid/>" msgstr "" + +msgid "" +"Debian also distributes images (*Debian live*) that you can install on a\n" +"USB stick, like Tails. To do so, you can follow our instructions to\n" +"[[Install an intermediary Tails|install/linux/usb#install-intermediary]]\n" +"from Linux using <span class=\"application\">GNOME Disks</span>.\n" +msgstr "" +"Debian stellt auch Images (*Debian live*) zur Verfügung, die Sie auf einen " +"USB-Stick, genauso wie Tails, installieren können.\n" +"Um dies zu tun, können Sie unsere Anweisungen zum [[Installieren eines " +"zwischenzeitlichen Tails|install/linux/usb#install-intermediary]]\n" +"von Linux aus unter der Nutzung von <span class=\"application\">GNOME Disks</" +"span> befolgen.\n" + +msgid "[[Starting a Mac on a DVD|install/mac/dvd#start-dvd]]" +msgstr "[[Starten von DVD mit einem Mac|install/mac/dvd#start-dvd]]" + +msgid "the [[!tails_redmine desc=\"list of things to do\"]]" +msgstr "die [[!tails_redmine desc=\"Todo-Liste\"]]" + +msgid "Special cases\n" +msgstr "Spezialfälle\n" + +msgid "See [[Tails_does_not_start]]." +msgstr "Lesen Sie [[Tails startet nicht|Tails_does_not_start]]." diff --git a/wiki/src/doc/first_steps/bug_reporting.zh_TW.po b/wiki/src/doc/first_steps/bug_reporting.zh_TW.po index 65fa36fe74ae2b5f3d8c1a4b935a34f7501bd1b2..7af9c681ae88fb39a1f878cf4b4f4873eccc945d 100644 --- a/wiki/src/doc/first_steps/bug_reporting.zh_TW.po +++ b/wiki/src/doc/first_steps/bug_reporting.zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails l10n\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-12-29 23:52+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-11-02 16:45+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: Tails Chinese translators <jxt@twngo.xyz>\n" @@ -63,7 +63,7 @@ msgstr " [[已知的問題列表|support/known_issues]]" #. type: Bullet: ' - ' msgid "" "the [list of things that will be fixed or improved in the next release]" -"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" +"(https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327)" msgstr "" #. type: Plain text @@ -262,7 +262,8 @@ msgstr "" #. type: Plain text msgid "" "Note that if you send the report yourself, it might not be anonymous unless " -"you take special care (for example, using Tor with a throw-away email account)." +"you take special care (for example, using Tor with a throw-away email " +"account)." msgstr "" #. type: Plain text @@ -408,3 +409,28 @@ msgid "" "<https://get.debian.org/cdimage/unofficial/non-free/cd-including-firmware/" "weekly-live-builds/amd64/iso-hybrid/>" msgstr "" + +msgid "" +"Debian also distributes images (*Debian live*) that you can install on a\n" +"USB stick, like Tails. To do so, you can follow our instructions to\n" +"[[Install an intermediary Tails|install/linux/usb#install-intermediary]]\n" +"from Linux using <span class=\"application\">GNOME Disks</span>.\n" +msgstr "" +"Debian stellt auch Images (*Debian live*) zur Verfügung, die Sie auf einen " +"USB-Stick, genauso wie Tails, installieren können.\n" +"Um dies zu tun, können Sie unsere Anweisungen zum [[Installieren eines " +"zwischenzeitlichen Tails|install/linux/usb#install-intermediary]]\n" +"von Linux aus unter der Nutzung von <span class=\"application\">GNOME Disks</" +"span> befolgen.\n" + +msgid "[[Starting a Mac on a DVD|install/mac/dvd#start-dvd]]" +msgstr "[[Starten von DVD mit einem Mac|install/mac/dvd#start-dvd]]" + +msgid "the [[!tails_redmine desc=\"list of things to do\"]]" +msgstr "die [[!tails_redmine desc=\"Todo-Liste\"]]" + +msgid "Special cases\n" +msgstr "Spezialfälle\n" + +msgid "See [[Tails_does_not_start]]." +msgstr "Lesen Sie [[Tails startet nicht|Tails_does_not_start]]." 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 2b6a9dd63eaf7cffdc30b2b219d40eef7ac4211d..fbf81f708e2c915af1b2a5e442e0ecaa2f760bc1 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 @@ -8,8 +8,8 @@ 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" -"PO-Revision-Date: 2018-07-02 11:43+0000\n" -"Last-Translator: Weblate Admin <admin@example.com>\n" +"PO-Revision-Date: 2020-01-22 15:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Arabic <http://translate.tails.boum.org/projects/tails/" "introduction_to_gnome_and_the_tails_desktop/ar/>\n" "Language: ar\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -518,9 +518,9 @@ msgid "" msgstr "" #. type: Plain text -#, fuzzy, no-wrap +#, no-wrap msgid "<div class=\"caution\">\n" -msgstr "<div class=\"icon\">\n" +msgstr "<div class=\"caution\">\n" #. type: Plain text #, no-wrap 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 ceb448c7abca8d87156ab6945d25f885337b3d4b..f9f4aa6997ba602fda82f7c932958cb36f05f0df 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 @@ -6,15 +6,17 @@ 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" -"PO-Revision-Date: 2018-04-07 13:07+0200\n" -"Last-Translator: Tails translators\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" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.11\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -556,10 +558,9 @@ msgid "These settings will not be saved when you restart Tails." msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"places\"></a>\n" +#, no-wrap msgid "<a id=\"screen-locker\"></a>\n" -msgstr "<a id=\"places\"></a>\n" +msgstr "<a id=\"screen-locker\"></a>\n" #. type: Title ### #, no-wrap 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 d53268d2be039f1048b480400f536ea78541de2a..b49a84a7317a908a505cce3ae313e61ee63f7442 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 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-05-27 14:15+0000\n" -"PO-Revision-Date: 2019-12-01 14:56+0000\n" -"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\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/" "introduction_to_gnome_and_the_tails_desktop/es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -133,8 +133,9 @@ msgid "" msgstr "" "<div class=\"text\">\n" " <span class=\"guimenuitem\">Configuración</span>:\n" -" para cambiar varias configuraciones del sistema, como el teclado, el ratón y el touchpad,\n" -" o elección de pantallas\n" +" para cambiar varias configuraciones del sistema, como el teclado, el ratón " +"y el touchpad,\n" +" y las pantallas, elige\n" " <span class=\"menuchoice\">\n" " <span class=\"guisubmenu\">Herramientas del sistema</span> ▸\n" " <span class=\"guimenuitem\">Configuración</span></span>\n" @@ -147,20 +148,15 @@ msgid "<div class=\"tip\">\n" msgstr "<div class=\"tip\">\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<p>To learn about the many keyboard shortcuts in GNOME, click on\n" -#| "<span class=\"guilabel\">Keyboard</span> from the <span class=\"guilabel\">System\n" -#| "Settings</span> and open the <span class=\"guilabel\">Shortcuts</span>\n" -#| "tab.</p>\n" +#, no-wrap msgid "" "<p>To learn about the many keyboard shortcuts in GNOME,\n" "open the <span class=\"application\">Settings</span> utility and choose\n" "<span class=\"guimenuitem\">Keyboard</span>.</p>\n" msgstr "" -"<p>Para aprender los muchos atajos de teclado de GNOME, haz click en\n" -"<span class=\"guilabel\">Teclado</span> desde <span class=\"guilabel\">System\n" -"Settings</span> y abre la pestaña de <span class=\"guilabel\">Atajos</span>.</p>\n" +"<p>Para aprender los muchos atajos de teclado de GNOME,\n" +"abre <span class=\"application\">Configuración</span> y elige\n" +"<span class=\"guimenuitem\">Teclado</span>.</p>\n" #. type: Plain text #, no-wrap @@ -292,13 +288,7 @@ msgid "[[!img keepassxc.png link=no]]\n" msgstr "[[!img keepassxc.png link=no]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<div class=\"text\">\n" -#| "<strong>KeePassX</strong>: password manager<br/>\n" -#| "[[See the corresponding documentation|encryption_and_privacy/manage_passwords]]\n" -#| "</div>\n" -#| "</div>\n" +#, no-wrap msgid "" "<div class=\"text\">\n" "<strong>KeePassXC</strong>: password manager<br/>\n" @@ -307,25 +297,19 @@ msgid "" "</div>\n" msgstr "" "<div class=\"text\">\n" -"<strong>KeePassX</strong>: password manager<br/>\n" -"[[Lee la documentación correspondiente|encryption_and_privacy/manage_passwords]]\n" +"<strong>KeePassXC</strong>: password manager<br/>\n" +"[[Lee la documentación correspondiente|encryption_and_privacy/" +"manage_passwords]]\n" "</div>\n" "</div>\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!img places.png link=no alt=\"\"]]\n" +#, no-wrap msgid "[[!img files.png link=no alt=\"\"]]\n" -msgstr "[[!img places.png link=no alt=\"\"]]\n" +msgstr "[[!img files.png link=no alt=\"\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<div class=\"text\">\n" -#| "<strong>KeePassX</strong>: password manager<br/>\n" -#| "[[See the corresponding documentation|encryption_and_privacy/manage_passwords]]\n" -#| "</div>\n" -#| "</div>\n" +#, no-wrap msgid "" "<div class=\"text\">\n" "<strong>Files</strong>: the <span class=\"application\">Files</span> manager<br/>\n" @@ -334,8 +318,10 @@ msgid "" "</div>\n" msgstr "" "<div class=\"text\">\n" -"<strong>KeePassX</strong>: password manager<br/>\n" -"[[Lee la documentación correspondiente|encryption_and_privacy/manage_passwords]]\n" +"<strong>Archivos</strong>: el gestor de <span class=\"application\"" +">Archivos</span><br/>\n" +"[[Lee la documentación " +"correspondiente|introduction_to_gnome_and_the_tails_desktop#files]]\n" "</div>\n" "</div>\n" @@ -537,7 +523,7 @@ msgstr "" #. type: Plain text msgid "These settings will not be saved when you restart Tails." -msgstr "" +msgstr "Esta configuración no se guardará cuando reinicies Tails." #. type: Plain text #, no-wrap @@ -581,6 +567,8 @@ msgstr "" #, no-wrap msgid " <p class=\"pre command\">gsettings set org.gnome.desktop.screensaver lock-enabled false</p>\n" msgstr "" +" <p class=\"pre command\">gsettings set org.gnome.desktop.screensaver lock-" +"enabled false</p>\n" #. type: Plain text #, no-wrap @@ -603,7 +591,7 @@ msgstr " [[!img screen-locker.png alt=\"\" link=\"no\"]]\n" #. type: Title ### #, no-wrap msgid "Suspend" -msgstr "" +msgstr "Suspender" #. type: Plain text msgid "" @@ -673,7 +661,7 @@ msgstr "" #. type: Title ### #, no-wrap msgid "Shutdown" -msgstr "" +msgstr "Apagar" #. type: Plain text #, fuzzy @@ -860,7 +848,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " <p class=\"pre command\">ssh://user@example.com/</p>\n" -msgstr "" +msgstr " <p class=\"pre command\">ssh://usuario@ejemplo.com/</p>\n" #. type: Bullet: '1. ' msgid "Click <span class=\"button\">Connect</span>." 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 8d2f971f6bdb442abbb737906d957e74dc3a93fb..dfd90acdf36edc52c03e95a843b23f8b32947f55 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 @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-07-31 00:39+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/" "introduction_to_gnome_and_the_tails_desktop/fa/>\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -149,10 +149,9 @@ msgstr "" "</div>\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<div class=\"icon\">\n" +#, no-wrap msgid "<div class=\"tip\">\n" -msgstr "<div class=\"icon\">\n" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap @@ -168,9 +167,9 @@ msgid "</div>\n" msgstr "</div>\n" #. type: Plain text -#, fuzzy, no-wrap +#, no-wrap msgid "<div class=\"next\">\n" -msgstr "<div class=\"بعدی\">\n" +msgstr "<div class=\"next\">\n" #. type: Plain text msgid "" @@ -633,10 +632,9 @@ msgid "" msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<div class=\"icon\">\n" +#, no-wrap msgid "<div class=\"caution\">\n" -msgstr "<div class=\"icon\">\n" +msgstr "<div class=\"caution\">\n" #. type: Plain text #, no-wrap 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 9728b71a77ea2ec16a10cfaf0e785f7070dedd04..ec09f7f33fce48e6d9a26cc3006e78ca01e3905d 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 @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-24 14:45+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" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -307,13 +307,7 @@ msgid "[[!img files.png link=no alt=\"\"]]\n" msgstr "[[!img files.png link=no alt=\"\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<div class=\"text\">\n" -#| "<strong>KeePassXC</strong>: password manager<br/>\n" -#| "[[See the corresponding documentation|encryption_and_privacy/manage_passwords]]\n" -#| "</div>\n" -#| "</div>\n" +#, no-wrap msgid "" "<div class=\"text\">\n" "<strong>Files</strong>: the <span class=\"application\">Files</span> manager<br/>\n" @@ -322,8 +316,10 @@ msgid "" "</div>\n" msgstr "" "<div class=\"text\">\n" -"<strong>KeePassXC</strong> : gestionnaire de mots de passe<br/>\n" -"[[Voir la documentation correspondante|encryption_and_privacy/manage_passwords]]\n" +"<strong>Fichiers</strong> : le gestionnaire de <span class=\"application\"" +">Fichiers</span><br/>\n" +"[[Voir la documentation " +"correspondante|introduction_to_gnome_and_the_tails_desktop#files]]\n" "</div>\n" "</div>\n" 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 a5b43a987705e103f9f839ad62a615680673dfd0..0c9eb6cc1263074e226687d384ba0c76a234742d 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 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-05-27 14:15+0000\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -33,7 +33,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=3]]\n" -msgstr "" +msgstr "[[!toc levels=3]]\n" #. type: Title = #, no-wrap @@ -123,7 +123,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap 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 2e5ba8d09a13c9e4e4a371b88a0e28203567332e..c7e961627967fad3cf379341dcfc7fd45ab22e1f 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 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-05-27 14:15+0000\n" -"PO-Revision-Date: 2019-10-22 11:03+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" "Language: pt\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -628,10 +628,9 @@ msgid " <p class=\"pre command\">gsettings set org.gnome.desktop.screensaver lo msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "</div>\n" +#, no-wrap msgid " </div>\n" -msgstr "</div>\n" +msgstr " </div>\n" #. type: Bullet: '- ' msgid "" diff --git a/wiki/src/doc/first_steps/persistence.pt.po b/wiki/src/doc/first_steps/persistence.pt.po index e0c922b7de9b14ddf4d96b7594d157d5cd5b220b..718b99d44218c862471f5468b3a2406ea70226fc 100644 --- a/wiki/src/doc/first_steps/persistence.pt.po +++ b/wiki/src/doc/first_steps/persistence.pt.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-22 08:48+0000\n" -"PO-Revision-Date: 2019-10-23 11:30+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-03 14:25+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -24,35 +24,21 @@ msgid "[[!meta title=\"Encrypted persistence\"]]\n" msgstr "[[!meta title=\"Persistência criptografada\"]]\n" #. type: Plain text -#, fuzzy -#| msgid "" -#| "If you start Tails from a USB stick or SD card, you can create a\n" -#| "persistent volume in the free space left on the device by <span\n" -#| "class=\"application\">Tails Installer</span>. The files in the " -#| "persistent\n" -#| "volume are saved encrypted and remain available across separate working " -#| "sessions.\n" msgid "" "If you start Tails from a USB stick, you can create a persistent volume in " "the free space left on the USB stick. The files in the persistent volume " "are saved encrypted and remain available across separate working sessions." msgstr "" -"Se você iniciar o Tails a partir de uma memória USB ou cartão SD, você pode " -"criar um\n" -"volume persistente no espaço livre do dispositivo deixado pelo <span class=" -"\"application\">Tails Installer</span>.\n" -"Os arquivos no volume persistente são salvos de forma criptografada e ficam " -"disponíveis\n" -"ao longo de diferentes sessões de trabalho.\n" +"Ao iniciar o Tails a partir de um pendrive, você poderá criar um volume " +"persistente no espaço livre restante no pendrive. Os arquivos no volume " +"persistente são armazenados com criptografia e podem ser acessados ao longo " +"de diferentes sessões de trabalho." #. type: Plain text -#, fuzzy -#| msgid "" -#| "You can use this persistent volume to store different kinds of files:" msgid "You can use this persistent volume to store any of the following:" msgstr "" -"Você pode usar o volume persistente para guardar diferentes tipos de " -"arquivos:" +"Você pode usar esse volume persistente para armazenar os seguintes tipos de " +"dados:" #. type: Bullet: ' - ' msgid "Personal files" @@ -64,7 +50,7 @@ msgstr "Algumas configurações" #. type: Bullet: ' - ' msgid "Additional software" -msgstr "Softwares adicionais" +msgstr "Programas adicionais" #. type: Bullet: ' - ' msgid "Encryption keys" @@ -114,15 +100,11 @@ msgid "[[Enable & use the persistent volume|first_steps/persistence/use]]" msgstr "[[Habilite e use o volume persistente|first_steps/persistence/use]]" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[Manually copy your persistent data to a new device|first_steps/" -#| "persistence/copy]]" msgid "" "[[Manually copy your persistent data to a new USB stick|first_steps/" "persistence/copy]]" msgstr "" -"[[Copie manualmente seus dados persistentes para um novo dispositivo|" +"[[Copie manualmente seus dados persistentes para um novo pendrive|" "first_steps/persistence/copy]]" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/first_steps/persistence/configure.de.po b/wiki/src/doc/first_steps/persistence/configure.de.po index 1f8957143b0e3192aace671b1cf23b502373ab5b..f3360915ef70ff465d7c43d43743c9b6f4fee1a2 100644 --- a/wiki/src/doc/first_steps/persistence/configure.de.po +++ b/wiki/src/doc/first_steps/persistence/configure.de.po @@ -6,16 +6,17 @@ 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" -"PO-Revision-Date: 2018-05-23 09:48+0200\n" -"Last-Translator: Tails translators\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" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 2.0.7\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -321,10 +322,9 @@ msgid "<a id=\"additional_software\"></a>\n" msgstr "<a id=\"additional_software\"></a>\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!img printer.png link=no]]\n" +#, no-wrap msgid "[[!img additional-software.png link=no]]\n" -msgstr "[[!img printer.png link=no]]\n" +msgstr "[[!img additional-software.png link=no]]\n" #. type: Plain text #, fuzzy, no-wrap diff --git a/wiki/src/doc/first_steps/persistence/configure.es.po b/wiki/src/doc/first_steps/persistence/configure.es.po index 862d65e5f92dd72c515016a43a9fd64e0a53002c..aecdffbb6c1a01374e6554422cb16490ecb031a9 100644 --- a/wiki/src/doc/first_steps/persistence/configure.es.po +++ b/wiki/src/doc/first_steps/persistence/configure.es.po @@ -7,8 +7,8 @@ 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" -"PO-Revision-Date: 2019-12-01 14:56+0000\n" -"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\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/" "first_steps_persistence_configure/es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -44,9 +44,10 @@ msgid "" msgstr "" "Para iniciar el asistente de volumen persistente, selecciona\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" +" <span class=\"guimenu\">Aplicaciones</span> ▸\n" " <span class=\"guisubmenu\">Tails</span> ▸\n" -" <span class=\"guimenuitem\">Configure persistent volume</span></span>.\n" +" <span class=\"guimenuitem\">Configurar el volumen " +"persistente</span></span>.\n" #. type: Plain text #, no-wrap @@ -95,8 +96,9 @@ 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" -"deseleccionar una o algunas características.\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 msgid "" @@ -108,13 +110,14 @@ msgid "" "https://redmine.tails.boum.org/code/projects/tails/issues?query_id=122]] for " "more details." msgstr "" -"Sólo las aplicaciones listadas aquí pueden actualmente hacerse persistentes. " -"Algunas otras aplicaciones han sido consultadas y aceptadas, pero estamos " -"esperando que se implementen, como las extensiones del buscador, [[!" -"tails_ticket 7148 desc=\"wallpaper\"]], [[!tails_ticket 7246 desc=\"default " -"sound card\"]], [[!tails_ticket 5979 desc=\"mouse and touchpad settings\"]], " -"etc. Lee [[los tickets correspondientes|https://labs.riseup.net/code/" -"projects/tails/issues?query_id=122]] para más detalles." +"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." #. type: Plain text #, no-wrap @@ -129,9 +132,10 @@ msgid "" "[[corresponding files|doc/first_steps/persistence/copy#feature_files]]\n" "will remain on the persistent volume.</p>\n" msgstr "" -"<p>Si deseleccionas una característica que estaba activada antes, \n" +"<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 @@ -226,8 +230,9 @@ 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" -"de trabajo en la carpeta<span class=\"filename\">Persistente</span>.\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 #, no-wrap @@ -300,7 +305,7 @@ msgid "" "persistent volume." msgstr "" "Cuando esta funcionalidad está activada, la [[configuración de los " -"dispositivos de red y conexiones|doc/anonymous_internet/networkmanager]] se " +"dispositivos y conexiones de red|doc/anonymous_internet/networkmanager]] se " "guardan en el volumen persistente." #. type: Plain text @@ -541,9 +546,9 @@ msgid "" "All the configuration options are available from the graphical interface. " "There is no need to manually edit or overwrite the configuration files." msgstr "" -"Todas las opciones de configuración están disponibles desde la interfase " -"gráfica. No hay necesidad de editar manualmente o reemplazar los archivos " -"de configuración." +"Todas las opciones de configuración están disponibles desde la interfaz " +"gráfica. No hay necesidad de editar manualmente o reemplazar los archivos de " +"configuración." #. type: Plain text #, no-wrap @@ -561,7 +566,7 @@ msgid "" "<div class=\"text\"><h2>SSH Client</h2></div>\n" "</div>\n" msgstr "" -"<div class=\"text\"><h2>SSH Client</h2></div>\n" +"<div class=\"text\"><h2>Cliente SSH</h2></div>\n" "</div>\n" #. type: Plain text diff --git a/wiki/src/doc/first_steps/persistence/configure.id.po b/wiki/src/doc/first_steps/persistence/configure.id.po index 72fd50c005d905417e9c5c5899e974131692677c..c695fec103c8aba7ac6d5aaeb58094e835f76be7 100644 --- a/wiki/src/doc/first_steps/persistence/configure.id.po +++ b/wiki/src/doc/first_steps/persistence/configure.id.po @@ -8,15 +8,15 @@ 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" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" +"Last-Translator: Caesar <pinkpidgeon@protonmail.com>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=3]]\n" -msgstr "" +msgstr "[[!toc levels=3]]\n" #. type: Plain text #, no-wrap @@ -46,7 +46,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/first_steps/persistence/configure.it.po b/wiki/src/doc/first_steps/persistence/configure.it.po index 21dcd4ec281b079a7b77b5ce8827e15b1781b724..931e95527d4cae00fb7347a4f0f15358362656f8 100644 --- a/wiki/src/doc/first_steps/persistence/configure.it.po +++ b/wiki/src/doc/first_steps/persistence/configure.it.po @@ -6,15 +6,17 @@ 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" -"PO-Revision-Date: 2016-02-25 20:53+0100\n" -"Last-Translator: Zeyev <zeyev@autistici.org>\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" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.7\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -133,9 +135,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"bug\" id=\"deselect\">\n" -msgstr "" -"<div class=\"bug\" id=\"deselect\">\n" -"\n" +msgstr "<div class=\"bug\" id=\"deselect\">\n" #. type: Plain text #, fuzzy, no-wrap @@ -344,7 +344,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"printers\"></a>\n" -msgstr "<a id=\"stampanti\"></a>\n" +msgstr "<a id=\"printers\"></a>\n" #. type: Plain text #, no-wrap @@ -371,27 +371,22 @@ msgstr "" "persistente." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"bitcoin\"></a>\n" +#, no-wrap msgid "<a id=\"thunderbird\"></a>\n" -msgstr "<a id=\"bitcoin\"></a>\n" +msgstr "<a id=\"thunderbird\"></a>\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!img pidgin.png link=no]]\n" +#, no-wrap msgid "[[!img thunderbird.png link=no]]\n" -msgstr "[[!img pidgin.png link=no]]\n" +msgstr "[[!img thunderbird.png link=no]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<div class=\"text\"><h2>Dotfiles</h2></div>\n" -#| "</div>\n" +#, no-wrap msgid "" "<div class=\"text\"><h2>Thunderbird</h2></div>\n" "</div>\n" msgstr "" -"<div class=\"text\"><h2>Dotfiles</h2></div>\n" +"<div class=\"text\"><h2>Thunderbird</h2></div>\n" "</div>\n" #. type: Plain text @@ -701,10 +696,9 @@ msgstr "" "<span class=\"filename\">Home</span>.\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"dotfiles\"></a>\n" +#, no-wrap msgid "<a id=\"displays\"></a>\n" -msgstr "<a id=\"dotfiles\"></a>\n" +msgstr "<a id=\"displays\"></a>\n" #. type: Title ### #, fuzzy, no-wrap diff --git a/wiki/src/doc/first_steps/persistence/copy.ar.po b/wiki/src/doc/first_steps/persistence/copy.ar.po index c27fe0758f3765356eed02037e944c87732c7ae2..cffdab61df35db962a8a5258854d6ccb811b547a 100644 --- a/wiki/src/doc/first_steps/persistence/copy.ar.po +++ b/wiki/src/doc/first_steps/persistence/copy.ar.po @@ -7,8 +7,8 @@ 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" -"PO-Revision-Date: 2019-10-23 11:35+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\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" "Language: ar\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -165,9 +165,9 @@ msgid "Execute the following command to backup your persistent volume:" msgstr "" #. type: Plain text -#, fuzzy, no-wrap +#, no-wrap msgid "<div class=\"caution\">\n" -msgstr "<div class=\"note\">\n" +msgstr "<div class=\"caution\">\n" #. type: Plain text #, no-wrap @@ -190,7 +190,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<p class=\"pre command root\">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" +msgid "<p class=\"pre command root\">rsync -PaSHAXv --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" msgstr "" #. type: Plain text @@ -226,3 +226,343 @@ msgid "" "You can now eject the <span class=\"guilabel\">TailsData</span> volume in the\n" "<span class=\"application\">Files</span> browser and unplug your backup Tails USB stick.\n" msgstr "" + +msgid "" +"These instructions explain how to manually copy your persistent data to a " +"new USB stick. Follow them if you have good reasons to think that your " +"persistence settings are corrupted or if you want to be extra careful." +msgstr "" +"Diese Anweisungen erklären, wie Sie Ihre beständig gespeicherten Daten " +"händisch auf einen neuen USB-Stick kopieren. Befolgen Sie diese, wenn Sie " +"gute Gründe dafür haben, zu glauben, dass Ihre Einstellungen für den " +"beständigen Speicherbereich beschädigt sind oder Sie besonders vorsichtig " +"sein möchten." + +msgid "" +"Install the latest Tails onto a new USB stick using the usual [[installing " +"instructions|install]]. Do not use the Tails USB stick that might be " +"corrupted in the process of installing the new one." +msgstr "" +"Installieren Sie das aktuellste Tails auf einem neuen USB-Stick, indem Sie " +"die [[Installationsanleitung|install]] befolgen. Benutzen Sie beim Vorgang " +"der Installation auf einen neuen USB-Stick nicht den möglicherweise " +"beschädigten." + +msgid "" +"[[Create a persistent volume|configure]] on this new USB stick. We advise " +"you to use a different passphrase to protect this new persistent volume." +msgstr "" +"[[Erstellen Sie einen neuen beständigen Speicherbereich|configure]] auf " +"diesem neuen USB-Stick. Wir empfehlen es Ihnen, eine andere Passphrase zum " +"Schutz dieses neuen beständigen Speicherbereichs zu wählen." + +msgid "" +"Enable again on this new USB stick the persistence features of your choice." +msgstr "" +"Aktivieren Sie auf dem neuen USB-Stick erneut die Funktionen Ihrer Wahl für " +"den beständigen Speicherbereich." + +msgid "Rescue your files from the old Tails USB stick\n" +msgstr "Sichern Sie Ihre Dateien vom alten USB-Stick mit Tails\n" + +msgid "Mount the old persistent volume\n" +msgstr "Hängen Sie den alten beständigen Speicherbereich ein\n" + +msgid "" +"Plug in the old Tails USB stick from which you want to rescue your data." +msgstr "" +"Schließen Sie den alten USB-Stick mit Tails an, von welchem Sie Ihre Daten " +"sichern möchten." + +msgid "" +"In the left pane, click on the USB stick corresponding to the old Tails USB " +"stick." +msgstr "" +"Wählen Sie im linken Fensterbereich den USB-Stick aus, welcher dem alten USB-" +"Stick mit Tails entspricht." + +msgid "" +"In the right pane, click on the partition labeled as <span class=\"guilabel" +"\">LUKS</span>. The name of the partition must be <span class=\"guilabel" +"\">TailsData</span>." +msgstr "" +"Wählen Sie im rechten Fensterbereich die Partition mit dem Typ <span class=" +"\"guilabel\">LUKS</span> aus. Der Name der Partition muss <span class=\"label" +"\">TailsData</span> lauten." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/unlock.png alt=\"Unlock\" " +"class=\"symbolic\" link=\"no\"]]</span> button to unlock the old persistent " +"volume. Enter the passphrase of the old persistent volume and click <span " +"class=\"button\">Unlock</span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/unlock." +"png alt=\"Entsperren\" class=\"symbolic\" link=\"no\"]]</span>, um den alten " +"beständigen Speicherbereich zu entsperren. Geben Sie die Passphrase des " +"alten beständigen Speicherbereichs ein und klicken Sie auf <span class=" +"\"guilabel\">Entsperren</span>." + +msgid "" +"Click on the <span class=\"guilabel\">TailsData</span> partition that " +"appears below the <span class=\"guilabel\">LUKS</span> partition." +msgstr "" +"Wählen Sie die Partition <span class=\"guilabel\">TailsData</span> aus, die " +"unter der <span class=\"guilabel\">LUKS</span>-Partition erscheint." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/media-playback-start.png alt=" +"\"Mount\" class=\"symbolic\" link=\"no\"]]</span> button. The old persistent " +"volume is now mounted as <span class=\"filename\">/media/amnesia/TailsData</" +"span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/media-" +"playback-start.png alt=\"Einhängen\" class=\"symbolic\" link=\"no\"]]</" +"span>. Der alte beständige Speicherbereich ist nun unter <span class=" +"\"filename\">/media/amnesia/TailsData</span> eingehängt." + +msgid "Copy your old files to the new persistent volume\n" +msgstr "" +"Kopieren Sie Ihre alten Dateien in den neuen beständigen Speicherbereich\n" + +msgid "" +"Execute the <span class=\"code\">nautilus</span> command to open the file " +"browser with administration rights." +msgstr "" +"Führen Sie den Befehl <span class=\"code\">nautilus</span> aus, um den " +"Dateimanager mit Administrationsrechten zu öffnen." + +msgid "" +"In the left pane, click on <span class=\"guilabel\">Other Locations</span>." +msgstr "" +"Klicken Sie im linken Fensterbereich auf <span class=\"guilabel\">Andere " +"Orte</span>." + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">media</span> ▸ <span class=\"guilabel" +"\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</span> to open " +"the old persistent volume." +msgstr "" +"Navigieren Sie im rechten Fensterbereich nach <span class=\"guilabel" +"\">Computer</span> ▸ <span class=\"guilabel\">media</span> ▸ <span " +"class=\"guilabel\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</" +"span>, um den alten beständigen Speicherbereich zu öffnen." + +msgid "" +"1. In the titlebar, choose\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"New tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" to open a new tab.\n" +msgstr "" +"1. Wählen Sie in der Titelleiste\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menü\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"Neuer Tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" um einen neuen Reiter zu öffnen.\n" + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">live</span> ▸ <span class=\"guilabel" +"\">persistence</span> ▸ <span class=\"guilabel\">TailsData_unlocked</" +"span> to open the new persistent volume." +msgstr "" +"Navigieren Sie in dem rechten Reiter nach <span class=\"guilabel\">Computer</" +"span> ▸ <span class=\"guilabel\">live</span> ▸ <span class=" +"\"guilabel\">persistence</span> ▸ <span class=\"guilabel" +"\">TailsData_unlocked</span>, um den neuen beständigen Speicherbereich zu " +"öffnen." + +msgid "" +"To copy a folder containing persistent data from the old persistent volume " +"to the new one, drag and drop that folder from the <span class=\"guilabel" +"\">TailsData</span> onto the <span class=\"guilabel\">TailsData_unlocked</" +"span> tab." +msgstr "" +"Um einen Ordner, der beständig gespeicherte Daten enthält, vom alten " +"beständigen Speicherbereich in den neuen zu kopieren, ziehen Sie diesen " +"Ordner aus dem Reiter <span class=\"guilabel\">TailsData</span> und lassen " +"Sie ihn auf dem Reiter <span class=\"guilabel\">TailsData_unlocked</span> " +"los." + +msgid "" +" When copying a folder, select the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Merge</span> to apply to all subfolders.\n" +" Then you might have to select again the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Replace</span> to apply to all files.\n" +msgstr "" +" Wählen Sie beim Kopieren von Ordnern die Option\n" +" <span class=\"guilabel\"> Diese Aktion auf alle Dateien anwenden</span> " +"und klicken\n" +" Sie auf <span class=\"button\">Zusammenführen</span>, um es auf alle " +"Unterordner anzuwenden.\n" +" Anschließend könnte es notwendig sein, die Option\n" +" <span class=\"guilabel\"> Aktion auf alle Dateien anwenden</span> " +"auszuwählen\n" +" und auf <span class=\"button\">Ersetzen</span> zu klicken, um sie auf " +"alle Dateien anzuwenden.\n" + +msgid " Do not copy a folder if you do not know what it is used for.\n" +msgstr "" +" Kopieren Sie einen Ordner nicht, sofern Sie nicht wissen, wofür er " +"verwendet wird.\n" + +msgid " <a id=\"feature_files\"></a>\n" +msgstr " <a id=\"feature_files\"></a>\n" + +#, fuzzy +#| msgid "" +#| "The <span class=\"filename\">apt</span> folder corresponds to the <span " +#| "class=\"guilabel\">[[APT Packages|configure#apt_packages]]</span> and " +#| "<span class=\"guilabel\">[[APT Lists|configure#apt_lists]]</span> " +#| "persistence features. But it requires administration rights to be " +#| "imported and this goes beyond the scope of these instructions. Note that " +#| "this folder does not contain personal data." +msgid "" +"The <span class=\"filename\">apt</span> folder and the <span class=\"filename" +"\">live-additional-software.conf</span> file correspond to the <span class=" +"\"guilabel\">[[Additional Software|configure#additional_software]]</span> " +"persistence feature. But they require administration rights to be imported " +"and this goes beyond the scope of these instructions. Note that this folder " +"does not contain personal data." +msgstr "" +"Der <span class=\"filename\">apt</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[APT Pakete|configure#apt_packages]]</span> und <span class=" +"\"guilabel\">[[APT Listen|configure#apt_lists]]</span> Funktion des " +"beständigen Speicherbereichs. Aber sie benötigen Administrationsrechte, um " +"importiert zu werden und dies sprengt den Rahmen dieser Dokumentation. " +"Beachten Sie, dass dieser Ordner keine persönlichen Daten enthält." + +msgid "" +"The <span class=\"filename\">bookmarks</span> folder corresponds to the " +"<span class=\"guilabel\">[[Browser Bookmarks|configure#browser_bookmarks]]</" +"span> persistence feature." +msgstr "" +"Der <span class=\"filename\">bookmarks</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Lesezeichen " +"des Browsers|configure#browser_bookmarks]]</span>." + +msgid "" +"The <span class=\"filename\">cups-configuration</span> folder corresponds to " +"the <span class=\"guilabel\">[[Printers|configure#printers]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">cups-configuration</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Drucker|configure#printers]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">dotfiles</span> folder corresponds to the <span " +"class=\"guilabel\">[[Dotfiles|configure#dotfiles]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">dotfiles</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Versteckte " +"Konfigurationsdateien|configure#dotfiles]]</span>." + +msgid "" +"The <span class=\"filename\">electrum</span> folder corresponds to the <span " +"class=\"guilabel\">[[Bitcoin Client|configure#bitcoin]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">electrum</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Bitcoin-Client|configure#bitcoin]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">gnupg</span> folder corresponds to the <span " +"class=\"guilabel\">[[GnuPG|configure#gnupg]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">gnupg</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[GnuPG|configure#gnupg]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">thunderbird</span> folder corresponds to the " +"<span class=\"guilabel\">[[Thunderbird|configure#thunderbird]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">thunderbird</span>-Ordner entspricht der " +"Funktion des beständigen Speicherbereichs für <span class=\"guilabel" +"\">[[Thunderbird|configure#thunderbird]]</span>." + +msgid "" +"The <span class=\"filename\">nm-connections</span> folder corresponds to the " +"<span class=\"guilabel\">[[Network Connections|" +"configure#network_connections]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">nm-connections</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Netzwerkverbindungen|" +"configure#network_connections]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">openssh-client</span> folder corresponds to the " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">openssh-client</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> Funktion " +"des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">Persistent</span> folder corresponds to the " +"<span class=\"guilabel\">[[Personal Data|configure#personal_data]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">Persistent</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Persönliche Dateien|configure#personal_data]]</span> " +"Funktion des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">pidgin</span> folder corresponds to the <span " +"class=\"guilabel\">[[Pidgin|configure#pidgin]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">pidgin</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[Pidgin|configure#pidgin]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "After doing the copy, close the file browser." +msgstr "Schließen Sie nach dem Durchführen der Kopie den Dateimanager." + +msgid "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" +msgstr "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" + +msgid "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" +msgstr "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" + +msgid "" +"The <span class=\"filename\">gnome-keyring</span> folder corresponds to the " +"<span class=\"guilabel\">[[GNOME Keyring|configure#gnome_keyring]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">gnome-keyring</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[GNOME Schlüsselbund|configure#gnome_keyring]]</" +"span> Funktion des beständigen Speicherbereichs." + +msgid "" +"In the file browser, navigate to <span class=\"filename\">/media/amnesia/" +"TailsData</span> to open the old persistent volume." +msgstr "" +"Navigieren Sie im Dateimanager zu <span class=\"filename\">/media/amnesia/" +"TailsData</span>, um die alte beständige Speicherpartition zu öffnen." diff --git a/wiki/src/doc/first_steps/persistence/copy.ca.po b/wiki/src/doc/first_steps/persistence/copy.ca.po index 44a445e78b77f405182d6bde2b0e4a8409ec178e..2de6be17913dcb771bd9635063450dcd2e729109 100644 --- a/wiki/src/doc/first_steps/persistence/copy.ca.po +++ b/wiki/src/doc/first_steps/persistence/copy.ca.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-01-05 19:09+0000\n" "PO-Revision-Date: 2019-10-22 09:08+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -189,7 +189,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<p class=\"pre command root\">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" +msgid "<p class=\"pre command root\">rsync -PaSHAXv --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" msgstr "" #. type: Plain text @@ -225,3 +225,343 @@ msgid "" "You can now eject the <span class=\"guilabel\">TailsData</span> volume in the\n" "<span class=\"application\">Files</span> browser and unplug your backup Tails USB stick.\n" msgstr "" + +msgid "" +"These instructions explain how to manually copy your persistent data to a " +"new USB stick. Follow them if you have good reasons to think that your " +"persistence settings are corrupted or if you want to be extra careful." +msgstr "" +"Diese Anweisungen erklären, wie Sie Ihre beständig gespeicherten Daten " +"händisch auf einen neuen USB-Stick kopieren. Befolgen Sie diese, wenn Sie " +"gute Gründe dafür haben, zu glauben, dass Ihre Einstellungen für den " +"beständigen Speicherbereich beschädigt sind oder Sie besonders vorsichtig " +"sein möchten." + +msgid "" +"Install the latest Tails onto a new USB stick using the usual [[installing " +"instructions|install]]. Do not use the Tails USB stick that might be " +"corrupted in the process of installing the new one." +msgstr "" +"Installieren Sie das aktuellste Tails auf einem neuen USB-Stick, indem Sie " +"die [[Installationsanleitung|install]] befolgen. Benutzen Sie beim Vorgang " +"der Installation auf einen neuen USB-Stick nicht den möglicherweise " +"beschädigten." + +msgid "" +"[[Create a persistent volume|configure]] on this new USB stick. We advise " +"you to use a different passphrase to protect this new persistent volume." +msgstr "" +"[[Erstellen Sie einen neuen beständigen Speicherbereich|configure]] auf " +"diesem neuen USB-Stick. Wir empfehlen es Ihnen, eine andere Passphrase zum " +"Schutz dieses neuen beständigen Speicherbereichs zu wählen." + +msgid "" +"Enable again on this new USB stick the persistence features of your choice." +msgstr "" +"Aktivieren Sie auf dem neuen USB-Stick erneut die Funktionen Ihrer Wahl für " +"den beständigen Speicherbereich." + +msgid "Rescue your files from the old Tails USB stick\n" +msgstr "Sichern Sie Ihre Dateien vom alten USB-Stick mit Tails\n" + +msgid "Mount the old persistent volume\n" +msgstr "Hängen Sie den alten beständigen Speicherbereich ein\n" + +msgid "" +"Plug in the old Tails USB stick from which you want to rescue your data." +msgstr "" +"Schließen Sie den alten USB-Stick mit Tails an, von welchem Sie Ihre Daten " +"sichern möchten." + +msgid "" +"In the left pane, click on the USB stick corresponding to the old Tails USB " +"stick." +msgstr "" +"Wählen Sie im linken Fensterbereich den USB-Stick aus, welcher dem alten USB-" +"Stick mit Tails entspricht." + +msgid "" +"In the right pane, click on the partition labeled as <span class=\"guilabel" +"\">LUKS</span>. The name of the partition must be <span class=\"guilabel" +"\">TailsData</span>." +msgstr "" +"Wählen Sie im rechten Fensterbereich die Partition mit dem Typ <span class=" +"\"guilabel\">LUKS</span> aus. Der Name der Partition muss <span class=\"label" +"\">TailsData</span> lauten." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/unlock.png alt=\"Unlock\" " +"class=\"symbolic\" link=\"no\"]]</span> button to unlock the old persistent " +"volume. Enter the passphrase of the old persistent volume and click <span " +"class=\"button\">Unlock</span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/unlock." +"png alt=\"Entsperren\" class=\"symbolic\" link=\"no\"]]</span>, um den alten " +"beständigen Speicherbereich zu entsperren. Geben Sie die Passphrase des " +"alten beständigen Speicherbereichs ein und klicken Sie auf <span class=" +"\"guilabel\">Entsperren</span>." + +msgid "" +"Click on the <span class=\"guilabel\">TailsData</span> partition that " +"appears below the <span class=\"guilabel\">LUKS</span> partition." +msgstr "" +"Wählen Sie die Partition <span class=\"guilabel\">TailsData</span> aus, die " +"unter der <span class=\"guilabel\">LUKS</span>-Partition erscheint." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/media-playback-start.png alt=" +"\"Mount\" class=\"symbolic\" link=\"no\"]]</span> button. The old persistent " +"volume is now mounted as <span class=\"filename\">/media/amnesia/TailsData</" +"span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/media-" +"playback-start.png alt=\"Einhängen\" class=\"symbolic\" link=\"no\"]]</" +"span>. Der alte beständige Speicherbereich ist nun unter <span class=" +"\"filename\">/media/amnesia/TailsData</span> eingehängt." + +msgid "Copy your old files to the new persistent volume\n" +msgstr "" +"Kopieren Sie Ihre alten Dateien in den neuen beständigen Speicherbereich\n" + +msgid "" +"Execute the <span class=\"code\">nautilus</span> command to open the file " +"browser with administration rights." +msgstr "" +"Führen Sie den Befehl <span class=\"code\">nautilus</span> aus, um den " +"Dateimanager mit Administrationsrechten zu öffnen." + +msgid "" +"In the left pane, click on <span class=\"guilabel\">Other Locations</span>." +msgstr "" +"Klicken Sie im linken Fensterbereich auf <span class=\"guilabel\">Andere " +"Orte</span>." + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">media</span> ▸ <span class=\"guilabel" +"\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</span> to open " +"the old persistent volume." +msgstr "" +"Navigieren Sie im rechten Fensterbereich nach <span class=\"guilabel" +"\">Computer</span> ▸ <span class=\"guilabel\">media</span> ▸ <span " +"class=\"guilabel\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</" +"span>, um den alten beständigen Speicherbereich zu öffnen." + +msgid "" +"1. In the titlebar, choose\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"New tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" to open a new tab.\n" +msgstr "" +"1. Wählen Sie in der Titelleiste\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menü\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"Neuer Tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" um einen neuen Reiter zu öffnen.\n" + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">live</span> ▸ <span class=\"guilabel" +"\">persistence</span> ▸ <span class=\"guilabel\">TailsData_unlocked</" +"span> to open the new persistent volume." +msgstr "" +"Navigieren Sie in dem rechten Reiter nach <span class=\"guilabel\">Computer</" +"span> ▸ <span class=\"guilabel\">live</span> ▸ <span class=" +"\"guilabel\">persistence</span> ▸ <span class=\"guilabel" +"\">TailsData_unlocked</span>, um den neuen beständigen Speicherbereich zu " +"öffnen." + +msgid "" +"To copy a folder containing persistent data from the old persistent volume " +"to the new one, drag and drop that folder from the <span class=\"guilabel" +"\">TailsData</span> onto the <span class=\"guilabel\">TailsData_unlocked</" +"span> tab." +msgstr "" +"Um einen Ordner, der beständig gespeicherte Daten enthält, vom alten " +"beständigen Speicherbereich in den neuen zu kopieren, ziehen Sie diesen " +"Ordner aus dem Reiter <span class=\"guilabel\">TailsData</span> und lassen " +"Sie ihn auf dem Reiter <span class=\"guilabel\">TailsData_unlocked</span> " +"los." + +msgid "" +" When copying a folder, select the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Merge</span> to apply to all subfolders.\n" +" Then you might have to select again the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Replace</span> to apply to all files.\n" +msgstr "" +" Wählen Sie beim Kopieren von Ordnern die Option\n" +" <span class=\"guilabel\"> Diese Aktion auf alle Dateien anwenden</span> " +"und klicken\n" +" Sie auf <span class=\"button\">Zusammenführen</span>, um es auf alle " +"Unterordner anzuwenden.\n" +" Anschließend könnte es notwendig sein, die Option\n" +" <span class=\"guilabel\"> Aktion auf alle Dateien anwenden</span> " +"auszuwählen\n" +" und auf <span class=\"button\">Ersetzen</span> zu klicken, um sie auf " +"alle Dateien anzuwenden.\n" + +msgid " Do not copy a folder if you do not know what it is used for.\n" +msgstr "" +" Kopieren Sie einen Ordner nicht, sofern Sie nicht wissen, wofür er " +"verwendet wird.\n" + +msgid " <a id=\"feature_files\"></a>\n" +msgstr " <a id=\"feature_files\"></a>\n" + +#, fuzzy +#| msgid "" +#| "The <span class=\"filename\">apt</span> folder corresponds to the <span " +#| "class=\"guilabel\">[[APT Packages|configure#apt_packages]]</span> and " +#| "<span class=\"guilabel\">[[APT Lists|configure#apt_lists]]</span> " +#| "persistence features. But it requires administration rights to be " +#| "imported and this goes beyond the scope of these instructions. Note that " +#| "this folder does not contain personal data." +msgid "" +"The <span class=\"filename\">apt</span> folder and the <span class=\"filename" +"\">live-additional-software.conf</span> file correspond to the <span class=" +"\"guilabel\">[[Additional Software|configure#additional_software]]</span> " +"persistence feature. But they require administration rights to be imported " +"and this goes beyond the scope of these instructions. Note that this folder " +"does not contain personal data." +msgstr "" +"Der <span class=\"filename\">apt</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[APT Pakete|configure#apt_packages]]</span> und <span class=" +"\"guilabel\">[[APT Listen|configure#apt_lists]]</span> Funktion des " +"beständigen Speicherbereichs. Aber sie benötigen Administrationsrechte, um " +"importiert zu werden und dies sprengt den Rahmen dieser Dokumentation. " +"Beachten Sie, dass dieser Ordner keine persönlichen Daten enthält." + +msgid "" +"The <span class=\"filename\">bookmarks</span> folder corresponds to the " +"<span class=\"guilabel\">[[Browser Bookmarks|configure#browser_bookmarks]]</" +"span> persistence feature." +msgstr "" +"Der <span class=\"filename\">bookmarks</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Lesezeichen " +"des Browsers|configure#browser_bookmarks]]</span>." + +msgid "" +"The <span class=\"filename\">cups-configuration</span> folder corresponds to " +"the <span class=\"guilabel\">[[Printers|configure#printers]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">cups-configuration</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Drucker|configure#printers]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">dotfiles</span> folder corresponds to the <span " +"class=\"guilabel\">[[Dotfiles|configure#dotfiles]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">dotfiles</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Versteckte " +"Konfigurationsdateien|configure#dotfiles]]</span>." + +msgid "" +"The <span class=\"filename\">electrum</span> folder corresponds to the <span " +"class=\"guilabel\">[[Bitcoin Client|configure#bitcoin]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">electrum</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Bitcoin-Client|configure#bitcoin]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">gnupg</span> folder corresponds to the <span " +"class=\"guilabel\">[[GnuPG|configure#gnupg]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">gnupg</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[GnuPG|configure#gnupg]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">thunderbird</span> folder corresponds to the " +"<span class=\"guilabel\">[[Thunderbird|configure#thunderbird]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">thunderbird</span>-Ordner entspricht der " +"Funktion des beständigen Speicherbereichs für <span class=\"guilabel" +"\">[[Thunderbird|configure#thunderbird]]</span>." + +msgid "" +"The <span class=\"filename\">nm-connections</span> folder corresponds to the " +"<span class=\"guilabel\">[[Network Connections|" +"configure#network_connections]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">nm-connections</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Netzwerkverbindungen|" +"configure#network_connections]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">openssh-client</span> folder corresponds to the " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">openssh-client</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> Funktion " +"des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">Persistent</span> folder corresponds to the " +"<span class=\"guilabel\">[[Personal Data|configure#personal_data]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">Persistent</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Persönliche Dateien|configure#personal_data]]</span> " +"Funktion des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">pidgin</span> folder corresponds to the <span " +"class=\"guilabel\">[[Pidgin|configure#pidgin]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">pidgin</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[Pidgin|configure#pidgin]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "After doing the copy, close the file browser." +msgstr "Schließen Sie nach dem Durchführen der Kopie den Dateimanager." + +msgid "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" +msgstr "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" + +msgid "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" +msgstr "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" + +msgid "" +"The <span class=\"filename\">gnome-keyring</span> folder corresponds to the " +"<span class=\"guilabel\">[[GNOME Keyring|configure#gnome_keyring]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">gnome-keyring</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[GNOME Schlüsselbund|configure#gnome_keyring]]</" +"span> Funktion des beständigen Speicherbereichs." + +msgid "" +"In the file browser, navigate to <span class=\"filename\">/media/amnesia/" +"TailsData</span> to open the old persistent volume." +msgstr "" +"Navigieren Sie im Dateimanager zu <span class=\"filename\">/media/amnesia/" +"TailsData</span>, um die alte beständige Speicherpartition zu öffnen." diff --git a/wiki/src/doc/first_steps/persistence/copy.de.po b/wiki/src/doc/first_steps/persistence/copy.de.po index fb1a5069efbcac0a076604eee0a03d67ac46133a..cc345b06eeaf7b46ed1431258a64ae4f96df19c1 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: 2019-11-21 09:32+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" "PO-Revision-Date: 2019-10-22 08:51+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -228,7 +228,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<p class=\"pre command root\">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" +msgid "<p class=\"pre command root\">rsync -PaSHAXv --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/first_steps/persistence/copy.es.po b/wiki/src/doc/first_steps/persistence/copy.es.po index 0ac78f1572912d173f42792cbc490345232263d5..35a84e571db40f0a7c0d9a12e61ce73f80cd3a46 100644 --- a/wiki/src/doc/first_steps/persistence/copy.es.po +++ b/wiki/src/doc/first_steps/persistence/copy.es.po @@ -6,9 +6,9 @@ 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" -"PO-Revision-Date: 2019-11-22 22:56+0000\n" -"Last-Translator: cacukin <cacukin@cryptolab.net>\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" +"PO-Revision-Date: 2020-01-19 18:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "first_steps_persistence_copy/es/>\n" "Language: es\n" @@ -16,25 +16,26 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!meta title=\"Manually copying your persistent data to a new USB stick\"]]\n" +#, no-wrap msgid "[[!meta title=\"Make a backup of your persistent volume\"]]\n" -msgstr "[[!meta title=\"Copiar manualmente los datos de persistencia a una nueva memoria USB\"]]\n" +msgstr "" +"[[!meta title=\"Hacer una copia de respaldo de tu volumen persistente\"]]\n" #. type: Plain text msgid "" "These instructions explain how to back up your persistent volume to another " "Tails USB stick." msgstr "" +"Estas instrucciones explican cómo hacer una copia de respaldo de tu volumen " +"persistente a otra memoria USB de Tails." #. type: Title = -#, fuzzy, no-wrap -#| msgid "Create a new USB stick\n" +#, no-wrap msgid "Create a new Tails to store your backup\n" -msgstr "Crear una nueva memoria USB\n" +msgstr "Crear un nuevo Tails para almacenar tu copia de respaldo\n" #. type: Plain text msgid "" @@ -42,6 +43,9 @@ msgid "" "your backup. This way, if your Tails is lost or damaged, you will be able to " "replace it immediately with your backup Tails." msgstr "" +"En estas instrucciones, recomendamos que crees otro Tails para almacenar tu " +"copia de respaldo. De esta manera, si tu Tails se pierde o se daña, serás " +"capaz de reemplazarlo inmediatamente con tu copia de respaldo de Tails." #. type: Bullet: '1. ' msgid "" @@ -49,6 +53,9 @@ msgid "" "Tails. For detailed instructions, see how to [[install Tails from another " "Tails|install/clone#install-tails]]." msgstr "" +"Instala Tails en una nueva memoria USB en la cual quieres crear tu copia de " +"respaldo. Para instrucciones más detalladas, mira cómo [[instalar Tails " +"desde otro Tails|install/clone#install-tails]]." #. type: Plain text #, no-wrap @@ -56,6 +63,8 @@ msgid "" " Make sure that this new USB stick is at least as large as your\n" " current Tails USB stick.\n" msgstr "" +" Asegurate que la nueva memoria USB es al menos tan grande como\n" +" tu actual memoria USB de Tails.\n" #. type: Bullet: '1. ' msgid "" @@ -65,7 +74,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "Shutdown and unplug your current Tails USB stick." -msgstr "" +msgstr "Apaga la computadora y desconecta tu memoria USB de Tails actual." #. type: Bullet: '1. ' msgid "" @@ -73,6 +82,9 @@ msgid "" "detailed instructions, see how to [[create & configure the persistent volume|" "doc/first_steps/persistence/configure]]." msgstr "" +"Reinicia en tu copia de respaldo de Tails y crea un volumen persistente en " +"ella. Para instrucciones más detalladas, mira cómo [[crear y configurar el " +"volumen persistente|doc/first_steps/persistence/configure]]." #. type: Plain text #, no-wrap @@ -219,7 +231,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<p class=\"pre command root\">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" +msgid "<p class=\"pre command root\">rsync -PaSHAXv --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/first_steps/persistence/copy.fa.po b/wiki/src/doc/first_steps/persistence/copy.fa.po index 1bd253f598955615abc97d88a35d04540e8f747e..ebe0d6070da231595c331faadaf85e96b889dd4e 100644 --- a/wiki/src/doc/first_steps/persistence/copy.fa.po +++ b/wiki/src/doc/first_steps/persistence/copy.fa.po @@ -6,9 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-21 09:32+0000\n" -"PO-Revision-Date: 2015-10-10 13:50+0000\n" -"Last-Translator: sprint5 <translation5@451f.org>\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2020-01-05 19:09+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/" "first_steps_persistence_copy/fa/>\n" "Language: fa\n" @@ -16,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.4-dev\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, fuzzy, no-wrap @@ -205,7 +206,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"caution\">\n" -msgstr "" +msgstr "<div class=\"caution\">\n" #. type: Plain text #, no-wrap @@ -219,7 +220,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "</div>\n" -msgstr "" +msgstr "</div>\n" #. type: Plain text #, no-wrap @@ -228,7 +229,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<p class=\"pre command root\">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" +msgid "<p class=\"pre command root\">rsync -PaSHAXv --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" msgstr "" #. type: Plain text @@ -249,7 +250,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/first_steps/persistence/copy.fr.po b/wiki/src/doc/first_steps/persistence/copy.fr.po index 6fc9b26fb266781985e134c255062bc12651be0c..ec98b80605309bb767cfca9bcbbc464d0457a315 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: 2019-11-21 09:32+0000\n" -"PO-Revision-Date: 2019-11-16 15:45+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+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" @@ -16,13 +16,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!meta title=\"Backup your persistent volume\"]]\n" +#, no-wrap msgid "[[!meta title=\"Make a backup of your persistent volume\"]]\n" -msgstr "[[!meta title=\"Sauvegarder votre volume persistant\"]]\n" +msgstr "[[!meta title=\"Créer une sauvegarde de votre volume persistant\"]]\n" #. type: Plain text msgid "" @@ -219,10 +218,9 @@ msgstr "" "Exécutez la commande suivante pour sauvegarder votre volume persistant :" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<div class=\"note\">\n" +#, no-wrap msgid "<div class=\"caution\">\n" -msgstr "<div class=\"note\">\n" +msgstr "<div class=\"caution\">\n" #. type: Plain text #, no-wrap @@ -232,6 +230,12 @@ msgid "" "backup Tails instead, you will delete the persistent volume on your\n" "current Tails.</p>\n" msgstr "" +"<p>Assurez-vous d'exécuter cette commande <strong>depuis le Tails que vous\n" +"voulez sauvegarder</strong> : votre Tails actuel. Si à la place vous lancez " +"la commande\n" +"depuis le Tails de sauvegarde, vous supprimerez le volume persistant de " +"votre\n" +"Tails actuel.</p>\n" #. type: Plain text #, no-wrap @@ -245,8 +249,10 @@ msgstr "<!-- <li> are limited to 45em so I'm breaking the list here to prevent w #. type: Plain text #, no-wrap -msgid "<p class=\"pre command root\">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" -msgstr "<p class=\"pre command root\">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" +msgid "<p class=\"pre command root\">rsync -PaSHAXv --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" +msgstr "" +"<p class=\"pre command root\">rsync -PaSHAXv --del /live/persistence/" +"TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" #. type: Plain text msgid "" diff --git a/wiki/src/doc/first_steps/persistence/copy.id.po b/wiki/src/doc/first_steps/persistence/copy.id.po index 023626e0e7a924da0183fcb32f44d08cb521f3b1..e9687eed8ad55fb91ec58a9ef7bc463ba01c9a8d 100644 --- a/wiki/src/doc/first_steps/persistence/copy.id.po +++ b/wiki/src/doc/first_steps/persistence/copy.id.po @@ -7,8 +7,8 @@ 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" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" +"PO-Revision-Date: 2020-01-15 21:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -189,7 +189,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<p class=\"pre command root\">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" +msgid "<p class=\"pre command root\">rsync -PaSHAXv --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" msgstr "" #. type: Plain text @@ -210,7 +210,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap @@ -225,3 +225,343 @@ msgid "" "You can now eject the <span class=\"guilabel\">TailsData</span> volume in the\n" "<span class=\"application\">Files</span> browser and unplug your backup Tails USB stick.\n" msgstr "" + +msgid "" +"These instructions explain how to manually copy your persistent data to a " +"new USB stick. Follow them if you have good reasons to think that your " +"persistence settings are corrupted or if you want to be extra careful." +msgstr "" +"Diese Anweisungen erklären, wie Sie Ihre beständig gespeicherten Daten " +"händisch auf einen neuen USB-Stick kopieren. Befolgen Sie diese, wenn Sie " +"gute Gründe dafür haben, zu glauben, dass Ihre Einstellungen für den " +"beständigen Speicherbereich beschädigt sind oder Sie besonders vorsichtig " +"sein möchten." + +msgid "" +"Install the latest Tails onto a new USB stick using the usual [[installing " +"instructions|install]]. Do not use the Tails USB stick that might be " +"corrupted in the process of installing the new one." +msgstr "" +"Installieren Sie das aktuellste Tails auf einem neuen USB-Stick, indem Sie " +"die [[Installationsanleitung|install]] befolgen. Benutzen Sie beim Vorgang " +"der Installation auf einen neuen USB-Stick nicht den möglicherweise " +"beschädigten." + +msgid "" +"[[Create a persistent volume|configure]] on this new USB stick. We advise " +"you to use a different passphrase to protect this new persistent volume." +msgstr "" +"[[Erstellen Sie einen neuen beständigen Speicherbereich|configure]] auf " +"diesem neuen USB-Stick. Wir empfehlen es Ihnen, eine andere Passphrase zum " +"Schutz dieses neuen beständigen Speicherbereichs zu wählen." + +msgid "" +"Enable again on this new USB stick the persistence features of your choice." +msgstr "" +"Aktivieren Sie auf dem neuen USB-Stick erneut die Funktionen Ihrer Wahl für " +"den beständigen Speicherbereich." + +msgid "Rescue your files from the old Tails USB stick\n" +msgstr "Sichern Sie Ihre Dateien vom alten USB-Stick mit Tails\n" + +msgid "Mount the old persistent volume\n" +msgstr "Hängen Sie den alten beständigen Speicherbereich ein\n" + +msgid "" +"Plug in the old Tails USB stick from which you want to rescue your data." +msgstr "" +"Schließen Sie den alten USB-Stick mit Tails an, von welchem Sie Ihre Daten " +"sichern möchten." + +msgid "" +"In the left pane, click on the USB stick corresponding to the old Tails USB " +"stick." +msgstr "" +"Wählen Sie im linken Fensterbereich den USB-Stick aus, welcher dem alten USB-" +"Stick mit Tails entspricht." + +msgid "" +"In the right pane, click on the partition labeled as <span class=\"guilabel" +"\">LUKS</span>. The name of the partition must be <span class=\"guilabel" +"\">TailsData</span>." +msgstr "" +"Wählen Sie im rechten Fensterbereich die Partition mit dem Typ <span class=" +"\"guilabel\">LUKS</span> aus. Der Name der Partition muss <span class=\"label" +"\">TailsData</span> lauten." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/unlock.png alt=\"Unlock\" " +"class=\"symbolic\" link=\"no\"]]</span> button to unlock the old persistent " +"volume. Enter the passphrase of the old persistent volume and click <span " +"class=\"button\">Unlock</span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/unlock." +"png alt=\"Entsperren\" class=\"symbolic\" link=\"no\"]]</span>, um den alten " +"beständigen Speicherbereich zu entsperren. Geben Sie die Passphrase des " +"alten beständigen Speicherbereichs ein und klicken Sie auf <span class=" +"\"guilabel\">Entsperren</span>." + +msgid "" +"Click on the <span class=\"guilabel\">TailsData</span> partition that " +"appears below the <span class=\"guilabel\">LUKS</span> partition." +msgstr "" +"Wählen Sie die Partition <span class=\"guilabel\">TailsData</span> aus, die " +"unter der <span class=\"guilabel\">LUKS</span>-Partition erscheint." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/media-playback-start.png alt=" +"\"Mount\" class=\"symbolic\" link=\"no\"]]</span> button. The old persistent " +"volume is now mounted as <span class=\"filename\">/media/amnesia/TailsData</" +"span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/media-" +"playback-start.png alt=\"Einhängen\" class=\"symbolic\" link=\"no\"]]</" +"span>. Der alte beständige Speicherbereich ist nun unter <span class=" +"\"filename\">/media/amnesia/TailsData</span> eingehängt." + +msgid "Copy your old files to the new persistent volume\n" +msgstr "" +"Kopieren Sie Ihre alten Dateien in den neuen beständigen Speicherbereich\n" + +msgid "" +"Execute the <span class=\"code\">nautilus</span> command to open the file " +"browser with administration rights." +msgstr "" +"Führen Sie den Befehl <span class=\"code\">nautilus</span> aus, um den " +"Dateimanager mit Administrationsrechten zu öffnen." + +msgid "" +"In the left pane, click on <span class=\"guilabel\">Other Locations</span>." +msgstr "" +"Klicken Sie im linken Fensterbereich auf <span class=\"guilabel\">Andere " +"Orte</span>." + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">media</span> ▸ <span class=\"guilabel" +"\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</span> to open " +"the old persistent volume." +msgstr "" +"Navigieren Sie im rechten Fensterbereich nach <span class=\"guilabel" +"\">Computer</span> ▸ <span class=\"guilabel\">media</span> ▸ <span " +"class=\"guilabel\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</" +"span>, um den alten beständigen Speicherbereich zu öffnen." + +msgid "" +"1. In the titlebar, choose\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"New tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" to open a new tab.\n" +msgstr "" +"1. Wählen Sie in der Titelleiste\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menü\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"Neuer Tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" um einen neuen Reiter zu öffnen.\n" + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">live</span> ▸ <span class=\"guilabel" +"\">persistence</span> ▸ <span class=\"guilabel\">TailsData_unlocked</" +"span> to open the new persistent volume." +msgstr "" +"Navigieren Sie in dem rechten Reiter nach <span class=\"guilabel\">Computer</" +"span> ▸ <span class=\"guilabel\">live</span> ▸ <span class=" +"\"guilabel\">persistence</span> ▸ <span class=\"guilabel" +"\">TailsData_unlocked</span>, um den neuen beständigen Speicherbereich zu " +"öffnen." + +msgid "" +"To copy a folder containing persistent data from the old persistent volume " +"to the new one, drag and drop that folder from the <span class=\"guilabel" +"\">TailsData</span> onto the <span class=\"guilabel\">TailsData_unlocked</" +"span> tab." +msgstr "" +"Um einen Ordner, der beständig gespeicherte Daten enthält, vom alten " +"beständigen Speicherbereich in den neuen zu kopieren, ziehen Sie diesen " +"Ordner aus dem Reiter <span class=\"guilabel\">TailsData</span> und lassen " +"Sie ihn auf dem Reiter <span class=\"guilabel\">TailsData_unlocked</span> " +"los." + +msgid "" +" When copying a folder, select the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Merge</span> to apply to all subfolders.\n" +" Then you might have to select again the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Replace</span> to apply to all files.\n" +msgstr "" +" Wählen Sie beim Kopieren von Ordnern die Option\n" +" <span class=\"guilabel\"> Diese Aktion auf alle Dateien anwenden</span> " +"und klicken\n" +" Sie auf <span class=\"button\">Zusammenführen</span>, um es auf alle " +"Unterordner anzuwenden.\n" +" Anschließend könnte es notwendig sein, die Option\n" +" <span class=\"guilabel\"> Aktion auf alle Dateien anwenden</span> " +"auszuwählen\n" +" und auf <span class=\"button\">Ersetzen</span> zu klicken, um sie auf " +"alle Dateien anzuwenden.\n" + +msgid " Do not copy a folder if you do not know what it is used for.\n" +msgstr "" +" Kopieren Sie einen Ordner nicht, sofern Sie nicht wissen, wofür er " +"verwendet wird.\n" + +msgid " <a id=\"feature_files\"></a>\n" +msgstr " <a id=\"feature_files\"></a>\n" + +#, fuzzy +#| msgid "" +#| "The <span class=\"filename\">apt</span> folder corresponds to the <span " +#| "class=\"guilabel\">[[APT Packages|configure#apt_packages]]</span> and " +#| "<span class=\"guilabel\">[[APT Lists|configure#apt_lists]]</span> " +#| "persistence features. But it requires administration rights to be " +#| "imported and this goes beyond the scope of these instructions. Note that " +#| "this folder does not contain personal data." +msgid "" +"The <span class=\"filename\">apt</span> folder and the <span class=\"filename" +"\">live-additional-software.conf</span> file correspond to the <span class=" +"\"guilabel\">[[Additional Software|configure#additional_software]]</span> " +"persistence feature. But they require administration rights to be imported " +"and this goes beyond the scope of these instructions. Note that this folder " +"does not contain personal data." +msgstr "" +"Der <span class=\"filename\">apt</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[APT Pakete|configure#apt_packages]]</span> und <span class=" +"\"guilabel\">[[APT Listen|configure#apt_lists]]</span> Funktion des " +"beständigen Speicherbereichs. Aber sie benötigen Administrationsrechte, um " +"importiert zu werden und dies sprengt den Rahmen dieser Dokumentation. " +"Beachten Sie, dass dieser Ordner keine persönlichen Daten enthält." + +msgid "" +"The <span class=\"filename\">bookmarks</span> folder corresponds to the " +"<span class=\"guilabel\">[[Browser Bookmarks|configure#browser_bookmarks]]</" +"span> persistence feature." +msgstr "" +"Der <span class=\"filename\">bookmarks</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Lesezeichen " +"des Browsers|configure#browser_bookmarks]]</span>." + +msgid "" +"The <span class=\"filename\">cups-configuration</span> folder corresponds to " +"the <span class=\"guilabel\">[[Printers|configure#printers]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">cups-configuration</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Drucker|configure#printers]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">dotfiles</span> folder corresponds to the <span " +"class=\"guilabel\">[[Dotfiles|configure#dotfiles]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">dotfiles</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Versteckte " +"Konfigurationsdateien|configure#dotfiles]]</span>." + +msgid "" +"The <span class=\"filename\">electrum</span> folder corresponds to the <span " +"class=\"guilabel\">[[Bitcoin Client|configure#bitcoin]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">electrum</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Bitcoin-Client|configure#bitcoin]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">gnupg</span> folder corresponds to the <span " +"class=\"guilabel\">[[GnuPG|configure#gnupg]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">gnupg</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[GnuPG|configure#gnupg]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">thunderbird</span> folder corresponds to the " +"<span class=\"guilabel\">[[Thunderbird|configure#thunderbird]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">thunderbird</span>-Ordner entspricht der " +"Funktion des beständigen Speicherbereichs für <span class=\"guilabel" +"\">[[Thunderbird|configure#thunderbird]]</span>." + +msgid "" +"The <span class=\"filename\">nm-connections</span> folder corresponds to the " +"<span class=\"guilabel\">[[Network Connections|" +"configure#network_connections]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">nm-connections</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Netzwerkverbindungen|" +"configure#network_connections]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">openssh-client</span> folder corresponds to the " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">openssh-client</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> Funktion " +"des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">Persistent</span> folder corresponds to the " +"<span class=\"guilabel\">[[Personal Data|configure#personal_data]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">Persistent</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Persönliche Dateien|configure#personal_data]]</span> " +"Funktion des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">pidgin</span> folder corresponds to the <span " +"class=\"guilabel\">[[Pidgin|configure#pidgin]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">pidgin</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[Pidgin|configure#pidgin]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "After doing the copy, close the file browser." +msgstr "Schließen Sie nach dem Durchführen der Kopie den Dateimanager." + +msgid "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" +msgstr "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" + +msgid "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" +msgstr "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" + +msgid "" +"The <span class=\"filename\">gnome-keyring</span> folder corresponds to the " +"<span class=\"guilabel\">[[GNOME Keyring|configure#gnome_keyring]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">gnome-keyring</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[GNOME Schlüsselbund|configure#gnome_keyring]]</" +"span> Funktion des beständigen Speicherbereichs." + +msgid "" +"In the file browser, navigate to <span class=\"filename\">/media/amnesia/" +"TailsData</span> to open the old persistent volume." +msgstr "" +"Navigieren Sie im Dateimanager zu <span class=\"filename\">/media/amnesia/" +"TailsData</span>, um die alte beständige Speicherpartition zu öffnen." diff --git a/wiki/src/doc/first_steps/persistence/copy.it.po b/wiki/src/doc/first_steps/persistence/copy.it.po index 060c93cfe9b73fbbb15bbbdb201eb5c38d8020ca..ae8ea0bd28d53ea22d122e5de5c40ddd7e081482 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: 2019-11-21 09:32+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+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" @@ -189,7 +189,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<p class=\"pre command root\">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" +msgid "<p class=\"pre command root\">rsync -PaSHAXv --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/first_steps/persistence/copy.mdwn b/wiki/src/doc/first_steps/persistence/copy.mdwn index b7dc48ef6249f1e354516e9ea240bbb164b0f2a5..fa7403c99d611a182deebad37b195b0c64081905 100644 --- a/wiki/src/doc/first_steps/persistence/copy.mdwn +++ b/wiki/src/doc/first_steps/persistence/copy.mdwn @@ -91,7 +91,7 @@ current Tails.</p> <!-- <li> are limited to 45em so I'm breaking the list here to prevent wrapping the long command line. --> -<p class="pre command root">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p> +<p class="pre command root">rsync -PaSHAXv --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p> When the command finishes, it displays a summary of the data that was copied. For example: diff --git a/wiki/src/doc/first_steps/persistence/copy.pl.po b/wiki/src/doc/first_steps/persistence/copy.pl.po index be92316b60ed6e2d0b3b1f3f30953f683fb0cfce..0c5bbbf9c0bae779a1eed0c46e07b1f1282a3699 100644 --- a/wiki/src/doc/first_steps/persistence/copy.pl.po +++ b/wiki/src/doc/first_steps/persistence/copy.pl.po @@ -8,7 +8,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-01-05 19:09+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" @@ -188,7 +188,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<p class=\"pre command root\">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" +msgid "<p class=\"pre command root\">rsync -PaSHAXv --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" msgstr "" #. type: Plain text @@ -224,3 +224,343 @@ msgid "" "You can now eject the <span class=\"guilabel\">TailsData</span> volume in the\n" "<span class=\"application\">Files</span> browser and unplug your backup Tails USB stick.\n" msgstr "" + +msgid "" +"These instructions explain how to manually copy your persistent data to a " +"new USB stick. Follow them if you have good reasons to think that your " +"persistence settings are corrupted or if you want to be extra careful." +msgstr "" +"Diese Anweisungen erklären, wie Sie Ihre beständig gespeicherten Daten " +"händisch auf einen neuen USB-Stick kopieren. Befolgen Sie diese, wenn Sie " +"gute Gründe dafür haben, zu glauben, dass Ihre Einstellungen für den " +"beständigen Speicherbereich beschädigt sind oder Sie besonders vorsichtig " +"sein möchten." + +msgid "" +"Install the latest Tails onto a new USB stick using the usual [[installing " +"instructions|install]]. Do not use the Tails USB stick that might be " +"corrupted in the process of installing the new one." +msgstr "" +"Installieren Sie das aktuellste Tails auf einem neuen USB-Stick, indem Sie " +"die [[Installationsanleitung|install]] befolgen. Benutzen Sie beim Vorgang " +"der Installation auf einen neuen USB-Stick nicht den möglicherweise " +"beschädigten." + +msgid "" +"[[Create a persistent volume|configure]] on this new USB stick. We advise " +"you to use a different passphrase to protect this new persistent volume." +msgstr "" +"[[Erstellen Sie einen neuen beständigen Speicherbereich|configure]] auf " +"diesem neuen USB-Stick. Wir empfehlen es Ihnen, eine andere Passphrase zum " +"Schutz dieses neuen beständigen Speicherbereichs zu wählen." + +msgid "" +"Enable again on this new USB stick the persistence features of your choice." +msgstr "" +"Aktivieren Sie auf dem neuen USB-Stick erneut die Funktionen Ihrer Wahl für " +"den beständigen Speicherbereich." + +msgid "Rescue your files from the old Tails USB stick\n" +msgstr "Sichern Sie Ihre Dateien vom alten USB-Stick mit Tails\n" + +msgid "Mount the old persistent volume\n" +msgstr "Hängen Sie den alten beständigen Speicherbereich ein\n" + +msgid "" +"Plug in the old Tails USB stick from which you want to rescue your data." +msgstr "" +"Schließen Sie den alten USB-Stick mit Tails an, von welchem Sie Ihre Daten " +"sichern möchten." + +msgid "" +"In the left pane, click on the USB stick corresponding to the old Tails USB " +"stick." +msgstr "" +"Wählen Sie im linken Fensterbereich den USB-Stick aus, welcher dem alten USB-" +"Stick mit Tails entspricht." + +msgid "" +"In the right pane, click on the partition labeled as <span class=\"guilabel" +"\">LUKS</span>. The name of the partition must be <span class=\"guilabel" +"\">TailsData</span>." +msgstr "" +"Wählen Sie im rechten Fensterbereich die Partition mit dem Typ <span class=" +"\"guilabel\">LUKS</span> aus. Der Name der Partition muss <span class=\"label" +"\">TailsData</span> lauten." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/unlock.png alt=\"Unlock\" " +"class=\"symbolic\" link=\"no\"]]</span> button to unlock the old persistent " +"volume. Enter the passphrase of the old persistent volume and click <span " +"class=\"button\">Unlock</span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/unlock." +"png alt=\"Entsperren\" class=\"symbolic\" link=\"no\"]]</span>, um den alten " +"beständigen Speicherbereich zu entsperren. Geben Sie die Passphrase des " +"alten beständigen Speicherbereichs ein und klicken Sie auf <span class=" +"\"guilabel\">Entsperren</span>." + +msgid "" +"Click on the <span class=\"guilabel\">TailsData</span> partition that " +"appears below the <span class=\"guilabel\">LUKS</span> partition." +msgstr "" +"Wählen Sie die Partition <span class=\"guilabel\">TailsData</span> aus, die " +"unter der <span class=\"guilabel\">LUKS</span>-Partition erscheint." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/media-playback-start.png alt=" +"\"Mount\" class=\"symbolic\" link=\"no\"]]</span> button. The old persistent " +"volume is now mounted as <span class=\"filename\">/media/amnesia/TailsData</" +"span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/media-" +"playback-start.png alt=\"Einhängen\" class=\"symbolic\" link=\"no\"]]</" +"span>. Der alte beständige Speicherbereich ist nun unter <span class=" +"\"filename\">/media/amnesia/TailsData</span> eingehängt." + +msgid "Copy your old files to the new persistent volume\n" +msgstr "" +"Kopieren Sie Ihre alten Dateien in den neuen beständigen Speicherbereich\n" + +msgid "" +"Execute the <span class=\"code\">nautilus</span> command to open the file " +"browser with administration rights." +msgstr "" +"Führen Sie den Befehl <span class=\"code\">nautilus</span> aus, um den " +"Dateimanager mit Administrationsrechten zu öffnen." + +msgid "" +"In the left pane, click on <span class=\"guilabel\">Other Locations</span>." +msgstr "" +"Klicken Sie im linken Fensterbereich auf <span class=\"guilabel\">Andere " +"Orte</span>." + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">media</span> ▸ <span class=\"guilabel" +"\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</span> to open " +"the old persistent volume." +msgstr "" +"Navigieren Sie im rechten Fensterbereich nach <span class=\"guilabel" +"\">Computer</span> ▸ <span class=\"guilabel\">media</span> ▸ <span " +"class=\"guilabel\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</" +"span>, um den alten beständigen Speicherbereich zu öffnen." + +msgid "" +"1. In the titlebar, choose\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"New tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" to open a new tab.\n" +msgstr "" +"1. Wählen Sie in der Titelleiste\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menü\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"Neuer Tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" um einen neuen Reiter zu öffnen.\n" + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">live</span> ▸ <span class=\"guilabel" +"\">persistence</span> ▸ <span class=\"guilabel\">TailsData_unlocked</" +"span> to open the new persistent volume." +msgstr "" +"Navigieren Sie in dem rechten Reiter nach <span class=\"guilabel\">Computer</" +"span> ▸ <span class=\"guilabel\">live</span> ▸ <span class=" +"\"guilabel\">persistence</span> ▸ <span class=\"guilabel" +"\">TailsData_unlocked</span>, um den neuen beständigen Speicherbereich zu " +"öffnen." + +msgid "" +"To copy a folder containing persistent data from the old persistent volume " +"to the new one, drag and drop that folder from the <span class=\"guilabel" +"\">TailsData</span> onto the <span class=\"guilabel\">TailsData_unlocked</" +"span> tab." +msgstr "" +"Um einen Ordner, der beständig gespeicherte Daten enthält, vom alten " +"beständigen Speicherbereich in den neuen zu kopieren, ziehen Sie diesen " +"Ordner aus dem Reiter <span class=\"guilabel\">TailsData</span> und lassen " +"Sie ihn auf dem Reiter <span class=\"guilabel\">TailsData_unlocked</span> " +"los." + +msgid "" +" When copying a folder, select the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Merge</span> to apply to all subfolders.\n" +" Then you might have to select again the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Replace</span> to apply to all files.\n" +msgstr "" +" Wählen Sie beim Kopieren von Ordnern die Option\n" +" <span class=\"guilabel\"> Diese Aktion auf alle Dateien anwenden</span> " +"und klicken\n" +" Sie auf <span class=\"button\">Zusammenführen</span>, um es auf alle " +"Unterordner anzuwenden.\n" +" Anschließend könnte es notwendig sein, die Option\n" +" <span class=\"guilabel\"> Aktion auf alle Dateien anwenden</span> " +"auszuwählen\n" +" und auf <span class=\"button\">Ersetzen</span> zu klicken, um sie auf " +"alle Dateien anzuwenden.\n" + +msgid " Do not copy a folder if you do not know what it is used for.\n" +msgstr "" +" Kopieren Sie einen Ordner nicht, sofern Sie nicht wissen, wofür er " +"verwendet wird.\n" + +msgid " <a id=\"feature_files\"></a>\n" +msgstr " <a id=\"feature_files\"></a>\n" + +#, fuzzy +#| msgid "" +#| "The <span class=\"filename\">apt</span> folder corresponds to the <span " +#| "class=\"guilabel\">[[APT Packages|configure#apt_packages]]</span> and " +#| "<span class=\"guilabel\">[[APT Lists|configure#apt_lists]]</span> " +#| "persistence features. But it requires administration rights to be " +#| "imported and this goes beyond the scope of these instructions. Note that " +#| "this folder does not contain personal data." +msgid "" +"The <span class=\"filename\">apt</span> folder and the <span class=\"filename" +"\">live-additional-software.conf</span> file correspond to the <span class=" +"\"guilabel\">[[Additional Software|configure#additional_software]]</span> " +"persistence feature. But they require administration rights to be imported " +"and this goes beyond the scope of these instructions. Note that this folder " +"does not contain personal data." +msgstr "" +"Der <span class=\"filename\">apt</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[APT Pakete|configure#apt_packages]]</span> und <span class=" +"\"guilabel\">[[APT Listen|configure#apt_lists]]</span> Funktion des " +"beständigen Speicherbereichs. Aber sie benötigen Administrationsrechte, um " +"importiert zu werden und dies sprengt den Rahmen dieser Dokumentation. " +"Beachten Sie, dass dieser Ordner keine persönlichen Daten enthält." + +msgid "" +"The <span class=\"filename\">bookmarks</span> folder corresponds to the " +"<span class=\"guilabel\">[[Browser Bookmarks|configure#browser_bookmarks]]</" +"span> persistence feature." +msgstr "" +"Der <span class=\"filename\">bookmarks</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Lesezeichen " +"des Browsers|configure#browser_bookmarks]]</span>." + +msgid "" +"The <span class=\"filename\">cups-configuration</span> folder corresponds to " +"the <span class=\"guilabel\">[[Printers|configure#printers]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">cups-configuration</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Drucker|configure#printers]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">dotfiles</span> folder corresponds to the <span " +"class=\"guilabel\">[[Dotfiles|configure#dotfiles]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">dotfiles</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Versteckte " +"Konfigurationsdateien|configure#dotfiles]]</span>." + +msgid "" +"The <span class=\"filename\">electrum</span> folder corresponds to the <span " +"class=\"guilabel\">[[Bitcoin Client|configure#bitcoin]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">electrum</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Bitcoin-Client|configure#bitcoin]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">gnupg</span> folder corresponds to the <span " +"class=\"guilabel\">[[GnuPG|configure#gnupg]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">gnupg</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[GnuPG|configure#gnupg]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">thunderbird</span> folder corresponds to the " +"<span class=\"guilabel\">[[Thunderbird|configure#thunderbird]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">thunderbird</span>-Ordner entspricht der " +"Funktion des beständigen Speicherbereichs für <span class=\"guilabel" +"\">[[Thunderbird|configure#thunderbird]]</span>." + +msgid "" +"The <span class=\"filename\">nm-connections</span> folder corresponds to the " +"<span class=\"guilabel\">[[Network Connections|" +"configure#network_connections]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">nm-connections</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Netzwerkverbindungen|" +"configure#network_connections]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">openssh-client</span> folder corresponds to the " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">openssh-client</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> Funktion " +"des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">Persistent</span> folder corresponds to the " +"<span class=\"guilabel\">[[Personal Data|configure#personal_data]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">Persistent</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Persönliche Dateien|configure#personal_data]]</span> " +"Funktion des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">pidgin</span> folder corresponds to the <span " +"class=\"guilabel\">[[Pidgin|configure#pidgin]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">pidgin</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[Pidgin|configure#pidgin]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "After doing the copy, close the file browser." +msgstr "Schließen Sie nach dem Durchführen der Kopie den Dateimanager." + +msgid "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" +msgstr "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" + +msgid "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" +msgstr "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" + +msgid "" +"The <span class=\"filename\">gnome-keyring</span> folder corresponds to the " +"<span class=\"guilabel\">[[GNOME Keyring|configure#gnome_keyring]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">gnome-keyring</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[GNOME Schlüsselbund|configure#gnome_keyring]]</" +"span> Funktion des beständigen Speicherbereichs." + +msgid "" +"In the file browser, navigate to <span class=\"filename\">/media/amnesia/" +"TailsData</span> to open the old persistent volume." +msgstr "" +"Navigieren Sie im Dateimanager zu <span class=\"filename\">/media/amnesia/" +"TailsData</span>, um die alte beständige Speicherpartition zu öffnen." diff --git a/wiki/src/doc/first_steps/persistence/copy.pt.po b/wiki/src/doc/first_steps/persistence/copy.pt.po index 9d234e9201b671206553e1c97db7e4e7dd243b2a..7b32ec7e66bacc46d679ba12e8f1065e7f24e36d 100644 --- a/wiki/src/doc/first_steps/persistence/copy.pt.po +++ b/wiki/src/doc/first_steps/persistence/copy.pt.po @@ -7,8 +7,8 @@ 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" -"PO-Revision-Date: 2019-10-22 10:59+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+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/" "first_steps_persistence_copy/pt/>\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, fuzzy, no-wrap @@ -204,10 +204,9 @@ msgid "Execute the following command to backup your persistent volume:" msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<div class=\"note\">\n" +#, no-wrap msgid "<div class=\"caution\">\n" -msgstr "<div class=\"note\">\n" +msgstr "<div class=\"caution\">\n" #. type: Plain text #, no-wrap @@ -230,7 +229,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<p class=\"pre command root\">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" +msgid "<p class=\"pre command root\">rsync -PaSHAXv --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/first_steps/persistence/copy.ru.po b/wiki/src/doc/first_steps/persistence/copy.ru.po index cdb132449f0a5198deae545da1f12183a3fd2758..9541b64d4a9c696242f456bb98b911c4793b8078 100644 --- a/wiki/src/doc/first_steps/persistence/copy.ru.po +++ b/wiki/src/doc/first_steps/persistence/copy.ru.po @@ -8,7 +8,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-01-05 19:09+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" @@ -188,7 +188,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<p class=\"pre command root\">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" +msgid "<p class=\"pre command root\">rsync -PaSHAXv --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" msgstr "" #. type: Plain text @@ -224,3 +224,343 @@ msgid "" "You can now eject the <span class=\"guilabel\">TailsData</span> volume in the\n" "<span class=\"application\">Files</span> browser and unplug your backup Tails USB stick.\n" msgstr "" + +msgid "" +"These instructions explain how to manually copy your persistent data to a " +"new USB stick. Follow them if you have good reasons to think that your " +"persistence settings are corrupted or if you want to be extra careful." +msgstr "" +"Diese Anweisungen erklären, wie Sie Ihre beständig gespeicherten Daten " +"händisch auf einen neuen USB-Stick kopieren. Befolgen Sie diese, wenn Sie " +"gute Gründe dafür haben, zu glauben, dass Ihre Einstellungen für den " +"beständigen Speicherbereich beschädigt sind oder Sie besonders vorsichtig " +"sein möchten." + +msgid "" +"Install the latest Tails onto a new USB stick using the usual [[installing " +"instructions|install]]. Do not use the Tails USB stick that might be " +"corrupted in the process of installing the new one." +msgstr "" +"Installieren Sie das aktuellste Tails auf einem neuen USB-Stick, indem Sie " +"die [[Installationsanleitung|install]] befolgen. Benutzen Sie beim Vorgang " +"der Installation auf einen neuen USB-Stick nicht den möglicherweise " +"beschädigten." + +msgid "" +"[[Create a persistent volume|configure]] on this new USB stick. We advise " +"you to use a different passphrase to protect this new persistent volume." +msgstr "" +"[[Erstellen Sie einen neuen beständigen Speicherbereich|configure]] auf " +"diesem neuen USB-Stick. Wir empfehlen es Ihnen, eine andere Passphrase zum " +"Schutz dieses neuen beständigen Speicherbereichs zu wählen." + +msgid "" +"Enable again on this new USB stick the persistence features of your choice." +msgstr "" +"Aktivieren Sie auf dem neuen USB-Stick erneut die Funktionen Ihrer Wahl für " +"den beständigen Speicherbereich." + +msgid "Rescue your files from the old Tails USB stick\n" +msgstr "Sichern Sie Ihre Dateien vom alten USB-Stick mit Tails\n" + +msgid "Mount the old persistent volume\n" +msgstr "Hängen Sie den alten beständigen Speicherbereich ein\n" + +msgid "" +"Plug in the old Tails USB stick from which you want to rescue your data." +msgstr "" +"Schließen Sie den alten USB-Stick mit Tails an, von welchem Sie Ihre Daten " +"sichern möchten." + +msgid "" +"In the left pane, click on the USB stick corresponding to the old Tails USB " +"stick." +msgstr "" +"Wählen Sie im linken Fensterbereich den USB-Stick aus, welcher dem alten USB-" +"Stick mit Tails entspricht." + +msgid "" +"In the right pane, click on the partition labeled as <span class=\"guilabel" +"\">LUKS</span>. The name of the partition must be <span class=\"guilabel" +"\">TailsData</span>." +msgstr "" +"Wählen Sie im rechten Fensterbereich die Partition mit dem Typ <span class=" +"\"guilabel\">LUKS</span> aus. Der Name der Partition muss <span class=\"label" +"\">TailsData</span> lauten." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/unlock.png alt=\"Unlock\" " +"class=\"symbolic\" link=\"no\"]]</span> button to unlock the old persistent " +"volume. Enter the passphrase of the old persistent volume and click <span " +"class=\"button\">Unlock</span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/unlock." +"png alt=\"Entsperren\" class=\"symbolic\" link=\"no\"]]</span>, um den alten " +"beständigen Speicherbereich zu entsperren. Geben Sie die Passphrase des " +"alten beständigen Speicherbereichs ein und klicken Sie auf <span class=" +"\"guilabel\">Entsperren</span>." + +msgid "" +"Click on the <span class=\"guilabel\">TailsData</span> partition that " +"appears below the <span class=\"guilabel\">LUKS</span> partition." +msgstr "" +"Wählen Sie die Partition <span class=\"guilabel\">TailsData</span> aus, die " +"unter der <span class=\"guilabel\">LUKS</span>-Partition erscheint." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/media-playback-start.png alt=" +"\"Mount\" class=\"symbolic\" link=\"no\"]]</span> button. The old persistent " +"volume is now mounted as <span class=\"filename\">/media/amnesia/TailsData</" +"span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/media-" +"playback-start.png alt=\"Einhängen\" class=\"symbolic\" link=\"no\"]]</" +"span>. Der alte beständige Speicherbereich ist nun unter <span class=" +"\"filename\">/media/amnesia/TailsData</span> eingehängt." + +msgid "Copy your old files to the new persistent volume\n" +msgstr "" +"Kopieren Sie Ihre alten Dateien in den neuen beständigen Speicherbereich\n" + +msgid "" +"Execute the <span class=\"code\">nautilus</span> command to open the file " +"browser with administration rights." +msgstr "" +"Führen Sie den Befehl <span class=\"code\">nautilus</span> aus, um den " +"Dateimanager mit Administrationsrechten zu öffnen." + +msgid "" +"In the left pane, click on <span class=\"guilabel\">Other Locations</span>." +msgstr "" +"Klicken Sie im linken Fensterbereich auf <span class=\"guilabel\">Andere " +"Orte</span>." + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">media</span> ▸ <span class=\"guilabel" +"\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</span> to open " +"the old persistent volume." +msgstr "" +"Navigieren Sie im rechten Fensterbereich nach <span class=\"guilabel" +"\">Computer</span> ▸ <span class=\"guilabel\">media</span> ▸ <span " +"class=\"guilabel\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</" +"span>, um den alten beständigen Speicherbereich zu öffnen." + +msgid "" +"1. In the titlebar, choose\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"New tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" to open a new tab.\n" +msgstr "" +"1. Wählen Sie in der Titelleiste\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menü\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"Neuer Tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" um einen neuen Reiter zu öffnen.\n" + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">live</span> ▸ <span class=\"guilabel" +"\">persistence</span> ▸ <span class=\"guilabel\">TailsData_unlocked</" +"span> to open the new persistent volume." +msgstr "" +"Navigieren Sie in dem rechten Reiter nach <span class=\"guilabel\">Computer</" +"span> ▸ <span class=\"guilabel\">live</span> ▸ <span class=" +"\"guilabel\">persistence</span> ▸ <span class=\"guilabel" +"\">TailsData_unlocked</span>, um den neuen beständigen Speicherbereich zu " +"öffnen." + +msgid "" +"To copy a folder containing persistent data from the old persistent volume " +"to the new one, drag and drop that folder from the <span class=\"guilabel" +"\">TailsData</span> onto the <span class=\"guilabel\">TailsData_unlocked</" +"span> tab." +msgstr "" +"Um einen Ordner, der beständig gespeicherte Daten enthält, vom alten " +"beständigen Speicherbereich in den neuen zu kopieren, ziehen Sie diesen " +"Ordner aus dem Reiter <span class=\"guilabel\">TailsData</span> und lassen " +"Sie ihn auf dem Reiter <span class=\"guilabel\">TailsData_unlocked</span> " +"los." + +msgid "" +" When copying a folder, select the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Merge</span> to apply to all subfolders.\n" +" Then you might have to select again the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Replace</span> to apply to all files.\n" +msgstr "" +" Wählen Sie beim Kopieren von Ordnern die Option\n" +" <span class=\"guilabel\"> Diese Aktion auf alle Dateien anwenden</span> " +"und klicken\n" +" Sie auf <span class=\"button\">Zusammenführen</span>, um es auf alle " +"Unterordner anzuwenden.\n" +" Anschließend könnte es notwendig sein, die Option\n" +" <span class=\"guilabel\"> Aktion auf alle Dateien anwenden</span> " +"auszuwählen\n" +" und auf <span class=\"button\">Ersetzen</span> zu klicken, um sie auf " +"alle Dateien anzuwenden.\n" + +msgid " Do not copy a folder if you do not know what it is used for.\n" +msgstr "" +" Kopieren Sie einen Ordner nicht, sofern Sie nicht wissen, wofür er " +"verwendet wird.\n" + +msgid " <a id=\"feature_files\"></a>\n" +msgstr " <a id=\"feature_files\"></a>\n" + +#, fuzzy +#| msgid "" +#| "The <span class=\"filename\">apt</span> folder corresponds to the <span " +#| "class=\"guilabel\">[[APT Packages|configure#apt_packages]]</span> and " +#| "<span class=\"guilabel\">[[APT Lists|configure#apt_lists]]</span> " +#| "persistence features. But it requires administration rights to be " +#| "imported and this goes beyond the scope of these instructions. Note that " +#| "this folder does not contain personal data." +msgid "" +"The <span class=\"filename\">apt</span> folder and the <span class=\"filename" +"\">live-additional-software.conf</span> file correspond to the <span class=" +"\"guilabel\">[[Additional Software|configure#additional_software]]</span> " +"persistence feature. But they require administration rights to be imported " +"and this goes beyond the scope of these instructions. Note that this folder " +"does not contain personal data." +msgstr "" +"Der <span class=\"filename\">apt</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[APT Pakete|configure#apt_packages]]</span> und <span class=" +"\"guilabel\">[[APT Listen|configure#apt_lists]]</span> Funktion des " +"beständigen Speicherbereichs. Aber sie benötigen Administrationsrechte, um " +"importiert zu werden und dies sprengt den Rahmen dieser Dokumentation. " +"Beachten Sie, dass dieser Ordner keine persönlichen Daten enthält." + +msgid "" +"The <span class=\"filename\">bookmarks</span> folder corresponds to the " +"<span class=\"guilabel\">[[Browser Bookmarks|configure#browser_bookmarks]]</" +"span> persistence feature." +msgstr "" +"Der <span class=\"filename\">bookmarks</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Lesezeichen " +"des Browsers|configure#browser_bookmarks]]</span>." + +msgid "" +"The <span class=\"filename\">cups-configuration</span> folder corresponds to " +"the <span class=\"guilabel\">[[Printers|configure#printers]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">cups-configuration</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Drucker|configure#printers]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">dotfiles</span> folder corresponds to the <span " +"class=\"guilabel\">[[Dotfiles|configure#dotfiles]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">dotfiles</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Versteckte " +"Konfigurationsdateien|configure#dotfiles]]</span>." + +msgid "" +"The <span class=\"filename\">electrum</span> folder corresponds to the <span " +"class=\"guilabel\">[[Bitcoin Client|configure#bitcoin]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">electrum</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Bitcoin-Client|configure#bitcoin]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">gnupg</span> folder corresponds to the <span " +"class=\"guilabel\">[[GnuPG|configure#gnupg]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">gnupg</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[GnuPG|configure#gnupg]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">thunderbird</span> folder corresponds to the " +"<span class=\"guilabel\">[[Thunderbird|configure#thunderbird]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">thunderbird</span>-Ordner entspricht der " +"Funktion des beständigen Speicherbereichs für <span class=\"guilabel" +"\">[[Thunderbird|configure#thunderbird]]</span>." + +msgid "" +"The <span class=\"filename\">nm-connections</span> folder corresponds to the " +"<span class=\"guilabel\">[[Network Connections|" +"configure#network_connections]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">nm-connections</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Netzwerkverbindungen|" +"configure#network_connections]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">openssh-client</span> folder corresponds to the " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">openssh-client</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> Funktion " +"des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">Persistent</span> folder corresponds to the " +"<span class=\"guilabel\">[[Personal Data|configure#personal_data]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">Persistent</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Persönliche Dateien|configure#personal_data]]</span> " +"Funktion des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">pidgin</span> folder corresponds to the <span " +"class=\"guilabel\">[[Pidgin|configure#pidgin]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">pidgin</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[Pidgin|configure#pidgin]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "After doing the copy, close the file browser." +msgstr "Schließen Sie nach dem Durchführen der Kopie den Dateimanager." + +msgid "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" +msgstr "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" + +msgid "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" +msgstr "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" + +msgid "" +"The <span class=\"filename\">gnome-keyring</span> folder corresponds to the " +"<span class=\"guilabel\">[[GNOME Keyring|configure#gnome_keyring]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">gnome-keyring</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[GNOME Schlüsselbund|configure#gnome_keyring]]</" +"span> Funktion des beständigen Speicherbereichs." + +msgid "" +"In the file browser, navigate to <span class=\"filename\">/media/amnesia/" +"TailsData</span> to open the old persistent volume." +msgstr "" +"Navigieren Sie im Dateimanager zu <span class=\"filename\">/media/amnesia/" +"TailsData</span>, um die alte beständige Speicherpartition zu öffnen." diff --git a/wiki/src/doc/first_steps/persistence/copy.sr_Latn.po b/wiki/src/doc/first_steps/persistence/copy.sr_Latn.po index 71bd5d76550bca29ab5b93f2a7f5d822b4264681..ac0f89523a7853b106a3dbac8cacb2dee0aaa612 100644 --- a/wiki/src/doc/first_steps/persistence/copy.sr_Latn.po +++ b/wiki/src/doc/first_steps/persistence/copy.sr_Latn.po @@ -8,7 +8,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-01-05 19:09+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" @@ -188,7 +188,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<p class=\"pre command root\">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" +msgid "<p class=\"pre command root\">rsync -PaSHAXv --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" msgstr "" #. type: Plain text @@ -224,3 +224,343 @@ msgid "" "You can now eject the <span class=\"guilabel\">TailsData</span> volume in the\n" "<span class=\"application\">Files</span> browser and unplug your backup Tails USB stick.\n" msgstr "" + +msgid "" +"These instructions explain how to manually copy your persistent data to a " +"new USB stick. Follow them if you have good reasons to think that your " +"persistence settings are corrupted or if you want to be extra careful." +msgstr "" +"Diese Anweisungen erklären, wie Sie Ihre beständig gespeicherten Daten " +"händisch auf einen neuen USB-Stick kopieren. Befolgen Sie diese, wenn Sie " +"gute Gründe dafür haben, zu glauben, dass Ihre Einstellungen für den " +"beständigen Speicherbereich beschädigt sind oder Sie besonders vorsichtig " +"sein möchten." + +msgid "" +"Install the latest Tails onto a new USB stick using the usual [[installing " +"instructions|install]]. Do not use the Tails USB stick that might be " +"corrupted in the process of installing the new one." +msgstr "" +"Installieren Sie das aktuellste Tails auf einem neuen USB-Stick, indem Sie " +"die [[Installationsanleitung|install]] befolgen. Benutzen Sie beim Vorgang " +"der Installation auf einen neuen USB-Stick nicht den möglicherweise " +"beschädigten." + +msgid "" +"[[Create a persistent volume|configure]] on this new USB stick. We advise " +"you to use a different passphrase to protect this new persistent volume." +msgstr "" +"[[Erstellen Sie einen neuen beständigen Speicherbereich|configure]] auf " +"diesem neuen USB-Stick. Wir empfehlen es Ihnen, eine andere Passphrase zum " +"Schutz dieses neuen beständigen Speicherbereichs zu wählen." + +msgid "" +"Enable again on this new USB stick the persistence features of your choice." +msgstr "" +"Aktivieren Sie auf dem neuen USB-Stick erneut die Funktionen Ihrer Wahl für " +"den beständigen Speicherbereich." + +msgid "Rescue your files from the old Tails USB stick\n" +msgstr "Sichern Sie Ihre Dateien vom alten USB-Stick mit Tails\n" + +msgid "Mount the old persistent volume\n" +msgstr "Hängen Sie den alten beständigen Speicherbereich ein\n" + +msgid "" +"Plug in the old Tails USB stick from which you want to rescue your data." +msgstr "" +"Schließen Sie den alten USB-Stick mit Tails an, von welchem Sie Ihre Daten " +"sichern möchten." + +msgid "" +"In the left pane, click on the USB stick corresponding to the old Tails USB " +"stick." +msgstr "" +"Wählen Sie im linken Fensterbereich den USB-Stick aus, welcher dem alten USB-" +"Stick mit Tails entspricht." + +msgid "" +"In the right pane, click on the partition labeled as <span class=\"guilabel" +"\">LUKS</span>. The name of the partition must be <span class=\"guilabel" +"\">TailsData</span>." +msgstr "" +"Wählen Sie im rechten Fensterbereich die Partition mit dem Typ <span class=" +"\"guilabel\">LUKS</span> aus. Der Name der Partition muss <span class=\"label" +"\">TailsData</span> lauten." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/unlock.png alt=\"Unlock\" " +"class=\"symbolic\" link=\"no\"]]</span> button to unlock the old persistent " +"volume. Enter the passphrase of the old persistent volume and click <span " +"class=\"button\">Unlock</span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/unlock." +"png alt=\"Entsperren\" class=\"symbolic\" link=\"no\"]]</span>, um den alten " +"beständigen Speicherbereich zu entsperren. Geben Sie die Passphrase des " +"alten beständigen Speicherbereichs ein und klicken Sie auf <span class=" +"\"guilabel\">Entsperren</span>." + +msgid "" +"Click on the <span class=\"guilabel\">TailsData</span> partition that " +"appears below the <span class=\"guilabel\">LUKS</span> partition." +msgstr "" +"Wählen Sie die Partition <span class=\"guilabel\">TailsData</span> aus, die " +"unter der <span class=\"guilabel\">LUKS</span>-Partition erscheint." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/media-playback-start.png alt=" +"\"Mount\" class=\"symbolic\" link=\"no\"]]</span> button. The old persistent " +"volume is now mounted as <span class=\"filename\">/media/amnesia/TailsData</" +"span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/media-" +"playback-start.png alt=\"Einhängen\" class=\"symbolic\" link=\"no\"]]</" +"span>. Der alte beständige Speicherbereich ist nun unter <span class=" +"\"filename\">/media/amnesia/TailsData</span> eingehängt." + +msgid "Copy your old files to the new persistent volume\n" +msgstr "" +"Kopieren Sie Ihre alten Dateien in den neuen beständigen Speicherbereich\n" + +msgid "" +"Execute the <span class=\"code\">nautilus</span> command to open the file " +"browser with administration rights." +msgstr "" +"Führen Sie den Befehl <span class=\"code\">nautilus</span> aus, um den " +"Dateimanager mit Administrationsrechten zu öffnen." + +msgid "" +"In the left pane, click on <span class=\"guilabel\">Other Locations</span>." +msgstr "" +"Klicken Sie im linken Fensterbereich auf <span class=\"guilabel\">Andere " +"Orte</span>." + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">media</span> ▸ <span class=\"guilabel" +"\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</span> to open " +"the old persistent volume." +msgstr "" +"Navigieren Sie im rechten Fensterbereich nach <span class=\"guilabel" +"\">Computer</span> ▸ <span class=\"guilabel\">media</span> ▸ <span " +"class=\"guilabel\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</" +"span>, um den alten beständigen Speicherbereich zu öffnen." + +msgid "" +"1. In the titlebar, choose\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"New tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" to open a new tab.\n" +msgstr "" +"1. Wählen Sie in der Titelleiste\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menü\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"Neuer Tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" um einen neuen Reiter zu öffnen.\n" + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">live</span> ▸ <span class=\"guilabel" +"\">persistence</span> ▸ <span class=\"guilabel\">TailsData_unlocked</" +"span> to open the new persistent volume." +msgstr "" +"Navigieren Sie in dem rechten Reiter nach <span class=\"guilabel\">Computer</" +"span> ▸ <span class=\"guilabel\">live</span> ▸ <span class=" +"\"guilabel\">persistence</span> ▸ <span class=\"guilabel" +"\">TailsData_unlocked</span>, um den neuen beständigen Speicherbereich zu " +"öffnen." + +msgid "" +"To copy a folder containing persistent data from the old persistent volume " +"to the new one, drag and drop that folder from the <span class=\"guilabel" +"\">TailsData</span> onto the <span class=\"guilabel\">TailsData_unlocked</" +"span> tab." +msgstr "" +"Um einen Ordner, der beständig gespeicherte Daten enthält, vom alten " +"beständigen Speicherbereich in den neuen zu kopieren, ziehen Sie diesen " +"Ordner aus dem Reiter <span class=\"guilabel\">TailsData</span> und lassen " +"Sie ihn auf dem Reiter <span class=\"guilabel\">TailsData_unlocked</span> " +"los." + +msgid "" +" When copying a folder, select the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Merge</span> to apply to all subfolders.\n" +" Then you might have to select again the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Replace</span> to apply to all files.\n" +msgstr "" +" Wählen Sie beim Kopieren von Ordnern die Option\n" +" <span class=\"guilabel\"> Diese Aktion auf alle Dateien anwenden</span> " +"und klicken\n" +" Sie auf <span class=\"button\">Zusammenführen</span>, um es auf alle " +"Unterordner anzuwenden.\n" +" Anschließend könnte es notwendig sein, die Option\n" +" <span class=\"guilabel\"> Aktion auf alle Dateien anwenden</span> " +"auszuwählen\n" +" und auf <span class=\"button\">Ersetzen</span> zu klicken, um sie auf " +"alle Dateien anzuwenden.\n" + +msgid " Do not copy a folder if you do not know what it is used for.\n" +msgstr "" +" Kopieren Sie einen Ordner nicht, sofern Sie nicht wissen, wofür er " +"verwendet wird.\n" + +msgid " <a id=\"feature_files\"></a>\n" +msgstr " <a id=\"feature_files\"></a>\n" + +#, fuzzy +#| msgid "" +#| "The <span class=\"filename\">apt</span> folder corresponds to the <span " +#| "class=\"guilabel\">[[APT Packages|configure#apt_packages]]</span> and " +#| "<span class=\"guilabel\">[[APT Lists|configure#apt_lists]]</span> " +#| "persistence features. But it requires administration rights to be " +#| "imported and this goes beyond the scope of these instructions. Note that " +#| "this folder does not contain personal data." +msgid "" +"The <span class=\"filename\">apt</span> folder and the <span class=\"filename" +"\">live-additional-software.conf</span> file correspond to the <span class=" +"\"guilabel\">[[Additional Software|configure#additional_software]]</span> " +"persistence feature. But they require administration rights to be imported " +"and this goes beyond the scope of these instructions. Note that this folder " +"does not contain personal data." +msgstr "" +"Der <span class=\"filename\">apt</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[APT Pakete|configure#apt_packages]]</span> und <span class=" +"\"guilabel\">[[APT Listen|configure#apt_lists]]</span> Funktion des " +"beständigen Speicherbereichs. Aber sie benötigen Administrationsrechte, um " +"importiert zu werden und dies sprengt den Rahmen dieser Dokumentation. " +"Beachten Sie, dass dieser Ordner keine persönlichen Daten enthält." + +msgid "" +"The <span class=\"filename\">bookmarks</span> folder corresponds to the " +"<span class=\"guilabel\">[[Browser Bookmarks|configure#browser_bookmarks]]</" +"span> persistence feature." +msgstr "" +"Der <span class=\"filename\">bookmarks</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Lesezeichen " +"des Browsers|configure#browser_bookmarks]]</span>." + +msgid "" +"The <span class=\"filename\">cups-configuration</span> folder corresponds to " +"the <span class=\"guilabel\">[[Printers|configure#printers]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">cups-configuration</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Drucker|configure#printers]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">dotfiles</span> folder corresponds to the <span " +"class=\"guilabel\">[[Dotfiles|configure#dotfiles]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">dotfiles</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Versteckte " +"Konfigurationsdateien|configure#dotfiles]]</span>." + +msgid "" +"The <span class=\"filename\">electrum</span> folder corresponds to the <span " +"class=\"guilabel\">[[Bitcoin Client|configure#bitcoin]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">electrum</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Bitcoin-Client|configure#bitcoin]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">gnupg</span> folder corresponds to the <span " +"class=\"guilabel\">[[GnuPG|configure#gnupg]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">gnupg</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[GnuPG|configure#gnupg]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">thunderbird</span> folder corresponds to the " +"<span class=\"guilabel\">[[Thunderbird|configure#thunderbird]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">thunderbird</span>-Ordner entspricht der " +"Funktion des beständigen Speicherbereichs für <span class=\"guilabel" +"\">[[Thunderbird|configure#thunderbird]]</span>." + +msgid "" +"The <span class=\"filename\">nm-connections</span> folder corresponds to the " +"<span class=\"guilabel\">[[Network Connections|" +"configure#network_connections]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">nm-connections</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Netzwerkverbindungen|" +"configure#network_connections]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">openssh-client</span> folder corresponds to the " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">openssh-client</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> Funktion " +"des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">Persistent</span> folder corresponds to the " +"<span class=\"guilabel\">[[Personal Data|configure#personal_data]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">Persistent</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Persönliche Dateien|configure#personal_data]]</span> " +"Funktion des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">pidgin</span> folder corresponds to the <span " +"class=\"guilabel\">[[Pidgin|configure#pidgin]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">pidgin</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[Pidgin|configure#pidgin]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "After doing the copy, close the file browser." +msgstr "Schließen Sie nach dem Durchführen der Kopie den Dateimanager." + +msgid "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" +msgstr "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" + +msgid "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" +msgstr "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" + +msgid "" +"The <span class=\"filename\">gnome-keyring</span> folder corresponds to the " +"<span class=\"guilabel\">[[GNOME Keyring|configure#gnome_keyring]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">gnome-keyring</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[GNOME Schlüsselbund|configure#gnome_keyring]]</" +"span> Funktion des beständigen Speicherbereichs." + +msgid "" +"In the file browser, navigate to <span class=\"filename\">/media/amnesia/" +"TailsData</span> to open the old persistent volume." +msgstr "" +"Navigieren Sie im Dateimanager zu <span class=\"filename\">/media/amnesia/" +"TailsData</span>, um die alte beständige Speicherpartition zu öffnen." diff --git a/wiki/src/doc/first_steps/persistence/copy.tr.po b/wiki/src/doc/first_steps/persistence/copy.tr.po index 34a038f971725a0cabd78aacdd2e50d703ed6e70..cc9ebdac4d428f5ab7887260429238eb48505b91 100644 --- a/wiki/src/doc/first_steps/persistence/copy.tr.po +++ b/wiki/src/doc/first_steps/persistence/copy.tr.po @@ -3,19 +3,20 @@ # 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" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-11-21 09:32+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\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" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -165,7 +166,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"caution\">\n" -msgstr "" +msgstr "<div class=\"caution\">\n" #. type: Plain text #, no-wrap @@ -179,7 +180,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "</div>\n" -msgstr "" +msgstr "</div>\n" #. type: Plain text #, no-wrap @@ -188,7 +189,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<p class=\"pre command root\">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" +msgid "<p class=\"pre command root\">rsync -PaSHAXv --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" msgstr "" #. type: Plain text @@ -209,7 +210,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap @@ -224,3 +225,343 @@ msgid "" "You can now eject the <span class=\"guilabel\">TailsData</span> volume in the\n" "<span class=\"application\">Files</span> browser and unplug your backup Tails USB stick.\n" msgstr "" + +msgid "" +"These instructions explain how to manually copy your persistent data to a " +"new USB stick. Follow them if you have good reasons to think that your " +"persistence settings are corrupted or if you want to be extra careful." +msgstr "" +"Diese Anweisungen erklären, wie Sie Ihre beständig gespeicherten Daten " +"händisch auf einen neuen USB-Stick kopieren. Befolgen Sie diese, wenn Sie " +"gute Gründe dafür haben, zu glauben, dass Ihre Einstellungen für den " +"beständigen Speicherbereich beschädigt sind oder Sie besonders vorsichtig " +"sein möchten." + +msgid "" +"Install the latest Tails onto a new USB stick using the usual [[installing " +"instructions|install]]. Do not use the Tails USB stick that might be " +"corrupted in the process of installing the new one." +msgstr "" +"Installieren Sie das aktuellste Tails auf einem neuen USB-Stick, indem Sie " +"die [[Installationsanleitung|install]] befolgen. Benutzen Sie beim Vorgang " +"der Installation auf einen neuen USB-Stick nicht den möglicherweise " +"beschädigten." + +msgid "" +"[[Create a persistent volume|configure]] on this new USB stick. We advise " +"you to use a different passphrase to protect this new persistent volume." +msgstr "" +"[[Erstellen Sie einen neuen beständigen Speicherbereich|configure]] auf " +"diesem neuen USB-Stick. Wir empfehlen es Ihnen, eine andere Passphrase zum " +"Schutz dieses neuen beständigen Speicherbereichs zu wählen." + +msgid "" +"Enable again on this new USB stick the persistence features of your choice." +msgstr "" +"Aktivieren Sie auf dem neuen USB-Stick erneut die Funktionen Ihrer Wahl für " +"den beständigen Speicherbereich." + +msgid "Rescue your files from the old Tails USB stick\n" +msgstr "Sichern Sie Ihre Dateien vom alten USB-Stick mit Tails\n" + +msgid "Mount the old persistent volume\n" +msgstr "Hängen Sie den alten beständigen Speicherbereich ein\n" + +msgid "" +"Plug in the old Tails USB stick from which you want to rescue your data." +msgstr "" +"Schließen Sie den alten USB-Stick mit Tails an, von welchem Sie Ihre Daten " +"sichern möchten." + +msgid "" +"In the left pane, click on the USB stick corresponding to the old Tails USB " +"stick." +msgstr "" +"Wählen Sie im linken Fensterbereich den USB-Stick aus, welcher dem alten USB-" +"Stick mit Tails entspricht." + +msgid "" +"In the right pane, click on the partition labeled as <span class=\"guilabel" +"\">LUKS</span>. The name of the partition must be <span class=\"guilabel" +"\">TailsData</span>." +msgstr "" +"Wählen Sie im rechten Fensterbereich die Partition mit dem Typ <span class=" +"\"guilabel\">LUKS</span> aus. Der Name der Partition muss <span class=\"label" +"\">TailsData</span> lauten." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/unlock.png alt=\"Unlock\" " +"class=\"symbolic\" link=\"no\"]]</span> button to unlock the old persistent " +"volume. Enter the passphrase of the old persistent volume and click <span " +"class=\"button\">Unlock</span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/unlock." +"png alt=\"Entsperren\" class=\"symbolic\" link=\"no\"]]</span>, um den alten " +"beständigen Speicherbereich zu entsperren. Geben Sie die Passphrase des " +"alten beständigen Speicherbereichs ein und klicken Sie auf <span class=" +"\"guilabel\">Entsperren</span>." + +msgid "" +"Click on the <span class=\"guilabel\">TailsData</span> partition that " +"appears below the <span class=\"guilabel\">LUKS</span> partition." +msgstr "" +"Wählen Sie die Partition <span class=\"guilabel\">TailsData</span> aus, die " +"unter der <span class=\"guilabel\">LUKS</span>-Partition erscheint." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/media-playback-start.png alt=" +"\"Mount\" class=\"symbolic\" link=\"no\"]]</span> button. The old persistent " +"volume is now mounted as <span class=\"filename\">/media/amnesia/TailsData</" +"span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/media-" +"playback-start.png alt=\"Einhängen\" class=\"symbolic\" link=\"no\"]]</" +"span>. Der alte beständige Speicherbereich ist nun unter <span class=" +"\"filename\">/media/amnesia/TailsData</span> eingehängt." + +msgid "Copy your old files to the new persistent volume\n" +msgstr "" +"Kopieren Sie Ihre alten Dateien in den neuen beständigen Speicherbereich\n" + +msgid "" +"Execute the <span class=\"code\">nautilus</span> command to open the file " +"browser with administration rights." +msgstr "" +"Führen Sie den Befehl <span class=\"code\">nautilus</span> aus, um den " +"Dateimanager mit Administrationsrechten zu öffnen." + +msgid "" +"In the left pane, click on <span class=\"guilabel\">Other Locations</span>." +msgstr "" +"Klicken Sie im linken Fensterbereich auf <span class=\"guilabel\">Andere " +"Orte</span>." + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">media</span> ▸ <span class=\"guilabel" +"\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</span> to open " +"the old persistent volume." +msgstr "" +"Navigieren Sie im rechten Fensterbereich nach <span class=\"guilabel" +"\">Computer</span> ▸ <span class=\"guilabel\">media</span> ▸ <span " +"class=\"guilabel\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</" +"span>, um den alten beständigen Speicherbereich zu öffnen." + +msgid "" +"1. In the titlebar, choose\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"New tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" to open a new tab.\n" +msgstr "" +"1. Wählen Sie in der Titelleiste\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menü\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"Neuer Tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" um einen neuen Reiter zu öffnen.\n" + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">live</span> ▸ <span class=\"guilabel" +"\">persistence</span> ▸ <span class=\"guilabel\">TailsData_unlocked</" +"span> to open the new persistent volume." +msgstr "" +"Navigieren Sie in dem rechten Reiter nach <span class=\"guilabel\">Computer</" +"span> ▸ <span class=\"guilabel\">live</span> ▸ <span class=" +"\"guilabel\">persistence</span> ▸ <span class=\"guilabel" +"\">TailsData_unlocked</span>, um den neuen beständigen Speicherbereich zu " +"öffnen." + +msgid "" +"To copy a folder containing persistent data from the old persistent volume " +"to the new one, drag and drop that folder from the <span class=\"guilabel" +"\">TailsData</span> onto the <span class=\"guilabel\">TailsData_unlocked</" +"span> tab." +msgstr "" +"Um einen Ordner, der beständig gespeicherte Daten enthält, vom alten " +"beständigen Speicherbereich in den neuen zu kopieren, ziehen Sie diesen " +"Ordner aus dem Reiter <span class=\"guilabel\">TailsData</span> und lassen " +"Sie ihn auf dem Reiter <span class=\"guilabel\">TailsData_unlocked</span> " +"los." + +msgid "" +" When copying a folder, select the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Merge</span> to apply to all subfolders.\n" +" Then you might have to select again the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Replace</span> to apply to all files.\n" +msgstr "" +" Wählen Sie beim Kopieren von Ordnern die Option\n" +" <span class=\"guilabel\"> Diese Aktion auf alle Dateien anwenden</span> " +"und klicken\n" +" Sie auf <span class=\"button\">Zusammenführen</span>, um es auf alle " +"Unterordner anzuwenden.\n" +" Anschließend könnte es notwendig sein, die Option\n" +" <span class=\"guilabel\"> Aktion auf alle Dateien anwenden</span> " +"auszuwählen\n" +" und auf <span class=\"button\">Ersetzen</span> zu klicken, um sie auf " +"alle Dateien anzuwenden.\n" + +msgid " Do not copy a folder if you do not know what it is used for.\n" +msgstr "" +" Kopieren Sie einen Ordner nicht, sofern Sie nicht wissen, wofür er " +"verwendet wird.\n" + +msgid " <a id=\"feature_files\"></a>\n" +msgstr " <a id=\"feature_files\"></a>\n" + +#, fuzzy +#| msgid "" +#| "The <span class=\"filename\">apt</span> folder corresponds to the <span " +#| "class=\"guilabel\">[[APT Packages|configure#apt_packages]]</span> and " +#| "<span class=\"guilabel\">[[APT Lists|configure#apt_lists]]</span> " +#| "persistence features. But it requires administration rights to be " +#| "imported and this goes beyond the scope of these instructions. Note that " +#| "this folder does not contain personal data." +msgid "" +"The <span class=\"filename\">apt</span> folder and the <span class=\"filename" +"\">live-additional-software.conf</span> file correspond to the <span class=" +"\"guilabel\">[[Additional Software|configure#additional_software]]</span> " +"persistence feature. But they require administration rights to be imported " +"and this goes beyond the scope of these instructions. Note that this folder " +"does not contain personal data." +msgstr "" +"Der <span class=\"filename\">apt</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[APT Pakete|configure#apt_packages]]</span> und <span class=" +"\"guilabel\">[[APT Listen|configure#apt_lists]]</span> Funktion des " +"beständigen Speicherbereichs. Aber sie benötigen Administrationsrechte, um " +"importiert zu werden und dies sprengt den Rahmen dieser Dokumentation. " +"Beachten Sie, dass dieser Ordner keine persönlichen Daten enthält." + +msgid "" +"The <span class=\"filename\">bookmarks</span> folder corresponds to the " +"<span class=\"guilabel\">[[Browser Bookmarks|configure#browser_bookmarks]]</" +"span> persistence feature." +msgstr "" +"Der <span class=\"filename\">bookmarks</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Lesezeichen " +"des Browsers|configure#browser_bookmarks]]</span>." + +msgid "" +"The <span class=\"filename\">cups-configuration</span> folder corresponds to " +"the <span class=\"guilabel\">[[Printers|configure#printers]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">cups-configuration</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Drucker|configure#printers]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">dotfiles</span> folder corresponds to the <span " +"class=\"guilabel\">[[Dotfiles|configure#dotfiles]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">dotfiles</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Versteckte " +"Konfigurationsdateien|configure#dotfiles]]</span>." + +msgid "" +"The <span class=\"filename\">electrum</span> folder corresponds to the <span " +"class=\"guilabel\">[[Bitcoin Client|configure#bitcoin]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">electrum</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Bitcoin-Client|configure#bitcoin]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">gnupg</span> folder corresponds to the <span " +"class=\"guilabel\">[[GnuPG|configure#gnupg]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">gnupg</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[GnuPG|configure#gnupg]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">thunderbird</span> folder corresponds to the " +"<span class=\"guilabel\">[[Thunderbird|configure#thunderbird]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">thunderbird</span>-Ordner entspricht der " +"Funktion des beständigen Speicherbereichs für <span class=\"guilabel" +"\">[[Thunderbird|configure#thunderbird]]</span>." + +msgid "" +"The <span class=\"filename\">nm-connections</span> folder corresponds to the " +"<span class=\"guilabel\">[[Network Connections|" +"configure#network_connections]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">nm-connections</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Netzwerkverbindungen|" +"configure#network_connections]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">openssh-client</span> folder corresponds to the " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">openssh-client</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> Funktion " +"des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">Persistent</span> folder corresponds to the " +"<span class=\"guilabel\">[[Personal Data|configure#personal_data]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">Persistent</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Persönliche Dateien|configure#personal_data]]</span> " +"Funktion des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">pidgin</span> folder corresponds to the <span " +"class=\"guilabel\">[[Pidgin|configure#pidgin]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">pidgin</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[Pidgin|configure#pidgin]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "After doing the copy, close the file browser." +msgstr "Schließen Sie nach dem Durchführen der Kopie den Dateimanager." + +msgid "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" +msgstr "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" + +msgid "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" +msgstr "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" + +msgid "" +"The <span class=\"filename\">gnome-keyring</span> folder corresponds to the " +"<span class=\"guilabel\">[[GNOME Keyring|configure#gnome_keyring]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">gnome-keyring</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[GNOME Schlüsselbund|configure#gnome_keyring]]</" +"span> Funktion des beständigen Speicherbereichs." + +msgid "" +"In the file browser, navigate to <span class=\"filename\">/media/amnesia/" +"TailsData</span> to open the old persistent volume." +msgstr "" +"Navigieren Sie im Dateimanager zu <span class=\"filename\">/media/amnesia/" +"TailsData</span>, um die alte beständige Speicherpartition zu öffnen." diff --git a/wiki/src/doc/first_steps/persistence/copy.zh.po b/wiki/src/doc/first_steps/persistence/copy.zh.po index 4ab43c62aa2cf3c27c59c76b90dc23bb105550f4..e2fab8848442d5a87ef1dbbce0f6b0da1a1b99cf 100644 --- a/wiki/src/doc/first_steps/persistence/copy.zh.po +++ b/wiki/src/doc/first_steps/persistence/copy.zh.po @@ -3,19 +3,20 @@ # 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" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-11-21 09:32+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2020-01-05 19:09+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" "Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -179,7 +180,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "</div>\n" -msgstr "" +msgstr "</div>\n" #. type: Plain text #, no-wrap @@ -188,7 +189,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<p class=\"pre command root\">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" +msgid "<p class=\"pre command root\">rsync -PaSHAXv --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" msgstr "" #. type: Plain text @@ -224,3 +225,343 @@ msgid "" "You can now eject the <span class=\"guilabel\">TailsData</span> volume in the\n" "<span class=\"application\">Files</span> browser and unplug your backup Tails USB stick.\n" msgstr "" + +msgid "" +"These instructions explain how to manually copy your persistent data to a " +"new USB stick. Follow them if you have good reasons to think that your " +"persistence settings are corrupted or if you want to be extra careful." +msgstr "" +"Diese Anweisungen erklären, wie Sie Ihre beständig gespeicherten Daten " +"händisch auf einen neuen USB-Stick kopieren. Befolgen Sie diese, wenn Sie " +"gute Gründe dafür haben, zu glauben, dass Ihre Einstellungen für den " +"beständigen Speicherbereich beschädigt sind oder Sie besonders vorsichtig " +"sein möchten." + +msgid "" +"Install the latest Tails onto a new USB stick using the usual [[installing " +"instructions|install]]. Do not use the Tails USB stick that might be " +"corrupted in the process of installing the new one." +msgstr "" +"Installieren Sie das aktuellste Tails auf einem neuen USB-Stick, indem Sie " +"die [[Installationsanleitung|install]] befolgen. Benutzen Sie beim Vorgang " +"der Installation auf einen neuen USB-Stick nicht den möglicherweise " +"beschädigten." + +msgid "" +"[[Create a persistent volume|configure]] on this new USB stick. We advise " +"you to use a different passphrase to protect this new persistent volume." +msgstr "" +"[[Erstellen Sie einen neuen beständigen Speicherbereich|configure]] auf " +"diesem neuen USB-Stick. Wir empfehlen es Ihnen, eine andere Passphrase zum " +"Schutz dieses neuen beständigen Speicherbereichs zu wählen." + +msgid "" +"Enable again on this new USB stick the persistence features of your choice." +msgstr "" +"Aktivieren Sie auf dem neuen USB-Stick erneut die Funktionen Ihrer Wahl für " +"den beständigen Speicherbereich." + +msgid "Rescue your files from the old Tails USB stick\n" +msgstr "Sichern Sie Ihre Dateien vom alten USB-Stick mit Tails\n" + +msgid "Mount the old persistent volume\n" +msgstr "Hängen Sie den alten beständigen Speicherbereich ein\n" + +msgid "" +"Plug in the old Tails USB stick from which you want to rescue your data." +msgstr "" +"Schließen Sie den alten USB-Stick mit Tails an, von welchem Sie Ihre Daten " +"sichern möchten." + +msgid "" +"In the left pane, click on the USB stick corresponding to the old Tails USB " +"stick." +msgstr "" +"Wählen Sie im linken Fensterbereich den USB-Stick aus, welcher dem alten USB-" +"Stick mit Tails entspricht." + +msgid "" +"In the right pane, click on the partition labeled as <span class=\"guilabel" +"\">LUKS</span>. The name of the partition must be <span class=\"guilabel" +"\">TailsData</span>." +msgstr "" +"Wählen Sie im rechten Fensterbereich die Partition mit dem Typ <span class=" +"\"guilabel\">LUKS</span> aus. Der Name der Partition muss <span class=\"label" +"\">TailsData</span> lauten." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/unlock.png alt=\"Unlock\" " +"class=\"symbolic\" link=\"no\"]]</span> button to unlock the old persistent " +"volume. Enter the passphrase of the old persistent volume and click <span " +"class=\"button\">Unlock</span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/unlock." +"png alt=\"Entsperren\" class=\"symbolic\" link=\"no\"]]</span>, um den alten " +"beständigen Speicherbereich zu entsperren. Geben Sie die Passphrase des " +"alten beständigen Speicherbereichs ein und klicken Sie auf <span class=" +"\"guilabel\">Entsperren</span>." + +msgid "" +"Click on the <span class=\"guilabel\">TailsData</span> partition that " +"appears below the <span class=\"guilabel\">LUKS</span> partition." +msgstr "" +"Wählen Sie die Partition <span class=\"guilabel\">TailsData</span> aus, die " +"unter der <span class=\"guilabel\">LUKS</span>-Partition erscheint." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/media-playback-start.png alt=" +"\"Mount\" class=\"symbolic\" link=\"no\"]]</span> button. The old persistent " +"volume is now mounted as <span class=\"filename\">/media/amnesia/TailsData</" +"span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/media-" +"playback-start.png alt=\"Einhängen\" class=\"symbolic\" link=\"no\"]]</" +"span>. Der alte beständige Speicherbereich ist nun unter <span class=" +"\"filename\">/media/amnesia/TailsData</span> eingehängt." + +msgid "Copy your old files to the new persistent volume\n" +msgstr "" +"Kopieren Sie Ihre alten Dateien in den neuen beständigen Speicherbereich\n" + +msgid "" +"Execute the <span class=\"code\">nautilus</span> command to open the file " +"browser with administration rights." +msgstr "" +"Führen Sie den Befehl <span class=\"code\">nautilus</span> aus, um den " +"Dateimanager mit Administrationsrechten zu öffnen." + +msgid "" +"In the left pane, click on <span class=\"guilabel\">Other Locations</span>." +msgstr "" +"Klicken Sie im linken Fensterbereich auf <span class=\"guilabel\">Andere " +"Orte</span>." + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">media</span> ▸ <span class=\"guilabel" +"\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</span> to open " +"the old persistent volume." +msgstr "" +"Navigieren Sie im rechten Fensterbereich nach <span class=\"guilabel" +"\">Computer</span> ▸ <span class=\"guilabel\">media</span> ▸ <span " +"class=\"guilabel\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</" +"span>, um den alten beständigen Speicherbereich zu öffnen." + +msgid "" +"1. In the titlebar, choose\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"New tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" to open a new tab.\n" +msgstr "" +"1. Wählen Sie in der Titelleiste\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menü\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"Neuer Tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" um einen neuen Reiter zu öffnen.\n" + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">live</span> ▸ <span class=\"guilabel" +"\">persistence</span> ▸ <span class=\"guilabel\">TailsData_unlocked</" +"span> to open the new persistent volume." +msgstr "" +"Navigieren Sie in dem rechten Reiter nach <span class=\"guilabel\">Computer</" +"span> ▸ <span class=\"guilabel\">live</span> ▸ <span class=" +"\"guilabel\">persistence</span> ▸ <span class=\"guilabel" +"\">TailsData_unlocked</span>, um den neuen beständigen Speicherbereich zu " +"öffnen." + +msgid "" +"To copy a folder containing persistent data from the old persistent volume " +"to the new one, drag and drop that folder from the <span class=\"guilabel" +"\">TailsData</span> onto the <span class=\"guilabel\">TailsData_unlocked</" +"span> tab." +msgstr "" +"Um einen Ordner, der beständig gespeicherte Daten enthält, vom alten " +"beständigen Speicherbereich in den neuen zu kopieren, ziehen Sie diesen " +"Ordner aus dem Reiter <span class=\"guilabel\">TailsData</span> und lassen " +"Sie ihn auf dem Reiter <span class=\"guilabel\">TailsData_unlocked</span> " +"los." + +msgid "" +" When copying a folder, select the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Merge</span> to apply to all subfolders.\n" +" Then you might have to select again the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Replace</span> to apply to all files.\n" +msgstr "" +" Wählen Sie beim Kopieren von Ordnern die Option\n" +" <span class=\"guilabel\"> Diese Aktion auf alle Dateien anwenden</span> " +"und klicken\n" +" Sie auf <span class=\"button\">Zusammenführen</span>, um es auf alle " +"Unterordner anzuwenden.\n" +" Anschließend könnte es notwendig sein, die Option\n" +" <span class=\"guilabel\"> Aktion auf alle Dateien anwenden</span> " +"auszuwählen\n" +" und auf <span class=\"button\">Ersetzen</span> zu klicken, um sie auf " +"alle Dateien anzuwenden.\n" + +msgid " Do not copy a folder if you do not know what it is used for.\n" +msgstr "" +" Kopieren Sie einen Ordner nicht, sofern Sie nicht wissen, wofür er " +"verwendet wird.\n" + +msgid " <a id=\"feature_files\"></a>\n" +msgstr " <a id=\"feature_files\"></a>\n" + +#, fuzzy +#| msgid "" +#| "The <span class=\"filename\">apt</span> folder corresponds to the <span " +#| "class=\"guilabel\">[[APT Packages|configure#apt_packages]]</span> and " +#| "<span class=\"guilabel\">[[APT Lists|configure#apt_lists]]</span> " +#| "persistence features. But it requires administration rights to be " +#| "imported and this goes beyond the scope of these instructions. Note that " +#| "this folder does not contain personal data." +msgid "" +"The <span class=\"filename\">apt</span> folder and the <span class=\"filename" +"\">live-additional-software.conf</span> file correspond to the <span class=" +"\"guilabel\">[[Additional Software|configure#additional_software]]</span> " +"persistence feature. But they require administration rights to be imported " +"and this goes beyond the scope of these instructions. Note that this folder " +"does not contain personal data." +msgstr "" +"Der <span class=\"filename\">apt</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[APT Pakete|configure#apt_packages]]</span> und <span class=" +"\"guilabel\">[[APT Listen|configure#apt_lists]]</span> Funktion des " +"beständigen Speicherbereichs. Aber sie benötigen Administrationsrechte, um " +"importiert zu werden und dies sprengt den Rahmen dieser Dokumentation. " +"Beachten Sie, dass dieser Ordner keine persönlichen Daten enthält." + +msgid "" +"The <span class=\"filename\">bookmarks</span> folder corresponds to the " +"<span class=\"guilabel\">[[Browser Bookmarks|configure#browser_bookmarks]]</" +"span> persistence feature." +msgstr "" +"Der <span class=\"filename\">bookmarks</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Lesezeichen " +"des Browsers|configure#browser_bookmarks]]</span>." + +msgid "" +"The <span class=\"filename\">cups-configuration</span> folder corresponds to " +"the <span class=\"guilabel\">[[Printers|configure#printers]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">cups-configuration</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Drucker|configure#printers]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">dotfiles</span> folder corresponds to the <span " +"class=\"guilabel\">[[Dotfiles|configure#dotfiles]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">dotfiles</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Versteckte " +"Konfigurationsdateien|configure#dotfiles]]</span>." + +msgid "" +"The <span class=\"filename\">electrum</span> folder corresponds to the <span " +"class=\"guilabel\">[[Bitcoin Client|configure#bitcoin]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">electrum</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Bitcoin-Client|configure#bitcoin]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">gnupg</span> folder corresponds to the <span " +"class=\"guilabel\">[[GnuPG|configure#gnupg]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">gnupg</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[GnuPG|configure#gnupg]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">thunderbird</span> folder corresponds to the " +"<span class=\"guilabel\">[[Thunderbird|configure#thunderbird]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">thunderbird</span>-Ordner entspricht der " +"Funktion des beständigen Speicherbereichs für <span class=\"guilabel" +"\">[[Thunderbird|configure#thunderbird]]</span>." + +msgid "" +"The <span class=\"filename\">nm-connections</span> folder corresponds to the " +"<span class=\"guilabel\">[[Network Connections|" +"configure#network_connections]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">nm-connections</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Netzwerkverbindungen|" +"configure#network_connections]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">openssh-client</span> folder corresponds to the " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">openssh-client</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> Funktion " +"des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">Persistent</span> folder corresponds to the " +"<span class=\"guilabel\">[[Personal Data|configure#personal_data]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">Persistent</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Persönliche Dateien|configure#personal_data]]</span> " +"Funktion des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">pidgin</span> folder corresponds to the <span " +"class=\"guilabel\">[[Pidgin|configure#pidgin]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">pidgin</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[Pidgin|configure#pidgin]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "After doing the copy, close the file browser." +msgstr "Schließen Sie nach dem Durchführen der Kopie den Dateimanager." + +msgid "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" +msgstr "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" + +msgid "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" +msgstr "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" + +msgid "" +"The <span class=\"filename\">gnome-keyring</span> folder corresponds to the " +"<span class=\"guilabel\">[[GNOME Keyring|configure#gnome_keyring]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">gnome-keyring</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[GNOME Schlüsselbund|configure#gnome_keyring]]</" +"span> Funktion des beständigen Speicherbereichs." + +msgid "" +"In the file browser, navigate to <span class=\"filename\">/media/amnesia/" +"TailsData</span> to open the old persistent volume." +msgstr "" +"Navigieren Sie im Dateimanager zu <span class=\"filename\">/media/amnesia/" +"TailsData</span>, um die alte beständige Speicherpartition zu öffnen." diff --git a/wiki/src/doc/first_steps/persistence/copy.zh_TW.po b/wiki/src/doc/first_steps/persistence/copy.zh_TW.po index 6661147c31f2e8ac1239d0efefdc790e148cd5dc..217a0fdec06b0b1a89fe918c688dd38a32ba2923 100644 --- a/wiki/src/doc/first_steps/persistence/copy.zh_TW.po +++ b/wiki/src/doc/first_steps/persistence/copy.zh_TW.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-01-05 19:09+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" @@ -187,7 +187,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "<p class=\"pre command root\">rsync -PaSHAX --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" +msgid "<p class=\"pre command root\">rsync -PaSHAXv --del /live/persistence/TailsData_unlocked/ /media/amnesia/TailsData/</p>\n" msgstr "" #. type: Plain text @@ -223,3 +223,343 @@ msgid "" "You can now eject the <span class=\"guilabel\">TailsData</span> volume in the\n" "<span class=\"application\">Files</span> browser and unplug your backup Tails USB stick.\n" msgstr "" + +msgid "" +"These instructions explain how to manually copy your persistent data to a " +"new USB stick. Follow them if you have good reasons to think that your " +"persistence settings are corrupted or if you want to be extra careful." +msgstr "" +"Diese Anweisungen erklären, wie Sie Ihre beständig gespeicherten Daten " +"händisch auf einen neuen USB-Stick kopieren. Befolgen Sie diese, wenn Sie " +"gute Gründe dafür haben, zu glauben, dass Ihre Einstellungen für den " +"beständigen Speicherbereich beschädigt sind oder Sie besonders vorsichtig " +"sein möchten." + +msgid "" +"Install the latest Tails onto a new USB stick using the usual [[installing " +"instructions|install]]. Do not use the Tails USB stick that might be " +"corrupted in the process of installing the new one." +msgstr "" +"Installieren Sie das aktuellste Tails auf einem neuen USB-Stick, indem Sie " +"die [[Installationsanleitung|install]] befolgen. Benutzen Sie beim Vorgang " +"der Installation auf einen neuen USB-Stick nicht den möglicherweise " +"beschädigten." + +msgid "" +"[[Create a persistent volume|configure]] on this new USB stick. We advise " +"you to use a different passphrase to protect this new persistent volume." +msgstr "" +"[[Erstellen Sie einen neuen beständigen Speicherbereich|configure]] auf " +"diesem neuen USB-Stick. Wir empfehlen es Ihnen, eine andere Passphrase zum " +"Schutz dieses neuen beständigen Speicherbereichs zu wählen." + +msgid "" +"Enable again on this new USB stick the persistence features of your choice." +msgstr "" +"Aktivieren Sie auf dem neuen USB-Stick erneut die Funktionen Ihrer Wahl für " +"den beständigen Speicherbereich." + +msgid "Rescue your files from the old Tails USB stick\n" +msgstr "Sichern Sie Ihre Dateien vom alten USB-Stick mit Tails\n" + +msgid "Mount the old persistent volume\n" +msgstr "Hängen Sie den alten beständigen Speicherbereich ein\n" + +msgid "" +"Plug in the old Tails USB stick from which you want to rescue your data." +msgstr "" +"Schließen Sie den alten USB-Stick mit Tails an, von welchem Sie Ihre Daten " +"sichern möchten." + +msgid "" +"In the left pane, click on the USB stick corresponding to the old Tails USB " +"stick." +msgstr "" +"Wählen Sie im linken Fensterbereich den USB-Stick aus, welcher dem alten USB-" +"Stick mit Tails entspricht." + +msgid "" +"In the right pane, click on the partition labeled as <span class=\"guilabel" +"\">LUKS</span>. The name of the partition must be <span class=\"guilabel" +"\">TailsData</span>." +msgstr "" +"Wählen Sie im rechten Fensterbereich die Partition mit dem Typ <span class=" +"\"guilabel\">LUKS</span> aus. Der Name der Partition muss <span class=\"label" +"\">TailsData</span> lauten." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/unlock.png alt=\"Unlock\" " +"class=\"symbolic\" link=\"no\"]]</span> button to unlock the old persistent " +"volume. Enter the passphrase of the old persistent volume and click <span " +"class=\"button\">Unlock</span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/unlock." +"png alt=\"Entsperren\" class=\"symbolic\" link=\"no\"]]</span>, um den alten " +"beständigen Speicherbereich zu entsperren. Geben Sie die Passphrase des " +"alten beständigen Speicherbereichs ein und klicken Sie auf <span class=" +"\"guilabel\">Entsperren</span>." + +msgid "" +"Click on the <span class=\"guilabel\">TailsData</span> partition that " +"appears below the <span class=\"guilabel\">LUKS</span> partition." +msgstr "" +"Wählen Sie die Partition <span class=\"guilabel\">TailsData</span> aus, die " +"unter der <span class=\"guilabel\">LUKS</span>-Partition erscheint." + +msgid "" +"Click on the <span class=\"guimenu\">[[!img lib/media-playback-start.png alt=" +"\"Mount\" class=\"symbolic\" link=\"no\"]]</span> button. The old persistent " +"volume is now mounted as <span class=\"filename\">/media/amnesia/TailsData</" +"span>." +msgstr "" +"Klicken Sie auf die Schaltfläche <span class=\"guimenu\">[[!img lib/media-" +"playback-start.png alt=\"Einhängen\" class=\"symbolic\" link=\"no\"]]</" +"span>. Der alte beständige Speicherbereich ist nun unter <span class=" +"\"filename\">/media/amnesia/TailsData</span> eingehängt." + +msgid "Copy your old files to the new persistent volume\n" +msgstr "" +"Kopieren Sie Ihre alten Dateien in den neuen beständigen Speicherbereich\n" + +msgid "" +"Execute the <span class=\"code\">nautilus</span> command to open the file " +"browser with administration rights." +msgstr "" +"Führen Sie den Befehl <span class=\"code\">nautilus</span> aus, um den " +"Dateimanager mit Administrationsrechten zu öffnen." + +msgid "" +"In the left pane, click on <span class=\"guilabel\">Other Locations</span>." +msgstr "" +"Klicken Sie im linken Fensterbereich auf <span class=\"guilabel\">Andere " +"Orte</span>." + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">media</span> ▸ <span class=\"guilabel" +"\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</span> to open " +"the old persistent volume." +msgstr "" +"Navigieren Sie im rechten Fensterbereich nach <span class=\"guilabel" +"\">Computer</span> ▸ <span class=\"guilabel\">media</span> ▸ <span " +"class=\"guilabel\">amnesia</span> ▸ <span class=\"guilabel\">TailsData</" +"span>, um den alten beständigen Speicherbereich zu öffnen." + +msgid "" +"1. In the titlebar, choose\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"New tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" to open a new tab.\n" +msgstr "" +"1. Wählen Sie in der Titelleiste\n" +" <span class=\"menuchoice\">\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menü\" class=" +"\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenuitem\">[[!img lib/tab-new.png alt=\"Neuer Tab\" " +"class=\"symbolic\" link=\"no\"]]</span>\n" +" </span>\n" +" um einen neuen Reiter zu öffnen.\n" + +msgid "" +"In the right pane, navigate to <span class=\"guilabel\">Computer</span> " +"▸ <span class=\"guilabel\">live</span> ▸ <span class=\"guilabel" +"\">persistence</span> ▸ <span class=\"guilabel\">TailsData_unlocked</" +"span> to open the new persistent volume." +msgstr "" +"Navigieren Sie in dem rechten Reiter nach <span class=\"guilabel\">Computer</" +"span> ▸ <span class=\"guilabel\">live</span> ▸ <span class=" +"\"guilabel\">persistence</span> ▸ <span class=\"guilabel" +"\">TailsData_unlocked</span>, um den neuen beständigen Speicherbereich zu " +"öffnen." + +msgid "" +"To copy a folder containing persistent data from the old persistent volume " +"to the new one, drag and drop that folder from the <span class=\"guilabel" +"\">TailsData</span> onto the <span class=\"guilabel\">TailsData_unlocked</" +"span> tab." +msgstr "" +"Um einen Ordner, der beständig gespeicherte Daten enthält, vom alten " +"beständigen Speicherbereich in den neuen zu kopieren, ziehen Sie diesen " +"Ordner aus dem Reiter <span class=\"guilabel\">TailsData</span> und lassen " +"Sie ihn auf dem Reiter <span class=\"guilabel\">TailsData_unlocked</span> " +"los." + +msgid "" +" When copying a folder, select the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Merge</span> to apply to all subfolders.\n" +" Then you might have to select again the\n" +" <span class=\"guilabel\"> Apply this action to all files</span> option " +"and\n" +" click <span class=\"button\">Replace</span> to apply to all files.\n" +msgstr "" +" Wählen Sie beim Kopieren von Ordnern die Option\n" +" <span class=\"guilabel\"> Diese Aktion auf alle Dateien anwenden</span> " +"und klicken\n" +" Sie auf <span class=\"button\">Zusammenführen</span>, um es auf alle " +"Unterordner anzuwenden.\n" +" Anschließend könnte es notwendig sein, die Option\n" +" <span class=\"guilabel\"> Aktion auf alle Dateien anwenden</span> " +"auszuwählen\n" +" und auf <span class=\"button\">Ersetzen</span> zu klicken, um sie auf " +"alle Dateien anzuwenden.\n" + +msgid " Do not copy a folder if you do not know what it is used for.\n" +msgstr "" +" Kopieren Sie einen Ordner nicht, sofern Sie nicht wissen, wofür er " +"verwendet wird.\n" + +msgid " <a id=\"feature_files\"></a>\n" +msgstr " <a id=\"feature_files\"></a>\n" + +#, fuzzy +#| msgid "" +#| "The <span class=\"filename\">apt</span> folder corresponds to the <span " +#| "class=\"guilabel\">[[APT Packages|configure#apt_packages]]</span> and " +#| "<span class=\"guilabel\">[[APT Lists|configure#apt_lists]]</span> " +#| "persistence features. But it requires administration rights to be " +#| "imported and this goes beyond the scope of these instructions. Note that " +#| "this folder does not contain personal data." +msgid "" +"The <span class=\"filename\">apt</span> folder and the <span class=\"filename" +"\">live-additional-software.conf</span> file correspond to the <span class=" +"\"guilabel\">[[Additional Software|configure#additional_software]]</span> " +"persistence feature. But they require administration rights to be imported " +"and this goes beyond the scope of these instructions. Note that this folder " +"does not contain personal data." +msgstr "" +"Der <span class=\"filename\">apt</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[APT Pakete|configure#apt_packages]]</span> und <span class=" +"\"guilabel\">[[APT Listen|configure#apt_lists]]</span> Funktion des " +"beständigen Speicherbereichs. Aber sie benötigen Administrationsrechte, um " +"importiert zu werden und dies sprengt den Rahmen dieser Dokumentation. " +"Beachten Sie, dass dieser Ordner keine persönlichen Daten enthält." + +msgid "" +"The <span class=\"filename\">bookmarks</span> folder corresponds to the " +"<span class=\"guilabel\">[[Browser Bookmarks|configure#browser_bookmarks]]</" +"span> persistence feature." +msgstr "" +"Der <span class=\"filename\">bookmarks</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Lesezeichen " +"des Browsers|configure#browser_bookmarks]]</span>." + +msgid "" +"The <span class=\"filename\">cups-configuration</span> folder corresponds to " +"the <span class=\"guilabel\">[[Printers|configure#printers]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">cups-configuration</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Drucker|configure#printers]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">dotfiles</span> folder corresponds to the <span " +"class=\"guilabel\">[[Dotfiles|configure#dotfiles]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">dotfiles</span>-Ordner entspricht der Funktion " +"des beständigen Speicherbereichs für <span class=\"guilabel\">[[Versteckte " +"Konfigurationsdateien|configure#dotfiles]]</span>." + +msgid "" +"The <span class=\"filename\">electrum</span> folder corresponds to the <span " +"class=\"guilabel\">[[Bitcoin Client|configure#bitcoin]]</span> persistence " +"feature." +msgstr "" +"Der <span class=\"filename\">electrum</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Bitcoin-Client|configure#bitcoin]]</span>-Funktion des " +"beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">gnupg</span> folder corresponds to the <span " +"class=\"guilabel\">[[GnuPG|configure#gnupg]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">gnupg</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[GnuPG|configure#gnupg]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">thunderbird</span> folder corresponds to the " +"<span class=\"guilabel\">[[Thunderbird|configure#thunderbird]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">thunderbird</span>-Ordner entspricht der " +"Funktion des beständigen Speicherbereichs für <span class=\"guilabel" +"\">[[Thunderbird|configure#thunderbird]]</span>." + +msgid "" +"The <span class=\"filename\">nm-connections</span> folder corresponds to the " +"<span class=\"guilabel\">[[Network Connections|" +"configure#network_connections]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">nm-connections</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[Netzwerkverbindungen|" +"configure#network_connections]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "" +"The <span class=\"filename\">openssh-client</span> folder corresponds to the " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">openssh-client</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[SSH Client|configure#ssh_client]]</span> Funktion " +"des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">Persistent</span> folder corresponds to the " +"<span class=\"guilabel\">[[Personal Data|configure#personal_data]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">Persistent</span>-Ordner entspricht der <span " +"class=\"guilabel\">[[Persönliche Dateien|configure#personal_data]]</span> " +"Funktion des beständigen Speicherbereichs." + +msgid "" +"The <span class=\"filename\">pidgin</span> folder corresponds to the <span " +"class=\"guilabel\">[[Pidgin|configure#pidgin]]</span> persistence feature." +msgstr "" +"Der <span class=\"filename\">pidgin</span>-Ordner entspricht der <span class=" +"\"guilabel\">[[Pidgin|configure#pidgin]]</span>-Funktion des beständigen " +"Speicherbereichs." + +msgid "After doing the copy, close the file browser." +msgstr "Schließen Sie nach dem Durchführen der Kopie den Dateimanager." + +msgid "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" +msgstr "" +"<style>\n" +"pre { max-width: 100%; }\n" +"</style>\n" + +msgid "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" +msgstr "" +" find /live/persistence/TailsData_unlocked/ -uid 1000 -exec chown -R " +"1000:1000 '{}' \\;\n" + +msgid "" +"The <span class=\"filename\">gnome-keyring</span> folder corresponds to the " +"<span class=\"guilabel\">[[GNOME Keyring|configure#gnome_keyring]]</span> " +"persistence feature." +msgstr "" +"Der <span class=\"filename\">gnome-keyring</span>-Ordner entspricht der " +"<span class=\"guilabel\">[[GNOME Schlüsselbund|configure#gnome_keyring]]</" +"span> Funktion des beständigen Speicherbereichs." + +msgid "" +"In the file browser, navigate to <span class=\"filename\">/media/amnesia/" +"TailsData</span> to open the old persistent volume." +msgstr "" +"Navigieren Sie im Dateimanager zu <span class=\"filename\">/media/amnesia/" +"TailsData</span>, um die alte beständige Speicherpartition zu öffnen." diff --git a/wiki/src/doc/first_steps/persistence/delete.es.po b/wiki/src/doc/first_steps/persistence/delete.es.po index d8ab5832256966eb58c2d23b5fd9eeaa5bf1eb38..3c65550bd3be5fdf7b0b63595234e6cb6e3b4225 100644 --- a/wiki/src/doc/first_steps/persistence/delete.es.po +++ b/wiki/src/doc/first_steps/persistence/delete.es.po @@ -5,9 +5,10 @@ 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" -"PO-Revision-Date: 2018-01-31 22:40+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\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/" "first_steps_persistence_delete/es/>\n" "Language: es\n" @@ -15,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -28,23 +29,17 @@ msgid "<div class=\"caution\">\n" msgstr "<div class=\"caution\">\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<strong>The previous technique might not prevent an attacker from recovering the files in the\n" -#| "old persistent volume using [[data\n" -#| "recovery techniques|encryption_and_privacy/secure_deletion#why]].</strong>\n" -#| "To securely delete the persistent volume, start Tails from another USB stick or DVD, and do the following\n" -#| "operations on the USB stick that you want to delete securely:\n" +#, no-wrap msgid "" "<p>This technique is fast but might not prevent a strong attacker from\n" "recovering files from the old persistent volume using advanced [[data\n" "recovery techniques|encryption_and_privacy/secure_deletion#why]].</p>\n" msgstr "" -"<strong>Las técnicas previas podrían no prevenir a un atacante de recuperar los archivos en el\n" -"antiguo volumen persistente usando [[técnicas\n" -"de recuperación de datos|encryption_and_privacy/secure_deletion#why]].</strong>\n" -"Para eliminar de forma segura el volumen persistente, inicia Tails desde otro medio, y haz las siguientes\n" -"operaciones en el dispositivo que deseas eliminar de forma segura:\n" +"<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" +"de recuperación de datos|encryption_and_privacy/secure_deletion#why]].</p>\n" +"\n" #. type: Plain text #, no-wrap @@ -53,6 +48,10 @@ 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 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" +"que es una operación mucho más lenta.</p>\n" #. type: Plain text #, no-wrap @@ -78,13 +77,13 @@ 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\">Delete persistent volume</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>." -msgstr "Click <span class=\"guilabel\">Borrar</span>." +msgstr "Haz click en <span class=\"guilabel\">Borrar</span>." #~ msgid "" #~ "This can be useful in order to delete all the files saved to the " diff --git a/wiki/src/doc/first_steps/persistence/use.id.po b/wiki/src/doc/first_steps/persistence/use.id.po index 925056c5bac7139d3abbc07cb4d9b66ea78c6407..99a52c53bb670486669b6b0772c33e9d7b757ea4 100644 --- a/wiki/src/doc/first_steps/persistence/use.id.po +++ b/wiki/src/doc/first_steps/persistence/use.id.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2017-05-19 17:18+0200\n" -"PO-Revision-Date: 2015-12-30 22:38+0100\n" -"Last-Translator: Tails translators <tails@boum.org>\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translator <tails@boum.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.10\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -29,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/doc/first_steps/persistence/warnings.id.po b/wiki/src/doc/first_steps/persistence/warnings.id.po index 4392a25b7d3ab2d066131496dfc9184b94429604..8818463ae1639bf1e009826a2b34910caa9669f5 100644 --- a/wiki/src/doc/first_steps/persistence/warnings.id.po +++ b/wiki/src/doc/first_steps/persistence/warnings.id.po @@ -6,15 +6,17 @@ 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" -"PO-Revision-Date: 2018-05-24 09:41+0200\n" -"Last-Translator: Tails translators\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.7\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -24,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/first_steps/startup_options.id.po b/wiki/src/doc/first_steps/startup_options.id.po index 6645635cbc8981c1d27c331cb5a3192b11af6c8c..164686a4800acff591f70b43d0425cd0635d7d20 100644 --- a/wiki/src/doc/first_steps/startup_options.id.po +++ b/wiki/src/doc/first_steps/startup_options.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-08-16 18:12+0200\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -33,7 +33,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Plain text #, no-wrap @@ -57,7 +57,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/first_steps/startup_options.pt.po b/wiki/src/doc/first_steps/startup_options.pt.po index a830a09985e8963b35a48543b2dbefbad5c2079b..810a9091a398bd6139af8c0c5eb4c29305f6bedf 100644 --- a/wiki/src/doc/first_steps/startup_options.pt.po +++ b/wiki/src/doc/first_steps/startup_options.pt.po @@ -8,8 +8,8 @@ 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" -"PO-Revision-Date: 2018-02-20 12:48+0000\n" -"Last-Translator: Tails translators <amnesia@boum.org\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" "Language: pt\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\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/startup_options/bridge_mode.id.po index b2716beeeec4e40cbb5e7ecc29be3567f533088e..760e40ced68e20a0d8de98e07671fffa2f3eed91 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.id.po +++ b/wiki/src/doc/first_steps/startup_options/bridge_mode.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: TAILS\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2016-03-14 17:54+0000\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-17 08:25+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails Translations <tails-l10n@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title = #, no-wrap @@ -86,7 +86,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text msgid "" @@ -146,11 +146,13 @@ msgstr "" #, 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.id\" " +"raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/reset.intro.it.po b/wiki/src/doc/reset.intro.it.po index fbfe0aab72263b8cadd719962be3dec313655061..0307d23374db96323a0fd817687a5541cb3b1e40 100644 --- a/wiki/src/doc/reset.intro.it.po +++ b/wiki/src/doc/reset.intro.it.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: ITALIAN TEAM\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2017-07-31 21:51+0000\n" -"PO-Revision-Date: 2019-11-21 16:25+0000\n" -"Last-Translator: Davide <davidesantoro@mail.ru>\n" +"PO-Revision-Date: 2020-01-24 08:26+0000\n" +"Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text msgid "" @@ -27,13 +27,7 @@ msgstr "" "devi formattarla." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "**The content of the device will be lost in the operation,** but an attacker\n" -#| "might still be able to tell that Tails was installed on that device using\n" -#| "[[data recovery techniques|encryption_and_privacy/secure_deletion]] unless you\n" -#| "[[securely clean all the available disk space|encryption_and_privacy/secure_deletion#usb_and_ssd]]\n" -#| "afterwards.\n" +#, no-wrap msgid "" "**The content of the USB stick will be lost in the operation,** but an attacker\n" "might still be able to tell that Tails was installed on that USB stick using\n" @@ -41,9 +35,12 @@ msgid "" "[[securely clean all the available disk space|encryption_and_privacy/secure_deletion#usb_and_ssd]]\n" "afterwards.\n" msgstr "" -"**Il contenuto del dispositivo sarà perduto nell'operazione,** ma un attaccante\n" -"potrebbe essere ancora in grado di dire che Tails è stato installato sul dispositivo usando\n" -"[[tecniche di recupero dati|privacy_e_crittografia/cancellazione_sicura]] a meno che tu non\n" -"[[cancelli in modo sicuro tutto lo spazio disponibile sul disco|crittografia_e_privacy/cancellazione_sicura#usb_and_ssd]]\n" +"**Il contenuto della chiavetta USB verrà perso durante l'operazione,** ma un " +"attaccante\n" +"potrebbe ancora essere in grado di stabilire che Tails era installato su " +"quella chiavetta USB usando\n" +"[[tecniche di recupero dati|encryption_and_privacy/secure_deletion]], a meno " +"che non eseguiate la\n" +"[[cancellazione sicura dell'intero spazio disco disponibile|" +"encryption_and_privacy/secure_deletion#usb_and_ssd]]\n" "successivamente.\n" -"\n" diff --git a/wiki/src/doc/reset/linux.id.po b/wiki/src/doc/reset/linux.id.po index e916ad7b1668df094d1c1f0b04b300f8a0c92a04..f17011afc0ec71378029f4ae74deba1b6537c0c6 100644 --- a/wiki/src/doc/reset/linux.id.po +++ b/wiki/src/doc/reset/linux.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-05-12 15:11+0200\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails localization <tails-l10n@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/reset/mac.id.po b/wiki/src/doc/reset/mac.id.po index 01973e120cf924ba86c408ed65340f8cc6c761ca..818820a8d65b7b9f4c109f9cdb135b157380f944 100644 --- a/wiki/src/doc/reset/mac.id.po +++ b/wiki/src/doc/reset/mac.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2017-07-31 21:51+0000\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -105,7 +105,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/reset/mac.it.po b/wiki/src/doc/reset/mac.it.po index a495241fadbc48b3a3405eb6cbfe0ede647767df..c2e089293c6b7301a3fb5bbe42abc460d50f16ae 100644 --- a/wiki/src/doc/reset/mac.it.po +++ b/wiki/src/doc/reset/mac.it.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2017-07-31 21:51+0000\n" -"PO-Revision-Date: 2019-10-23 10:55+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-24 08:26+0000\n" +"Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -126,12 +126,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toggleable id=\"format\" text=\"\"\"\n" -msgstr "" +msgstr "[[!toggleable id=\"format\" text=\"\"\"\n" #. type: Plain text #, no-wrap msgid "<span class=\"hide\">[[!toggle id=\"format\" text=\"\"]]</span>\n" -msgstr "" +msgstr "<span class=\"hide\">[[!toggle id=\"format\" text=\"\"]]</span>\n" #. type: Title - #, no-wrap diff --git a/wiki/src/doc/sensitive_documents.id.po b/wiki/src/doc/sensitive_documents.id.po index d4a931db97f7d5aaf316492bf74c4d9863db0734..62ec05fe21224e79c0d8955c734af7ffec816287 100644 --- a/wiki/src/doc/sensitive_documents.id.po +++ b/wiki/src/doc/sensitive_documents.id.po @@ -3,18 +3,20 @@ # 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" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2014-07-02 02:49+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-15 21:28+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -25,3 +27,5 @@ msgstr "" #, no-wrap msgid "[[!inline pages=\"doc/sensitive_documents.index\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"doc/sensitive_documents.index.id\" raw=\"yes\" sort=\"age\"" +"]]\n" diff --git a/wiki/src/doc/upgrade.es.po b/wiki/src/doc/upgrade.es.po index 0146da289e26d11dd4b0e30d7a6d253ee5aa0db3..be59aeda74a14af191eca4af85a5bf35d73f8328 100644 --- a/wiki/src/doc/upgrade.es.po +++ b/wiki/src/doc/upgrade.es.po @@ -7,16 +7,16 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-30 11:55+0000\n" -"PO-Revision-Date: 2019-11-20 10:07+0000\n" -"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" -"Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/first-" -"steps-upgrade/es/>\n" +"PO-Revision-Date: 2020-01-24 08:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" +"first-steps-upgrade/es/>\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -46,6 +46,9 @@ msgid "" "<p>Your persistent storage will be preserved by both automatic and\n" "manual upgrades.</p>\n" msgstr "" +"<p>Tu almacenamiento persistente será preservado tanto por las " +"actualizaciones automaticas\n" +"como por las actualizaciones manuales.</p>\n" #. type: Plain text #, no-wrap @@ -131,8 +134,8 @@ msgid "" "After connecting to Tor, if an upgrade is available, a dialog appears and " "proposes you to upgrade your USB stick." msgstr "" -"Después de conectarte a Tor si hay una actualización disponible un cuadro de " -"diálogo aparece y te propone actualizar tu dispositivo." +"Después de conectarte a Tor, si hay una actualización disponible, aparece un " +"cuadro de diálogo y te propone actualizar tu memoria USB." #. type: Plain text #, no-wrap @@ -156,6 +159,8 @@ msgid "" "<p>If you missed an upgrade, each upgrade will be installed one after the\n" "other.</p>\n" msgstr "" +"<p>Si te has perdido una actualización, instalarás una actualización\n" +"después de la otra.</p>\n" #. type: Plain text #, fuzzy, no-wrap @@ -239,6 +244,8 @@ msgid "" "If your Tails USB stick fails to start after an automatic upgrade, see below " "how to do a manual upgrade." msgstr "" +"Si tu memoria USB de Tails no arranca luego de una actualización automática, " +"mira debajo para ver cómo hacer una actualización manual." #. type: Plain text #, no-wrap @@ -308,7 +315,7 @@ msgstr "[[!img upgrader_manual.png link=no]]\n" #. type: Plain text msgid "To do a manual upgrade, you can either:" -msgstr "" +msgstr "Para hacer una actualización manual, puedes:" #. type: Plain text msgid "" @@ -317,6 +324,10 @@ msgid "" "Tails DVD|install/dvd-download]] - [[Upgrade your virtual machine|install/vm-" "download]]" msgstr "" +"- [[Descargar y actualizar|doc/upgrade/#download]] (below)\n" +" - [[Actualizar clonando desde otro Tails|doc/upgrade/#clone]] (below)\n" +" - [[Grabar un nuevo DVD de Tails|install/dvd-download]]\n" +"- [[Actualizar tu maquina virtual|install/vm-download]]" #. type: Plain text #, no-wrap @@ -326,23 +337,23 @@ msgstr "<a id=\"download\"></a>\n" #. type: Title ### #, no-wrap msgid "Download and upgrade" -msgstr "" +msgstr "Descargar y actualizar" #. type: Plain text msgid "You need:" -msgstr "" +msgstr "Necesitas:" #. type: Bullet: '- ' -#, fuzzy -#| msgid "A Tails USB stick." msgid "Your Tails USB stick" -msgstr "Una memoria USB de Tails." +msgstr "Tu memoria USB de Tails" #. type: Bullet: '- ' msgid "" "Another empty USB stick <small>(at least 8 GB)</small> [[!toggle id=" "\"why_extra\" text=\"Why?\"]]" msgstr "" +"Otra memoria USB vacía <small>(al menos de 8 GB)</small> [[!toggle id=\"" +"why_extra\" text=\"¿Por qué?\"]]" #. type: Bullet: '- ' msgid "" @@ -354,27 +365,28 @@ msgstr "" #. type: Bullet: '- ' msgid "½ hour to upgrade" -msgstr "" +msgstr "½ hora para actualizar" #. type: Plain text #, no-wrap msgid "[[!toggleable id=\"why_extra\" text=\"\"\"\n" -msgstr "" +msgstr "[[!toggleable id=\"why_extra\" text=\"\"\"\n" #. type: Plain text #, no-wrap msgid "[[!toggle id=\"why_extra\" text=\"X\"]]\n" -msgstr "" +msgstr "[[!toggle id=\"why_extra\" text=\"X\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!inline pages=\"doc/upgrade/release_notes.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid "[[!inline pages=\"install/inc/router/why_extra.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"doc/upgrade/release_notes.inline.es\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" +"[[!inline pages=\"install/inc/router/why_extra.inline.es\" raw=\"yes\" sort=" +"\"age\"]]\n" #. type: Plain text msgid "See our instructions on how to do a manual upgrade by:" -msgstr "" +msgstr "Mira nuestras instrucciones para hacer una actualización manual:" #. type: Plain text msgid "" @@ -401,7 +413,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"clone\"></a>\n" -msgstr "<a name=\"clone\"></a>\n" +msgstr "<a id=\"clone\"></a>\n" #. type: Title ### #, no-wrap diff --git a/wiki/src/doc/upgrade.fa.po b/wiki/src/doc/upgrade.fa.po index cde61c9fcd799043c2cb1ea3222793f3a18eeca4..e3890e1754b99c630a4dfdbc97816a833416d459 100644 --- a/wiki/src/doc/upgrade.fa.po +++ b/wiki/src/doc/upgrade.fa.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-30 11:55+0000\n" -"PO-Revision-Date: 2015-10-26 17:35+0000\n" -"Last-Translator: sprint5 <translation5@451f.org>\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/upgrade/" "fa/>\n" "Language: fa\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.4-dev\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, fuzzy, no-wrap @@ -219,7 +219,7 @@ msgstr "<pre>tails-upgrade-frontend-wrapper</pre>\n" #. type: Title - #, no-wrap msgid "Troubleshooting\n" -msgstr "" +msgstr "حل مشکلات\n" #. type: Plain text #, fuzzy diff --git a/wiki/src/doc/upgrade.fr.po b/wiki/src/doc/upgrade.fr.po index 2b41b8f0ea24689071b8ffaefb7e9e1881bfe3b6..323eb8001f718ca382d3d3f29e061a0f5bd8b3dc 100644 --- a/wiki/src/doc/upgrade.fr.po +++ b/wiki/src/doc/upgrade.fr.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-30 11:55+0000\n" -"PO-Revision-Date: 2019-10-09 09:36+0000\n" -"Last-Translator: Chre <tor@renaudineau.org>\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" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -157,13 +157,16 @@ msgid "" msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "If you missed an upgrade, each upgrade will be installed one after the other. For example, if you have a Tails 1.3 and the current version is 1.3.2, then the upgrade to 1.3.1 will be installed, and after you restart Tails, the upgrade to 1.3.2 will be installed." +#, no-wrap msgid "" "<p>For example, if you have a Tails 4.1 and the current version\n" "is 4.5, then the upgrade to 4.3 will be installed, and after you restart Tails, the\n" "upgrade to 4.5 will be installed.</p>\n" -msgstr "Si vous avez raté une mise à jour, chaque mise à jour va être installée l'une après l'autre. Par exemple, si vous avez Tails 1.3 et que la version actuelle est la 1.3.2, la mise à jour vers la version 1.3.1 va être installée, et après le redémarrage de Tails, la mise à jour vers la version 1.3.2 va être installée." +msgstr "" +"<p>Par exemple, si vous avez Tails 4.1 et que la version actuelle\n" +"est la 4.5, la mise à jour vers la version 4.3 va être installée, et après " +"le redémarrage de Tails, la\n" +"mise à jour vers la version 4.5 va être installée.</p>\n" #. type: Plain text #, no-wrap @@ -171,19 +174,15 @@ msgid "<div class=\"tip\">\n" msgstr "<div class=\"tip\">\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<p>If you cannot upgrade at startup (for example if you have no network\n" -#| "connection by then), you can start <span class=\"application\">Tails\n" -#| "Upgrader</span> later by opening a terminal and executing the following\n" -#| "command:</p>\n" +#, no-wrap msgid "" "<p>If you cannot upgrade at startup (for example, if you have no network\n" "connection by then), you can start <span class=\"application\">Tails\n" "Upgrader</span> later by opening a terminal and executing the following\n" "command:</p>\n" msgstr "" -"<p>Si vous ne pouvez pas mettre à jour au démarrage (par exemple si vous n'avez\n" +"<p>Si vous ne pouvez pas mettre à jour au démarrage (par exemple si vous n'" +"avez\n" "pas de connexion à un réseau au démarrage), vous pouvez lancer\n" "<span class=\"application\">Tails Upgrader</span> plus tard en ouvrant un\n" "terminal et en exécutant la commande suivante :</p>\n" @@ -296,12 +295,7 @@ msgstr "" "dernière version d'installée, par exemple en travaillant hors ligne." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "After connecting to Tor, a dialog informs you if you have to\n" -#| "upgrade your USB stick using <span class=\"application\">Tails Installer</span>\n" -#| "to a newer version of Tails.\n" -#| "To do so, follow our [[manual upgrade instructions|/upgrade]].\n" +#, no-wrap msgid "" "After connecting to Tor, a dialog informs you if you have to\n" "upgrade your USB stick using <span class=\"application\">Tails Installer</span>\n" @@ -310,7 +304,6 @@ msgstr "" "Après connexion à Tor, une boîte de dialogue vous prévient si vous devez\n" "mettre à jour votre clé USB vers une version plus récente de Tails en\n" "utilisant l'<span class=\"application\">Installeur de Tails</span>.\n" -"Pour ce faire, suivez nos [[instructions de mise à jour manuelle|/upgrade]].\n" #. type: Plain text #, no-wrap @@ -330,10 +323,9 @@ msgid "" msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"clone\"></a>\n" +#, no-wrap msgid "<a id=\"download\"></a>\n" -msgstr "<a id=\"clone\"></a>\n" +msgstr "<a id=\"download\"></a>\n" #. type: Title ### #, no-wrap @@ -345,10 +337,8 @@ msgid "You need:" msgstr "" #. type: Bullet: '- ' -#, fuzzy -#| msgid "A Tails USB stick." msgid "Your Tails USB stick" -msgstr "Une clé USB Tails." +msgstr "Votre clé USB Tails" #. type: Bullet: '- ' msgid "" diff --git a/wiki/src/doc/upgrade.id.po b/wiki/src/doc/upgrade.id.po index 73aa34e5eae1a91349ab6e0cc0a9997ed2bc5387..df1426fbb7298aec28395e7d9448b16115a8a8aa 100644 --- a/wiki/src/doc/upgrade.id.po +++ b/wiki/src/doc/upgrade.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-30 11:55+0000\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails localization discussion <tails-l10n@boum.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -34,7 +34,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap @@ -56,7 +56,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Plain text #, no-wrap @@ -146,7 +146,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/upgrade.pt.po b/wiki/src/doc/upgrade.pt.po index bd08c43fdf6803426f3f41b854d63a40bf9659c6..a38ec19d96733f98b8fb202168748a38daafdb32 100644 --- a/wiki/src/doc/upgrade.pt.po +++ b/wiki/src/doc/upgrade.pt.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-30 11:55+0000\n" -"PO-Revision-Date: 2019-10-23 11:00+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" "Language: pt\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/upgrade/error/check.es.po b/wiki/src/doc/upgrade/error/check.es.po index 5785b51403b4c54ded09b527de0cced1b75673aa..03cf78015457bf007d1e0e377f9bfa612ce718c5 100644 --- a/wiki/src/doc/upgrade/error/check.es.po +++ b/wiki/src/doc/upgrade/error/check.es.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-30 11:55+0000\n" -"PO-Revision-Date: 2019-12-03 10:26+0000\n" +"PO-Revision-Date: 2020-01-14 16:25+0000\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "upgrade_error_check/es/>\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -55,12 +55,12 @@ msgstr "- [[Reporta un error|support]]" #, no-wrap msgid " Include in your report the debugging information that appears in the error message.\n" msgstr "" -"Incluye en tu reporte la información de depuración que aparece en el mensaje " -"de error.\n" +" Incluye en tu reporte la información de depuración que aparece en el " +"mensaje de error.\n" #. type: Plain text msgid "- [[Do a manual upgrade|doc/upgrade#manual]]" -msgstr "" +msgstr "- [[Hacer una actualización manual|doc/upgrade#manual]]" #~ msgid "This error could also be caused by:" #~ msgstr "Este error también podría ser causado por:" diff --git a/wiki/src/doc/upgrade/error/check.fr.po b/wiki/src/doc/upgrade/error/check.fr.po index 04ae37a7a226aff57d4acd26263770eb40997780..d71dc909b0db4e5b5b339e255d4c6ba823e81e9b 100644 --- a/wiki/src/doc/upgrade/error/check.fr.po +++ b/wiki/src/doc/upgrade/error/check.fr.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: \n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-11-30 11:55+0000\n" -"PO-Revision-Date: 2017-09-26 19:09+0000\n" -"Last-Translator: \n" +"PO-Revision-Date: 2020-01-12 13:31+0000\n" +"Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.11\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -29,10 +31,8 @@ msgstr "" "web." #. type: Plain text -#, fuzzy -#| msgid "This is probably caused by a network connection problem." msgid "This is most likely caused by a network connection problem." -msgstr "Ceci est probablement dû à un problème de connexion réseau." +msgstr "Ceci est vraisemblablement dû à un problème de connexion réseau." #. type: Plain text msgid "" @@ -43,21 +43,22 @@ msgstr "" #. type: Plain text msgid "If the problem persists, you can either:" -msgstr "" +msgstr "Si le problème persiste, vous pouvez au choix :" #. type: Plain text msgid "- [[Report an error|support]]" -msgstr "" +msgstr "- [[Signaler une erreur|support]]" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "If the problem persists, [[report an error|support]] and include in your report the debugging information that appears in the error message." +#, no-wrap msgid " Include in your report the debugging information that appears in the error message.\n" -msgstr "Si le problème persiste, [[signalez cette erreur|support]] et incluez dans votre rapport les informations de débogage qui apparaissent dans le message d'erreur." +msgstr "" +" Incluez dans votre rapport les informations de débogage qui apparaissent " +"dans le message d'erreur.\n" #. type: Plain text msgid "- [[Do a manual upgrade|doc/upgrade#manual]]" -msgstr "" +msgstr "- [[Faire une mise à jour manuelle|doc/upgrade#manual]]" #~ msgid "This error could also be caused by:" #~ msgstr "Cette erreur peut également être causée par :" diff --git a/wiki/src/doc/upgrade/error/install.es.po b/wiki/src/doc/upgrade/error/install.es.po index 6e3f50ce34bb49fa763452c0e4397545c57b11b2..496931fa60e2945545c596a44e1f169e8f320d65 100644 --- a/wiki/src/doc/upgrade/error/install.es.po +++ b/wiki/src/doc/upgrade/error/install.es.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: 2019-10-23 11:56+0000\n" +"PO-Revision-Date: 2020-01-12 21:25+0000\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "upgrade-error-install/es/>\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -51,17 +51,19 @@ msgstr "Esto probablemente se debe a un error de software en Tails Upgrader." #. type: Title - #, no-wrap msgid "Reporting the problem to our help desk\n" -msgstr "" +msgstr "Reportar el problema a nuesta mesa de ayuda\n" #. type: Plain text msgid "" "If you are comfortable with the command line, please [[report the problem to " "our help desk|support/talk]]." msgstr "" +"Si te sientes cómodo usando la linea de comandos, por favor [[reporta el " +"problema a nuestra mesa de ayuda|support/talk]]." #. type: Plain text msgid "Include in your report:" -msgstr "" +msgstr "Incluye en tu reporte:" #. type: Bullet: ' - ' msgid "the debugging information that appears in the error message" @@ -93,20 +95,15 @@ msgstr "" #. type: Title - #, no-wrap msgid "Repairing your Tails USB stick\n" -msgstr "" +msgstr "Reparar tu memoria USB de Tails\n" #. type: Plain text -#, fuzzy -#| msgid "" -#| "2. To repair your Tails USB stick, [[manually upgrade|upgrade#manual]]\n" -#| "it using Tails Installer from another Tails USB stick.\n" msgid "" "To repair your Tails USB stick, please try doing a [[manual upgrade|" "upgrade#manual]]." msgstr "" -"2. Para reparar tu dispositivo Tails, [[actualízalo manualmente|" -"upgrade#manual]]\n" -"usando el Instalador de Tails desde otro dispositivo Tails.\n" +"Para reparar tu dispositivo Tails, por favor intenta hacer una [[" +"actualización manual|upgrade#manual]]." #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/upgrade/error/install.fa.po b/wiki/src/doc/upgrade/error/install.fa.po index 85db2e8592b6b386254c0ef3d4a21d3e633d2a00..f311770f23fd7739c8e23375ee8dc7efa4b71baa 100644 --- a/wiki/src/doc/upgrade/error/install.fa.po +++ b/wiki/src/doc/upgrade/error/install.fa.po @@ -6,14 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -88,10 +91,9 @@ msgid "" msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<div class=\"caution\">\n" +#, no-wrap msgid "<div class=\"note\">\n" -msgstr "<div class=\"caution\">\n" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/upgrade/error/install.id.po b/wiki/src/doc/upgrade/error/install.id.po index b83807e82082802bea2043460b1c77f8d7871c08..22d8f210d3908a58433e1f8657118b905e95abdd 100644 --- a/wiki/src/doc/upgrade/error/install.id.po +++ b/wiki/src/doc/upgrade/error/install.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -93,7 +93,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/upgrade/error/install.tr.po b/wiki/src/doc/upgrade/error/install.tr.po index 36edcb550f7acee08a88397681cf42e2c7b51547..f63fd47276e5fcb8f5f259ae2c9c0954dfdcba8b 100644 --- a/wiki/src/doc/upgrade/error/install.tr.po +++ b/wiki/src/doc/upgrade/error/install.tr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: 2018-07-01 15:48+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" "Language: tr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -91,9 +91,9 @@ msgid "" msgstr "" #. type: Plain text -#, fuzzy, no-wrap +#, no-wrap msgid "<div class=\"note\">\n" -msgstr "<div class=\"caution\">\n" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/upgrade/repair.inline.fa.po b/wiki/src/doc/upgrade/repair.inline.fa.po index c46da00cfdb9f527e62ce754cf15b2c69e015152..96e37626fe11b8ae3d58a59333524748666cc018 100644 --- a/wiki/src/doc/upgrade/repair.inline.fa.po +++ b/wiki/src/doc/upgrade/repair.inline.fa.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text msgid "" @@ -44,7 +45,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap @@ -54,4 +55,4 @@ msgstr "" #. type: Plain text #, no-wrap msgid "</div>\n" -msgstr "" +msgstr "</div>\n" diff --git a/wiki/src/doc/upgrade/repair.inline.fr.po b/wiki/src/doc/upgrade/repair.inline.fr.po index 1eb0dbe6784f0ee42a63b009a55073404a921bcd..7d42e16956ed71a5dbd936db387b67759b19318f 100644 --- a/wiki/src/doc/upgrade/repair.inline.fr.po +++ b/wiki/src/doc/upgrade/repair.inline.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: 2019-10-10 09:40+0000\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" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text msgid "" @@ -41,15 +41,11 @@ msgstr "" "vous ne pouvez pas vous connecter à un réseau." #. type: Plain text -#, fuzzy -#| msgid "" -#| "To fix this problem, please try to do a [[manual upgrade|doc/" -#| "upgrade#manual]]." msgid "" "To fix this problem, please try to do a [[manual upgrade|upgrade#manual]]." msgstr "" "Pour corriger ce problème, merci d'essayer de faire une [[mise à jour " -"manuelle|doc/upgrade#manual]]." +"manuelle|upgrade#manual]]." #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/upgrade/repair.inline.id.po b/wiki/src/doc/upgrade/repair.inline.id.po index 020826385c947b6be72216889ce97e8165c4cdb2..c27190e125287edf28ac537ff307fdf82f6daf6d 100644 --- a/wiki/src/doc/upgrade/repair.inline.id.po +++ b/wiki/src/doc/upgrade/repair.inline.id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-15 21:29+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text msgid "" @@ -45,7 +45,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/doc/upgrade/repair.inline.it.po b/wiki/src/doc/upgrade/repair.inline.it.po index c2d9e58297cf93652b77b0494d58a81285a9599f..8817d8c2a2a962f3ede02ce2bc8f5091e6cdbaa0 100644 --- a/wiki/src/doc/upgrade/repair.inline.it.po +++ b/wiki/src/doc/upgrade/repair.inline.it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: 2019-10-23 09:20+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-24 08:26+0000\n" +"Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text msgid "" @@ -29,7 +29,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " <pre>Loading, please wait...</pre>\n" -msgstr "" +msgstr " <pre>Loading, please wait...</pre>\n" #. type: Bullet: '- ' msgid "" diff --git a/wiki/src/doc/upgrade/repair.inline.tr.po b/wiki/src/doc/upgrade/repair.inline.tr.po index c19fb8d86268d4526ae8015340ecd3f5f0e5f625..61d50977be8d9df1e5dec945f93334ccce5d89ad 100644 --- a/wiki/src/doc/upgrade/repair.inline.tr.po +++ b/wiki/src/doc/upgrade/repair.inline.tr.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text msgid "" @@ -44,7 +45,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap @@ -54,4 +55,4 @@ msgstr "" #. type: Plain text #, no-wrap msgid "</div>\n" -msgstr "" +msgstr "</div>\n" diff --git a/wiki/src/doc/upgrade/repair.inline.zh.po b/wiki/src/doc/upgrade/repair.inline.zh.po index 13279caf2cd8c8f2405728b92278c000ae84d794..fb3c211346cc5e41ceb84f9d1c1a14ce9f4156de 100644 --- a/wiki/src/doc/upgrade/repair.inline.zh.po +++ b/wiki/src/doc/upgrade/repair.inline.zh.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" "Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text msgid "" @@ -54,4 +55,4 @@ msgstr "" #. type: Plain text #, no-wrap msgid "</div>\n" -msgstr "" +msgstr "</div>\n" diff --git a/wiki/src/donate-banner.css b/wiki/src/donate-banner.css deleted file mode 100644 index d56c4904163738f21389fb6e6004441dca5b4565..0000000000000000000000000000000000000000 --- a/wiki/src/donate-banner.css +++ /dev/null @@ -1,65 +0,0 @@ -/* Position banner */ -#donate-banner { - position: relative; - margin: 0 auto; - max-width: 986px; - padding: 1em 2em; - display: block; - font-family: "Source Sans Pro Regular", sans-serif; - background-color: white; -} - -/* Hide all translations of the banner by default */ -body .donate-de, -body .donate-es, -body .donate-fa, -body .donate-fr, -body .donate-it, -body .donate-pt { - display: none; -} - -/* Hide the English banner for all other languages - - This way, the English banner is still displayed when the PO plugin is - disabled. This is useful for development. - */ -body.de .donate-en, -body.es .donate-en, -body.fa .donate-en, -body.fr .donate-en, -body.it .donate-en, -body.pt .donate-en { - display: none; -} - -/* Show the banner corresponding to the current language */ -body.de .donate-de, -body.es .donate-es, -body.fa .donate-fa, -body.fr .donate-fr, -body.it .donate-it, -body.pt .donate-pt { - display: block !important; -} - -/* Style for 2018 */ - -#donate-banner { - background: yellow url(donate-banner/give-love.svg) no-repeat 1.2em; - background-size: 4.6em; - color: black; - padding-left: 7em; - font-size: 16px; - font-weight: bold; -} - -#donate-banner .first { - display: inline-block; - margin-bottom: 0.1em; -} - -#donate-banner .second { - display: inline-block; - border-bottom: 2px solid black; -} diff --git a/wiki/src/donate-banner/give-love.svg b/wiki/src/donate-banner/give-love.svg deleted file mode 100644 index 28e30f7403901615257fe4049b6f05f37971599c..0000000000000000000000000000000000000000 --- a/wiki/src/donate-banner/give-love.svg +++ /dev/null @@ -1,59 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - x="0px" - y="0px" - viewBox="0 0 99.574775 71.754097" - enable-background="new 0 0 100 100" - xml:space="preserve" - id="svg4453" - sodipodi:docname="give-love.svg" - width="99.574776" - height="71.754097" - inkscape:version="0.92.1 r15371"><metadata - id="metadata4459"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4457" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1280" - inkscape:window-height="703" - id="namedview4455" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="3.3092597" - inkscape:cx="67.948889" - inkscape:cy="13.337075" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" - inkscape:current-layer="svg4453" /><g - id="g4449" - transform="translate(-0.171,-3.9499057)"><path - style="clip-rule:evenodd;fill:#000000;fill-rule:evenodd" - inkscape:connector-curvature="0" - id="path4447" - d="m 98.541,48.067 c -1.058,-1.159 -4.059,-1.526 -6.473,-1.17 -1.197,0.176 -18.73,5.17 -18.73,5.17 0.499,1.508 1.32,4.267 -1.65,7.088 -2.026,1.712 -5.147,2.222 -9.201,2.145 -4.049,-0.077 -8.438,-0.687 -11.818,-1.093 -1.098,-0.132 -4.144,-0.522 -4.144,-0.522 0,0 2.144,-0.956 5.053,-1.052 3.63,-0.115 6.486,-0.091 8.133,0 1.802,0.101 4.392,0.317 5.475,0.356 4.95,0.178 6.127,-2.893 6.151,-4.113 0.062,-3.446 -1.955,-4.591 -8.21,-5.095 C 59.106,49.457 54.786,49.198 51.776,48.832 45.973,48.12 41.805,46.542 39.679,46.348 38.216,46.211 34.426,45.525 30.825,48.406 19.902,57.139 0.171,62.608 0.171,62.619 3.15,72.14 19.586,75.704 19.586,75.704 c 6.987,-6.101 14.73,-6.854 21.353,-7.088 1.141,-0.042 12.243,-0.043 22.497,1.148 2.062,0.142 3.828,-0.929 3.828,-0.929 15.382,-9.506 28.501,-14.711 28.501,-14.711 3.112,-1.131 4.027,-2.481 3.979,-3.516 -0.091,-1.881 -1.191,-2.527 -1.203,-2.541 z" - sodipodi:nodetypes="ccccccccccccccccccccccc" /></g><path - d="M 66.516057,36.995151 C 54.980439,28.221582 46.20687,19.610486 46.20687,10.836917 c 0,-11.53561661 17.384664,-14.4601397 20.309187,-2.9245212 2.924523,-11.5356184 20.309188,-8.77356891 20.309188,2.9245212 0,8.773569 -8.773569,17.384665 -20.309188,26.158234 z" - id="path5132" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cscsc" - style="stroke-width:1.624735" /></svg> \ No newline at end of file diff --git a/wiki/src/donate.ar.po b/wiki/src/donate.ar.po index 25020c08fb45d5e6a13a4d4fddb22506f0982457..eabc6fa9c2cf844f714463f681d914a761254ec9 100644 --- a/wiki/src/donate.ar.po +++ b/wiki/src/donate.ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-07 15:11+0000\n" +"POT-Creation-Date: 2020-01-13 11:16+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" @@ -84,11 +84,11 @@ msgid "Donate today to protect and sustain Tails!" msgstr "" #. HTML Variables for PayPal Payments Standard: -#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. -#. For recurring donations only. -#. For one-time donation only. +#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. +#. For recurring donations only. +#. For one-time donation only. #. type: Content of: <div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" @@ -234,8 +234,8 @@ msgstr "" msgid "Recurring donation" msgstr "" -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " @@ -284,7 +284,7 @@ msgstr "" #. Note for translators: the following parts need to be translated: #. - https://tails.boum.org/donate/thanks #. - https://tails.boum.org/donate/canceled -#. - US +#. - US #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" @@ -536,30 +536,6 @@ msgstr "" msgid "Seattle, WA 98194" msgstr "" -#. type: Content of: <div><div><h4> -msgid "Cash" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "You can send us cash by post:" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Weber" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Merseburger Strasse 95" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "04177 Leipzig" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Germany" -msgstr "" - #. type: Content of: <div><div><h4> msgid "Corporate matching donation programs" msgstr "" @@ -692,3 +668,81 @@ msgstr "" #. type: Content of: <div><div><p> msgid "Meet our [[partners|partners]] or [[become a partner|partners/become]]!" msgstr "" + +msgid "" +"We know that secure tools need to be free software to be trustworthy. That's " +"why we are giving out Tails for free but ask for your help to protect and " +"sustain it." +msgstr "" +"Wir wissen, dass sichere Werkzeuge freie Software sein müssen, damit sie " +"vertrauenswürdig sein können. Das ist der Grund, warum wir Tails umsonst " +"bereitstellen und um deine Hilfe bitten, es am Leben zu erhalten." + +msgid "Thanks!" +msgstr "Danke!" + +msgid "[[!img expenses.png link=\"no\"]]" +msgstr "[[!img expenses.png link=\"no\"]]" + +msgid "" +"<b>If everyone using Tails donated $6, our fundraiser would be done in one " +"day.</b> The price of a USB stick is all we need." +msgstr "" +"<b>Wenn alle, die Tails benutzen, 5€ spenden, wäre unsere Spendenkampagne an " +"einem Tag bereits erfolgreich.</b> Der Preis von einem USB-Stick ist alles " +"was wir benötigen." + +msgid "But we need your support to stay alive!" +msgstr "Aber wir brauchen Ihre Hilfe, um am Leben zu bleiben!" + +msgid "" +"Tails is an irreplaceable security tool as it allows anyone to use computers " +"safely. But we know that secure tools need to be free software to be " +"reliable and relevant in all situations. That's why we are giving out Tails " +"for free." +msgstr "" +"Tails ist ein unersetzliches Sicherheitswerkzeug, das jeder Person erlaubt, " +"Computer sicher zu benutzen. Allerdings wissen wir auch, dass sichere " +"Werkzeuge Freie Software sein müssen, um in allen Situationen verlässlich " +"und von Bedeutung zu sein. Deshalb veröffentlichen wir Tails als Freie " +"Software." + +msgid "" +"If everybody using Tails today donated, our fundraising would be done for " +"the whole year. But not everybody can donate. And that's fine. We just need " +"some of you to give to keep on providing such a secure platform for " +"everybody." +msgstr "" +"Würde jede Person spenden, die Tails heute verwendet, wäre unsere " +"Spendenaktion für das ganze Jahr erledigt. Aber nicht jeder oder jede hat " +"die Möglichkeit zu spenden. Und das ist in Ordnung. Es müssen nur Teil von " +"Ihnen etwas spenden, damit solch eine sichere Plattform für alle verfügbar " +"ist." + +msgid "Flattr" +msgstr "Flattr" + +msgid "" +"<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F%2Ftails." +"boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-large.png link=" +"\"no\" alt=\"Flattr this\"]]</a>" +msgstr "" +"<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F%2Ftails." +"boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-large.png link=" +"\"no\" alt=\"Flattr this\"]]</a>" + +#, fuzzy +#| msgid "<em>Purpose of transfer</em>: R43NGFR9 TAILS" +msgid "" +"<em>Purpose of transfer</em>: R43NGFR9 TAILS <em>Bank</em>: GLS " +"Gemeinschaftsbank eG" +msgstr "<em>Verwendungszweck</em>: R43NGFR9 TAILS" + +msgid "" +"<small>Until recently, we asked donors to donate via Zwiebelfreunde e.V. " +"towards Tails. The donations we received there were all (and will all be) " +"used towards Tails.</small>" +msgstr "" +"<small>Bis vor kurzem haben wir darum gebeten, über Zwiebelfreunde e.V. an " +"Tails zu spenden. Die Spenden die darüber erhalten worden (und werden), " +"werden alle an Tails weitergegeben.</small>" diff --git a/wiki/src/donate.ca.po b/wiki/src/donate.ca.po index 57d0f22c290ec22c7d80e765c142a94ec060fb6a..daa260c8923df85f3e94457944e0a46ae86e61c4 100644 --- a/wiki/src/donate.ca.po +++ b/wiki/src/donate.ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-07 15:11+0000\n" +"POT-Creation-Date: 2020-01-13 11:16+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" @@ -84,11 +84,11 @@ msgid "Donate today to protect and sustain Tails!" msgstr "" #. HTML Variables for PayPal Payments Standard: -#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. -#. For recurring donations only. -#. For one-time donation only. +#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. +#. For recurring donations only. +#. For one-time donation only. #. type: Content of: <div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" @@ -234,8 +234,8 @@ msgstr "" msgid "Recurring donation" msgstr "" -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " @@ -284,7 +284,7 @@ msgstr "" #. Note for translators: the following parts need to be translated: #. - https://tails.boum.org/donate/thanks #. - https://tails.boum.org/donate/canceled -#. - US +#. - US #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" @@ -536,30 +536,6 @@ msgstr "" msgid "Seattle, WA 98194" msgstr "" -#. type: Content of: <div><div><h4> -msgid "Cash" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "You can send us cash by post:" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Weber" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Merseburger Strasse 95" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "04177 Leipzig" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Germany" -msgstr "" - #. type: Content of: <div><div><h4> msgid "Corporate matching donation programs" msgstr "" @@ -692,3 +668,81 @@ msgstr "" #. type: Content of: <div><div><p> msgid "Meet our [[partners|partners]] or [[become a partner|partners/become]]!" msgstr "" + +msgid "" +"We know that secure tools need to be free software to be trustworthy. That's " +"why we are giving out Tails for free but ask for your help to protect and " +"sustain it." +msgstr "" +"Wir wissen, dass sichere Werkzeuge freie Software sein müssen, damit sie " +"vertrauenswürdig sein können. Das ist der Grund, warum wir Tails umsonst " +"bereitstellen und um deine Hilfe bitten, es am Leben zu erhalten." + +msgid "Thanks!" +msgstr "Danke!" + +msgid "[[!img expenses.png link=\"no\"]]" +msgstr "[[!img expenses.png link=\"no\"]]" + +msgid "" +"<b>If everyone using Tails donated $6, our fundraiser would be done in one " +"day.</b> The price of a USB stick is all we need." +msgstr "" +"<b>Wenn alle, die Tails benutzen, 5€ spenden, wäre unsere Spendenkampagne an " +"einem Tag bereits erfolgreich.</b> Der Preis von einem USB-Stick ist alles " +"was wir benötigen." + +msgid "But we need your support to stay alive!" +msgstr "Aber wir brauchen Ihre Hilfe, um am Leben zu bleiben!" + +msgid "" +"Tails is an irreplaceable security tool as it allows anyone to use computers " +"safely. But we know that secure tools need to be free software to be " +"reliable and relevant in all situations. That's why we are giving out Tails " +"for free." +msgstr "" +"Tails ist ein unersetzliches Sicherheitswerkzeug, das jeder Person erlaubt, " +"Computer sicher zu benutzen. Allerdings wissen wir auch, dass sichere " +"Werkzeuge Freie Software sein müssen, um in allen Situationen verlässlich " +"und von Bedeutung zu sein. Deshalb veröffentlichen wir Tails als Freie " +"Software." + +msgid "" +"If everybody using Tails today donated, our fundraising would be done for " +"the whole year. But not everybody can donate. And that's fine. We just need " +"some of you to give to keep on providing such a secure platform for " +"everybody." +msgstr "" +"Würde jede Person spenden, die Tails heute verwendet, wäre unsere " +"Spendenaktion für das ganze Jahr erledigt. Aber nicht jeder oder jede hat " +"die Möglichkeit zu spenden. Und das ist in Ordnung. Es müssen nur Teil von " +"Ihnen etwas spenden, damit solch eine sichere Plattform für alle verfügbar " +"ist." + +msgid "Flattr" +msgstr "Flattr" + +msgid "" +"<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F%2Ftails." +"boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-large.png link=" +"\"no\" alt=\"Flattr this\"]]</a>" +msgstr "" +"<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F%2Ftails." +"boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-large.png link=" +"\"no\" alt=\"Flattr this\"]]</a>" + +#, fuzzy +#| msgid "<em>Purpose of transfer</em>: R43NGFR9 TAILS" +msgid "" +"<em>Purpose of transfer</em>: R43NGFR9 TAILS <em>Bank</em>: GLS " +"Gemeinschaftsbank eG" +msgstr "<em>Verwendungszweck</em>: R43NGFR9 TAILS" + +msgid "" +"<small>Until recently, we asked donors to donate via Zwiebelfreunde e.V. " +"towards Tails. The donations we received there were all (and will all be) " +"used towards Tails.</small>" +msgstr "" +"<small>Bis vor kurzem haben wir darum gebeten, über Zwiebelfreunde e.V. an " +"Tails zu spenden. Die Spenden die darüber erhalten worden (und werden), " +"werden alle an Tails weitergegeben.</small>" diff --git a/wiki/src/donate.css b/wiki/src/donate.css index a934fcaf6b97dea947b09a05ab62f8ff1f184e6e..44423d4eb209cbc5ee8166be203501c01e4def2a 100644 --- a/wiki/src/donate.css +++ b/wiki/src/donate.css @@ -1,7 +1,3 @@ -#donate-banner { - display: none; -} - .sidebar { display: none; } diff --git a/wiki/src/donate.de.po b/wiki/src/donate.de.po index 54deaf2b2d16141336e2dbdab3d915a331121486..d44ef8592935e1df7853cc54557ed5e0a8881e24 100644 --- a/wiki/src/donate.de.po +++ b/wiki/src/donate.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-12-07 15:11+0000\n" +"POT-Creation-Date: 2020-01-13 11:16+0000\n" "PO-Revision-Date: 2018-10-13 11:08+0200\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -799,30 +799,6 @@ msgstr "PO Box 4282" msgid "Seattle, WA 98194" msgstr "Seattle, WA 98194" -#. type: Content of: <div><div><h4> -msgid "Cash" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "You can send us cash by post:" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Weber" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Merseburger Strasse 95" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "04177 Leipzig" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Germany" -msgstr "" - #. type: Content of: <div><div><h4> msgid "Corporate matching donation programs" msgstr "" diff --git a/wiki/src/donate.es.po b/wiki/src/donate.es.po index 67087a84aadc6d2a0a4f58b8a640319ce52b817f..e6602228ad55554a68fe6f9b79bee16fc4bed2d2 100644 --- a/wiki/src/donate.es.po +++ b/wiki/src/donate.es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-12-07 15:11+0000\n" +"POT-Creation-Date: 2020-01-13 11:16+0000\n" "PO-Revision-Date: 2019-11-19 03:36+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/src-" @@ -728,30 +728,6 @@ msgstr "PO Box 4282" msgid "Seattle, WA 98194" msgstr "Seattle, WA 98194" -#. type: Content of: <div><div><h4> -msgid "Cash" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "You can send us cash by post:" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Weber" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Merseburger Strasse 95" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "04177 Leipzig" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Germany" -msgstr "" - #. type: Content of: <div><div><h4> msgid "Corporate matching donation programs" msgstr "" diff --git a/wiki/src/donate.fa.po b/wiki/src/donate.fa.po index 6aa563908897a42c62854b17c3dd5566beaaf5ee..509245058c80a4d3785dcc8a472bde776fc7a7fc 100644 --- a/wiki/src/donate.fa.po +++ b/wiki/src/donate.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-07 15:11+0000\n" +"POT-Creation-Date: 2020-01-13 11:16+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" @@ -537,30 +537,6 @@ msgstr "" msgid "Seattle, WA 98194" msgstr "" -#. type: Content of: <div><div><h4> -msgid "Cash" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "You can send us cash by post:" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Weber" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Merseburger Strasse 95" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "04177 Leipzig" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Germany" -msgstr "" - #. type: Content of: <div><div><h4> msgid "Corporate matching donation programs" msgstr "" diff --git a/wiki/src/donate.fr.po b/wiki/src/donate.fr.po index 95bd53c9c8faaa48a41dd67b6ddff8a9c3367909..f64c759dabb89e1d3af26f3f09d13dfef393a966 100644 --- a/wiki/src/donate.fr.po +++ b/wiki/src/donate.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-12-07 15:11+0000\n" +"POT-Creation-Date: 2020-01-13 11:16+0000\n" "PO-Revision-Date: 2019-10-09 09:05+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -709,30 +709,6 @@ msgstr "PO Box 4282" msgid "Seattle, WA 98194" msgstr "Seattle, WA 98194" -#. type: Content of: <div><div><h4> -msgid "Cash" -msgstr "Espèces" - -#. type: Content of: <div><div><p> -msgid "You can send us cash by post:" -msgstr "Vous pouvez nous envoyer des espèces par la poste :" - -#. type: Content of: <div><div><p> -msgid "Weber" -msgstr "Weber" - -#. type: Content of: <div><div><p> -msgid "Merseburger Strasse 95" -msgstr "Merseburger Strasse 95" - -#. type: Content of: <div><div><p> -msgid "04177 Leipzig" -msgstr "04177 Leipzig" - -#. type: Content of: <div><div><p> -msgid "Germany" -msgstr "Allemagne" - #. type: Content of: <div><div><h4> msgid "Corporate matching donation programs" msgstr "" @@ -876,6 +852,24 @@ msgstr "" "[[Découvrez nos partenaires|partners]] ou [[devenez partenaire|partners/" "become]] !" +#~ msgid "Cash" +#~ msgstr "Espèces" + +#~ msgid "You can send us cash by post:" +#~ msgstr "Vous pouvez nous envoyer des espèces par la poste :" + +#~ msgid "Weber" +#~ msgstr "Weber" + +#~ msgid "Merseburger Strasse 95" +#~ msgstr "Merseburger Strasse 95" + +#~ msgid "04177 Leipzig" +#~ msgstr "04177 Leipzig" + +#~ msgid "Germany" +#~ msgstr "Allemagne" + #~ msgid "" #~ "We know that secure tools need to be free software to be trustworthy. " #~ "That's why we are giving out Tails for free but ask for your help to " diff --git a/wiki/src/donate.html b/wiki/src/donate.html index 3b5f74a2ffd44536043e318a6f3e85a45f2588ae..ea734b348748ca5fc21df12e523cb0c356b46371 100644 --- a/wiki/src/donate.html +++ b/wiki/src/donate.html @@ -471,16 +471,6 @@ permitted by law.</strong></p> </p> </div> - <div class="col-md-5"> - <h4 id="cash">Cash</h4> - <p>You can send us cash by post:</p> - <p>Weber<br/> - Merseburger Strasse 95<br/> - 04177 Leipzig<br/> - Germany - </p> - </div> - </div> <!-- .row --> <div id="other-ways-3" class="row"> diff --git a/wiki/src/donate.id.po b/wiki/src/donate.id.po index db30054e4c6444c2e2bf755267e2d6c3b558dee1..002650f87d6f48649072db1e6ac555686d15dc5e 100644 --- a/wiki/src/donate.id.po +++ b/wiki/src/donate.id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-12-07 15:11+0000\n" +"POT-Creation-Date: 2020-01-13 11:16+0000\n" "PO-Revision-Date: 2018-10-13 11:08+0200\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -84,11 +84,11 @@ msgid "Donate today to protect and sustain Tails!" msgstr "" #. HTML Variables for PayPal Payments Standard: -#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. -#. For recurring donations only. -#. For one-time donation only. +#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. +#. For recurring donations only. +#. For one-time donation only. #. type: Content of: <div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" @@ -234,8 +234,8 @@ msgstr "" msgid "Recurring donation" msgstr "" -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " @@ -284,7 +284,7 @@ msgstr "" #. Note for translators: the following parts need to be translated: #. - https://tails.boum.org/donate/thanks #. - https://tails.boum.org/donate/canceled -#. - US +#. - US #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" @@ -536,30 +536,6 @@ msgstr "" msgid "Seattle, WA 98194" msgstr "" -#. type: Content of: <div><div><h4> -msgid "Cash" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "You can send us cash by post:" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Weber" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Merseburger Strasse 95" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "04177 Leipzig" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Germany" -msgstr "" - #. type: Content of: <div><div><h4> msgid "Corporate matching donation programs" msgstr "" @@ -692,3 +668,81 @@ msgstr "" #. type: Content of: <div><div><p> msgid "Meet our [[partners|partners]] or [[become a partner|partners/become]]!" msgstr "" + +msgid "" +"We know that secure tools need to be free software to be trustworthy. That's " +"why we are giving out Tails for free but ask for your help to protect and " +"sustain it." +msgstr "" +"Wir wissen, dass sichere Werkzeuge freie Software sein müssen, damit sie " +"vertrauenswürdig sein können. Das ist der Grund, warum wir Tails umsonst " +"bereitstellen und um deine Hilfe bitten, es am Leben zu erhalten." + +msgid "Thanks!" +msgstr "Danke!" + +msgid "[[!img expenses.png link=\"no\"]]" +msgstr "[[!img expenses.png link=\"no\"]]" + +msgid "" +"<b>If everyone using Tails donated $6, our fundraiser would be done in one " +"day.</b> The price of a USB stick is all we need." +msgstr "" +"<b>Wenn alle, die Tails benutzen, 5€ spenden, wäre unsere Spendenkampagne an " +"einem Tag bereits erfolgreich.</b> Der Preis von einem USB-Stick ist alles " +"was wir benötigen." + +msgid "But we need your support to stay alive!" +msgstr "Aber wir brauchen Ihre Hilfe, um am Leben zu bleiben!" + +msgid "" +"Tails is an irreplaceable security tool as it allows anyone to use computers " +"safely. But we know that secure tools need to be free software to be " +"reliable and relevant in all situations. That's why we are giving out Tails " +"for free." +msgstr "" +"Tails ist ein unersetzliches Sicherheitswerkzeug, das jeder Person erlaubt, " +"Computer sicher zu benutzen. Allerdings wissen wir auch, dass sichere " +"Werkzeuge Freie Software sein müssen, um in allen Situationen verlässlich " +"und von Bedeutung zu sein. Deshalb veröffentlichen wir Tails als Freie " +"Software." + +msgid "" +"If everybody using Tails today donated, our fundraising would be done for " +"the whole year. But not everybody can donate. And that's fine. We just need " +"some of you to give to keep on providing such a secure platform for " +"everybody." +msgstr "" +"Würde jede Person spenden, die Tails heute verwendet, wäre unsere " +"Spendenaktion für das ganze Jahr erledigt. Aber nicht jeder oder jede hat " +"die Möglichkeit zu spenden. Und das ist in Ordnung. Es müssen nur Teil von " +"Ihnen etwas spenden, damit solch eine sichere Plattform für alle verfügbar " +"ist." + +msgid "Flattr" +msgstr "Flattr" + +msgid "" +"<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F%2Ftails." +"boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-large.png link=" +"\"no\" alt=\"Flattr this\"]]</a>" +msgstr "" +"<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F%2Ftails." +"boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-large.png link=" +"\"no\" alt=\"Flattr this\"]]</a>" + +#, fuzzy +#| msgid "<em>Purpose of transfer</em>: R43NGFR9 TAILS" +msgid "" +"<em>Purpose of transfer</em>: R43NGFR9 TAILS <em>Bank</em>: GLS " +"Gemeinschaftsbank eG" +msgstr "<em>Verwendungszweck</em>: R43NGFR9 TAILS" + +msgid "" +"<small>Until recently, we asked donors to donate via Zwiebelfreunde e.V. " +"towards Tails. The donations we received there were all (and will all be) " +"used towards Tails.</small>" +msgstr "" +"<small>Bis vor kurzem haben wir darum gebeten, über Zwiebelfreunde e.V. an " +"Tails zu spenden. Die Spenden die darüber erhalten worden (und werden), " +"werden alle an Tails weitergegeben.</small>" diff --git a/wiki/src/donate.it.po b/wiki/src/donate.it.po index ed73449ff9f9cdabb9c1f5b22c531e24a042fd6d..ab41ad672b9d427a6a9917c3870ef14b5048b668 100644 --- a/wiki/src/donate.it.po +++ b/wiki/src/donate.it.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-12-07 15:11+0000\n" -"PO-Revision-Date: 2019-11-24 09:36+0000\n" -"Last-Translator: Davide <davidesantoro@mail.ru>\n" +"POT-Creation-Date: 2020-01-13 11:16+0000\n" +"PO-Revision-Date: 2020-01-22 16:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Donate to Tails\"]]" @@ -764,10 +764,8 @@ msgid "<strong>0x86359F8b44188c105E198DdA3c0421AC60729195</strong>" msgstr "" #. type: Content of: <div><div><h4> -#, fuzzy -#| msgid "Bitcoin" msgid "Litecoin" -msgstr "Bitcoin" +msgstr "Litecoin" #. type: Content of: <div><div><p> msgid "<strong>MJ1fqVucBt8YpfPiQTuwBtmLJtzhizx6pz</strong>" @@ -815,30 +813,6 @@ msgstr "" msgid "Seattle, WA 98194" msgstr "" -#. type: Content of: <div><div><h4> -msgid "Cash" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "You can send us cash by post:" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Weber" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Merseburger Strasse 95" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "04177 Leipzig" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Germany" -msgstr "Germany" - #. type: Content of: <div><div><h4> msgid "Corporate matching donation programs" msgstr "" @@ -977,6 +951,9 @@ msgstr "" "Incontra i nostri [[collaboratori|partners]] oppure [diventa un " "collaboratore|partners/become]]!" +#~ msgid "Germany" +#~ msgstr "Germany" + #~ msgid "Thanks!" #~ msgstr "Grazie!" diff --git a/wiki/src/donate.pl.po b/wiki/src/donate.pl.po index 009643bef43b86ddb9c7dc46a9596b0eef304dff..8ec5bdf3917feda571b8b34b06d7757c9f945bc8 100644 --- a/wiki/src/donate.pl.po +++ b/wiki/src/donate.pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-07 15:11+0000\n" +"POT-Creation-Date: 2020-01-13 11:16+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" @@ -84,11 +84,11 @@ msgid "Donate today to protect and sustain Tails!" msgstr "" #. HTML Variables for PayPal Payments Standard: -#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. -#. For recurring donations only. -#. For one-time donation only. +#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. +#. For recurring donations only. +#. For one-time donation only. #. type: Content of: <div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" @@ -234,8 +234,8 @@ msgstr "" msgid "Recurring donation" msgstr "" -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " @@ -284,7 +284,7 @@ msgstr "" #. Note for translators: the following parts need to be translated: #. - https://tails.boum.org/donate/thanks #. - https://tails.boum.org/donate/canceled -#. - US +#. - US #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" @@ -536,30 +536,6 @@ msgstr "" msgid "Seattle, WA 98194" msgstr "" -#. type: Content of: <div><div><h4> -msgid "Cash" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "You can send us cash by post:" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Weber" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Merseburger Strasse 95" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "04177 Leipzig" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Germany" -msgstr "" - #. type: Content of: <div><div><h4> msgid "Corporate matching donation programs" msgstr "" @@ -692,3 +668,81 @@ msgstr "" #. type: Content of: <div><div><p> msgid "Meet our [[partners|partners]] or [[become a partner|partners/become]]!" msgstr "" + +msgid "" +"We know that secure tools need to be free software to be trustworthy. That's " +"why we are giving out Tails for free but ask for your help to protect and " +"sustain it." +msgstr "" +"Wir wissen, dass sichere Werkzeuge freie Software sein müssen, damit sie " +"vertrauenswürdig sein können. Das ist der Grund, warum wir Tails umsonst " +"bereitstellen und um deine Hilfe bitten, es am Leben zu erhalten." + +msgid "Thanks!" +msgstr "Danke!" + +msgid "[[!img expenses.png link=\"no\"]]" +msgstr "[[!img expenses.png link=\"no\"]]" + +msgid "" +"<b>If everyone using Tails donated $6, our fundraiser would be done in one " +"day.</b> The price of a USB stick is all we need." +msgstr "" +"<b>Wenn alle, die Tails benutzen, 5€ spenden, wäre unsere Spendenkampagne an " +"einem Tag bereits erfolgreich.</b> Der Preis von einem USB-Stick ist alles " +"was wir benötigen." + +msgid "But we need your support to stay alive!" +msgstr "Aber wir brauchen Ihre Hilfe, um am Leben zu bleiben!" + +msgid "" +"Tails is an irreplaceable security tool as it allows anyone to use computers " +"safely. But we know that secure tools need to be free software to be " +"reliable and relevant in all situations. That's why we are giving out Tails " +"for free." +msgstr "" +"Tails ist ein unersetzliches Sicherheitswerkzeug, das jeder Person erlaubt, " +"Computer sicher zu benutzen. Allerdings wissen wir auch, dass sichere " +"Werkzeuge Freie Software sein müssen, um in allen Situationen verlässlich " +"und von Bedeutung zu sein. Deshalb veröffentlichen wir Tails als Freie " +"Software." + +msgid "" +"If everybody using Tails today donated, our fundraising would be done for " +"the whole year. But not everybody can donate. And that's fine. We just need " +"some of you to give to keep on providing such a secure platform for " +"everybody." +msgstr "" +"Würde jede Person spenden, die Tails heute verwendet, wäre unsere " +"Spendenaktion für das ganze Jahr erledigt. Aber nicht jeder oder jede hat " +"die Möglichkeit zu spenden. Und das ist in Ordnung. Es müssen nur Teil von " +"Ihnen etwas spenden, damit solch eine sichere Plattform für alle verfügbar " +"ist." + +msgid "Flattr" +msgstr "Flattr" + +msgid "" +"<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F%2Ftails." +"boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-large.png link=" +"\"no\" alt=\"Flattr this\"]]</a>" +msgstr "" +"<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F%2Ftails." +"boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-large.png link=" +"\"no\" alt=\"Flattr this\"]]</a>" + +#, fuzzy +#| msgid "<em>Purpose of transfer</em>: R43NGFR9 TAILS" +msgid "" +"<em>Purpose of transfer</em>: R43NGFR9 TAILS <em>Bank</em>: GLS " +"Gemeinschaftsbank eG" +msgstr "<em>Verwendungszweck</em>: R43NGFR9 TAILS" + +msgid "" +"<small>Until recently, we asked donors to donate via Zwiebelfreunde e.V. " +"towards Tails. The donations we received there were all (and will all be) " +"used towards Tails.</small>" +msgstr "" +"<small>Bis vor kurzem haben wir darum gebeten, über Zwiebelfreunde e.V. an " +"Tails zu spenden. Die Spenden die darüber erhalten worden (und werden), " +"werden alle an Tails weitergegeben.</small>" diff --git a/wiki/src/donate.pt.po b/wiki/src/donate.pt.po index 5f4d80610e74c0a0eeaed1477fc4ad0404520d43..5583debba77a4b37ed1298b1ea61e7fe3245ebc5 100644 --- a/wiki/src/donate.pt.po +++ b/wiki/src/donate.pt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-12-07 15:11+0000\n" -"PO-Revision-Date: 2019-10-23 11:15+0000\n" +"POT-Creation-Date: 2020-01-13 11:16+0000\n" +"PO-Revision-Date: 2020-01-17 08:25+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: pt\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Donate to Tails\"]]" @@ -248,7 +248,7 @@ msgstr "" #. type: Content of: <div><div> msgid "\"\"\"]]" -msgstr "" +msgstr "\"\"\"]]" #. type: Content of: <div><div><div><div><h2> msgid "Donate in dollars" @@ -565,30 +565,6 @@ msgstr "" msgid "Seattle, WA 98194" msgstr "" -#. type: Content of: <div><div><h4> -msgid "Cash" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "You can send us cash by post:" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Weber" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Merseburger Strasse 95" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "04177 Leipzig" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Germany" -msgstr "" - #. type: Content of: <div><div><h4> msgid "Corporate matching donation programs" msgstr "" diff --git a/wiki/src/donate.ru.po b/wiki/src/donate.ru.po index 4648d0ebae1520e56dd36b7289761679888c7861..3cf6e054365644fe8cfbe9dd93b7ac3c2b037136 100644 --- a/wiki/src/donate.ru.po +++ b/wiki/src/donate.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-07 15:11+0000\n" +"POT-Creation-Date: 2020-01-13 11:16+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" @@ -84,11 +84,11 @@ msgid "Donate today to protect and sustain Tails!" msgstr "" #. HTML Variables for PayPal Payments Standard: -#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. -#. For recurring donations only. -#. For one-time donation only. +#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. +#. For recurring donations only. +#. For one-time donation only. #. type: Content of: <div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" @@ -234,8 +234,8 @@ msgstr "" msgid "Recurring donation" msgstr "" -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " @@ -284,7 +284,7 @@ msgstr "" #. Note for translators: the following parts need to be translated: #. - https://tails.boum.org/donate/thanks #. - https://tails.boum.org/donate/canceled -#. - US +#. - US #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" @@ -536,30 +536,6 @@ msgstr "" msgid "Seattle, WA 98194" msgstr "" -#. type: Content of: <div><div><h4> -msgid "Cash" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "You can send us cash by post:" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Weber" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Merseburger Strasse 95" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "04177 Leipzig" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Germany" -msgstr "" - #. type: Content of: <div><div><h4> msgid "Corporate matching donation programs" msgstr "" @@ -692,3 +668,81 @@ msgstr "" #. type: Content of: <div><div><p> msgid "Meet our [[partners|partners]] or [[become a partner|partners/become]]!" msgstr "" + +msgid "" +"We know that secure tools need to be free software to be trustworthy. That's " +"why we are giving out Tails for free but ask for your help to protect and " +"sustain it." +msgstr "" +"Wir wissen, dass sichere Werkzeuge freie Software sein müssen, damit sie " +"vertrauenswürdig sein können. Das ist der Grund, warum wir Tails umsonst " +"bereitstellen und um deine Hilfe bitten, es am Leben zu erhalten." + +msgid "Thanks!" +msgstr "Danke!" + +msgid "[[!img expenses.png link=\"no\"]]" +msgstr "[[!img expenses.png link=\"no\"]]" + +msgid "" +"<b>If everyone using Tails donated $6, our fundraiser would be done in one " +"day.</b> The price of a USB stick is all we need." +msgstr "" +"<b>Wenn alle, die Tails benutzen, 5€ spenden, wäre unsere Spendenkampagne an " +"einem Tag bereits erfolgreich.</b> Der Preis von einem USB-Stick ist alles " +"was wir benötigen." + +msgid "But we need your support to stay alive!" +msgstr "Aber wir brauchen Ihre Hilfe, um am Leben zu bleiben!" + +msgid "" +"Tails is an irreplaceable security tool as it allows anyone to use computers " +"safely. But we know that secure tools need to be free software to be " +"reliable and relevant in all situations. That's why we are giving out Tails " +"for free." +msgstr "" +"Tails ist ein unersetzliches Sicherheitswerkzeug, das jeder Person erlaubt, " +"Computer sicher zu benutzen. Allerdings wissen wir auch, dass sichere " +"Werkzeuge Freie Software sein müssen, um in allen Situationen verlässlich " +"und von Bedeutung zu sein. Deshalb veröffentlichen wir Tails als Freie " +"Software." + +msgid "" +"If everybody using Tails today donated, our fundraising would be done for " +"the whole year. But not everybody can donate. And that's fine. We just need " +"some of you to give to keep on providing such a secure platform for " +"everybody." +msgstr "" +"Würde jede Person spenden, die Tails heute verwendet, wäre unsere " +"Spendenaktion für das ganze Jahr erledigt. Aber nicht jeder oder jede hat " +"die Möglichkeit zu spenden. Und das ist in Ordnung. Es müssen nur Teil von " +"Ihnen etwas spenden, damit solch eine sichere Plattform für alle verfügbar " +"ist." + +msgid "Flattr" +msgstr "Flattr" + +msgid "" +"<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F%2Ftails." +"boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-large.png link=" +"\"no\" alt=\"Flattr this\"]]</a>" +msgstr "" +"<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F%2Ftails." +"boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-large.png link=" +"\"no\" alt=\"Flattr this\"]]</a>" + +#, fuzzy +#| msgid "<em>Purpose of transfer</em>: R43NGFR9 TAILS" +msgid "" +"<em>Purpose of transfer</em>: R43NGFR9 TAILS <em>Bank</em>: GLS " +"Gemeinschaftsbank eG" +msgstr "<em>Verwendungszweck</em>: R43NGFR9 TAILS" + +msgid "" +"<small>Until recently, we asked donors to donate via Zwiebelfreunde e.V. " +"towards Tails. The donations we received there were all (and will all be) " +"used towards Tails.</small>" +msgstr "" +"<small>Bis vor kurzem haben wir darum gebeten, über Zwiebelfreunde e.V. an " +"Tails zu spenden. Die Spenden die darüber erhalten worden (und werden), " +"werden alle an Tails weitergegeben.</small>" diff --git a/wiki/src/donate.sr_Latn.po b/wiki/src/donate.sr_Latn.po index 1929599d63bf5ecd7359b65f523957d6e449734b..49a173859814712ab9742b57fd0d4a37cdf5b384 100644 --- a/wiki/src/donate.sr_Latn.po +++ b/wiki/src/donate.sr_Latn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-07 15:11+0000\n" +"POT-Creation-Date: 2020-01-13 11:16+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" @@ -84,11 +84,11 @@ msgid "Donate today to protect and sustain Tails!" msgstr "" #. HTML Variables for PayPal Payments Standard: -#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. -#. For recurring donations only. -#. For one-time donation only. +#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. +#. For recurring donations only. +#. For one-time donation only. #. type: Content of: <div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" @@ -234,8 +234,8 @@ msgstr "" msgid "Recurring donation" msgstr "" -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " @@ -284,7 +284,7 @@ msgstr "" #. Note for translators: the following parts need to be translated: #. - https://tails.boum.org/donate/thanks #. - https://tails.boum.org/donate/canceled -#. - US +#. - US #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" @@ -536,30 +536,6 @@ msgstr "" msgid "Seattle, WA 98194" msgstr "" -#. type: Content of: <div><div><h4> -msgid "Cash" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "You can send us cash by post:" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Weber" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Merseburger Strasse 95" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "04177 Leipzig" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Germany" -msgstr "" - #. type: Content of: <div><div><h4> msgid "Corporate matching donation programs" msgstr "" @@ -692,3 +668,81 @@ msgstr "" #. type: Content of: <div><div><p> msgid "Meet our [[partners|partners]] or [[become a partner|partners/become]]!" msgstr "" + +msgid "" +"We know that secure tools need to be free software to be trustworthy. That's " +"why we are giving out Tails for free but ask for your help to protect and " +"sustain it." +msgstr "" +"Wir wissen, dass sichere Werkzeuge freie Software sein müssen, damit sie " +"vertrauenswürdig sein können. Das ist der Grund, warum wir Tails umsonst " +"bereitstellen und um deine Hilfe bitten, es am Leben zu erhalten." + +msgid "Thanks!" +msgstr "Danke!" + +msgid "[[!img expenses.png link=\"no\"]]" +msgstr "[[!img expenses.png link=\"no\"]]" + +msgid "" +"<b>If everyone using Tails donated $6, our fundraiser would be done in one " +"day.</b> The price of a USB stick is all we need." +msgstr "" +"<b>Wenn alle, die Tails benutzen, 5€ spenden, wäre unsere Spendenkampagne an " +"einem Tag bereits erfolgreich.</b> Der Preis von einem USB-Stick ist alles " +"was wir benötigen." + +msgid "But we need your support to stay alive!" +msgstr "Aber wir brauchen Ihre Hilfe, um am Leben zu bleiben!" + +msgid "" +"Tails is an irreplaceable security tool as it allows anyone to use computers " +"safely. But we know that secure tools need to be free software to be " +"reliable and relevant in all situations. That's why we are giving out Tails " +"for free." +msgstr "" +"Tails ist ein unersetzliches Sicherheitswerkzeug, das jeder Person erlaubt, " +"Computer sicher zu benutzen. Allerdings wissen wir auch, dass sichere " +"Werkzeuge Freie Software sein müssen, um in allen Situationen verlässlich " +"und von Bedeutung zu sein. Deshalb veröffentlichen wir Tails als Freie " +"Software." + +msgid "" +"If everybody using Tails today donated, our fundraising would be done for " +"the whole year. But not everybody can donate. And that's fine. We just need " +"some of you to give to keep on providing such a secure platform for " +"everybody." +msgstr "" +"Würde jede Person spenden, die Tails heute verwendet, wäre unsere " +"Spendenaktion für das ganze Jahr erledigt. Aber nicht jeder oder jede hat " +"die Möglichkeit zu spenden. Und das ist in Ordnung. Es müssen nur Teil von " +"Ihnen etwas spenden, damit solch eine sichere Plattform für alle verfügbar " +"ist." + +msgid "Flattr" +msgstr "Flattr" + +msgid "" +"<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F%2Ftails." +"boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-large.png link=" +"\"no\" alt=\"Flattr this\"]]</a>" +msgstr "" +"<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F%2Ftails." +"boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-large.png link=" +"\"no\" alt=\"Flattr this\"]]</a>" + +#, fuzzy +#| msgid "<em>Purpose of transfer</em>: R43NGFR9 TAILS" +msgid "" +"<em>Purpose of transfer</em>: R43NGFR9 TAILS <em>Bank</em>: GLS " +"Gemeinschaftsbank eG" +msgstr "<em>Verwendungszweck</em>: R43NGFR9 TAILS" + +msgid "" +"<small>Until recently, we asked donors to donate via Zwiebelfreunde e.V. " +"towards Tails. The donations we received there were all (and will all be) " +"used towards Tails.</small>" +msgstr "" +"<small>Bis vor kurzem haben wir darum gebeten, über Zwiebelfreunde e.V. an " +"Tails zu spenden. Die Spenden die darüber erhalten worden (und werden), " +"werden alle an Tails weitergegeben.</small>" diff --git a/wiki/src/donate.tr.po b/wiki/src/donate.tr.po index c6b8bca719315f6abd7d2d5144949a12ca163d63..e6f50bdb6310b0fb8ea29587199a7a78ecb9d558 100644 --- a/wiki/src/donate.tr.po +++ b/wiki/src/donate.tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-07 15:11+0000\n" +"POT-Creation-Date: 2020-01-13 11:16+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" @@ -84,11 +84,11 @@ msgid "Donate today to protect and sustain Tails!" msgstr "" #. HTML Variables for PayPal Payments Standard: -#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. -#. For recurring donations only. -#. For one-time donation only. +#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. +#. For recurring donations only. +#. For one-time donation only. #. type: Content of: <div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" @@ -234,8 +234,8 @@ msgstr "" msgid "Recurring donation" msgstr "" -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " @@ -284,7 +284,7 @@ msgstr "" #. Note for translators: the following parts need to be translated: #. - https://tails.boum.org/donate/thanks #. - https://tails.boum.org/donate/canceled -#. - US +#. - US #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" @@ -536,30 +536,6 @@ msgstr "" msgid "Seattle, WA 98194" msgstr "" -#. type: Content of: <div><div><h4> -msgid "Cash" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "You can send us cash by post:" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Weber" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Merseburger Strasse 95" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "04177 Leipzig" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Germany" -msgstr "" - #. type: Content of: <div><div><h4> msgid "Corporate matching donation programs" msgstr "" @@ -692,3 +668,81 @@ msgstr "" #. type: Content of: <div><div><p> msgid "Meet our [[partners|partners]] or [[become a partner|partners/become]]!" msgstr "" + +msgid "" +"We know that secure tools need to be free software to be trustworthy. That's " +"why we are giving out Tails for free but ask for your help to protect and " +"sustain it." +msgstr "" +"Wir wissen, dass sichere Werkzeuge freie Software sein müssen, damit sie " +"vertrauenswürdig sein können. Das ist der Grund, warum wir Tails umsonst " +"bereitstellen und um deine Hilfe bitten, es am Leben zu erhalten." + +msgid "Thanks!" +msgstr "Danke!" + +msgid "[[!img expenses.png link=\"no\"]]" +msgstr "[[!img expenses.png link=\"no\"]]" + +msgid "" +"<b>If everyone using Tails donated $6, our fundraiser would be done in one " +"day.</b> The price of a USB stick is all we need." +msgstr "" +"<b>Wenn alle, die Tails benutzen, 5€ spenden, wäre unsere Spendenkampagne an " +"einem Tag bereits erfolgreich.</b> Der Preis von einem USB-Stick ist alles " +"was wir benötigen." + +msgid "But we need your support to stay alive!" +msgstr "Aber wir brauchen Ihre Hilfe, um am Leben zu bleiben!" + +msgid "" +"Tails is an irreplaceable security tool as it allows anyone to use computers " +"safely. But we know that secure tools need to be free software to be " +"reliable and relevant in all situations. That's why we are giving out Tails " +"for free." +msgstr "" +"Tails ist ein unersetzliches Sicherheitswerkzeug, das jeder Person erlaubt, " +"Computer sicher zu benutzen. Allerdings wissen wir auch, dass sichere " +"Werkzeuge Freie Software sein müssen, um in allen Situationen verlässlich " +"und von Bedeutung zu sein. Deshalb veröffentlichen wir Tails als Freie " +"Software." + +msgid "" +"If everybody using Tails today donated, our fundraising would be done for " +"the whole year. But not everybody can donate. And that's fine. We just need " +"some of you to give to keep on providing such a secure platform for " +"everybody." +msgstr "" +"Würde jede Person spenden, die Tails heute verwendet, wäre unsere " +"Spendenaktion für das ganze Jahr erledigt. Aber nicht jeder oder jede hat " +"die Möglichkeit zu spenden. Und das ist in Ordnung. Es müssen nur Teil von " +"Ihnen etwas spenden, damit solch eine sichere Plattform für alle verfügbar " +"ist." + +msgid "Flattr" +msgstr "Flattr" + +msgid "" +"<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F%2Ftails." +"boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-large.png link=" +"\"no\" alt=\"Flattr this\"]]</a>" +msgstr "" +"<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F%2Ftails." +"boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-large.png link=" +"\"no\" alt=\"Flattr this\"]]</a>" + +#, fuzzy +#| msgid "<em>Purpose of transfer</em>: R43NGFR9 TAILS" +msgid "" +"<em>Purpose of transfer</em>: R43NGFR9 TAILS <em>Bank</em>: GLS " +"Gemeinschaftsbank eG" +msgstr "<em>Verwendungszweck</em>: R43NGFR9 TAILS" + +msgid "" +"<small>Until recently, we asked donors to donate via Zwiebelfreunde e.V. " +"towards Tails. The donations we received there were all (and will all be) " +"used towards Tails.</small>" +msgstr "" +"<small>Bis vor kurzem haben wir darum gebeten, über Zwiebelfreunde e.V. an " +"Tails zu spenden. Die Spenden die darüber erhalten worden (und werden), " +"werden alle an Tails weitergegeben.</small>" diff --git a/wiki/src/donate.zh.po b/wiki/src/donate.zh.po index af24f0161bae5b67fe57767ea2a5c6756d6a8b0f..2934f5d92c31551a29bfd3e3d2e05986ef8b9b09 100644 --- a/wiki/src/donate.zh.po +++ b/wiki/src/donate.zh.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-12-07 15:11+0000\n" +"POT-Creation-Date: 2020-01-13 11:16+0000\n" "PO-Revision-Date: 2018-07-02 11:21+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -90,11 +90,11 @@ msgid "Donate today to protect and sustain Tails!" msgstr "" #. HTML Variables for PayPal Payments Standard: -#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. -#. For recurring donations only. -#. For one-time donation only. +#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. +#. For recurring donations only. +#. For one-time donation only. #. type: Content of: <div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" @@ -246,8 +246,8 @@ msgstr "" msgid "Recurring donation" msgstr "" -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " @@ -296,7 +296,7 @@ msgstr "" #. Note for translators: the following parts need to be translated: #. - https://tails.boum.org/donate/thanks #. - https://tails.boum.org/donate/canceled -#. - US +#. - US #. type: Content of: <div><div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" @@ -550,30 +550,6 @@ msgstr "" msgid "Seattle, WA 98194" msgstr "" -#. type: Content of: <div><div><h4> -msgid "Cash" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "You can send us cash by post:" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Weber" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Merseburger Strasse 95" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "04177 Leipzig" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Germany" -msgstr "" - #. type: Content of: <div><div><h4> msgid "Corporate matching donation programs" msgstr "" @@ -707,6 +683,75 @@ msgstr "" msgid "Meet our [[partners|partners]] or [[become a partner|partners/become]]!" msgstr "" +msgid "" +"We know that secure tools need to be free software to be trustworthy. That's " +"why we are giving out Tails for free but ask for your help to protect and " +"sustain it." +msgstr "" +"Wir wissen, dass sichere Werkzeuge freie Software sein müssen, damit sie " +"vertrauenswürdig sein können. Das ist der Grund, warum wir Tails umsonst " +"bereitstellen und um deine Hilfe bitten, es am Leben zu erhalten." + +msgid "" +"<b>If everyone using Tails donated $6, our fundraiser would be done in one " +"day.</b> The price of a USB stick is all we need." +msgstr "" +"<b>Wenn alle, die Tails benutzen, 5€ spenden, wäre unsere Spendenkampagne an " +"einem Tag bereits erfolgreich.</b> Der Preis von einem USB-Stick ist alles " +"was wir benötigen." + +msgid "But we need your support to stay alive!" +msgstr "Aber wir brauchen Ihre Hilfe, um am Leben zu bleiben!" + +msgid "" +"Tails is an irreplaceable security tool as it allows anyone to use computers " +"safely. But we know that secure tools need to be free software to be " +"reliable and relevant in all situations. That's why we are giving out Tails " +"for free." +msgstr "" +"Tails ist ein unersetzliches Sicherheitswerkzeug, das jeder Person erlaubt, " +"Computer sicher zu benutzen. Allerdings wissen wir auch, dass sichere " +"Werkzeuge Freie Software sein müssen, um in allen Situationen verlässlich " +"und von Bedeutung zu sein. Deshalb veröffentlichen wir Tails als Freie " +"Software." + +msgid "" +"If everybody using Tails today donated, our fundraising would be done for " +"the whole year. But not everybody can donate. And that's fine. We just need " +"some of you to give to keep on providing such a secure platform for " +"everybody." +msgstr "" +"Würde jede Person spenden, die Tails heute verwendet, wäre unsere " +"Spendenaktion für das ganze Jahr erledigt. Aber nicht jeder oder jede hat " +"die Möglichkeit zu spenden. Und das ist in Ordnung. Es müssen nur Teil von " +"Ihnen etwas spenden, damit solch eine sichere Plattform für alle verfügbar " +"ist." + +msgid "" +"<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F%2Ftails." +"boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-large.png link=" +"\"no\" alt=\"Flattr this\"]]</a>" +msgstr "" +"<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F%2Ftails." +"boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-large.png link=" +"\"no\" alt=\"Flattr this\"]]</a>" + +#, fuzzy +#| msgid "<em>Purpose of transfer</em>: R43NGFR9 TAILS" +msgid "" +"<em>Purpose of transfer</em>: R43NGFR9 TAILS <em>Bank</em>: GLS " +"Gemeinschaftsbank eG" +msgstr "<em>Verwendungszweck</em>: R43NGFR9 TAILS" + +msgid "" +"<small>Until recently, we asked donors to donate via Zwiebelfreunde e.V. " +"towards Tails. The donations we received there were all (and will all be) " +"used towards Tails.</small>" +msgstr "" +"<small>Bis vor kurzem haben wir darum gebeten, über Zwiebelfreunde e.V. an " +"Tails zu spenden. Die Spenden die darüber erhalten worden (und werden), " +"werden alle an Tails weitergegeben.</small>" + #~ msgid "Thanks!" #~ msgstr "谢谢!" diff --git a/wiki/src/donate.zh_TW.po b/wiki/src/donate.zh_TW.po index 546f109d24a22495de8f06f056a2a700c350dbd9..2a94a499f0060ad48eae74b3b463be49179a5c72 100644 --- a/wiki/src/donate.zh_TW.po +++ b/wiki/src/donate.zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails l10n\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-12-07 15:11+0000\n" +"POT-Creation-Date: 2020-01-13 11:16+0000\n" "PO-Revision-Date: 2018-11-02 16:52+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: Tails Chinese translators <jxt@twngo.xyz>\n" @@ -93,11 +93,11 @@ msgid "Donate today to protect and sustain Tails!" msgstr "請考慮捐款給Tails來維護與保障它的生存。" #. HTML Variables for PayPal Payments Standard: -#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. -#. For recurring donations only. -#. For one-time donation only. +#. https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/ +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. +#. For recurring donations only. +#. For one-time donation only. #. type: Content of: <div><div><div><form> msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" @@ -275,8 +275,8 @@ msgstr "美元捐款" msgid "Recurring donation" msgstr "定期捐款" -#. Note for translators: adapt the URLs to return to the page in your language. -#. Note for translators: adapt the value of 'lc' to your language. +#. Note for translators: adapt the URLs to return to the page in your language. +#. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> #, fuzzy msgid "" @@ -356,7 +356,7 @@ msgstr "單次捐款" #. Note for translators: the following parts need to be translated: #. - https://tails.boum.org/donate/thanks #. - https://tails.boum.org/donate/canceled -#. - US +#. - US #. type: Content of: <div><div><div><div><form> #, fuzzy msgid "" @@ -634,30 +634,6 @@ msgstr "" msgid "Seattle, WA 98194" msgstr "" -#. type: Content of: <div><div><h4> -msgid "Cash" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "You can send us cash by post:" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Weber" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Merseburger Strasse 95" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "04177 Leipzig" -msgstr "" - -#. type: Content of: <div><div><p> -msgid "Germany" -msgstr "" - #. type: Content of: <div><div><h4> msgid "Corporate matching donation programs" msgstr "" @@ -791,6 +767,32 @@ msgstr "Tails 也接受獎助、獎金、企業捐助以及來自個人的捐款 msgid "Meet our [[partners|partners]] or [[become a partner|partners/become]]!" msgstr "見見我們的[[伙伴|partners]] 或是 [[成為我們的伙伴|partners/become]]!" +msgid "" +"We know that secure tools need to be free software to be trustworthy. That's " +"why we are giving out Tails for free but ask for your help to protect and " +"sustain it." +msgstr "" +"Wir wissen, dass sichere Werkzeuge freie Software sein müssen, damit sie " +"vertrauenswürdig sein können. Das ist der Grund, warum wir Tails umsonst " +"bereitstellen und um deine Hilfe bitten, es am Leben zu erhalten." + +msgid "" +"<b>If everyone using Tails donated $6, our fundraiser would be done in one " +"day.</b> The price of a USB stick is all we need." +msgstr "" +"<b>Wenn alle, die Tails benutzen, 5€ spenden, wäre unsere Spendenkampagne an " +"einem Tag bereits erfolgreich.</b> Der Preis von einem USB-Stick ist alles " +"was wir benötigen." + +msgid "" +"<small>Until recently, we asked donors to donate via Zwiebelfreunde e.V. " +"towards Tails. The donations we received there were all (and will all be) " +"used towards Tails.</small>" +msgstr "" +"<small>Bis vor kurzem haben wir darum gebeten, über Zwiebelfreunde e.V. an " +"Tails zu spenden. Die Spenden die darüber erhalten worden (und werden), " +"werden alle an Tails weitergegeben.</small>" + #~ msgid "Thanks!" #~ msgstr "謝謝!" @@ -831,3 +833,9 @@ msgstr "見見我們的[[伙伴|partners]] 或是 [[成為我們的伙伴|partne #~ "<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F" #~ "%2Ftails.boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-" #~ "large.png link=\"no\" alt=\"Flattr this\"]]</a>" + +#, fuzzy +#~ msgid "" +#~ "<em>Purpose of transfer</em>: R43NGFR9 TAILS <em>Bank</em>: GLS " +#~ "Gemeinschaftsbank eG" +#~ msgstr "<em>銀行</em>: GLS Gemeinschaftsbank eG" diff --git a/wiki/src/donate/thanks.fa.po b/wiki/src/donate/thanks.fa.po index 750c4f5f753700980191ffe37af12d52cd5352bc..62dd9974c1ba0093be6412a2d6278d73396eec99 100644 --- a/wiki/src/donate/thanks.fa.po +++ b/wiki/src/donate/thanks.fa.po @@ -3,18 +3,20 @@ # 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" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-30 19:48+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Thank you!\"]]" @@ -28,7 +30,7 @@ msgstr "" #. type: Content of: <div> msgid "[[!img love.png link=\"no\" class=\"smiley\"]]" -msgstr "" +msgstr "[[!img love.png link=\"no\" class=\"smiley\"]]" #. type: Content of: <div><p> msgid "Your payment was successful." diff --git a/wiki/src/getting_started.id.po b/wiki/src/getting_started.id.po index 66d4bef09ea3b73a696ec8206ae9964323a99104..1407423010de46f7013373584896274e457eadc7 100644 --- a/wiki/src/getting_started.id.po +++ b/wiki/src/getting_started.id.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: \n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2016-04-25 15:51+0200\n" -"PO-Revision-Date: 2018-04-15 11:25+0200\n" -"Last-Translator: Tails translators <tails@boum.org>\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -89,4 +91,4 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"support/talk\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" +msgstr "[[!inline pages=\"support/talk.id\" raw=\"yes\" sort=\"age\"]]\n" diff --git a/wiki/src/home.ar.po b/wiki/src/home.ar.po index 8468fd5bd927980e8d5f1906418b9d5ef5219a8b..ab7e62b1f5516afc0fb4b7caf10c09a7c1c34d13 100644 --- a/wiki/src/home.ar.po +++ b/wiki/src/home.ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-07 16:01+0000\n" +"POT-Creation-Date: 2020-01-12 20:23+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,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #. type: Content of: <div> -msgid "[[!meta title=\"Dear Tails user,\"]]" +msgid "[[!meta title=\"Welcome to Tails!\"]]" msgstr "" #. type: Content of: outside any tag (error?) @@ -26,25 +26,48 @@ msgid "" "\"noindex\"]] [[!meta script=\"home\"]]" msgstr "" -#. type: Content of: <div><p> -msgid "" -"Today, we are asking you to help Tails. You can enjoy Tails for free because " -"we believe that nobody should have to pay to be safe while using computers. " -"And we want to keep it this way. <span class=\"highlight\">If everyone " -"reading this donated $6, our fundraiser would be done in one day.</span> The " -"price of a USB stick is all we need." +#. type: Content of: <div> +msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <div> +msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" +msgstr "" + +msgid "[[!inline pages=\"home/tor_check\" raw=\"yes\" sort=\"age\"]]" +msgstr "[[!inline pages=\"home/tor_check.de\" raw=\"yes\" sort=\"age\"]]" + +#, fuzzy +#| msgid "" +#| "<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=" +#| "\"no\"]] <span>Tor check</span> </a>" msgid "" -"But, not everyone can donate. When you donate, you are offering to many " -"others who need it, this precious tool that is Tails." +"<a href=\"https://tails.boum.org/install/check/\"> [[!img \"lib/onion.png\" " +"link=\"no\"]] <span>Tor check</span> </a>" msgstr "" +"<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=\"no" +"\"]] <span class=\"twolines\">Tor überprüfen</span> </a>" + +msgid "[[!meta title=\"News\"]] [[!meta robots=\"noindex\"]]" +msgstr "[[!meta title=\"Neuigkeiten\"]] [[!meta robots=\"noindex\"]]" -#. type: Content of: <div><div> -msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" +msgid "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" msgstr "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" -#. type: Content of: <div> -msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" +msgid "[[!img \"lib/onion.png\" link=\"no\"]]\n" +msgstr "[[!img \"lib/onion.png\" link=\"no\"]]\n" + +msgid "" +"<!-- Note for translators: You can use <span class=\"twolines\"> if your\n" +"translation of the label below is long and gets split into two lines. -->\n" +"<span>Tor check</span>\n" +"</a>\n" +"</div>\n" msgstr "" +"<span class=\"twolines\">Verbindung testen</span>\n" +"</a>\n" +"</div>\n" diff --git a/wiki/src/home.ca.po b/wiki/src/home.ca.po index d41a4ce8e9964c3a2036d66490183d4c501ca0f5..1d147d8d49feefaa8c8293ffe6c4f2a318f1363d 100644 --- a/wiki/src/home.ca.po +++ b/wiki/src/home.ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-07 16:01+0000\n" +"POT-Creation-Date: 2020-01-12 20:23+0000\n" "PO-Revision-Date: 2018-02-21 13:02+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -18,7 +18,7 @@ msgstr "" "X-Generator: Weblate 2.10.1\n" #. type: Content of: <div> -msgid "[[!meta title=\"Dear Tails user,\"]]" +msgid "[[!meta title=\"Welcome to Tails!\"]]" msgstr "" #. type: Content of: outside any tag (error?) @@ -27,28 +27,48 @@ msgid "" "\"noindex\"]] [[!meta script=\"home\"]]" msgstr "" -#. type: Content of: <div><p> -msgid "" -"Today, we are asking you to help Tails. You can enjoy Tails for free because " -"we believe that nobody should have to pay to be safe while using computers. " -"And we want to keep it this way. <span class=\"highlight\">If everyone " -"reading this donated $6, our fundraiser would be done in one day.</span> The " -"price of a USB stick is all we need." +#. type: Content of: <div> +msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" +msgstr "" + +#. type: Content of: <div> +msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "" -#. type: Content of: <div><p> +msgid "[[!inline pages=\"home/tor_check\" raw=\"yes\" sort=\"age\"]]" +msgstr "[[!inline pages=\"home/tor_check.de\" raw=\"yes\" sort=\"age\"]]" + +#, fuzzy +#| msgid "" +#| "<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=" +#| "\"no\"]] <span>Tor check</span> </a>" msgid "" -"But, not everyone can donate. When you donate, you are offering to many " -"others who need it, this precious tool that is Tails." +"<a href=\"https://tails.boum.org/install/check/\"> [[!img \"lib/onion.png\" " +"link=\"no\"]] <span>Tor check</span> </a>" msgstr "" +"<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=\"no" +"\"]] <span class=\"twolines\">Tor überprüfen</span> </a>" -#. type: Content of: <div><div> -msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" +msgid "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" msgstr "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" -#. type: Content of: <div> -msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" +msgid "[[!img \"lib/onion.png\" link=\"no\"]]\n" +msgstr "[[!img \"lib/onion.png\" link=\"no\"]]\n" + +msgid "" +"<!-- Note for translators: You can use <span class=\"twolines\"> if your\n" +"translation of the label below is long and gets split into two lines. -->\n" +"<span>Tor check</span>\n" +"</a>\n" +"</div>\n" msgstr "" +"<span class=\"twolines\">Verbindung testen</span>\n" +"</a>\n" +"</div>\n" #~ msgid "[[!meta title=\"News\"]] [[!meta robots=\"noindex\"]]" #~ msgstr "[[!meta title=\"Noticies\"]] [[!meta robots=\"noindex\"]]" diff --git a/wiki/src/home.css b/wiki/src/home.css index 714137fafe57679099eb2004318eaea8c2b5532e..9c53995b30530e138d18179024f4a3ba696be281 100644 --- a/wiki/src/home.css +++ b/wiki/src/home.css @@ -1,9 +1,3 @@ -/* Hide top donation banner */ - -#donate-banner { - display: none; -} - /* Display "Tor check" instead of "Install Tails" */ .sidebar .download { @@ -62,6 +56,16 @@ font-size: 16px; } +.donate-button { + box-shadow: 1px 1px 5px #ccc; + border-radius: 0.5em; + padding: 0.5em 1em; + background: #53b351; + line-height: 1em; + font-weight: bold; + text-align: center; +} + span.highlight { background: yellow; } @@ -73,15 +77,3 @@ span.highlight { border: none !important; padding-left: 9em !important; } - -/* Donate during campaign */ - -#donate-campaign { - background: #eee; - overflow: auto; - padding: 1em; - font-weight: bold; - font-size: 16px; - border: 1px solid #ddd; - margin-bottom: 2em; -} diff --git a/wiki/src/home.de.po b/wiki/src/home.de.po index d58bf593cd9354e078d6b12d002f47bc0c854a3b..dffc3857bad75b542eab827c35f75957f7a9746e 100644 --- a/wiki/src/home.de.po +++ b/wiki/src/home.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-10-07 16:01+0000\n" +"POT-Creation-Date: 2020-01-12 20:23+0000\n" "PO-Revision-Date: 2019-05-24 09:52+0200\n" "Last-Translator: spriver <spriver@autistici.org>\n" "Language-Team: \n" @@ -19,7 +19,7 @@ msgstr "" #. type: Content of: <div> #, fuzzy #| msgid "[[!meta title=\"News\"]]\n" -msgid "[[!meta title=\"Dear Tails user,\"]]" +msgid "[[!meta title=\"Welcome to Tails!\"]]" msgstr "[[!meta title=\"Neuigkeiten\"]]\n" #. type: Content of: outside any tag (error?) @@ -36,54 +36,52 @@ msgstr "" "stylesheet=\"home\" rel=\"stylesheet\" title=\"\"]] [[!meta robots=\"noindex" "\"]] [[!meta script=\"home\"]]" -#. type: Content of: <div><p> -#, fuzzy -#| msgid "" -#| "Today, we are asking you to help Tails. You are able to download Tails " -#| "for free because we believe that nobody should have to pay to be safe " -#| "while using computers. And we want to keep it this way. <span class=" -#| "\"highlight\">If everyone reading this donated $6, our fundraiser would " -#| "be done in one day.</span> The price of a USB stick is all we need." -msgid "" -"Today, we are asking you to help Tails. You can enjoy Tails for free because " -"we believe that nobody should have to pay to be safe while using computers. " -"And we want to keep it this way. <span class=\"highlight\">If everyone " -"reading this donated $6, our fundraiser would be done in one day.</span> The " -"price of a USB stick is all we need." -msgstr "" -"Heute bitten wir dich darum Tails zu unterstützen. Du kannst Tails umsonst " -"herunterladen, weil wir glauben, dass niemand dafür bezahlen sollte, um " -"Computer sicher benutzen zu können. Und wir möchten, dass das so bleibt. " -"<span class=\"highlight\">Wenn alle, die das hier lesen, 5€ spenden, wäre " -"unsere Spendenkampagne an einem Tag schon beendet.</span> Der Preis von " -"einem USB-Stick ist bereits alles was wir brauchen." - -#. type: Content of: <div><p> -#, fuzzy -#| msgid "" -#| "<span class=\"underlined\">But, not everyone can donate.</span> When you " -#| "donate, you are offering to many others who need it, this precious tool " -#| "that is Tails." -msgid "" -"But, not everyone can donate. When you donate, you are offering to many " -"others who need it, this precious tool that is Tails." -msgstr "" -"<span class=\"underlined\">Allerdings kann nicht jede spenden.</span> Falls " -"du es tust, dann bietest du vielen anderen, die es vielleicht dringend " -"brauchen, Tails als Wertvolles Werkzeug an." - -#. type: Content of: <div><div> -#, fuzzy -#| msgid "<a href=\"https://tails.boum.org/donate/?r=home\">Donate</a>" -msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" -msgstr "<a href=\"https://tails.boum.org/donate/?r=home\">Spenden</a>" +#. type: Content of: <div> +msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" +msgstr "[[!inline pages=\"home/donate.de\" raw=\"yes\" sort=\"age\"]]" #. type: Content of: <div> msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.de\" raw=\"yes\" sort=\"age\"]]" -#~ msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" -#~ msgstr "[[!inline pages=\"home/donate.de\" raw=\"yes\" sort=\"age\"]]" +#, fuzzy +#~| msgid "" +#~| "Today, we are asking you to help Tails. You are able to download Tails " +#~| "for free because we believe that nobody should have to pay to be safe " +#~| "while using computers. And we want to keep it this way. <span class=" +#~| "\"highlight\">If everyone reading this donated $6, our fundraiser would " +#~| "be done in one day.</span> The price of a USB stick is all we need." +#~ msgid "" +#~ "Today, we are asking you to help Tails. You can enjoy Tails for free " +#~ "because we believe that nobody should have to pay to be safe while using " +#~ "computers. And we want to keep it this way. <span class=\"highlight\">If " +#~ "everyone reading this donated $6, our fundraiser would be done in one day." +#~ "</span> The price of a USB stick is all we need." +#~ msgstr "" +#~ "Heute bitten wir dich darum Tails zu unterstützen. Du kannst Tails " +#~ "umsonst herunterladen, weil wir glauben, dass niemand dafür bezahlen " +#~ "sollte, um Computer sicher benutzen zu können. Und wir möchten, dass das " +#~ "so bleibt. <span class=\"highlight\">Wenn alle, die das hier lesen, 5€ " +#~ "spenden, wäre unsere Spendenkampagne an einem Tag schon beendet.</span> " +#~ "Der Preis von einem USB-Stick ist bereits alles was wir brauchen." + +#, fuzzy +#~| msgid "" +#~| "<span class=\"underlined\">But, not everyone can donate.</span> When you " +#~| "donate, you are offering to many others who need it, this precious tool " +#~| "that is Tails." +#~ msgid "" +#~ "But, not everyone can donate. When you donate, you are offering to many " +#~ "others who need it, this precious tool that is Tails." +#~ msgstr "" +#~ "<span class=\"underlined\">Allerdings kann nicht jede spenden.</span> " +#~ "Falls du es tust, dann bietest du vielen anderen, die es vielleicht " +#~ "dringend brauchen, Tails als Wertvolles Werkzeug an." + +#, fuzzy +#~| msgid "<a href=\"https://tails.boum.org/donate/?r=home\">Donate</a>" +#~ msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" +#~ msgstr "<a href=\"https://tails.boum.org/donate/?r=home\">Spenden</a>" #~ msgid "[[!inline pages=\"home/tor_check\" raw=\"yes\" sort=\"age\"]]" #~ msgstr "[[!inline pages=\"home/tor_check.de\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home.es.po b/wiki/src/home.es.po index a6f1ccc7c56c48df1f217b2822c400fad33a44f5..891b0ee4c0efddfa6d56ddead69bb69791cefdbc 100644 --- a/wiki/src/home.es.po +++ b/wiki/src/home.es.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-07 16:01+0000\n" -"PO-Revision-Date: 2019-10-23 11:51+0000\n" +"POT-Creation-Date: 2020-01-12 20:23+0000\n" +"PO-Revision-Date: 2020-01-14 16:25+0000\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/home/" "es/>\n" @@ -16,52 +16,52 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> -msgid "[[!meta title=\"Dear Tails user,\"]]" -msgstr "[[!meta title=\"Querido usuario de Tails,\"]]" +msgid "[[!meta title=\"Welcome to Tails!\"]]" +msgstr "[[!meta title=\"¡Bienvenido a Tails!\"]]" #. type: Content of: outside any tag (error?) msgid "" "[[!meta stylesheet=\"home\" rel=\"stylesheet\" title=\"\"]] [[!meta robots=" "\"noindex\"]] [[!meta script=\"home\"]]" msgstr "" -"[[!meta stylesheet=\"home\" rel=\"stylesheet\" title=\"\"]] [[!meta robots=\"" -"noindex\"]] [[!meta script=\"home\"]]" - -#. type: Content of: <div><p> -msgid "" -"Today, we are asking you to help Tails. You can enjoy Tails for free because " -"we believe that nobody should have to pay to be safe while using computers. " -"And we want to keep it this way. <span class=\"highlight\">If everyone " -"reading this donated $6, our fundraiser would be done in one day.</span> The " -"price of a USB stick is all we need." -msgstr "" -"Hoy te pedimos que ayudes a Tails. Puedes disfrutar de Tails gratuitamente " -"porque creemos que nadie debería pagar para estar seguro mientras usa una " -"computadora. Y queremos mantenerlo así. <span class=\"highlight\">Si cada " -"persona que lee esto donase 5€, nuestra campaña de donación se acabaría en " -"un día.</span> Todo lo que necesitamos es el precio de una memoria USB." - -#. type: Content of: <div><p> -msgid "" -"But, not everyone can donate. When you donate, you are offering to many " -"others who need it, this precious tool that is Tails." -msgstr "" -"Pero no todos pueden donar. Cuando lo haces, estás haciendo llegar la " -"preciosa herramienta que es Tails a muchas otras personas que lo necesitan." +"[[!meta stylesheet=\"home\" rel=\"stylesheet\" title=\"\"]] [[!meta robots=" +"\"noindex\"]] [[!meta script=\"home\"]]" -#. type: Content of: <div><div> -msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" -msgstr "<a href=\"https://tails.boum.org/donate?r=home\">Donar</a>" +#. type: Content of: <div> +msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" +msgstr "[[!inline pages=\"home/donate.es\" raw=\"yes\" sort=\"age\"]]" #. type: Content of: <div> msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.es\" raw=\"yes\" sort=\"age\"]]" -#~ msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" -#~ msgstr "[[!inline pages=\"home/donate.es\" raw=\"yes\" sort=\"age\"]]" +#~ msgid "" +#~ "Today, we are asking you to help Tails. You can enjoy Tails for free " +#~ "because we believe that nobody should have to pay to be safe while using " +#~ "computers. And we want to keep it this way. <span class=\"highlight\">If " +#~ "everyone reading this donated $6, our fundraiser would be done in one day." +#~ "</span> The price of a USB stick is all we need." +#~ msgstr "" +#~ "Hoy te pedimos que ayudes a Tails. Puedes disfrutar de Tails " +#~ "gratuitamente porque creemos que nadie debería pagar para estar seguro " +#~ "mientras usa una computadora. Y queremos mantenerlo así. <span class=" +#~ "\"highlight\">Si cada persona que lee esto donase 5€, nuestra campaña de " +#~ "donación se acabaría en un día.</span> Todo lo que necesitamos es el " +#~ "precio de una memoria USB." + +#~ msgid "" +#~ "But, not everyone can donate. When you donate, you are offering to many " +#~ "others who need it, this precious tool that is Tails." +#~ msgstr "" +#~ "Pero no todos pueden donar. Cuando lo haces, estás haciendo llegar la " +#~ "preciosa herramienta que es Tails a muchas otras personas que lo " +#~ "necesitan." + +#~ msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" +#~ msgstr "<a href=\"https://tails.boum.org/donate?r=home\">Donar</a>" #~ msgid "[[!inline pages=\"home/tor_check\" raw=\"yes\" sort=\"age\"]]" #~ msgstr "[[!inline pages=\"home/tor_check.es\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home.fa.po b/wiki/src/home.fa.po index 8d9ca96c3d94523e2aff41d3ae3dbf9d146b5611..3d2dd3b72ac79446ab09b5f7b5a581b77cd1788e 100644 --- a/wiki/src/home.fa.po +++ b/wiki/src/home.fa.po @@ -7,56 +7,38 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-10-07 16:01+0000\n" -"PO-Revision-Date: 2019-05-24 09:55+0200\n" -"Last-Translator: sprint5 <translation5@451f.org>\n" -"Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/news/fa/" -">\n" +"POT-Creation-Date: 2020-01-12 20:23+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/news/fa/>" +"\n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.4-dev\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> -msgid "[[!meta title=\"Dear Tails user,\"]]" +msgid "[[!meta title=\"Welcome to Tails!\"]]" msgstr "" #. type: Content of: outside any tag (error?) -#, fuzzy -#| msgid "[[!meta title=\"News\"]] [[!meta robots=\"noindex\"]]" msgid "" "[[!meta stylesheet=\"home\" rel=\"stylesheet\" title=\"\"]] [[!meta robots=" "\"noindex\"]] [[!meta script=\"home\"]]" -msgstr "[[!meta title=\"اخبار\"]] [[!meta robots=\"noindex\"]]" - -#. type: Content of: <div><p> -msgid "" -"Today, we are asking you to help Tails. You can enjoy Tails for free because " -"we believe that nobody should have to pay to be safe while using computers. " -"And we want to keep it this way. <span class=\"highlight\">If everyone " -"reading this donated $6, our fundraiser would be done in one day.</span> The " -"price of a USB stick is all we need." msgstr "" +"[[!meta stylesheet=\"home\" rel=\"stylesheet\" title=\"\"]] [[!meta robots=\"" +"noindex\"]] [[!meta script=\"home\"]]" -#. type: Content of: <div><p> -msgid "" -"But, not everyone can donate. When you donate, you are offering to many " -"others who need it, this precious tool that is Tails." -msgstr "" - -#. type: Content of: <div><div> -msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" -msgstr "" +#. type: Content of: <div> +msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" +msgstr "[[!inline pages=\"home/donate.fa\" raw=\"yes\" sort=\"age\"]]" #. type: Content of: <div> msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.fa\" raw=\"yes\" sort=\"age\"]]" -#~ msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" -#~ msgstr "[[!inline pages=\"home/donate.fa\" raw=\"yes\" sort=\"age\"]]" - #~ msgid "[[!inline pages=\"home/tor_check\" raw=\"yes\" sort=\"age\"]]" #~ msgstr "[[!inline pages=\"home/tor_check.fa\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home.fr.po b/wiki/src/home.fr.po index 46dc16a82ecb1dfe63f21188b4bcef528f0012c3..586494ea37450d2799bd0d368977f6c3c1267f2f 100644 --- a/wiki/src/home.fr.po +++ b/wiki/src/home.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-07 16:01+0000\n" +"POT-Creation-Date: 2020-01-12 20:23+0000\n" "PO-Revision-Date: 2019-10-10 09:55+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -19,9 +19,8 @@ msgstr "" "X-Generator: Weblate 2.20\n" #. type: Content of: <div> -#, fuzzy -msgid "[[!meta title=\"Dear Tails user,\"]]" -msgstr "[[!meta title=\"Nouvelles\"]]\n" +msgid "[[!meta title=\"Welcome to Tails!\"]]" +msgstr "[[!meta title=\"Bienvenue dans Tails !\"]]" #. type: Content of: outside any tag (error?) msgid "" @@ -31,43 +30,42 @@ msgstr "" "[[!meta stylesheet=\"home\" rel=\"stylesheet\" title=\"\"]] [[!meta robots=" "\"noindex\"]] [[!meta script=\"home\"]]" -#. type: Content of: <div><p> -msgid "" -"Today, we are asking you to help Tails. You can enjoy Tails for free because " -"we believe that nobody should have to pay to be safe while using computers. " -"And we want to keep it this way. <span class=\"highlight\">If everyone " -"reading this donated $6, our fundraiser would be done in one day.</span> The " -"price of a USB stick is all we need." -msgstr "" -"Aujourd'hui, nous vous demandons d'aider Tails. Vous pouvez profiter de " -"Tails gratuitement car nous croyons que personne ne devrait avoir à payer " -"pour être protégé lors de l'utilisation d'un ordinateur. Et nous voulons " -"pouvoir continuer ainsi. <span class=\"highlight\">Si chaque personne qui " -"lit ceci donnait 6$, notre objectif serait atteint en une journée.</span> " -"Nous n'avons besoin que de l'équivalent du prix d'une clé USB." - -#. type: Content of: <div><p> -msgid "" -"But, not everyone can donate. When you donate, you are offering to many " -"others who need it, this precious tool that is Tails." -msgstr "" -"Mais tout le monde ne peut pas donner. Lorsque vous faites un don, vous " -"offrez aux nombreuses personnes qui en ont besoin cet outil précieux qu'est " -"Tails." - -#. type: Content of: <div><div> -msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" -msgstr "<a href=\"https://tails.boum.org/donate?r=home\">Faire un don</a>" +#. type: Content of: <div> +msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" +msgstr "[[!inline pages=\"home/donate.fr\" raw=\"yes\" sort=\"age\"]]" #. type: Content of: <div> msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.fr\" raw=\"yes\" sort=\"age\"]]" -#~ msgid "[[!meta title=\"Welcome to Tails!\"]]" -#~ msgstr "[[!meta title=\"Bienvenue dans Tails !\"]]" +#, fuzzy +#~ msgid "[[!meta title=\"Dear Tails user,\"]]" +#~ msgstr "[[!meta title=\"Nouvelles\"]]\n" + +#~ msgid "" +#~ "Today, we are asking you to help Tails. You can enjoy Tails for free " +#~ "because we believe that nobody should have to pay to be safe while using " +#~ "computers. And we want to keep it this way. <span class=\"highlight\">If " +#~ "everyone reading this donated $6, our fundraiser would be done in one day." +#~ "</span> The price of a USB stick is all we need." +#~ msgstr "" +#~ "Aujourd'hui, nous vous demandons d'aider Tails. Vous pouvez profiter de " +#~ "Tails gratuitement car nous croyons que personne ne devrait avoir à payer " +#~ "pour être protégé lors de l'utilisation d'un ordinateur. Et nous voulons " +#~ "pouvoir continuer ainsi. <span class=\"highlight\">Si chaque personne qui " +#~ "lit ceci donnait 6$, notre objectif serait atteint en une journée.</span> " +#~ "Nous n'avons besoin que de l'équivalent du prix d'une clé USB." + +#~ msgid "" +#~ "But, not everyone can donate. When you donate, you are offering to many " +#~ "others who need it, this precious tool that is Tails." +#~ msgstr "" +#~ "Mais tout le monde ne peut pas donner. Lorsque vous faites un don, vous " +#~ "offrez aux nombreuses personnes qui en ont besoin cet outil précieux " +#~ "qu'est Tails." -#~ msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" -#~ msgstr "[[!inline pages=\"home/donate.fr\" raw=\"yes\" sort=\"age\"]]" +#~ msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" +#~ msgstr "<a href=\"https://tails.boum.org/donate?r=home\">Faire un don</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.html b/wiki/src/home.html index 8fabd151c8e92088dc21d097e1bf8f7aae59a350..2a59047af7175d6f619e318a1009c0504d217c89 100644 --- a/wiki/src/home.html +++ b/wiki/src/home.html @@ -1,22 +1,11 @@ -<div>[[!meta title="Dear Tails user,"]]</div> +<div>[[!meta title="Welcome to Tails!"]]</div> [[!meta stylesheet="home" rel="stylesheet" title=""]] [[!meta robots="noindex"]] [[!meta script="home"]] -<div id="donate-campaign"> - -<p>Today, we are asking you to help Tails. You can enjoy Tails for free -because we believe that nobody should have to pay to be safe while using -computers. And we want to keep it this way. <span class="highlight">If -everyone reading this donated $6, our fundraiser would be done in one -day.</span> The price of a USB stick is all we need.</p> - -<p>But, not everyone can donate. When you donate, you are offering to many -others who need it, this precious tool that is Tails.</p> - -<div class="donate-button"><a href="https://tails.boum.org/donate?r=home">Donate</a></div> - +<div> +[[!inline pages="home/donate" raw="yes" sort="age"]] </div> <div> diff --git a/wiki/src/home.id.po b/wiki/src/home.id.po index 2cbf6a1b43abb5dfd8fc0d10e9fd8b4807694d8b..212f956213e38f9e319c27e4805b0a0fe017f50c 100644 --- a/wiki/src/home.id.po +++ b/wiki/src/home.id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-10-07 16:01+0000\n" +"POT-Creation-Date: 2020-01-12 20:23+0000\n" "PO-Revision-Date: 2018-10-13 14:16+0000\n" "Last-Translator: spriver <spriver@autistici.org>\n" "Language-Team: \n" @@ -17,7 +17,7 @@ msgstr "" "X-Generator: Poedit 1.8.11\n" #. type: Content of: <div> -msgid "[[!meta title=\"Dear Tails user,\"]]" +msgid "[[!meta title=\"Welcome to Tails!\"]]" msgstr "" #. type: Content of: outside any tag (error?) @@ -26,25 +26,48 @@ msgid "" "\"noindex\"]] [[!meta script=\"home\"]]" msgstr "" -#. type: Content of: <div><p> -msgid "" -"Today, we are asking you to help Tails. You can enjoy Tails for free because " -"we believe that nobody should have to pay to be safe while using computers. " -"And we want to keep it this way. <span class=\"highlight\">If everyone " -"reading this donated $6, our fundraiser would be done in one day.</span> The " -"price of a USB stick is all we need." +#. type: Content of: <div> +msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <div> +msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" +msgstr "" + +msgid "[[!inline pages=\"home/tor_check\" raw=\"yes\" sort=\"age\"]]" +msgstr "[[!inline pages=\"home/tor_check.de\" raw=\"yes\" sort=\"age\"]]" + +#, fuzzy +#| msgid "" +#| "<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=" +#| "\"no\"]] <span>Tor check</span> </a>" msgid "" -"But, not everyone can donate. When you donate, you are offering to many " -"others who need it, this precious tool that is Tails." +"<a href=\"https://tails.boum.org/install/check/\"> [[!img \"lib/onion.png\" " +"link=\"no\"]] <span>Tor check</span> </a>" msgstr "" +"<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=\"no" +"\"]] <span class=\"twolines\">Tor überprüfen</span> </a>" -#. type: Content of: <div><div> -msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" +msgid "[[!meta title=\"News\"]] [[!meta robots=\"noindex\"]]" +msgstr "[[!meta title=\"Neuigkeiten\"]] [[!meta robots=\"noindex\"]]" + +msgid "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" msgstr "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" -#. type: Content of: <div> -msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" +msgid "[[!img \"lib/onion.png\" link=\"no\"]]\n" +msgstr "[[!img \"lib/onion.png\" link=\"no\"]]\n" + +msgid "" +"<!-- Note for translators: You can use <span class=\"twolines\"> if your\n" +"translation of the label below is long and gets split into two lines. -->\n" +"<span>Tor check</span>\n" +"</a>\n" +"</div>\n" msgstr "" +"<span class=\"twolines\">Verbindung testen</span>\n" +"</a>\n" +"</div>\n" diff --git a/wiki/src/home.it.po b/wiki/src/home.it.po index 49646a7f32027ee5247baf0b25e4d6a7da0c243d..34da12937969d5c141e72dbd404e2c6291f3434a 100644 --- a/wiki/src/home.it.po +++ b/wiki/src/home.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-10-07 16:01+0000\n" +"POT-Creation-Date: 2020-01-12 20:23+0000\n" "PO-Revision-Date: 2019-05-24 09:54+0200\n" "Last-Translator: \n" "Language-Team: ita <transitails@inventati.org>\n" @@ -17,7 +17,7 @@ msgstr "" "X-Generator: Poedit 1.8.11\n" #. type: Content of: <div> -msgid "[[!meta title=\"Dear Tails user,\"]]" +msgid "[[!meta title=\"Welcome to Tails!\"]]" msgstr "" #. type: Content of: outside any tag (error?) @@ -26,32 +26,14 @@ msgid "" "\"noindex\"]] [[!meta script=\"home\"]]" msgstr "" -#. type: Content of: <div><p> -msgid "" -"Today, we are asking you to help Tails. You can enjoy Tails for free because " -"we believe that nobody should have to pay to be safe while using computers. " -"And we want to keep it this way. <span class=\"highlight\">If everyone " -"reading this donated $6, our fundraiser would be done in one day.</span> The " -"price of a USB stick is all we need." -msgstr "" - -#. type: Content of: <div><p> -msgid "" -"But, not everyone can donate. When you donate, you are offering to many " -"others who need it, this precious tool that is Tails." -msgstr "" - -#. type: Content of: <div><div> -msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" -msgstr "" +#. type: Content of: <div> +msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" +msgstr "[[!inline pages=\"home/donate.it\" raw=\"yes\" sort=\"age\"]]" #. type: Content of: <div> msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.it\" raw=\"yes\" sort=\"age\"]]" -#~ msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" -#~ msgstr "[[!inline pages=\"home/donate.it\" raw=\"yes\" sort=\"age\"]]" - #~ msgid "[[!inline pages=\"home/tor_check\" raw=\"yes\" sort=\"age\"]]" #~ msgstr "[[!inline pages=\"home/tor_check.it\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home.pl.po b/wiki/src/home.pl.po index 592da8678640c7522aa13b15c4475dd898ab4b38..472bec47b762daac2b4caba4ef06114902f05100 100644 --- a/wiki/src/home.pl.po +++ b/wiki/src/home.pl.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-07 16:01+0000\n" +"POT-Creation-Date: 2020-01-12 20:23+0000\n" "PO-Revision-Date: 2018-07-02 08:36+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -20,7 +20,7 @@ msgstr "" "X-Generator: Weblate 2.10.1\n" #. type: Content of: <div> -msgid "[[!meta title=\"Dear Tails user,\"]]" +msgid "[[!meta title=\"Welcome to Tails!\"]]" msgstr "" #. type: Content of: outside any tag (error?) @@ -29,24 +29,10 @@ msgid "" "\"noindex\"]] [[!meta script=\"home\"]]" msgstr "" -#. type: Content of: <div><p> -msgid "" -"Today, we are asking you to help Tails. You can enjoy Tails for free because " -"we believe that nobody should have to pay to be safe while using computers. " -"And we want to keep it this way. <span class=\"highlight\">If everyone " -"reading this donated $6, our fundraiser would be done in one day.</span> The " -"price of a USB stick is all we need." -msgstr "" - -#. type: Content of: <div><p> -msgid "" -"But, not everyone can donate. When you donate, you are offering to many " -"others who need it, this precious tool that is Tails." -msgstr "" - -#. type: Content of: <div><div> -msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" -msgstr "" +#. type: Content of: <div> +#, fuzzy +msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" +msgstr "[[!inline pages=\"news.pl\" raw=\"yes\" sort=\"age\"]]" #. type: Content of: <div> #, fuzzy @@ -54,8 +40,39 @@ msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.pl\" raw=\"yes\" sort=\"age\"]]" #, fuzzy -#~ msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" -#~ msgstr "[[!inline pages=\"news.pl\" raw=\"yes\" sort=\"age\"]]" +#| msgid "" +#| "<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=" +#| "\"no\"]] <span>Tor check</span> </a>" +msgid "" +"<a href=\"https://tails.boum.org/install/check/\"> [[!img \"lib/onion.png\" " +"link=\"no\"]] <span>Tor check</span> </a>" +msgstr "" +"<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=\"no" +"\"]] <span class=\"twolines\">Tor überprüfen</span> </a>" + +msgid "[[!meta title=\"News\"]] [[!meta robots=\"noindex\"]]" +msgstr "[[!meta title=\"Neuigkeiten\"]] [[!meta robots=\"noindex\"]]" + +msgid "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" +msgstr "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" + +msgid "[[!img \"lib/onion.png\" link=\"no\"]]\n" +msgstr "[[!img \"lib/onion.png\" link=\"no\"]]\n" + +msgid "" +"<!-- Note for translators: You can use <span class=\"twolines\"> if your\n" +"translation of the label below is long and gets split into two lines. -->\n" +"<span>Tor check</span>\n" +"</a>\n" +"</div>\n" +msgstr "" +"<span class=\"twolines\">Verbindung testen</span>\n" +"</a>\n" +"</div>\n" #, fuzzy #~ msgid "[[!inline pages=\"home/tor_check\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home.pt.po b/wiki/src/home.pt.po index 6b080f29638ef1f7597719790ec5d21d2f118a64..549889c322d0acbd37a7f35ee24de6d322e4e5d7 100644 --- a/wiki/src/home.pt.po +++ b/wiki/src/home.pt.po @@ -6,52 +6,37 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-07 16:01+0000\n" -"PO-Revision-Date: 2019-05-24 09:53+0200\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2020-01-12 20:23+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" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> -msgid "[[!meta title=\"Dear Tails user,\"]]" +msgid "[[!meta title=\"Welcome to Tails!\"]]" msgstr "" #. type: Content of: outside any tag (error?) -#, fuzzy -#| msgid "[[!meta title=\"News\"]] [[!meta robots=\"noindex\"]]" msgid "" "[[!meta stylesheet=\"home\" rel=\"stylesheet\" title=\"\"]] [[!meta robots=" "\"noindex\"]] [[!meta script=\"home\"]]" -msgstr "[[!meta title=\"Notícias\"]] [[!meta robots=\"noindex\"]]" - -#. type: Content of: <div><p> -msgid "" -"Today, we are asking you to help Tails. You can enjoy Tails for free because " -"we believe that nobody should have to pay to be safe while using computers. " -"And we want to keep it this way. <span class=\"highlight\">If everyone " -"reading this donated $6, our fundraiser would be done in one day.</span> The " -"price of a USB stick is all we need." -msgstr "" - -#. type: Content of: <div><p> -msgid "" -"But, not everyone can donate. When you donate, you are offering to many " -"others who need it, this precious tool that is Tails." msgstr "" +"[[!meta stylesheet=\"home\" rel=\"stylesheet\" title=\"\"]] [[!meta robots=" +"\"noindex\"]] [[!meta script=\"home\"]]" -#. type: Content of: <div><div> -msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" -msgstr "" +#. type: Content of: <div> +msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" +msgstr "[[!inline pages=\"home/donate.pt\" raw=\"yes\" sort=\"age\"]]" #. type: Content of: <div> msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.pt\" raw=\"yes\" sort=\"age\"]]" -#~ msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" -#~ msgstr "[[!inline pages=\"home/donate.pt\" raw=\"yes\" sort=\"age\"]]" - #~ msgid "[[!inline pages=\"home/tor_check\" raw=\"yes\" sort=\"age\"]]" #~ msgstr "[[!inline pages=\"home/tor_check.pt\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home.ru.po b/wiki/src/home.ru.po index 6cf07afd7def2e247138950b37f5e693b5e1e570..be158a1438eec79dd10cc13aa379a5b742702b2e 100644 --- a/wiki/src/home.ru.po +++ b/wiki/src/home.ru.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-07 16:01+0000\n" +"POT-Creation-Date: 2020-01-12 20:23+0000\n" "PO-Revision-Date: 2018-07-02 07:33+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -20,7 +20,7 @@ msgstr "" "X-Generator: Weblate 2.10.1\n" #. type: Content of: <div> -msgid "[[!meta title=\"Dear Tails user,\"]]" +msgid "[[!meta title=\"Welcome to Tails!\"]]" msgstr "" #. type: Content of: outside any tag (error?) @@ -29,24 +29,10 @@ msgid "" "\"noindex\"]] [[!meta script=\"home\"]]" msgstr "" -#. type: Content of: <div><p> -msgid "" -"Today, we are asking you to help Tails. You can enjoy Tails for free because " -"we believe that nobody should have to pay to be safe while using computers. " -"And we want to keep it this way. <span class=\"highlight\">If everyone " -"reading this donated $6, our fundraiser would be done in one day.</span> The " -"price of a USB stick is all we need." -msgstr "" - -#. type: Content of: <div><p> -msgid "" -"But, not everyone can donate. When you donate, you are offering to many " -"others who need it, this precious tool that is Tails." -msgstr "" - -#. type: Content of: <div><div> -msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" -msgstr "" +#. type: Content of: <div> +#, fuzzy +msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" +msgstr "[[!inline pages=\"news.ru\" raw=\"yes\" sort=\"age\"]]" #. type: Content of: <div> #, fuzzy @@ -54,8 +40,39 @@ msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.ru\" raw=\"yes\" sort=\"age\"]]" #, fuzzy -#~ msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" -#~ msgstr "[[!inline pages=\"news.ru\" raw=\"yes\" sort=\"age\"]]" +#| msgid "" +#| "<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=" +#| "\"no\"]] <span>Tor check</span> </a>" +msgid "" +"<a href=\"https://tails.boum.org/install/check/\"> [[!img \"lib/onion.png\" " +"link=\"no\"]] <span>Tor check</span> </a>" +msgstr "" +"<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=\"no" +"\"]] <span class=\"twolines\">Tor überprüfen</span> </a>" + +msgid "[[!meta title=\"News\"]] [[!meta robots=\"noindex\"]]" +msgstr "[[!meta title=\"Neuigkeiten\"]] [[!meta robots=\"noindex\"]]" + +msgid "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" +msgstr "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" + +msgid "[[!img \"lib/onion.png\" link=\"no\"]]\n" +msgstr "[[!img \"lib/onion.png\" link=\"no\"]]\n" + +msgid "" +"<!-- Note for translators: You can use <span class=\"twolines\"> if your\n" +"translation of the label below is long and gets split into two lines. -->\n" +"<span>Tor check</span>\n" +"</a>\n" +"</div>\n" +msgstr "" +"<span class=\"twolines\">Verbindung testen</span>\n" +"</a>\n" +"</div>\n" #, fuzzy #~ msgid "[[!inline pages=\"home/tor_check\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home.sr_Latn.po b/wiki/src/home.sr_Latn.po index eb997852b18f27c136f3dc2023f5eb843f4b65ba..af2ba7d32749d35b55affdd87585eab35f8de0ea 100644 --- a/wiki/src/home.sr_Latn.po +++ b/wiki/src/home.sr_Latn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-07 16:01+0000\n" +"POT-Creation-Date: 2020-01-12 20:23+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,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #. type: Content of: <div> -msgid "[[!meta title=\"Dear Tails user,\"]]" +msgid "[[!meta title=\"Welcome to Tails!\"]]" msgstr "" #. type: Content of: outside any tag (error?) @@ -26,25 +26,48 @@ msgid "" "\"noindex\"]] [[!meta script=\"home\"]]" msgstr "" -#. type: Content of: <div><p> -msgid "" -"Today, we are asking you to help Tails. You can enjoy Tails for free because " -"we believe that nobody should have to pay to be safe while using computers. " -"And we want to keep it this way. <span class=\"highlight\">If everyone " -"reading this donated $6, our fundraiser would be done in one day.</span> The " -"price of a USB stick is all we need." +#. type: Content of: <div> +msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" msgstr "" -#. type: Content of: <div><p> +#. type: Content of: <div> +msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" +msgstr "" + +msgid "[[!inline pages=\"home/tor_check\" raw=\"yes\" sort=\"age\"]]" +msgstr "[[!inline pages=\"home/tor_check.de\" raw=\"yes\" sort=\"age\"]]" + +#, fuzzy +#| msgid "" +#| "<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=" +#| "\"no\"]] <span>Tor check</span> </a>" msgid "" -"But, not everyone can donate. When you donate, you are offering to many " -"others who need it, this precious tool that is Tails." +"<a href=\"https://tails.boum.org/install/check/\"> [[!img \"lib/onion.png\" " +"link=\"no\"]] <span>Tor check</span> </a>" msgstr "" +"<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=\"no" +"\"]] <span class=\"twolines\">Tor überprüfen</span> </a>" + +msgid "[[!meta title=\"News\"]] [[!meta robots=\"noindex\"]]" +msgstr "[[!meta title=\"Neuigkeiten\"]] [[!meta robots=\"noindex\"]]" -#. type: Content of: <div><div> -msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" +msgid "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" msgstr "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" -#. type: Content of: <div> -msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" +msgid "[[!img \"lib/onion.png\" link=\"no\"]]\n" +msgstr "[[!img \"lib/onion.png\" link=\"no\"]]\n" + +msgid "" +"<!-- Note for translators: You can use <span class=\"twolines\"> if your\n" +"translation of the label below is long and gets split into two lines. -->\n" +"<span>Tor check</span>\n" +"</a>\n" +"</div>\n" msgstr "" +"<span class=\"twolines\">Verbindung testen</span>\n" +"</a>\n" +"</div>\n" diff --git a/wiki/src/home.tr.po b/wiki/src/home.tr.po index f21f383b667162b45c4bf5612e191e7c0306f2bf..831fe1bf7d1b7b8edea94ce62c7dce5a14d9e775 100644 --- a/wiki/src/home.tr.po +++ b/wiki/src/home.tr.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-07 16:01+0000\n" +"POT-Creation-Date: 2020-01-12 20:23+0000\n" "PO-Revision-Date: 2018-07-02 07:16+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -19,7 +19,7 @@ msgstr "" "X-Generator: Weblate 2.10.1\n" #. type: Content of: <div> -msgid "[[!meta title=\"Dear Tails user,\"]]" +msgid "[[!meta title=\"Welcome to Tails!\"]]" msgstr "" #. type: Content of: outside any tag (error?) @@ -28,24 +28,10 @@ msgid "" "\"noindex\"]] [[!meta script=\"home\"]]" msgstr "" -#. type: Content of: <div><p> -msgid "" -"Today, we are asking you to help Tails. You can enjoy Tails for free because " -"we believe that nobody should have to pay to be safe while using computers. " -"And we want to keep it this way. <span class=\"highlight\">If everyone " -"reading this donated $6, our fundraiser would be done in one day.</span> The " -"price of a USB stick is all we need." -msgstr "" - -#. type: Content of: <div><p> -msgid "" -"But, not everyone can donate. When you donate, you are offering to many " -"others who need it, this precious tool that is Tails." -msgstr "" - -#. type: Content of: <div><div> -msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" -msgstr "" +#. type: Content of: <div> +#, fuzzy +msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" +msgstr "[[!inline pages=\"news.tr\" raw=\"yes\" sort=\"age\"]]" #. type: Content of: <div> #, fuzzy @@ -53,8 +39,39 @@ msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.tr\" raw=\"yes\" sort=\"age\"]]" #, fuzzy -#~ msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" -#~ msgstr "[[!inline pages=\"news.tr\" raw=\"yes\" sort=\"age\"]]" +#| msgid "" +#| "<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=" +#| "\"no\"]] <span>Tor check</span> </a>" +msgid "" +"<a href=\"https://tails.boum.org/install/check/\"> [[!img \"lib/onion.png\" " +"link=\"no\"]] <span>Tor check</span> </a>" +msgstr "" +"<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=\"no" +"\"]] <span class=\"twolines\">Tor überprüfen</span> </a>" + +msgid "[[!meta title=\"News\"]] [[!meta robots=\"noindex\"]]" +msgstr "[[!meta title=\"Neuigkeiten\"]] [[!meta robots=\"noindex\"]]" + +msgid "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" +msgstr "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" + +msgid "[[!img \"lib/onion.png\" link=\"no\"]]\n" +msgstr "[[!img \"lib/onion.png\" link=\"no\"]]\n" + +msgid "" +"<!-- Note for translators: You can use <span class=\"twolines\"> if your\n" +"translation of the label below is long and gets split into two lines. -->\n" +"<span>Tor check</span>\n" +"</a>\n" +"</div>\n" +msgstr "" +"<span class=\"twolines\">Verbindung testen</span>\n" +"</a>\n" +"</div>\n" #, fuzzy #~ msgid "[[!inline pages=\"home/tor_check\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home.zh.po b/wiki/src/home.zh.po index 474ac8f27035ccfe1322848602f10d3ee4051e7a..e881dabf4c9ea0a67965139ac6ad9b5009ff8f33 100644 --- a/wiki/src/home.zh.po +++ b/wiki/src/home.zh.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-10-07 16:01+0000\n" +"POT-Creation-Date: 2020-01-12 20:23+0000\n" "PO-Revision-Date: 2018-03-22 09:25+0000\n" "Last-Translator: qf <selinaf1917@yahoo.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -18,7 +18,7 @@ msgstr "" "X-Generator: Weblate 2.10.1\n" #. type: Content of: <div> -msgid "[[!meta title=\"Dear Tails user,\"]]" +msgid "[[!meta title=\"Welcome to Tails!\"]]" msgstr "" #. type: Content of: outside any tag (error?) @@ -27,24 +27,10 @@ msgid "" "\"noindex\"]] [[!meta script=\"home\"]]" msgstr "" -#. type: Content of: <div><p> -msgid "" -"Today, we are asking you to help Tails. You can enjoy Tails for free because " -"we believe that nobody should have to pay to be safe while using computers. " -"And we want to keep it this way. <span class=\"highlight\">If everyone " -"reading this donated $6, our fundraiser would be done in one day.</span> The " -"price of a USB stick is all we need." -msgstr "" - -#. type: Content of: <div><p> -msgid "" -"But, not everyone can donate. When you donate, you are offering to many " -"others who need it, this precious tool that is Tails." -msgstr "" - -#. type: Content of: <div><div> -msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" -msgstr "" +#. type: Content of: <div> +#, fuzzy +msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" +msgstr "[[!inline pages=\"news.zh\" raw=\"yes\" sort=\"age\"]]" #. type: Content of: <div> #, fuzzy @@ -52,8 +38,36 @@ msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.zh\" raw=\"yes\" sort=\"age\"]]" #, fuzzy -#~ msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" -#~ msgstr "[[!inline pages=\"news.zh\" raw=\"yes\" sort=\"age\"]]" +#| msgid "" +#| "<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=" +#| "\"no\"]] <span>Tor check</span> </a>" +msgid "" +"<a href=\"https://tails.boum.org/install/check/\"> [[!img \"lib/onion.png\" " +"link=\"no\"]] <span>Tor check</span> </a>" +msgstr "" +"<a href=\"https://check.torproject.org/\"> [[!img \"lib/onion.png\" link=\"no" +"\"]] <span class=\"twolines\">Tor überprüfen</span> </a>" + +msgid "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" +msgstr "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" + +msgid "[[!img \"lib/onion.png\" link=\"no\"]]\n" +msgstr "[[!img \"lib/onion.png\" link=\"no\"]]\n" + +msgid "" +"<!-- Note for translators: You can use <span class=\"twolines\"> if your\n" +"translation of the label below is long and gets split into two lines. -->\n" +"<span>Tor check</span>\n" +"</a>\n" +"</div>\n" +msgstr "" +"<span class=\"twolines\">Verbindung testen</span>\n" +"</a>\n" +"</div>\n" #, fuzzy #~ msgid "[[!inline pages=\"home/tor_check\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home.zh_TW.po b/wiki/src/home.zh_TW.po index d3209b9cfd54be00375f165f10106e43e168cfa0..bca6e53e245a78f0364dd30f12bccfefa51bf742 100644 --- a/wiki/src/home.zh_TW.po +++ b/wiki/src/home.zh_TW.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-07 16:01+0000\n" +"POT-Creation-Date: 2020-01-12 20:23+0000\n" "PO-Revision-Date: 2019-07-29 23:30+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -19,7 +19,7 @@ msgstr "" "X-Generator: Weblate 2.20\n" #. type: Content of: <div> -msgid "[[!meta title=\"Dear Tails user,\"]]" +msgid "[[!meta title=\"Welcome to Tails!\"]]" msgstr "" #. type: Content of: outside any tag (error?) @@ -28,33 +28,39 @@ msgid "" "\"noindex\"]] [[!meta script=\"home\"]]" msgstr "" -#. type: Content of: <div><p> -msgid "" -"Today, we are asking you to help Tails. You can enjoy Tails for free because " -"we believe that nobody should have to pay to be safe while using computers. " -"And we want to keep it this way. <span class=\"highlight\">If everyone " -"reading this donated $6, our fundraiser would be done in one day.</span> The " -"price of a USB stick is all we need." -msgstr "" - -#. type: Content of: <div><p> -msgid "" -"But, not everyone can donate. When you donate, you are offering to many " -"others who need it, this precious tool that is Tails." -msgstr "" - -#. type: Content of: <div><div> -msgid "<a href=\"https://tails.boum.org/donate?r=home\">Donate</a>" -msgstr "" +#. type: Content of: <div> +#, fuzzy +msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" +msgstr "[[!inline pages=\"news.zh_TW\" raw=\"yes\" sort=\"age\"]]" #. type: Content of: <div> #, fuzzy msgid "[[!inline pages=\"news\" raw=\"yes\" sort=\"age\"]]" msgstr "[[!inline pages=\"news.zh_TW\" raw=\"yes\" sort=\"age\"]]" -#, fuzzy -#~ msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" -#~ msgstr "[[!inline pages=\"news.zh_TW\" raw=\"yes\" sort=\"age\"]]" +msgid "[[!meta title=\"News\"]] [[!meta robots=\"noindex\"]]" +msgstr "[[!meta title=\"Neuigkeiten\"]] [[!meta robots=\"noindex\"]]" + +msgid "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" +msgstr "" +"<div id=\"tor_check\">\n" +"<a href=\"https://check.torproject.org/\">\n" + +msgid "[[!img \"lib/onion.png\" link=\"no\"]]\n" +msgstr "[[!img \"lib/onion.png\" link=\"no\"]]\n" + +msgid "" +"<!-- Note for translators: You can use <span class=\"twolines\"> if your\n" +"translation of the label below is long and gets split into two lines. -->\n" +"<span>Tor check</span>\n" +"</a>\n" +"</div>\n" +msgstr "" +"<span class=\"twolines\">Verbindung testen</span>\n" +"</a>\n" +"</div>\n" #~ msgid "[[!inline pages=\"home/tor_check\" raw=\"yes\" sort=\"age\"]]" #~ msgstr "[[!inline pages=\"home/tor_check.zh_TW\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home/testing.fa.po b/wiki/src/home/testing.fa.po index fe9a97f639e960356ed0fc667d232b9c2122aa6c..90c9b1eb923a77659f8e9b3c5662296912b7f038 100644 --- a/wiki/src/home/testing.fa.po +++ b/wiki/src/home/testing.fa.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-22 10:57+0200\n" -"PO-Revision-Date: 2019-05-24 09:50+0200\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Trying a testing version of Tails\"]]" @@ -25,6 +26,8 @@ msgid "" "[[!meta stylesheet=\"home\" rel=\"stylesheet\" title=\"\"]] [[!meta robots=" "\"noindex\"]] [[!meta script=\"home\"]]" msgstr "" +"[[!meta stylesheet=\"home\" rel=\"stylesheet\" title=\"\"]] [[!meta robots=\"" +"noindex\"]] [[!meta script=\"home\"]]" #. type: Content of: <div> msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home/testing.pt.po b/wiki/src/home/testing.pt.po index b235b1066aadf1345f1150efeed3141c08cb0b2d..cdfa52291bfa4430365acc501071a7a974aa5fe0 100644 --- a/wiki/src/home/testing.pt.po +++ b/wiki/src/home/testing.pt.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-22 10:57+0200\n" -"PO-Revision-Date: 2019-05-24 09:49+0200\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Trying a testing version of Tails\"]]" @@ -25,6 +26,8 @@ msgid "" "[[!meta stylesheet=\"home\" rel=\"stylesheet\" title=\"\"]] [[!meta robots=" "\"noindex\"]] [[!meta script=\"home\"]]" msgstr "" +"[[!meta stylesheet=\"home\" rel=\"stylesheet\" title=\"\"]] [[!meta robots=\"" +"noindex\"]] [[!meta script=\"home\"]]" #. type: Content of: <div> msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" diff --git a/wiki/src/home/testing.zh_TW.po b/wiki/src/home/testing.zh_TW.po index 15a4ce18c4e92c243817788a8f6d24859a46bf5d..a1a452f91dcc4e04443a85d14b2923c2bed25e3a 100644 --- a/wiki/src/home/testing.zh_TW.po +++ b/wiki/src/home/testing.zh_TW.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-22 10:57+0200\n" -"PO-Revision-Date: 2019-07-30 13:21+0000\n" +"PO-Revision-Date: 2020-01-11 10:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh_TW\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Trying a testing version of Tails\"]]" @@ -29,7 +29,7 @@ msgstr "" #. type: Content of: <div> msgid "[[!inline pages=\"home/donate\" raw=\"yes\" sort=\"age\"]]" -msgstr "" +msgstr "[[!inline pages=\"home/donate.zh_TW\" raw=\"yes\" sort=\"age\"]]" #. type: Content of: <div><p> msgid "You are running a testing version of Tails. Thanks!" diff --git a/wiki/src/inc/stable_amd64_date.html b/wiki/src/inc/stable_amd64_date.html index 3c8103be01a574b4f739b3441ab3e51248f5d852..ee7352bfedaaa0cc113af7e3c1250d83dd4959fa 100644 --- a/wiki/src/inc/stable_amd64_date.html +++ b/wiki/src/inc/stable_amd64_date.html @@ -1 +1 @@ -2019-12-03 \ No newline at end of file +2020-01-14 \ 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 29c350cf321faa40c0dc6fcf2e842a2800e1b646..3fe1ad04d6bd273b3736ec282c94732fb7f0fd6e 100644 --- a/wiki/src/inc/stable_amd64_img_gpg_signature_output.html +++ b/wiki/src/inc/stable_amd64_img_gpg_signature_output.html @@ -1,4 +1,4 @@ -gpg: Signature made Mon Dec 2 23:12:54 2019 UTC<br/> -gpg: using RSA key FE029CB4AAD4788E1D7828E8A8B0F4E45B1B50E2<br/> +gpg: Signature made Mon 13 Jan 2020 10:49:48 AM UTC<br/> +gpg: using RSA key 05469FB85EAD6589B43D41D3D21DAD38AF281C0B<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 de4d36bd98554e55039ba2a7350fada4402820f8..4f2485a7eeea36ca94e28085913d54ce65b41eb3 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.1.img.sig tails-amd64-4.1.img +TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-4.2.2.img.sig tails-amd64-4.2.2.img diff --git a/wiki/src/inc/stable_amd64_img_sig_url.html b/wiki/src/inc/stable_amd64_img_sig_url.html index 4794948d6e4d60f61d35144be5eea883983e8f5d..086de8896f0c6da4811f2f9d1918d10a98d353ab 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.1.img.sig +https://tails.boum.org/torrents/files/tails-amd64-4.2.2.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 3d450de5637617dd05c5a21ee232997c45697ac6..efbad0102fd0b964e35d08df864dd85927551de5 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.1.img.torrent +https://tails.boum.org/torrents/files/tails-amd64-4.2.2.img.torrent diff --git a/wiki/src/inc/stable_amd64_img_url.html b/wiki/src/inc/stable_amd64_img_url.html index 6b1cc59d001fb6c7ea46a5e725e08e39249444a8..8652ec091d143ecf3a94e5340a26f5841ae497c4 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.1/tails-amd64-4.1.img +http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2.2/tails-amd64-4.2.2.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 305d293f326e4a406f055bc8fae125ac1f9de6b0..4971b4209c1ec78ad4b42c026fe889c94b823cda 100644 --- a/wiki/src/inc/stable_amd64_iso_gpg_signature_output.html +++ b/wiki/src/inc/stable_amd64_iso_gpg_signature_output.html @@ -1,4 +1,4 @@ -gpg: Signature made Mon Dec 2 23:12:33 2019 UTC<br/> -gpg: using RSA key FE029CB4AAD4788E1D7828E8A8B0F4E45B1B50E2<br/> +gpg: Signature made Mon 13 Jan 2020 10:49:31 AM UTC<br/> +gpg: using RSA key 05469FB85EAD6589B43D41D3D21DAD38AF281C0B<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 c568267ec0502aa93bcd50c3838120a66e86ad94..2dcef03e873a872831827fae270afca637681860 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.1.iso.sig tails-amd64-4.1.iso +TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-4.2.2.iso.sig tails-amd64-4.2.2.iso diff --git a/wiki/src/inc/stable_amd64_iso_sig_url.html b/wiki/src/inc/stable_amd64_iso_sig_url.html index 9ee35458114e317efffc1e55c490674df8ba323a..964c97c4cb51cc3a4b8b143871574a5073ff5062 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.1.iso.sig +https://tails.boum.org/torrents/files/tails-amd64-4.2.2.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 66a19beab7262d995affce227f020b98f79c112d..98988917acaaad99f742a41220dad4d8264c72c3 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.1.iso.torrent +https://tails.boum.org/torrents/files/tails-amd64-4.2.2.iso.torrent diff --git a/wiki/src/inc/stable_amd64_iso_url.html b/wiki/src/inc/stable_amd64_iso_url.html index b7649c357901a135adb95198ca6b963911493ac1..2cbfb6edab8c2429575b01abf17922fd7c0145a4 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.1/tails-amd64-4.1.iso +http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2.2/tails-amd64-4.2.2.iso diff --git a/wiki/src/inc/stable_amd64_version.html b/wiki/src/inc/stable_amd64_version.html index 7d5c902e777905446c67de7e52a945b88fd2038c..af8c8ec7c1341172f05d465d5f47eae59a604939 100644 --- a/wiki/src/inc/stable_amd64_version.html +++ b/wiki/src/inc/stable_amd64_version.html @@ -1 +1 @@ -4.1 +4.2.2 diff --git a/wiki/src/inc/trace b/wiki/src/inc/trace index 1f37ae33d22e5b7cb51b4bb91d16db1dccec45f8..9335120b6570b2339247a40913926abfc81375ed 100644 --- a/wiki/src/inc/trace +++ b/wiki/src/inc/trace @@ -1 +1 @@ -1575331904 +1578928908 diff --git a/wiki/src/index.id.po b/wiki/src/index.id.po index 7a1815410450c9a6746b174f3c956c5b53dbe4ec..30d0553db6594537d6457d22857b132687775509 100644 --- a/wiki/src/index.id.po +++ b/wiki/src/index.id.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: \n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-09-29 19:58+0000\n" -"PO-Revision-Date: 2018-04-06 12:50+0200\n" -"Last-Translator: Tails translators\n" +"PO-Revision-Date: 2020-01-16 00:25+0000\n" +"Last-Translator: Caesar <pinkpidgeon@protonmail.com>\n" "Language-Team: Tails Translators <tails@boum.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.3\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Privacy for anyone anywhere\"]]" @@ -25,6 +27,8 @@ msgid "" "[[!meta google-site-verification=\"aGp--" "gO0AaDbtxshkcWaS0jY8WkOjYwUuBqRWzWHy6o\"]]" msgstr "" +"[[!meta google-site-verification=\"aGp--" +"gO0AaDbtxshkcWaS0jY8WkOjYwUuBqRWzWHy6o\"]]" #. type: Content of: <div><p> msgid "" @@ -76,6 +80,9 @@ msgid "" "(currentlang() or news/report_2* or news/test_*)\" show=\"2\" feeds=\"no\" " "archive=\"yes\" sort=\"-meta(date) age -path\"]]" msgstr "" +"[[!inline pages=\"page(news/*) and !news/*/* and !news/discussion and " +"(currentlang() or news/report_2* or news/test_*)\" show=\"2\" feeds=\"no\" " +"archive=\"yes\" sort=\"-meta(date) age -path\"]]" #. type: Content of: <div><p> msgid "See [[News]] for more." @@ -92,6 +99,10 @@ msgid "" "(currentlang() or security/Numerous_security_holes_in_*)\" show=\"2\" feeds=" "\"no\" archive=\"yes\" sort=\"-meta(date) age -path\"]]" msgstr "" +"[[!inline pages=\"page(security/*) and !security/audits and !security/" +"audits.* and !security/audits/* and !security/*/* and !security/discussion " +"and (currentlang() or security/Numerous_security_holes_in_*)\" show=\"2\" " +"feeds=\"no\" archive=\"yes\" sort=\"-meta(date) age -path\"]]" #. type: Content of: <div><p> msgid "See [[Security]] for more." @@ -102,6 +113,8 @@ msgid "" "<a href=\"https://www.debian.org/\" class=\"noicon\">[[!img lib/debian.png " "link=\"no\"]]</a>" msgstr "" +"<a href=\"https://www.debian.org/\" class=\"noicon\">[[!img lib/debian.png " +"link=\"no\"]]</a>" #. type: Content of: <div><div><p> msgid "Tails is built upon <a href=\"https://www.debian.org/\">Debian</a>." @@ -109,7 +122,7 @@ msgstr "" #. type: Content of: <div><div> msgid "[[!img lib/free-software.png link=\"doc/about/license\"]]" -msgstr "" +msgstr "[[!img lib/free-software.png link=\"doc/about/license\"]]" #. type: Content of: <div><div><p> msgid "Tails is [[Free Software|doc/about/license]]." @@ -120,6 +133,8 @@ msgid "" "<a href=\"https://www.torproject.org/\" class=\"noicon\">[[!img lib/tor.png " "link=\"no\"]]</a>" msgstr "" +"<a href=\"https://www.torproject.org/\" class=\"noicon\">[[!img lib/tor.png " +"link=\"no\"]]</a>" #. type: Content of: <div><div><p> msgid "" @@ -129,7 +144,7 @@ msgstr "" #. #debian-fs-tor #. type: Content of: outside any tag (error?) msgid "<span class=\"clearfix\"></span>" -msgstr "" +msgstr "<span class=\"clearfix\"></span>" #. type: Content of: <div><h1> msgid "Awards" diff --git a/wiki/src/install.de.po b/wiki/src/install.de.po index a9af7aa80c8f268b27645ca208c3bfb808f0050f..98d45c3ef2d9e1d35db4b4c9c4bfedd209dc5da6 100644 --- a/wiki/src/install.de.po +++ b/wiki/src/install.de.po @@ -6,19 +6,21 @@ msgid "" msgstr "" "Project-Id-Version: \n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: 2017-02-09 19:00+0100\n" -"Last-Translator: Tails translators <tails@boum.org>\n" +"PO-Revision-Date: 2020-01-21 18:26+0000\n" +"Last-Translator: Muri Nicanor <muri@immerda.ch>\n" "Language-Team: \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.6\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Download and install Tails\"]]" -msgstr "" +msgstr "[[!meta title=\"Herunterladen und Installieren von Tails\"]]" #. type: Content of: outside any tag (error?) #, fuzzy diff --git a/wiki/src/install.fa.po b/wiki/src/install.fa.po index 59258d4f6ca9cdadc067da8c627819c5301d97a7..634c67b62bb78d97b23bc59f4cc8869281c39938 100644 --- a/wiki/src/install.fa.po +++ b/wiki/src/install.fa.po @@ -3,18 +3,20 @@ # 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" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Download and install Tails\"]]" @@ -48,7 +50,7 @@ msgstr "" #. type: Content of: <div><div> msgid "[[" -msgstr "" +msgstr "[[" #. type: Content of: <div><div><div><div> msgid "Windows" diff --git a/wiki/src/install.pt.po b/wiki/src/install.pt.po index 930da2f819560d373938ffb7de4d7eb15c8551f2..6cc85d24ce35aaaaf79b4082d221ecb6c812425b 100644 --- a/wiki/src/install.pt.po +++ b/wiki/src/install.pt.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: 2019-07-02 19:03+0000\n" -"Last-Translator: julho <julho@riseup.net>\n" +"PO-Revision-Date: 2020-01-21 18:26+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Download and install Tails\"]]" @@ -27,10 +27,12 @@ msgid "" "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " "stylesheet=\"inc/stylesheets/assistant\" rel=\"stylesheet\" title=\"\"]]" msgstr "" +"[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"inc/stylesheets/assistant\" rel=\"stylesheet\" title=\"\"]]" #. type: Content of: <h4> msgid "Thank you for your interest in Tails." -msgstr "Agradecemos pelo seu interesse em Tails" +msgstr "Agradecemos pelo seu interesse em Tails." #. type: Content of: <p> msgid "" diff --git a/wiki/src/install.tr.po b/wiki/src/install.tr.po index 8b24b52845b54e9edc5fdd4c11ed5ca5edba64ea..d404ad86f78bae05e03ae003a63bdc838c03ab2a 100644 --- a/wiki/src/install.tr.po +++ b/wiki/src/install.tr.po @@ -3,18 +3,20 @@ # 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" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-17 08:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Download and install Tails\"]]" @@ -48,7 +50,7 @@ msgstr "" #. type: Content of: <div><div> msgid "[[" -msgstr "" +msgstr "[[" #. type: Content of: <div><div><div><div> msgid "Windows" diff --git a/wiki/src/install/clone.pt.po b/wiki/src/install/clone.pt.po index d8684a431018cb135d2136ab48de5a97485dc1a7..61e7a70c3e7b603c27c39672181bde8927e376d3 100644 --- a/wiki/src/install/clone.pt.po +++ b/wiki/src/install/clone.pt.po @@ -8,20 +8,20 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-04-24 16:42+0300\n" -"PO-Revision-Date: 2019-10-24 10:21+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2019-12-30 13:21+0000\n" +"Last-Translator: julho <julho@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Install from another Tails\"]]\n" -msgstr "" +msgstr "[[!meta title=\"Instale a partir de outro Tails\"]]\n" #. type: Plain text #, no-wrap @@ -47,6 +47,8 @@ msgstr "[[!meta stylesheet=\"inc/stylesheets/steps\" rel=\"stylesheet\" title=\" #, no-wrap msgid "[[!meta stylesheet=\"inc/stylesheets/install-clone\" rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"inc/stylesheets/install-clone\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/download-iso.es.po b/wiki/src/install/download-iso.es.po index 8b20cc765a992d6f696024289591e6d69a66038a..e78536dd54c2f87b788f7663de9847460ec559b4 100644 --- a/wiki/src/install/download-iso.es.po +++ b/wiki/src/install/download-iso.es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-09-10 15:42+0000\n" -"PO-Revision-Date: 2019-11-19 09:23+0000\n" +"PO-Revision-Date: 2020-01-11 10:26+0000\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: es\n" @@ -15,12 +15,13 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Download and verify (for DVDs and virtual machines)\"]]\n" msgstr "" +"[[!meta title=\"Descargar y verificar (para DVDs y máquinas virtuales)\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/dvd-download.pt.po b/wiki/src/install/dvd-download.pt.po index c7b69cc30e8f91ebafbc451a0e742cc31d1572af..0864d337861ff29511b6e9004bb0931ac0cf876e 100644 --- a/wiki/src/install/dvd-download.pt.po +++ b/wiki/src/install/dvd-download.pt.po @@ -8,20 +8,20 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-11-15 12:31+0000\n" -"PO-Revision-Date: 2019-10-22 11:26+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2019-12-31 13:25+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Burning Tails on a DVD\"]]\n" -msgstr "" +msgstr "[[!meta title=\"Gravando Tails em um DVD\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/dvd.pt.po b/wiki/src/install/dvd.pt.po index 8f64c47764d841f1e0d986664ce1ff4908811d92..552ce1702d7c47dcd340e9d11d3ea2f084a62833 100644 --- a/wiki/src/install/dvd.pt.po +++ b/wiki/src/install/dvd.pt.po @@ -6,38 +6,47 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2017-11-09 18:59+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2019-12-31 13:25+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Burning Tails on a DVD\"]]\n" -msgstr "" +msgstr "[[!meta title=\"Gravando Tails em um DVD\"]]\n" #. type: Plain text msgid "For detailed instructions, refer to the Ubuntu documentation:" -msgstr "" +msgstr "Para instruções mais detalhadas, busque a documentação do Ubuntu:" #. type: Bullet: ' - ' msgid "" "[Burning from Windows](https://help.ubuntu.com/community/" "BurningIsoHowto#Burning_from_Windows)" msgstr "" +"[Gravando a partir de um Windows](https://help.ubuntu.com/community/" +"BurningIsoHowto#Burning_from_Windows)" #. type: Bullet: ' - ' msgid "" "[Burning from Ubuntu](https://help.ubuntu.com/community/" "BurningIsoHowto#Burning_from_Ubuntu)" msgstr "" +"[Gravando a partir de um Ubuntu](https://help.ubuntu.com/community/" +"BurningIsoHowto#Burning_from_Ubuntu)" #. type: Bullet: ' - ' msgid "" "[Burning from macOS](https://help.ubuntu.com/community/" "BurningIsoHowto#Burning_from_Mac_OS_X)" msgstr "" +"[Gravando a partir de um macOS](https://help.ubuntu.com/community/" +"BurningIsoHowto#Burning_from_Mac_OS_X)" diff --git a/wiki/src/install/expert/usb-overview.it.po b/wiki/src/install/expert/usb-overview.it.po index 4235c4b01e92b9dd46ae7180d745dbd11ac1b891..9a22afc9e5d8091dabd8dd0e5daba9e882316d0f 100644 --- a/wiki/src/install/expert/usb-overview.it.po +++ b/wiki/src/install/expert/usb-overview.it.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-30 19:48+0000\n" -"PO-Revision-Date: 2016-07-17 15:20+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2020-01-22 14:26+0000\n" +"Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "" @@ -23,16 +25,6 @@ msgid "" msgstr "" #. type: Content of: outside any tag (error?) -#, fuzzy -#| msgid "" -#| "[[!meta title=\"Install from Debian, Ubuntu, or Mint using the command " -#| "line and GnuPG\"]] [[!meta robots=\"noindex\"]] [[!meta stylesheet=" -#| "\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=" -#| "\"inc/stylesheets/assistant\" rel=\"stylesheet\" title=\"\"]] [[!meta " -#| "stylesheet=\"inc/stylesheets/overview\" rel=\"stylesheet\" title=\"\"]] " -#| "[[!meta stylesheet=\"inc/stylesheets/expert\" rel=\"stylesheet\" title=" -#| "\"\"]] [[!inline pages=\"install/inc/overview\" raw=\"yes\" sort=\"age" -#| "\"]] [[" msgid "" "[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=" "\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" " @@ -41,13 +33,12 @@ msgid "" "expert\" rel=\"stylesheet\" title=\"\"]] [[!inline pages=\"install/inc/" "overview\" raw=\"yes\" sort=\"age\"]] [[" msgstr "" -"[[!meta title=\"Installa da Devian o Ubuntu usando la riga di comando e GnuPG" -"\"]] [[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=" -"\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" " -"rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/overview" -"\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/" -"expert\" rel=\"stylesheet\" title=\"\"]] [[!inline pages=\"install/inc/" -"overview.it\" raw=\"yes\" sort=\"age\"]] [[" +"[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"" +"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" " +"rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/" +"overview\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/" +"stylesheets/expert\" rel=\"stylesheet\" title=\"\"]] [[!inline pages=\"" +"install/inc/overview.it\" raw=\"yes\" sort=\"age\"]] [[" #. type: Content of: <div><div> msgid "Let's go!" diff --git a/wiki/src/install/expert/usb.ar.po b/wiki/src/install/expert/usb.ar.po index 845b18b15010830ba4dc4902741c27c9ff14415f..c2a36e75da7fe0bbf0964b8a252c43b1f91acba4 100644 --- a/wiki/src/install/expert/usb.ar.po +++ b/wiki/src/install/expert/usb.ar.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-02-21 12:48+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" "PO-Revision-Date: 2018-10-30 07:38+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Arabic <http://translate.tails.boum.org/projects/tails/" @@ -405,7 +405,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -415,7 +415,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" +msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -436,7 +436,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/expert/usb.ca.po b/wiki/src/install/expert/usb.ca.po index 42fc5901ad4957818a8180607d8ae3997656b44f..388e2c8438e2129af699addd3d10ad078645e7a0 100644 --- a/wiki/src/install/expert/usb.ca.po +++ b/wiki/src/install/expert/usb.ca.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-02-21 12:48+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" "PO-Revision-Date: 2018-10-30 07:38+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -403,7 +403,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -413,7 +413,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" +msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -434,7 +434,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/expert/usb.de.po b/wiki/src/install/expert/usb.de.po index 1b68a53776eb9a6f293a2f9f7273dc3299ec5cd6..39648d936b4a1b55c5b37f57d49dd63ec38acf36 100644 --- a/wiki/src/install/expert/usb.de.po +++ b/wiki/src/install/expert/usb.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-02-21 12:48+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" "PO-Revision-Date: 2018-09-12 17:28+0200\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -485,7 +485,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -495,7 +495,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" +msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -516,7 +516,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/expert/usb.es.po b/wiki/src/install/expert/usb.es.po index 3abcd20e2dd668df52eb53ab48f06f0b87165893..2506339731dc17f113d43afe5da5c61b47fe720d 100644 --- a/wiki/src/install/expert/usb.es.po +++ b/wiki/src/install/expert/usb.es.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-02-21 12:48+0000\n" -"PO-Revision-Date: 2019-11-20 10:07+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" +"PO-Revision-Date: 2020-01-15 08:26+0000\n" +"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "install-expert-usb/es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -64,8 +64,7 @@ msgid "" "can skip this step and start [[downloading and verifying the USB\n" "image|usb#download]].</p>\n" msgstr "" -"<p>Si ya certificaste la llave de firmado de Tails con tu propia llave, " -"puedes\n" +"<p>Si ya certificaste la llave de firmado de Tails con tu propia llave, puedes\n" "saltarte este paso e iniciar la [[descarga y verificación de la imagen\n" "USB|usb#download]].</p>\n" @@ -306,9 +305,7 @@ msgstr "Descargar la imagen USB:" #. type: Plain text #, no-wrap msgid " <p class=\"pre\">wget --continue [[!inline pages=\"inc/stable_amd64_img_url\" raw=\"yes\" sort=\"age\"]]</p>\n" -msgstr "" -" <p class=\"pre\">wget --continue [[!inline pages=\"inc/" -"stable_amd64_img_url\" raw=\"yes\" sort=\"age\"]]</p>\n" +msgstr " <p class=\"pre\">wget --continue [[!inline pages=\"inc/stable_amd64_img_url\" raw=\"yes\" sort=\"age\"]]</p>\n" #. type: Bullet: '1. ' msgid "Download the signature of the USB image:" @@ -317,9 +314,7 @@ msgstr "Descargar la firma de la imagen USB:" #. type: Plain text #, no-wrap msgid " <p class=\"pre\">wget [[!inline pages=\"inc/stable_amd64_img_sig_url\" raw=\"yes\" sort=\"age\"]]</p>\n" -msgstr "" -" <p class=\"pre\">wget [[!inline pages=\"inc/stable_amd64_img_sig_url\" " -"raw=\"yes\" sort=\"age\"]]</p>\n" +msgstr " <p class=\"pre\">wget [[!inline pages=\"inc/stable_amd64_img_sig_url\" raw=\"yes\" sort=\"age\"]]</p>\n" #. type: Bullet: '1. ' msgid "Verify that the USB image is signed by the Tails signing key:" @@ -329,9 +324,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " <p class=\"pre\">[[!inline pages=\"inc/stable_amd64_img_gpg_verify\" raw=\"yes\" sort=\"age\"]]</p>\n" -msgstr "" -" <p class=\"pre\">[[!inline pages=\"inc/stable_amd64_img_gpg_verify\" raw=" -"\"yes\" sort=\"age\"]]</p>\n" +msgstr " <p class=\"pre\">[[!inline pages=\"inc/stable_amd64_img_gpg_verify\" raw=\"yes\" sort=\"age\"]]</p>\n" #. type: Plain text #, no-wrap @@ -341,9 +334,7 @@ msgstr " La salida de este comando debería ser la siguiente:\n" #. type: Plain text #, no-wrap msgid " <p class=\"pre\">[[!inline pages=\"inc/stable_amd64_img_gpg_signature_output\" raw=\"yes\" sort=\"age\"]]</p>\n" -msgstr "" -" <p class=\"pre\">[[!inline pages=\"inc/" -"stable_amd64_img_gpg_signature_output\" raw=\"yes\" sort=\"age\"]]</p>\n" +msgstr " <p class=\"pre\">[[!inline pages=\"inc/stable_amd64_img_gpg_signature_output\" raw=\"yes\" sort=\"age\"]]</p>\n" #. type: Plain text #, no-wrap @@ -390,9 +381,7 @@ msgstr " <p class=\"pre command\">ls -1 /dev/sd?</p>\n" #. type: Plain text #, no-wrap msgid " It returns a list of the storage devices on the system. For example:\n" -msgstr "" -" Devuelve una lista de los dispositivos de almacenamiento del sistema. Por " -"ejemplo:\n" +msgstr " Devuelve una lista de los dispositivos de almacenamiento del sistema. Por ejemplo:\n" #. type: Plain text #, no-wrap @@ -406,9 +395,7 @@ msgstr "Conecta la memoria USB en la que quieres instalar Tails." #. type: Plain text #, no-wrap msgid " <div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n" -msgstr "" -" <div class=\"caution\"><p>Se perderá toda la información en esta memoria " -"USB.</p></div>\n" +msgstr " <div class=\"caution\"><p>Se perderá toda la información en esta memoria USB.</p></div>\n" #. type: Bullet: '1. ' msgid "Execute again the same command:" @@ -451,8 +438,7 @@ msgid "" msgstr "" " <div class=\"caution\">\n" "<p>Si no estás seguro del nombre del dispositivo deberías parar ahora o\n" -"<strong>te arriesgas a sobreescribir cualquier otro disco duro del " -"sistema</strong>.</p>\n" +"<strong>te arriesgas a sobreescribir cualquier otro disco duro del sistema</strong>.</p>\n" "</div>\n" #. type: Bullet: '1. ' @@ -486,11 +472,11 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" msgstr "" " <p class=\"pre command\">dd if=<span class=\"command-placeholder\"" ">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=" -"16M && sync</p>\n" +"16M oflag=direct status=progress</p>\n" #. type: Plain text #, no-wrap @@ -499,10 +485,10 @@ msgstr " Deberías obtener algo como esto:\n" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" +msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" msgstr "" " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img " -"of=/dev/sdb bs=16M && sync</p>\n" +"of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" #. type: Plain text #, no-wrap @@ -510,8 +496,7 @@ msgid "" " If no error message is returned, Tails is being copied on the USB\n" " stick. The copy takes some time, generally a few minutes.\n" msgstr "" -" Si no aparece ningún mensaje de error, Tails está siendo copiado a la " -"memoria\n" +" Si no aparece ningún mensaje de error, Tails está siendo copiado a la memoria\n" "USB. El proceso de copiado tarda por lo general un par de minutos.\n" #. type: Plain text @@ -522,27 +507,24 @@ msgid "" " adding <code>sudo</code> at the beginning of the command:</p>\n" msgstr "" " <div class=\"note\">\n" -" <p>Si recibes un error de <span class=\"guilabel\">Permiso " -"denegado</span>, prueba\n" +" <p>Si recibes un error de <span class=\"guilabel\">Permiso denegado</span>, prueba\n" " agregando <code>sudo</code> al principio del comando:</p>\n" #. type: Plain text #, no-wrap msgid "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" " </div>\n" msgstr "" " <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\"" ">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=" -"16M && sync</p>\n" +"16M oflag=direct status=progress</p>\n" " </div>\n" #. type: Plain text #, no-wrap msgid " The installation is complete after the command prompt reappears.\n" -msgstr "" -" La instalación se ha completado una vez que reaparezca el interprete de " -"comandos.\n" +msgstr " La instalación se ha completado una vez que reaparezca el interprete de comandos.\n" #. type: Plain text #, no-wrap @@ -553,3 +535,10 @@ msgstr "[[!inline pages=\"install/inc/steps/restart_first_time.inline.es\" raw=\ #, no-wrap msgid "[[!inline pages=\"install/inc/steps/create_persistence.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "[[!inline pages=\"install/inc/steps/create_persistence.inline.es\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "" +#~ " <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +#~ " </div>\n" +#~ msgstr "" +#~ " <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +#~ " </div>\n" diff --git a/wiki/src/install/expert/usb.fa.po b/wiki/src/install/expert/usb.fa.po index fdb9e2598e43c8ee2bb9663cd13799c2f454ccb7..a30e45894d868ef7a21c12701883953db5ebae2d 100644 --- a/wiki/src/install/expert/usb.fa.po +++ b/wiki/src/install/expert/usb.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-02-21 12:48+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" "PO-Revision-Date: 2019-03-23 10:04+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -31,16 +31,12 @@ msgstr "[[!meta robots=\"noindex\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta stylesheet=\"inc/stylesheets/assistant\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/assistant\" rel=\"stylesheet\" title=\"" -"\"]]\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/assistant\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta stylesheet=\"inc/stylesheets/steps\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/steps\" rel=\"stylesheet\" title=\"\"]]" -"\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/steps\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -407,7 +403,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -417,7 +413,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" +msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -438,7 +434,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/expert/usb.fr.po b/wiki/src/install/expert/usb.fr.po index c7227bf8b40b071afa1e64c788c68441a9c60310..f0131834bc3d24bd60b7e231fefeb89d460eb3aa 100644 --- a/wiki/src/install/expert/usb.fr.po +++ b/wiki/src/install/expert/usb.fr.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-02-21 12:48+0000\n" -"PO-Revision-Date: 2019-09-29 12:00+0000\n" -"Last-Translator: Chre <tor@renaudineau.org>\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" +"PO-Revision-Date: 2020-01-07 12:25+0000\n" +"Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -469,8 +469,11 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" -msgstr " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">périphérique</span> bs=16M && sync</p>\n" +msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" +msgstr "" +" <p class=\"pre command\">dd if=<span class=\"command-placeholder\"" +">tails.img</span> of=<span class=\"command-placeholder\">périphérique</span> " +"bs=16M oflag=direct status=progress</p>\n" #. type: Plain text #, no-wrap @@ -479,8 +482,10 @@ msgstr " Vous devriez obtenir quelque chose qui ressemble à :\n" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" -msgstr " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" +msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" +msgstr "" +" <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img " +"of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" #. type: Plain text #, no-wrap @@ -505,10 +510,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" " </div>\n" msgstr "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">périphérique</span> bs=16M && sync</p>\n" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\"" +">tails.img</span> of=<span class=\"command-placeholder\">périphérique</span> " +"bs=16M oflag=direct status=progress</p>\n" " </div>\n" #. type: Plain text @@ -525,3 +532,10 @@ msgstr "[[!inline pages=\"install/inc/steps/restart_first_time.inline.fr\" raw=\ #, no-wrap msgid "[[!inline pages=\"install/inc/steps/create_persistence.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "[[!inline pages=\"install/inc/steps/create_persistence.inline.fr\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "" +#~ " <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +#~ " </div>\n" +#~ msgstr "" +#~ " <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">périphérique</span> bs=16M && sync</p>\n" +#~ " </div>\n" diff --git a/wiki/src/install/expert/usb.id.po b/wiki/src/install/expert/usb.id.po index 37ab2e5f78e2bc4b4c905b508fb2a76dc0480a18..74481d3429c93048ed6b8b54806d5d29b047d20d 100644 --- a/wiki/src/install/expert/usb.id.po +++ b/wiki/src/install/expert/usb.id.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-02-21 12:48+0000\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" +"PO-Revision-Date: 2020-01-15 21:29+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -55,7 +55,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap @@ -79,7 +79,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap @@ -403,7 +403,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -413,7 +413,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" +msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -434,7 +434,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/expert/usb.it.po b/wiki/src/install/expert/usb.it.po index a0647b0c3c88874bab4d38304ef31357b4feda49..cfff6e9a4d7116e725203f077e7e95619e81bf6b 100644 --- a/wiki/src/install/expert/usb.it.po +++ b/wiki/src/install/expert/usb.it.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-02-21 12:48+0000\n" -"PO-Revision-Date: 2019-10-23 10:55+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" +"PO-Revision-Date: 2020-01-22 16:26+0000\n" +"Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: ita <transitails@inventati.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -64,8 +64,7 @@ msgid "" "can skip this step and start [[downloading and verifying the USB\n" "image|usb#download]].</p>\n" msgstr "" -"<p>Se hai già certificato la chiave di firma di Tails con la tua chiave, " -"puoi\n" +"<p>Se hai già certificato la chiave di firma di Tails con la tua chiave, puoi\n" "saltare questo passaggio e iniziare a [[scaricare e verificare l'immagine\n" "USB| usb#download]].</p>\n" @@ -79,9 +78,9 @@ msgid "" "In this step, you will download and verify the *Tails signing key* which is " "the OpenPGP key that is used to cryptographically sign the Tails USB image." msgstr "" -"In questo passaggio scaricherai e verificherai la *chiave di firma di Tails*" -", che è la chiave OpenPGP usata per firmare l'immagine USB di Tails con la " -"crittografia." +"In questo passaggio scaricherai e verificherai la *chiave di firma di " +"Tails*, che è la chiave OpenPGP usata per firmare l'immagine USB di Tails " +"con la crittografia." #. type: Plain text #, no-wrap @@ -302,9 +301,7 @@ msgstr "Scarica l'immagine USB:" #. type: Plain text #, no-wrap msgid " <p class=\"pre\">wget --continue [[!inline pages=\"inc/stable_amd64_img_url\" raw=\"yes\" sort=\"age\"]]</p>\n" -msgstr "" -" <p class=\"pre\">wget --continue [[!inline pages=\"inc/" -"stable_amd64_img_url\" raw=\"yes\" sort=\"age\"]]</p>\n" +msgstr " <p class=\"pre\">wget --continue [[!inline pages=\"inc/stable_amd64_img_url\" raw=\"yes\" sort=\"age\"]]</p>\n" #. type: Bullet: '1. ' msgid "Download the signature of the USB image:" @@ -313,9 +310,7 @@ msgstr "Scarica la firma dell'immagine USB:" #. type: Plain text #, no-wrap msgid " <p class=\"pre\">wget [[!inline pages=\"inc/stable_amd64_img_sig_url\" raw=\"yes\" sort=\"age\"]]</p>\n" -msgstr "" -" <p class=\"pre\">wget [[!inline pages=\"inc/stable_amd64_img_sig_url\" " -"raw=\"yes\" sort=\"age\"]]</p>\n" +msgstr " <p class=\"pre\">wget [[!inline pages=\"inc/stable_amd64_img_sig_url\" raw=\"yes\" sort=\"age\"]]</p>\n" #. type: Bullet: '1. ' msgid "Verify that the USB image is signed by the Tails signing key:" @@ -325,9 +320,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " <p class=\"pre\">[[!inline pages=\"inc/stable_amd64_img_gpg_verify\" raw=\"yes\" sort=\"age\"]]</p>\n" -msgstr "" -" <p class=\"pre\">[[!inline pages=\"inc/stable_amd64_img_gpg_verify\" raw=" -"\"yes\" sort=\"age\"]]</p>\n" +msgstr " <p class=\"pre\">[[!inline pages=\"inc/stable_amd64_img_gpg_verify\" raw=\"yes\" sort=\"age\"]]</p>\n" #. type: Plain text #, no-wrap @@ -337,9 +330,7 @@ msgstr " L'output di questo comanda dovrebbe essere il seguente:\n" #. type: Plain text #, no-wrap msgid " <p class=\"pre\">[[!inline pages=\"inc/stable_amd64_img_gpg_signature_output\" raw=\"yes\" sort=\"age\"]]</p>\n" -msgstr "" -" <p class=\"pre\">[[!inline pages=\"inc/" -"stable_amd64_img_gpg_signature_output\" raw=\"yes\" sort=\"age\"]]</p>\n" +msgstr " <p class=\"pre\">[[!inline pages=\"inc/stable_amd64_img_gpg_signature_output\" raw=\"yes\" sort=\"age\"]]</p>\n" #. type: Plain text #, no-wrap @@ -366,10 +357,9 @@ msgstr "" "\n" #. type: Title = -#, fuzzy, no-wrap -#| msgid "Install <span class=\"application\">Tails Installer</span>\n" +#, no-wrap msgid "Install Tails using <span class=\"command\">dd</span>\n" -msgstr "Installare <span class=\"application\">Tails Installer</span>\n" +msgstr "Installa Tails usando <span class=\"command\">dd</span>\n" #. type: Bullet: '1. ' msgid "" @@ -390,9 +380,7 @@ msgstr " <p class=\"pre command\">ls -1 /dev/sd?</p>\n" #. type: Plain text #, no-wrap msgid " It returns a list of the storage devices on the system. For example:\n" -msgstr "" -" Restituisce un elenco dei dispositivi di archiviazione sul sistema. Per " -"esempio:\n" +msgstr " Restituisce un elenco dei dispositivi di archiviazione sul sistema. Per esempio:\n" #. type: Plain text #, no-wrap @@ -406,9 +394,7 @@ msgstr "Inserite la chiavetta USB sulla quale volete installare Tails." #. type: Plain text #, no-wrap msgid " <div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n" -msgstr "" -" <div class=\"caution\"><p>Tutti i dati su questa chiavetta USB andranno " -"persi.</p></div>\n" +msgstr " <div class=\"caution\"><p>Tutti i dati su questa chiavetta USB andranno persi.</p></div>\n" #. type: Bullet: '1. ' msgid "Execute again the same command:" @@ -417,8 +403,7 @@ msgstr "Eseguite nuovamente lo stesso comando:" #. type: Plain text #, no-wrap msgid " Your USB stick appears as a new device in the list.\n" -msgstr "" -" La vostra chiavetta USB apparirà come un nuovo dispositivo nella lista.\n" +msgstr " La vostra chiavetta USB apparirà come un nuovo dispositivo nella lista.\n" #. type: Plain text #, no-wrap @@ -440,8 +425,7 @@ msgid "" " <span class=\"code\">/dev/sdb</span>. Yours might be different.\n" msgstr "" " In questo esempio, il nome dispositivo della chiavetta USB è\n" -" <span class=\"code\">/dev/sdb</span>. Il vostro potrebbe essere " -"differente.\n" +" <span class=\"code\">/dev/sdb</span>. Il vostro potrebbe essere differente.\n" #. type: Plain text #, no-wrap @@ -452,10 +436,8 @@ msgid "" " </div>\n" msgstr "" " <div class=\"caution\">\n" -" <p>Se non siete sicuri del nome del dispositivo dovreste smettere la " -"procedura oppure\n" -" <strong>rischiate di sovrascrivere qualunque disco rigido sul " -"sistema</strong>.</p>\n" +" <p>Se non siete sicuri del nome del dispositivo dovreste smettere la procedura oppure\n" +" <strong>rischiate di sovrascrivere qualunque disco rigido sul sistema</strong>.</p>\n" " </div>\n" #. type: Bullet: '1. ' @@ -488,12 +470,10 @@ msgstr "" "dispositivo trovato nello step 5" #. type: Plain text -#, no-wrap -msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" -msgstr "" -" <p class=\"pre command\">dd if=<span class=\"command-placeholder\"" -">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=" -"16M && sync</p>\n" +#, fuzzy, no-wrap +#| msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" +msgstr " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" #. type: Plain text #, no-wrap @@ -501,11 +481,10 @@ msgid " You should get something like this:\n" msgstr " Dovreste ottenere qualcosa del genere:\n" #. type: Plain text -#, no-wrap -msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" -msgstr "" -" <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img " -"of=/dev/sdb bs=16M && sync</p>\n" +#, fuzzy, no-wrap +#| msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" +msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" +msgstr " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" #. type: Plain text #, no-wrap @@ -513,8 +492,7 @@ msgid "" " If no error message is returned, Tails is being copied on the USB\n" " stick. The copy takes some time, generally a few minutes.\n" msgstr "" -" Se non compaiono messaggi di errore, Tails è stato copiato sulla " -"chiavetta\n" +" Se non compaiono messaggi di errore, Tails è stato copiato sulla chiavetta\n" "USB. La copia richiede tempo, solitamente alcuni minuti.\n" #. type: Plain text @@ -525,27 +503,21 @@ msgid "" " adding <code>sudo</code> at the beginning of the command:</p>\n" msgstr "" " <div class=\"note\">\n" -"<p>Se ottenete un errore di <span class=\"guilabel\">Permesso negato</span> " -", provate\n" +"<p>Se ottenete un errore di <span class=\"guilabel\">Permesso negato</span> , provate\n" "ad aggiungere <code>sudo</code> all'inizio del comando:</p>\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" msgid "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" " </div>\n" -msgstr "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\"" -">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=" -"16M && sync</p>\n" -"</div>\n" +msgstr " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" #. type: Plain text #, no-wrap msgid " The installation is complete after the command prompt reappears.\n" -msgstr "" -" L'installazione viene completata con la ricomparsa del prompt dei comandi." -"\n" +msgstr " L'installazione viene completata con la ricomparsa del prompt dei comandi.\n" #. type: Plain text #, no-wrap @@ -556,3 +528,10 @@ msgstr "[[!inline pages=\"install/inc/steps/restart_first_time.inline.it\" raw=\ #, no-wrap msgid "[[!inline pages=\"install/inc/steps/create_persistence.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "[[!inline pages=\"install/inc/steps/create_persistence.inline.it\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "" +#~ " <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +#~ " </div>\n" +#~ msgstr "" +#~ " <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +#~ "</div>\n" diff --git a/wiki/src/install/expert/usb.mdwn b/wiki/src/install/expert/usb.mdwn index 3da7a6620ffb370b44e7c3351421e8e3bc945be9..e7a6d66f659007fb435be4950fe2d50d8f202d86 100644 --- a/wiki/src/install/expert/usb.mdwn +++ b/wiki/src/install/expert/usb.mdwn @@ -173,11 +173,11 @@ Install Tails using <span class="command">dd</span> - <span class="command-placeholder">device</span> with the device name found in step 5 - <p class="pre command">dd if=<span class="command-placeholder">tails.img</span> of=<span class="command-placeholder">device</span> bs=16M && sync</p> + <p class="pre command">dd if=<span class="command-placeholder">tails.img</span> of=<span class="command-placeholder">device</span> bs=16M oflag=direct status=progress</p> You should get something like this: - <p class="pre command-example">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p> + <p class="pre command-example">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M oflag=direct status=progress</p> If no error message is returned, Tails is being copied on the USB stick. The copy takes some time, generally a few minutes. @@ -186,7 +186,7 @@ Install Tails using <span class="command">dd</span> <p>If you get a <span class="guilabel">Permission denied</span> error, try adding <code>sudo</code> at the beginning of the command:</p> - <p class="pre command">sudo dd if=<span class="command-placeholder">tails.img</span> of=<span class="command-placeholder">device</span> bs=16M && sync</p> + <p class="pre command">sudo dd if=<span class="command-placeholder">tails.img</span> of=<span class="command-placeholder">device</span> bs=16M oflag=direct status=progress</p> </div> The installation is complete after the command prompt reappears. diff --git a/wiki/src/install/expert/usb.pl.po b/wiki/src/install/expert/usb.pl.po index 0c7d534fc67792e956e50403e3ee19e59a167a47..041c8648071bab867f3e2e4e74a2463d7106155a 100644 --- a/wiki/src/install/expert/usb.pl.po +++ b/wiki/src/install/expert/usb.pl.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-02-21 12:48+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" "PO-Revision-Date: 2018-10-30 07:38+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -404,7 +404,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -414,7 +414,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" +msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -435,7 +435,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/expert/usb.pt.po b/wiki/src/install/expert/usb.pt.po index 60ec5c2f6cc6a4f25b87b62c842f52f3f2b212a6..da9100a6b8004f9916d206718073d9fcdcc2034b 100644 --- a/wiki/src/install/expert/usb.pt.po +++ b/wiki/src/install/expert/usb.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-02-21 12:48+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" "PO-Revision-Date: 2019-10-24 10:21+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" @@ -406,7 +406,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -416,7 +416,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" +msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -437,7 +437,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" " </div>\n" msgstr "" @@ -454,6 +454,4 @@ msgstr "[[!inline pages=\"install/inc/steps/restart_first_time.inline.pt\" raw=\ #. type: Plain text #, no-wrap msgid "[[!inline pages=\"install/inc/steps/create_persistence.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"install/inc/steps/create_persistence.inline.pt\" raw=\"" -"yes\" sort=\"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/create_persistence.inline.pt\" raw=\"yes\" sort=\"age\"]]\n" diff --git a/wiki/src/install/expert/usb.ru.po b/wiki/src/install/expert/usb.ru.po index 6c00850c4a227d121133e72713681b155047b376..9c13fc9a4a1a3a87ae1be2d658c59ccf3d34480f 100644 --- a/wiki/src/install/expert/usb.ru.po +++ b/wiki/src/install/expert/usb.ru.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-02-21 12:48+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" "PO-Revision-Date: 2018-10-24 10:38+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -404,7 +404,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -414,7 +414,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" +msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -435,7 +435,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/expert/usb.sr_Latn.po b/wiki/src/install/expert/usb.sr_Latn.po index 262db69c68200e43bfe64548c7cd90524a5ccf30..a08ee05f3e2ce221dd00557f6ca7071d1accef7d 100644 --- a/wiki/src/install/expert/usb.sr_Latn.po +++ b/wiki/src/install/expert/usb.sr_Latn.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-02-21 12:48+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" "PO-Revision-Date: 2018-10-26 13:20+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -404,7 +404,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -414,7 +414,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" +msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -435,7 +435,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/expert/usb.tr.po b/wiki/src/install/expert/usb.tr.po index 1d01516de50658f557c8af82759b82b16e2bdcb5..edaa30ad1b96e7e4196782475800c823045955b5 100644 --- a/wiki/src/install/expert/usb.tr.po +++ b/wiki/src/install/expert/usb.tr.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-02-21 12:48+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" "PO-Revision-Date: 2018-10-30 07:38+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -403,7 +403,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -413,7 +413,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" +msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -434,7 +434,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/expert/usb.zh.po b/wiki/src/install/expert/usb.zh.po index ac482d23491bbb707d7e532d35783cca118ec64b..cc6d8220fb228c2cae04e178c30572728dd13998 100644 --- a/wiki/src/install/expert/usb.zh.po +++ b/wiki/src/install/expert/usb.zh.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-02-21 12:48+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" "PO-Revision-Date: 2018-10-24 10:38+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -403,7 +403,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -413,7 +413,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" +msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -434,7 +434,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/expert/usb.zh_TW.po b/wiki/src/install/expert/usb.zh_TW.po index f20a21dbd91b86456f83e0a9a2fb0a51e96c1a41..ae145c309f0ad0f3c961f8bad309b64c3b7055da 100644 --- a/wiki/src/install/expert/usb.zh_TW.po +++ b/wiki/src/install/expert/usb.zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails l10n\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-02-21 12:48+0000\n" +"POT-Creation-Date: 2020-01-05 19:09+0000\n" "PO-Revision-Date: 2018-11-05 11:31+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: Tails Chinese translators <jxt@twngo.xyz>\n" @@ -450,7 +450,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +msgid " <p class=\"pre command\">dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -460,7 +460,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M && sync</p>\n" +msgid " <p class=\"pre command-example\">dd if=/home/user/tails-amd64-3.12.img of=/dev/sdb bs=16M oflag=direct status=progress</p>\n" msgstr "" #. type: Plain text @@ -481,7 +481,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M && sync</p>\n" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16M oflag=direct status=progress</p>\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/inc/overview.es.po b/wiki/src/install/inc/overview.es.po index 5ae3d6308282b16c5bb95fde9f520ba471189644..d62f8d4ca648b6b60442dd315a404d600a741563 100644 --- a/wiki/src/install/inc/overview.es.po +++ b/wiki/src/install/inc/overview.es.po @@ -7,7 +7,7 @@ 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" -"PO-Revision-Date: 2019-11-20 09:26+0000\n" +"PO-Revision-Date: 2020-01-11 10:26+0000\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "install-inc-overview/es/>\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div><h3> msgid "You need" @@ -27,19 +27,14 @@ msgid "[[!img install/inc/icons/clock.png link=\"no\" alt=\"\"]]" msgstr "[[!img install/inc/icons/clock.png link=\"no\" alt=\"\"]]" #. type: Content of: <div><div><div><div><div><h4> -#, fuzzy -#| msgid "" -#| "<span class=\"windows linux mac expert upgrade-tails\">1½ hours in total</" -#| "span> <span class=\"install-clone mac-clone\">½ hour</span> <span class=" -#| "\"upgrade-clone\">¼ hour</span>" msgid "" "<span class=\"windows linux mac expert upgrade-tails upgrade-os\">1½ hours " "in total</span> <span class=\"install-clone mac-clone\">½ hour</span> <span " "class=\"upgrade-clone\">¼ hour</span>" msgstr "" -"<span class=\"windows linux mac expert upgrade-tails\">1½ horas en total</" -"span> <span class=\"install-clone mac-clone\">½ hora</span> <span class=" -"\"upgrade-clone\">¼ de hora</span>" +"<span class=\"windows linux mac expert upgrade-tails upgrade-os\">1½ horas " +"en total</span> <span class=\"install-clone mac-clone\">½ hora</span> <span " +"class=\"upgrade-clone\">¼ de hora</span>" #. type: Content of: <div><div><div><div><div><h4><span> msgid "" diff --git a/wiki/src/install/inc/overview.fa.po b/wiki/src/install/inc/overview.fa.po index 438ef35ca0f01cd3b35fea3f7730c1cb8bf84593..2dd29e1783b807c2f54c9304935e7292a498b0e3 100644 --- a/wiki/src/install/inc/overview.fa.po +++ b/wiki/src/install/inc/overview.fa.po @@ -3,18 +3,20 @@ # 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" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div><h3> msgid "You need" @@ -22,7 +24,7 @@ msgstr "" #. type: Content of: <div><div><div><div> msgid "[[!img install/inc/icons/clock.png link=\"no\" alt=\"\"]]" -msgstr "" +msgstr "[[!img install/inc/icons/clock.png link=\"no\" alt=\"\"]]" #. type: Content of: <div><div><div><div><div><h4> msgid "" diff --git a/wiki/src/install/inc/overview.fr.po b/wiki/src/install/inc/overview.fr.po index 8ed13377292252c3f236e98fbaf1a2af58baa8e0..3477a55e76c36dc31d7fcc4a266027df0b9b4357 100644 --- a/wiki/src/install/inc/overview.fr.po +++ b/wiki/src/install/inc/overview.fr.po @@ -6,15 +6,17 @@ 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" -"PO-Revision-Date: 2019-01-19 16:00+0000\n" -"Last-Translator: \n" +"PO-Revision-Date: 2020-01-07 15:25+0000\n" +"Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.11\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div><h3> msgid "You need" @@ -25,49 +27,34 @@ msgid "[[!img install/inc/icons/clock.png link=\"no\" alt=\"\"]]" msgstr "[[!img install/inc/icons/clock.png link=\"no\" alt=\"\"]]" #. type: Content of: <div><div><div><div><div><h4> -#, fuzzy -#| msgid "" -#| "<span class=\"windows linux mac expert upgrade-tails\">1½ hours in total</" -#| "span> <span class=\"install-clone mac-clone\">½ hour</span> <span class=" -#| "\"upgrade-clone\">¼ hour</span>" msgid "" "<span class=\"windows linux mac expert upgrade-tails upgrade-os\">1½ hours " "in total</span> <span class=\"install-clone mac-clone\">½ hour</span> <span " "class=\"upgrade-clone\">¼ hour</span>" msgstr "" -"<span class=\"windows linux mac expert upgrade-tails\">1 heure ½ au total</" -"span> <span class=\"install-clone mac-clone\">½ heure</span> <span class=" -"\"upgrade-clone\">¼ d'heure</span>" +"<span class=\"windows linux mac expert upgrade-tails upgrade-os\">1 heure ½ " +"au total</span> <span class=\"install-clone mac-clone\">½ heure</span> <span " +"class=\"upgrade-clone\">¼ d'heure</span>" #. type: Content of: <div><div><div><div><div><h4><span> -#, fuzzy -#| msgid "" -#| "<span class=\"windows linux mac expert upgrade-tails\"> <small>[[!inline " -#| "pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]] to " -#| "download</small>" msgid "" "<span class=\"windows linux mac expert upgrade-tails upgrade-os\"> <small>[[!" "inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]] to " "download</small>" msgstr "" -"<span class=\"windows linux mac expert upgrade-tails\"> <small>[[!inline " -"pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]] à " +"<span class=\"windows linux mac expert upgrade-tails upgrade-os\"> <small>[[" +"!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]] à " "télécharger</small>" #. type: Content of: <div><div><div><div><div><h4> -#, fuzzy -#| msgid "" -#| "</span> <span class=\"windows linux mac expert\"><small>½ hour to " -#| "install</small></span> <span class=\"upgrade-tails\"><small>½ hour to " -#| "upgrade</small></span>" msgid "" "</span> <span class=\"windows linux mac expert\"><small>½ hour to install</" "small></span> <span class=\"upgrade-tails upgrade-os\"><small>½ hour to " "upgrade</small></span>" msgstr "" "</span> <span class=\"windows linux mac expert\"><small>½ heure pour " -"l'installation</small></span> <span class=\"upgrade-tails\"><small>½ heure " -"pour la mise à jour</small></span>" +"l'installation</small></span> <span class=\"upgrade-tails upgrade-os\"" +"><small>½ heure pour la mise à jour</small></span>" #. type: Content of: <div><div><div><div> msgid "[[!img install/inc/icons/usb.png link=\"no\" alt=\"\"]]" @@ -200,16 +187,12 @@ msgid "Install intermediary" msgstr "Installation intermédiaire" #. type: Content of: <div><div><div><div> -#, fuzzy -#| msgid "" -#| "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" alt=" -#| "\"USB image installed on USB stick on the left\"]]" msgid "" "[[!img install/inc/infography/install-upgrade-usb-only.png link=\"no\" alt=" "\"USB image installed on USB stick on the left\"]]" msgstr "" -"[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" alt=" -"\"Image USB installée sur la clé USB de gauche\"]]" +"[[!img install/inc/infography/install-upgrade-usb-only.png link=\"no\" alt=\"" +"Image USB installée sur la clé USB de gauche\"]]" #. type: Content of: <div><div><div><div> msgid "[[!img install/inc/infography/restart.png link=\"no\" alt=\"\"]]" diff --git a/wiki/src/install/inc/overview.it.po b/wiki/src/install/inc/overview.it.po index 32b5cd26eb236f5bbe2f3fa4f775b3848fc5c689..fbc1054316634140b51fbcb44e6c5b1a07ad457b 100644 --- a/wiki/src/install/inc/overview.it.po +++ b/wiki/src/install/inc/overview.it.po @@ -8,15 +8,15 @@ 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" -"PO-Revision-Date: 2019-11-24 09:26+0000\n" -"Last-Translator: Davide <davidesantoro@mail.ru>\n" +"PO-Revision-Date: 2020-01-11 13:25+0000\n" +"Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div><h3> #, fuzzy @@ -247,15 +247,12 @@ msgstr "" "<span class=\"upgrade\">Aggiorna</span>" #. type: Content of: <div><div><div><div> -#, fuzzy -#| msgid "" -#| "[[!img install/inc/infography/clone-intermediary-tails.png link=\"no\" " -#| "alt=\"Tails installed on USB stick on the right\"]]" msgid "" "[[!img install/inc/infography/create-persistence.png link=\"no\" alt=" "\"Encryption configured on USB stick\"]]" msgstr "" -"[[!img install/inc/infography/clone-intermediary-tails.png link=\"no\"]]" +"[[!img install/inc/infography/create-persistence.png link=\"no\" alt=\"" +"Cifratura configurata sulla chiavetta USB\"]]" #. type: Content of: <div><div><div><div><p> msgid "Configure" diff --git a/wiki/src/install/inc/steps/clone.inline.ar.po b/wiki/src/install/inc/steps/clone.inline.ar.po index 5546d6cf61c5b88e88a22bb6d00fd99250f0e01a..881ee6d7addc77fe85d278ee94eb5dbb920ac44a 100644 --- a/wiki/src/install/inc/steps/clone.inline.ar.po +++ b/wiki/src/install/inc/steps/clone.inline.ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-10-23 11:35+0000\n" +"PO-Revision-Date: 2020-01-22 15:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: ar\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -90,7 +90,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " <div class=\"step-image\">\n" -msgstr "" +msgstr " <div class=\"step-image\">\n" #. type: Plain text #, no-wrap @@ -164,7 +164,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"trophy upgrade\">\n" -msgstr "" +msgstr "<div class=\"trophy upgrade\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/clone.inline.ca.po b/wiki/src/install/inc/steps/clone.inline.ca.po index 4d182fcc97837a621f66241e673ad0b2e364de1f..39f3691bef096e3e04975c2f9732cfa98aede488 100644 --- a/wiki/src/install/inc/steps/clone.inline.ca.po +++ b/wiki/src/install/inc/steps/clone.inline.ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-03-25 09:13+0000\n" +"PO-Revision-Date: 2020-01-22 15:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: ca\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -164,7 +164,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"trophy upgrade\">\n" -msgstr "" +msgstr "<div class=\"trophy upgrade\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/clone.inline.es.po b/wiki/src/install/inc/steps/clone.inline.es.po index 8c45a8ffe98a6e3438f023f1d126597a0f8ee64e..18971fe94d89a9f66e12293df4b5af2717be70f1 100644 --- a/wiki/src/install/inc/steps/clone.inline.es.po +++ b/wiki/src/install/inc/steps/clone.inline.es.po @@ -7,7 +7,7 @@ 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" -"PO-Revision-Date: 2019-11-20 09:21+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/" "install_finalinline/es/>\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -149,22 +149,16 @@ msgstr "" "de Destino</span>.\n" #. type: Bullet: '1. ' -#, fuzzy -#| msgid "" -#| "To start the <span class=\"expert windows linux mac install-clone" -#| "\">installation, click on the <span class=\"button\">Install</span> " -#| "button.</span> <span class=\"upgrade\">upgrade, click on the <span class=" -#| "\"button\">Upgrade</span> button.</span>" msgid "" "To start the <span class=\"install-clone mac-clone\">installation, click on " "the <span class=\"button\">Install</span> button.</span> <span class=" "\"upgrade\">upgrade, click on the <span class=\"button\">Upgrade</span> " "button.</span>" msgstr "" -"Para comenzar la <span class=\"expert windows linux mac install-clone" -"\">instalación, haz click en el botón <span class=\"button\">Instalar</" -"span>.</span> <span class=\"upgrade\">actualización, haz click en el botón " -"<span class=\"button\">Actualización</span>.</span>" +"Para comenzar la <span class=\"install-clone mac-clone\">instalación, haz " +"click en el botón <span class=\"button\">Instalar</span>.</span> <span class=" +"\"upgrade\">actualización, haz click en el botón <span class=\"button\"" +">Actualización</span>.</span>" #. type: Plain text #, fuzzy, no-wrap diff --git a/wiki/src/install/inc/steps/clone.inline.fa.po b/wiki/src/install/inc/steps/clone.inline.fa.po index c4edcd6a75eb8fae416c347354ab48ca14c69c18..0544d4f6de91830d4e46ece4392edb51953fa0c8 100644 --- a/wiki/src/install/inc/steps/clone.inline.fa.po +++ b/wiki/src/install/inc/steps/clone.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" -"PO-Revision-Date: 2019-03-25 09:13+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" "Language: fa\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -39,7 +39,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"step-image\">\n" -msgstr "" +msgstr "<div class=\"step-image\">\n" #. type: Plain text #, no-wrap @@ -90,7 +90,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " <div class=\"step-image\">\n" -msgstr "" +msgstr " <div class=\"step-image\">\n" #. type: Plain text #, no-wrap @@ -164,7 +164,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"trophy upgrade\">\n" -msgstr "" +msgstr "<div class=\"trophy upgrade\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/clone.inline.fr.po b/wiki/src/install/inc/steps/clone.inline.fr.po index 592bee7f2e522275b532535fe9322a40e365a537..c4546b9892c3359687553637dd3189434c0200b2 100644 --- a/wiki/src/install/inc/steps/clone.inline.fr.po +++ b/wiki/src/install/inc/steps/clone.inline.fr.po @@ -7,14 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-01-09 14:14+0000\n" -"Last-Translator: AtomiKe <tails@atomike.ninja>\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" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.11\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,15 +27,7 @@ msgstr "" "<h1 id=\"upgrade\" class=\"upgrade\">Mettre à jour votre Tails</h1>\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<p class=\"upgrade\">\n" -#| " In this step, you will upgrade your Tails from the\n" -#| " <span class=\"upgrade-clone\">other</span>\n" -#| " <span class=\"upgrade-tails\">intermediary</span>\n" -#| " Tails using\n" -#| " <span class=\"application\">Tails Installer</span>.\n" -#| "</p>\n" +#, no-wrap msgid "" "<p class=\"upgrade\">\n" " In this step, you will upgrade your Tails from the\n" @@ -47,7 +40,7 @@ msgstr "" "<p class=\"upgrade\">\n" " À cette étape, vous devrez mettre à jour votre Tails depuis\n" " <span class=\"upgrade-clone\">un autre Tails</span>\n" -" <span class=\"upgrade-tails\">un Tails intermédiaire</span>\n" +" <span class=\"upgrade-tails upgrade-os\">un Tails intermédiaire</span>\n" " en utilisant\n" " l'<span class=\"application\">Installeur de Tails</span>.\n" "</p>\n" @@ -121,10 +114,12 @@ msgid " <div class=\"step-image\">\n" msgstr " <div class=\"step-image\">\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid " [[!img install/inc/infography/clone-tails.png link=\"no\" class=\"clone upgrade-tails\" alt=\"Tails installed on USB stick on the right\"]]\n" +#, no-wrap msgid " [[!img install/inc/infography/clone-tails.png link=\"no\" class=\"clone upgrade-tails upgrade-os\" alt=\"Tails installed on USB stick on the right\"]]\n" -msgstr " [[!img install/inc/infography/clone-tails.png link=\"no\" class=\"clone upgrade-tails\" alt=\"Tails installé sur la clé USB sur la droite\"]]\n" +msgstr "" +" [[!img install/inc/infography/clone-tails.png link=\"no\" class=\"clone " +"upgrade-tails upgrade-os\" alt=\"Tails installé sur la clé USB sur la " +"droite\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/clone.inline.id.po b/wiki/src/install/inc/steps/clone.inline.id.po index c09e5b3c65cec5ee43d4f084b8e4503b3b9f30b1..9e2bdba267ac560003c7895bf31494122b2f2a9e 100644 --- a/wiki/src/install/inc/steps/clone.inline.id.po +++ b/wiki/src/install/inc/steps/clone.inline.id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-10-24 10:31+0000\n" +"PO-Revision-Date: 2020-01-22 15:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -164,7 +164,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"trophy upgrade\">\n" -msgstr "" +msgstr "<div class=\"trophy upgrade\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/clone.inline.zh.po b/wiki/src/install/inc/steps/clone.inline.zh.po index 68c50470ec0c08c501f2abce63b63a4ff7897a44..64356828c828ac6cef65b067b4efd4e5071fc29b 100644 --- a/wiki/src/install/inc/steps/clone.inline.zh.po +++ b/wiki/src/install/inc/steps/clone.inline.zh.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2016-03-05 03:13-0000\n" -"Last-Translator: Tails translators <tails@boum.org>\n" +"PO-Revision-Date: 2020-01-22 16:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -49,7 +49,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "</div>\n" -msgstr "" +msgstr "</div>\n" #. type: Bullet: '1. ' msgid "" @@ -164,7 +164,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"trophy upgrade\">\n" -msgstr "" +msgstr "<div class=\"trophy upgrade\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/clone.inline.zh_TW.po b/wiki/src/install/inc/steps/clone.inline.zh_TW.po index a813539e68a63b1ea8211967c1f302470acc38a0..fa33e534647af2770d218c406e1c4646f4bd543e 100644 --- a/wiki/src/install/inc/steps/clone.inline.zh_TW.po +++ b/wiki/src/install/inc/steps/clone.inline.zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2016-03-05 03:13-0000\n" -"Last-Translator: Tails translators <tails@boum.org>\n" +"PO-Revision-Date: 2020-01-22 15:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -164,7 +164,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"trophy upgrade\">\n" -msgstr "" +msgstr "<div class=\"trophy upgrade\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/create_persistence.inline.ar.po b/wiki/src/install/inc/steps/create_persistence.inline.ar.po index ed9f2b1bad709f32fc89a14f2627539bb47ee805..967e713f235d08d23240841b2f8d3f86ce4c8816 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.ar.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.ar.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2018-10-30 07:38+0000\n" +"PO-Revision-Date: 2020-01-22 16:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Arabic <http://translate.tails.boum.org/projects/tails/" "create_persistenceinline/ar/>\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -242,6 +242,8 @@ msgstr "" #, no-wrap msgid " <div class=\"step-image\">[[!img install/inc/infography/restart-on-tails.png link=\"no\" alt=\"\"]]</div>\n" msgstr "" +" <div class=\"step-image\">[[!img install/inc/infography/restart-on-" +"tails.png link=\"no\" alt=\"\"]]</div>\n" #. type: Title - #, no-wrap @@ -318,17 +320,19 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"row\">\n" -msgstr "" +msgstr "<div class=\"row\">\n" #. type: Plain text #, no-wrap msgid " <div class=\"col-md-6\">\n" -msgstr "" +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" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/create_persistence.inline.ca.po b/wiki/src/install/inc/steps/create_persistence.inline.ca.po index 746d65fd2e79f32aa7f5de3445689522c23af5fe..74a280eb2c2a2e9ba82285d32443b54d41ad85ad 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.ca.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.ca.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2018-10-30 07:38+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" "Language: ca\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -327,6 +327,8 @@ msgstr " <div class=\"col-md-6\">\n" #, 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" #. type: Plain text #, no-wrap 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 def2662f860a419a3cbaf26ed727026100c4a118..1ea2413d7c0254209d0494e54e8e81550ece978c 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.es.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.es.po @@ -7,7 +7,7 @@ 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" -"PO-Revision-Date: 2019-10-23 11:46+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/" "create_persistenceinline/es/>\n" @@ -16,12 +16,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "<h2 class=\"wi-fi\">Test your Wi-Fi</h2>\n" -msgstr "" +msgstr "<h2 class=\"wi-fi\">Prueba tu Wi-Fi</h2>\n" #. type: Plain text msgid "" 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 5fa87509614ac81e661f5da1f4543bc315f2c762..34a7eaaebfb5521af0cf2c237fb806a778b3c781 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.fa.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.fa.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-23 11:50+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" "Language: fa\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -103,6 +103,8 @@ msgstr "" #, 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" #. type: Plain text #, no-wrap @@ -144,7 +146,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"caution\">\n" -msgstr "" +msgstr "<div class=\"caution\">\n" #. type: Plain text #, no-wrap @@ -316,17 +318,19 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"row\">\n" -msgstr "" +msgstr "<div class=\"row\">\n" #. type: Plain text #, no-wrap msgid " <div class=\"col-md-6\">\n" -msgstr "" +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" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/create_persistence.inline.id.po b/wiki/src/install/inc/steps/create_persistence.inline.id.po index 9777a3e8ce400e9b220daec6c132b52a08470add..4cd99b04b95a031a4ea70a2a3d9c3cfe5bc1b579 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.id.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-31 13:06+0000\n" -"PO-Revision-Date: 2019-10-24 10:32+0000\n" +"PO-Revision-Date: 2020-01-22 16:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -327,6 +327,8 @@ msgstr "" #, 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" #. type: Plain text #, no-wrap 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 f3344fe1d4a7427e44a51f8de71d0ad533c5890b..613a89b9e0041970ad34ae1d98829d5ada13391e 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.it.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.it.po @@ -8,15 +8,15 @@ 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" -"PO-Revision-Date: 2019-11-24 09:26+0000\n" -"Last-Translator: Davide <davidesantoro@mail.ru>\n" +"PO-Revision-Date: 2020-01-22 16:26+0000\n" +"Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -431,6 +431,8 @@ msgstr " <div class=\"col-md-6\">\n" #, 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" #. type: Plain text #, no-wrap 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 e75aa1c13ca63307e07058fbfae5c65aebfcfd1b..b1ac4de62f57ef21a3a655ffde74127751b7fdb6 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.pt.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.pt.po @@ -8,15 +8,15 @@ 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" -"PO-Revision-Date: 2019-10-23 11:31+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\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" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -159,7 +159,7 @@ msgstr "Algumas configurações" #. type: Bullet: ' - ' msgid "Additional software" -msgstr "Softwares adicionais" +msgstr "Programas adicionais" #. type: Bullet: ' - ' msgid "Encryption keys" diff --git a/wiki/src/install/inc/steps/create_persistence.inline.zh.po b/wiki/src/install/inc/steps/create_persistence.inline.zh.po index 8c528a09cb4cc10336b742483083e448aa5bc6bb..e389d160f89c4f6ec5fce55c30e20f16a35145ed 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.zh.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.zh.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2018-10-30 07:39+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" "Language: zh\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -316,17 +316,19 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"row\">\n" -msgstr "" +msgstr "<div class=\"row\">\n" #. type: Plain text #, no-wrap msgid " <div class=\"col-md-6\">\n" -msgstr "" +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" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/create_persistence.inline.zh_TW.po b/wiki/src/install/inc/steps/create_persistence.inline.zh_TW.po index 59ede8f7c0dbc22c075afddee78ecc8b714dae81..7e5b3273bc171b3bdfc2bbde26bae23d18b6ce08 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.zh_TW.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.zh_TW.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2018-11-12 11:26+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" "Language: zh_TW\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -378,6 +378,8 @@ msgstr " <div class=\"col-md-6\">\n" #, 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" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/download.inline.de.po b/wiki/src/install/inc/steps/download.inline.de.po index b7f0ac5126ee20961d48898dcdc119d7f5653cbc..b1ef0c0db5d0726af9b5f45b8a68a002dcc9657e 100644 --- a/wiki/src/install/inc/steps/download.inline.de.po +++ b/wiki/src/install/inc/steps/download.inline.de.po @@ -6,16 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 02:04+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-24 08:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "2.4" @@ -142,6 +143,8 @@ msgid "" "[[!toggleable id=\"why-verify-supported\" text=\"\"\" [[!toggle id=\"why-" "verify-supported\" text=\"X\"]]" msgstr "" +"[[!toggleable id=\"why-verify-supported\" text=\"\"\" [[!toggle id=\"why-" +"verify-supported\" text=\"X\"]]" #. type: Content of: <div><div><div><div><div><p> msgid "With an unverified download, you might:" diff --git a/wiki/src/install/inc/steps/download.inline.es.po b/wiki/src/install/inc/steps/download.inline.es.po index e2d2faa7ee527c41f4e9961746f515e89810bc76..d50c7722b225c19a99fe676f51471d4dfab0b7ef 100644 --- a/wiki/src/install/inc/steps/download.inline.es.po +++ b/wiki/src/install/inc/steps/download.inline.es.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-31 11:29+0000\n" -"PO-Revision-Date: 2019-12-03 10:26+0000\n" -"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" +"PO-Revision-Date: 2020-01-24 08:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "downloadinline/es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "2.4" @@ -195,7 +195,7 @@ msgstr "" msgid "" "[[How does the extension work?|contribute/design/verification_extension]]" msgstr "" -"[[Cómo funciona la extensión?|contribute/design/verification_extension]]" +"[[¿Cómo funciona la extensión?|contribute/design/verification_extension]]" #. type: Content of: <div> msgid "\"\"\"]]" @@ -257,7 +257,7 @@ msgstr "" #. type: Content of: <div><div><div><div><div><p> msgid "<u>Tails Verification</u> extension installed!" -msgstr "Se ha instalado la extensión <u>Tails Verification</u>!" +msgstr "¡Se ha instalado la extensión <u>Tails Verification</u>!" #. type: Content of: <div><div><div><div><div> msgid "" @@ -277,11 +277,11 @@ msgstr "Verificando <span id=\"filename\">$FILENAME</span>…" #. type: Content of: <div><div><div><div><div><p> msgid "Verification successful!" -msgstr "Verificación exitosa!" +msgstr "¡Verificación exitosa!" #. type: Content of: <div><div><div><div><div><div><p> msgid "<b>Verification failed!</b>" -msgstr "<b>La verificación falló!</b>" +msgstr "<b>¡La verificación falló!</b>" #. type: Content of: <div><div><div><div><div><div><p> msgid "[[!toggle id=\"why-failed\" text=\"Why?\"]]" @@ -431,27 +431,27 @@ msgstr "" #. type: Content of: <div><div><div><div><div><div> msgid "[[Skip verification!|win/usb]]" -msgstr "[[Omitir verificación!|win/usb]]" +msgstr "[[¡Omitir verificación!|win/usb]]" #. type: Content of: <div><div><div><div><div><div> msgid "[[Skip verification!|linux/usb]]" -msgstr "[[Omitir verificación!|linux/usb]]" +msgstr "[[¡Omitir verificación!|linux/usb]]" #. type: Content of: <div><div><div><div><div><div> msgid "[[Skip verification!|mac/usb]]" -msgstr "[[Omitir verificación!|mac/usb]]" +msgstr "[[¡Omitir verificación!|mac/usb]]" #. type: Content of: <div><div><div><div><div><div> msgid "[[Skip verification!|dvd]]" -msgstr "[[Omitir verificación!|dvd]]" +msgstr "[[¡Omitir verificación!|dvd]]" #. type: Content of: <div><div><div><div><div><div> msgid "[[Skip verification!|doc/advanced_topics/virtualization]]" -msgstr "[[Omitir verificación!|doc/advanced_topics/virtualization]]" +msgstr "[[¡Omitir verificación!|doc/advanced_topics/virtualization]]" #. type: Content of: <div><div><div><div><div><div> msgid "[[Skip verification!|upgrade/tails]]" -msgstr "[[Omitir verificación!|upgrade/tails]]" +msgstr "[[¡Omitir verificación!|upgrade/tails]]" #. type: Content of: <div><div><div><div><div><div> msgid "[[Skip verification!|upgrade/win]]" @@ -636,7 +636,8 @@ msgstr "Copia y pega este enlace en Firefox, Chrome, o Tor Browser:" #. type: Content of: <div><div><div><p> msgid "<code>https://tails.boum.org/install/win/usb-download/</code>" -msgstr "<code>https://tails.boum.org/install/win/usb-download/</code>" +msgstr "" +"<code>https://tails.boum.org/install/win/usb-download/index.es.html</code>" #. type: Content of: <div><div><div><p> msgid "<code>https://tails.boum.org/install/linux/usb-download/</code>" @@ -773,11 +774,12 @@ msgid "" "\">image that you will use in the next step.</span> <span class=\"download-" "only-img download-only-iso\">image.</span>" msgstr "" -"Abre y descarga el archivo Torrent con tu cliente BitTorrent. Contiene la " -"imagen <span class=\"usb upgrade download-only-img\">USB</span> <span class=" -"\"dvd vm download-only-iso\">ISO.</span> de Tails [[!inline pages=\"inc/" -"stable_amd64_version\" raw=\"yes\" sort=\"age\"]] <span class=\"usb dvd vm " -"upgrade\">que usarás en el próximo paso.</span>" +"Abre y descarga el archivo Torrent con tu cliente BitTorrent. Contiene la <" +"span class=\"download-only-img download-only-iso\">imagen</span> <span class=" +"\"usb upgrade download-only-img\">USB</span> <span class=\"dvd vm download-" +"only-iso\">ISO</span> de Tails [[!inline pages=\"inc/stable_amd64_version\" " +"raw=\"yes\" sort=\"age\"]] <span class=\"usb dvd vm upgrade\">que usarás en " +"el próximo paso.</span>" #. type: Content of: <div><h2> msgid "Verify using OpenPGP (optional)" diff --git a/wiki/src/install/inc/steps/download.inline.fa.po b/wiki/src/install/inc/steps/download.inline.fa.po index 727f9732f65c696a283ba3275ce220b022321526..9666e302c09f603c5252c55816f4fff022a1d44f 100644 --- a/wiki/src/install/inc/steps/download.inline.fa.po +++ b/wiki/src/install/inc/steps/download.inline.fa.po @@ -3,18 +3,20 @@ # 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" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 02:04+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "2.4" @@ -364,7 +366,7 @@ msgstr "" #. type: Content of: <div><div><div><div><div> msgid "[[" -msgstr "" +msgstr "[[" #. type: Content of: <div><div><div><div><div><div> msgid "Next: Install Tails (<span class=\"next-counter\"></span>)" diff --git a/wiki/src/install/inc/steps/download.inline.fr.po b/wiki/src/install/inc/steps/download.inline.fr.po index 9c65bfd403a5ed75e37603838ca5645a76404340..e7fbcfe1fca948df08f7447069005b79f5b7f15c 100644 --- a/wiki/src/install/inc/steps/download.inline.fr.po +++ b/wiki/src/install/inc/steps/download.inline.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 02:04+0000\n" -"PO-Revision-Date: 2019-10-04 16:56+0000\n" +"PO-Revision-Date: 2020-01-02 13:25+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "2.4" @@ -49,16 +49,12 @@ msgid "Direct download" msgstr "Téléchargement direct" #. type: Content of: <div><div><div><div><h3> -#, fuzzy -#| msgid "" -#| "<span class=\"step-number\"><span class=\"windows linux mac upgrade-tails" -#| "\">1.</span>1</span>Download Tails" msgid "" "<span class=\"step-number\"><span class=\"usb upgrade\">1.</span>1</" "span>Download Tails" msgstr "" -"<span class=\"step-number\"><span class=\"windows linux mac upgrade-tails" -"\">1.</span>1</span>Télécharger Tails" +"<span class=\"step-number\"><span class=\"usb upgrade\">1.</span>1</span>" +"Télécharger Tails" #. type: Content of: <div><div><div><div><div> msgid "" @@ -123,17 +119,12 @@ msgstr "" "</a>" #. type: Content of: <div><div><div><div><h3> -#, fuzzy -#| msgid "" -#| "<span class=\"step-number\"><span class=\"windows linux mac upgrade-tails" -#| "\">1.</span>2</span>Verify your download using your browser" msgid "" "<span class=\"step-number\"><span class=\"usb upgrade\">1.</span>2</" "span>Verify your download using your browser" msgstr "" -"<span class=\"step-number\"><span class=\"windows linux mac upgrade-tails" -"\">1.</span>2</span>Vérifiez votre téléchargement en utilisant votre " -"navigateur" +"<span class=\"step-number\"><span class=\"usb upgrade\">1.</span>2</span>" +"Vérifiez votre téléchargement en utilisant votre navigateur" #. type: Content of: <div><div><div><div><p><b> msgid "<b>For your security," @@ -407,34 +398,18 @@ msgstr "" "ordinateur…" #. type: Content of: <div><div><div><h3> -#, fuzzy -#| msgid "" -#| "<span class=\"step-number\"><span class=\"windows linux mac upgrade-tails" -#| "\">1.</span>3</span>Continue <span class=\"windows linux mac" -#| "\">installing</span> <span class=\"upgrade-tails\">upgrading</span> <span " -#| "class=\"download-only-img download-only-iso\">installing or upgrading</" -#| "span>" msgid "" "<span class=\"step-number\"><span class=\"usb upgrade\">1.</span>3</" "span>Continue <span class=\"usb\">installing</span> <span class=\"upgrade" "\">upgrading</span> <span class=\"download-only-img download-only-iso" "\">installing or upgrading</span>" msgstr "" -"<span class=\"step-number\"><span class=\"windows linux mac upgrade-tails" -"\">1.</span>3</span>Continuer <span class=\"windows linux mac" -"\">l'installation</span> <span class=\"upgrade-tails\">la mise à jour</span> " -"<span class=\"download-only-img download-only-iso\">l'installation ou la " -"mise à jour</span>" +"<span class=\"step-number\"><span class=\"usb upgrade\">1.</span>3</span>" +"Continuer <span class=\"usb\">l'installation</span> <span class=\"upgrade\">" +"la mise à jour</span> <span class=\"download-only-img download-only-iso\">" +"l'installation ou la mise à jour</span>" #. type: Content of: <div><div><div><div> -#, fuzzy -#| msgid "" -#| "<span class=\"windows\">[[Skip download|win/usb]]</span> <span class=" -#| "\"linux\">[[Skip download|linux/usb]]</span> <span class=\"mac\">[[Skip " -#| "download|mac/usb]]</span> <span class=\"dvd\">[[Skip download|dvd]]</" -#| "span> <span class=\"vm\">[[Skip download|doc/advanced_topics/" -#| "virtualization]]</span> <span class=\"upgrade-tails\">[[Skip download|" -#| "upgrade/tails]]</span>" msgid "" "<span class=\"windows\">[[Skip download|win/usb]]</span> <span class=\"linux" "\">[[Skip download|linux/usb]]</span> <span class=\"mac\">[[Skip download|" @@ -446,11 +421,15 @@ msgid "" "linux\">[[Skip download|upgrade/linux]]</span>" msgstr "" "<span class=\"windows\">[[Passer le téléchargement|win/usb]]</span> <span " -"class=\"linux\">[[Passer le téléchargement|linux/usb]]</span> <span class=" -"\"mac\">[[Passer le téléchargement|mac/usb]]</span> <span class=\"dvd" -"\">[[Passer le téléchargement|dvd]]</span> <span class=\"vm\">[[Passer le " -"téléchargement|doc/advanced_topics/virtualization]]</span> <span class=" -"\"upgrade-tails\">[[Passer le téléchargement|upgrade/tails]]</span>" +"class=\"linux\">[[Passer le téléchargement|linux/usb]]</span> <span class=\"" +"mac\">[[Passer le téléchargement|mac/usb]]</span> <span class=\"dvd\">[[" +"Passer le téléchargement|dvd]]</span> <span class=\"vm\">[[Passer le " +"téléchargement|doc/advanced_topics/virtualization]]</span> <span class" +"=\"upgrade-tails\">[[Passer le téléchargement|upgrade/tails]]</span> <span " +"class=\"upgrade-windows\">[[Passer le téléchargement|upgrade/win]]</span> <" +"span class=\"upgrade-mac\">[[Passer le téléchargement|upgrade/mac]]</span> <" +"span class=\"upgrade-linux\">[[Passer le téléchargement|upgrade/" +"linux]]</span>" #. type: Content of: <div><div><div><div><div><div> msgid "[[Skip verification!|win/usb]]" @@ -477,22 +456,16 @@ msgid "[[Skip verification!|upgrade/tails]]" msgstr "[[Ignorer la vérification !|upgrade/tails]]" #. type: Content of: <div><div><div><div><div><div> -#, fuzzy -#| msgid "[[Skip verification!|upgrade/tails]]" msgid "[[Skip verification!|upgrade/win]]" -msgstr "[[Ignorer la vérification !|upgrade/tails]]" +msgstr "[[Ignorer la vérification !|upgrade/win]]" #. type: Content of: <div><div><div><div><div><div> -#, fuzzy -#| msgid "[[Skip verification!|upgrade/tails]]" msgid "[[Skip verification!|upgrade/mac]]" -msgstr "[[Ignorer la vérification !|upgrade/tails]]" +msgstr "[[Ignorer la vérification !|upgrade/mac]]" #. type: Content of: <div><div><div><div><div><div> -#, fuzzy -#| msgid "[[Skip verification!|upgrade/tails]]" msgid "[[Skip verification!|upgrade/linux]]" -msgstr "[[Ignorer la vérification !|upgrade/tails]]" +msgstr "[[Ignorer la vérification !|upgrade/linux]]" #. type: Content of: <div><div><div><div><div> msgid "[[" @@ -526,22 +499,16 @@ msgid "|upgrade/tails]]" msgstr "|upgrade/tails]]" #. type: Content of: <div><div><div><div><div> -#, fuzzy -#| msgid "|upgrade/tails]]" msgid "|upgrade/win]]" -msgstr "|upgrade/tails]]" +msgstr "|upgrade/win]]" #. type: Content of: <div><div><div><div><div> -#, fuzzy -#| msgid "|upgrade/tails]]" msgid "|upgrade/mac]]" -msgstr "|upgrade/tails]]" +msgstr "|upgrade/mac]]" #. type: Content of: <div><div><div><div><div> -#, fuzzy -#| msgid "|upgrade/tails]]" msgid "|upgrade/linux]]" -msgstr "|upgrade/tails]]" +msgstr "|upgrade/linux]]" #. type: Content of: <div><div><div><div><div><div> msgid "Next: Burning Tails on a DVD" @@ -565,28 +532,20 @@ msgstr "" "Mettre à jour votre clé USB Tails et conserver votre stockage persistant :" #. type: Content of: <div><div><div><div><div><ul><li> -#, fuzzy -#| msgid "[[Upgrade inside Tails|upgrade/tails]]" msgid "[[Upgrade from your Tails|upgrade/tails]]" -msgstr "[[Mettre à jour depuis Tails|upgrade/tails]]" +msgstr "[[Mettre à jour depuis votre Tails|upgrade/tails]]" #. type: Content of: <div><div><div><div><div><ul><li> -#, fuzzy -#| msgid "[[Upgrade inside Tails|upgrade/tails]]" msgid "[[Upgrade from Windows|upgrade/win]]" -msgstr "[[Mettre à jour depuis Tails|upgrade/tails]]" +msgstr "[[Mettre à jour depuis Windows|upgrade/win]]" #. type: Content of: <div><div><div><div><div><ul><li> -#, fuzzy -#| msgid "[[Upgrade inside Tails|upgrade/tails]]" msgid "[[Upgrade from macOS|upgrade/mac]]" -msgstr "[[Mettre à jour depuis Tails|upgrade/tails]]" +msgstr "[[Mettre à jour depuis macOS|upgrade/mac]]" #. type: Content of: <div><div><div><div><div><ul><li> -#, fuzzy -#| msgid "[[Upgrade inside Tails|upgrade/tails]]" msgid "[[Upgrade from Linux|upgrade/linux]]" -msgstr "[[Mettre à jour depuis Tails|upgrade/tails]]" +msgstr "[[Mettre à jour depuis Linux|upgrade/linux]]" #. type: Content of: <div><div><div><div><div><p> msgid "Install a new USB stick:" @@ -701,25 +660,17 @@ msgstr "" "<code>https://tails.boum.org/upgrade/tails-download/index.fr.html</code>" #. type: Content of: <div><div><div><p> -#, fuzzy -#| msgid "<code>https://tails.boum.org/upgrade/tails-download/</code>" msgid "<code>https://tails.boum.org/upgrade/win-download/</code>" -msgstr "" -"<code>https://tails.boum.org/upgrade/tails-download/index.fr.html</code>" +msgstr "<code>https://tails.boum.org/upgrade/win-download/index.fr.html</code>" #. type: Content of: <div><div><div><p> -#, fuzzy -#| msgid "<code>https://tails.boum.org/upgrade/tails-download/</code>" msgid "<code>https://tails.boum.org/upgrade/mac-download/</code>" -msgstr "" -"<code>https://tails.boum.org/upgrade/tails-download/index.fr.html</code>" +msgstr "<code>https://tails.boum.org/upgrade/mac-download/index.fr.html</code>" #. type: Content of: <div><div><div><p> -#, fuzzy -#| msgid "<code>https://tails.boum.org/upgrade/tails-download/</code>" msgid "<code>https://tails.boum.org/upgrade/linux-download/</code>" msgstr "" -"<code>https://tails.boum.org/upgrade/tails-download/index.fr.html</code>" +"<code>https://tails.boum.org/upgrade/linux-download/index.fr.html</code>" #. type: Content of: <div><div><div><p> msgid "<code>https://tails.boum.org/install/dvd-download/</code>" @@ -777,16 +728,12 @@ msgid "BitTorrent doesn't work over Tor or in Tails." msgstr "BitTorrent ne fonctionne pas à travers Tor ou dans Tails." #. type: Content of: <div><div><div><h3> -#, fuzzy -#| msgid "" -#| "<span class=\"step-number\"><span class=\"windows linux mac upgrade-tails" -#| "\">1.</span>1</span>Download Tails (Torrent file)" msgid "" "<span class=\"step-number\"><span class=\"usb upgrade\">1.</span>1</" "span>Download Tails (Torrent file)" msgstr "" -"<span class=\"step-number\"><span class=\"windows linux mac upgrade-tails" -"\">1.</span>1</span>Télécharger Tails (fichier Torrent)" +"<span class=\"step-number\"><span class=\"usb upgrade\">1.</span>1</span>" +"Télécharger Tails (fichier Torrent)" #. type: Content of: <div><div><div><div> msgid "" @@ -813,16 +760,12 @@ msgstr "" "inline pages=\"inc/stable_amd64_version\" raw=\"yes\" sort=\"age\"]]</a>" #. type: Content of: <div><div><div><h3> -#, fuzzy -#| msgid "" -#| "<span class=\"step-number\"><span class=\"windows linux mac upgrade-tails" -#| "\">1.</span>2</span>Verify your download using BitTorrent" msgid "" "<span class=\"step-number\"><span class=\"usb upgrade\">1.</span>2</" "span>Verify your download using BitTorrent" msgstr "" -"<span class=\"step-number\"><span class=\"windows linux mac upgrade-tails" -"\">1.</span>2</span>Vérifiez votre téléchargement en utilisant BitTorrent" +"<span class=\"step-number\"><span class=\"usb upgrade\">1.</span>2</span>" +"Vérifiez votre téléchargement en utilisant BitTorrent" #. type: Content of: <div><div><div><p> msgid "" @@ -868,17 +811,6 @@ msgstr "" "extension de navigateur ou BitTorrent." #. type: Content of: <div><ol><li><p> -#, fuzzy -#| msgid "" -#| "Download the <a class=\"windows linux mac upgrade-tails download-only-img" -#| "\" href=\"[[!inline pages=\"inc/stable_amd64_img_sig_url\" raw=\"yes\" " -#| "sort=\"age\"]]\">OpenPGP signature for the Tails [[!inline pages=\"inc/" -#| "stable_amd64_version\" raw=\"yes\" sort=\"age\"]] USB image</a> <a class=" -#| "\"dvd vm download-only-iso\" href=\"[[!inline pages=\"inc/" -#| "stable_amd64_iso_sig_url\" raw=\"yes\" sort=\"age\"]]\">OpenPGP signature " -#| "for the Tails [[!inline pages=\"inc/stable_amd64_version\" raw=\"yes\" " -#| "sort=\"age\"]] ISO image</a> and save it to the same folder where you " -#| "saved the image." msgid "" "Download the <a class=\"usb upgrade download-only-img\" href=\"[[!inline " "pages=\"inc/stable_amd64_img_sig_url\" raw=\"yes\" sort=\"age\"]]\">OpenPGP " @@ -889,14 +821,14 @@ msgid "" "stable_amd64_version\" raw=\"yes\" sort=\"age\"]] ISO image</a> and save it " "to the same folder where you saved the image." msgstr "" -"Téléchargez la <a class=\"windows linux mac upgrade-tails download-only-img" -"\" href=\"[[!inline pages=\"inc/stable_amd64_img_sig_url\" raw=\"yes\" sort=" -"\"age\"]]\">signature OpenPGP pour l'image USB de Tails [[!inline pages=" -"\"inc/stable_amd64_version\" raw=\"yes\" sort=\"age\"]]</a> <a class=\"dvd " -"vm download-only-iso\" href=\"[[!inline pages=\"inc/stable_amd64_iso_sig_url" -"\" raw=\"yes\" sort=\"age\"]]\">signature OpenPGP pour l'image ISO de Tails " -"[[!inline pages=\"inc/stable_amd64_version\" raw=\"yes\" sort=\"age\"]]</a> " -"et sauvegardez-la dans le dossier où vous avez enregistré l'image." +"Téléchargez la <a class=\"usb upgrade download-only-img\" href=\"[[!inline " +"pages=\"inc/stable_amd64_img_sig_url\" raw=\"yes\" sort=\"age\"]]\">" +"signature OpenPGP pour l'image USB de Tails [[!inline pages=\"inc/" +"stable_amd64_version\" raw=\"yes\" sort=\"age\"]]</a> <a class=\"dvd vm " +"download-only-iso\" href=\"[[!inline pages=\"inc/stable_amd64_iso_sig_url\" " +"raw=\"yes\" sort=\"age\"]]\">signature OpenPGP pour l'image ISO de Tails [[" +"!inline pages=\"inc/stable_amd64_version\" raw=\"yes\" sort=\"age\"]]</a> et " +"sauvegardez-la dans le dossier où vous avez enregistré l'image." #. type: Content of: <div><h3> msgid "Basic OpenPGP verification" @@ -997,20 +929,17 @@ msgid "If the following warning appears:" msgstr "Si l'avertissement suivant apparaît :" #. type: Content of: <div><ol><li><pre> -#, fuzzy, no-wrap -#| msgid "" -#| "Not enough information to check the signature validity.\n" -#| "Signed on ... by tails@boum.org (Key ID: 0x58ACD84F\n" -#| "The validity of the signature cannot be verified.\n" +#, no-wrap msgid "" " Not enough information to check the signature validity.\n" " Signed on ... by tails@boum.org (Key ID: 0x58ACD84F\n" " The validity of the signature cannot be verified.\n" " " msgstr "" -"Not enough information to check the signature validity.\n" -"Signed on ... by tails@boum.org (Key ID: 0x58ACD84F\n" -"The validity of the signature cannot be verified.\n" +" Not enough information to check the signature validity.\n" +" Signed on ... by tails@boum.org (Key ID: 0x58ACD84F\n" +" The validity of the signature cannot be verified.\n" +" " #. type: Content of: <div><ol><li><p> msgid "" @@ -1107,18 +1036,16 @@ msgstr "" "informant que la signature est bonne :" #. type: Content of: <div><ol><li><p> -#, fuzzy -#| msgid "[[!img install/inc/screenshots/verifying_in_tails.png link=\"no\"]]" msgid "" "[[!img install/inc/screenshots/verifying_in_tails_img_good.png link=\"no\"]]" -msgstr "[[!img install/inc/screenshots/verifying_in_tails.png link=\"no\"]]" +msgstr "" +"[[!img install/inc/screenshots/verifying_in_tails_img_good.png link=\"no\"]]" #. type: Content of: <div><ol><li><p> -#, fuzzy -#| msgid "[[!img install/inc/screenshots/verifying_in_tails.png link=\"no\"]]" msgid "" "[[!img install/inc/screenshots/verifying_in_tails_iso_good.png link=\"no\"]]" -msgstr "[[!img install/inc/screenshots/verifying_in_tails.png link=\"no\"]]" +msgstr "" +"[[!img install/inc/screenshots/verifying_in_tails_iso_good.png link=\"no\"]]" #. type: Content of: <div><ol><li><p> #, fuzzy @@ -1132,28 +1059,20 @@ msgstr "" "informant que la signature est bonne :" #. type: Content of: <div><ol><li><p> -#, fuzzy -#| msgid "" -#| "[[!img install/inc/screenshots/verifying_in_tails_img_notification.png " -#| "link=\"no\"]]" msgid "" "[[!img install/inc/screenshots/verifying_in_tails_img_untrusted.png link=\"no" "\"]]" msgstr "" -"[[!img install/inc/screenshots/verifying_in_tails_img_notification.png link=" -"\"no\"]]" +"[[!img install/inc/screenshots/verifying_in_tails_img_untrusted.png link=\"" +"no\"]]" #. type: Content of: <div><ol><li><p> -#, fuzzy -#| msgid "" -#| "[[!img install/inc/screenshots/verifying_in_tails_iso_notification.png " -#| "link=\"no\"]]" msgid "" "[[!img install/inc/screenshots/verifying_in_tails_iso_untrusted.png link=\"no" "\"]]" msgstr "" -"[[!img install/inc/screenshots/verifying_in_tails_iso_notification.png link=" -"\"no\"]]" +"[[!img install/inc/screenshots/verifying_in_tails_iso_untrusted.png link=\"" +"no\"]]" #. type: Content of: <div> msgid "<a id=\"command-line\"></a>" @@ -1191,19 +1110,15 @@ msgstr "Exécutez la commande :" #. type: Content of: <div><ol><li><p> msgid "gpg --import tails-signing.key" -msgstr "" +msgstr "gpg --import tails-signing.key" #. type: Content of: <div><ol><li><p> -#, fuzzy -#| msgid "" -#| "Open a terminal and navigate to the folder where you saved the image and " -#| "the signature." msgid "" "In a terminal, navigate to the folder where you saved the image and the " "signature." msgstr "" -"Ouvrez un terminal et naviguez jusqu'au dossier où vous avez enregistré " -"l'image et la signature." +"Dans un terminal, naviguez jusqu'au dossier où vous avez enregistré l'image " +"et la signature." #. type: Content of: <div><ol><li><p> msgid "" diff --git a/wiki/src/install/inc/steps/download.inline.it.po b/wiki/src/install/inc/steps/download.inline.it.po index 1d659fd0c0fa2980fe05fe3c1050843d17a447bc..afb4bcc3cee5cd1e39945f1c155b1e0e6bf37c5d 100644 --- a/wiki/src/install/inc/steps/download.inline.it.po +++ b/wiki/src/install/inc/steps/download.inline.it.po @@ -8,13 +8,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 02:04+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-18 16:26+0000\n" +"Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "2.4" @@ -623,34 +625,29 @@ msgid "<code>https://tails.boum.org/upgrade/win-download/</code>" msgstr "<code>https://tails.boum.org/install/download/</code>" #. type: Content of: <div><div><div><p> -#, fuzzy -#| msgid "<code>https://tails.boum.org/install/download/</code>" msgid "<code>https://tails.boum.org/upgrade/mac-download/</code>" -msgstr "<code>https://tails.boum.org/install/download/</code>" +msgstr "<code>https://tails.boum.org/upgrade/mac-download/index.it.html</code>" #. type: Content of: <div><div><div><p> -#, fuzzy -#| msgid "<code>https://tails.boum.org/install/download/</code>" msgid "<code>https://tails.boum.org/upgrade/linux-download/</code>" -msgstr "<code>https://tails.boum.org/install/download/</code>" +msgstr "" +"<code>https://tails.boum.org/upgrade/linux-download/index.it.html</code>" #. type: Content of: <div><div><div><p> msgid "<code>https://tails.boum.org/install/dvd-download/</code>" -msgstr "" +msgstr "<code>https://tails.boum.org/install/dvd-download/index.it.html</code>" #. type: Content of: <div><div><div><p> msgid "<code>https://tails.boum.org/install/vm-download/</code>" -msgstr "" +msgstr "<code>https://tails.boum.org/install/vm-download/index.it.html</code>" #. type: Content of: <div><div><div><p> msgid "<code>https://tails.boum.org/install/download/</code>" -msgstr "<code>https://tails.boum.org/install/download/</code>" +msgstr "<code>https://tails.boum.org/install/download/index.it.html</code>" #. type: Content of: <div><div><div><p> -#, fuzzy -#| msgid "<code>https://tails.boum.org/install/download/</code>" msgid "<code>https://tails.boum.org/install/download-iso/</code>" -msgstr "<code>https://tails.boum.org/install/download/</code>" +msgstr "<code>https://tails.boum.org/install/download-iso/index.it.html</code>" #. type: Content of: <div><div><h2> msgid "BitTorrent download" @@ -1011,18 +1008,16 @@ msgid "" msgstr "" #. type: Content of: <div><ol><li><p> -#, fuzzy -#| msgid "[[!img install/inc/screenshots/verifying_in_tails.png link=\"no\"]]" msgid "" "[[!img install/inc/screenshots/verifying_in_tails_img_good.png link=\"no\"]]" -msgstr "[[!img install/inc/screenshots/verifying_in_tails.png link=\"no\"]]" +msgstr "" +"[[!img install/inc/screenshots/verifying_in_tails_img_good.png link=\"no\"]]" #. type: Content of: <div><ol><li><p> -#, fuzzy -#| msgid "[[!img install/inc/screenshots/verifying_in_tails.png link=\"no\"]]" msgid "" "[[!img install/inc/screenshots/verifying_in_tails_iso_good.png link=\"no\"]]" -msgstr "[[!img install/inc/screenshots/verifying_in_tails.png link=\"no\"]]" +msgstr "" +"[[!img install/inc/screenshots/verifying_in_tails_iso_good.png link=\"no\"]]" #. type: Content of: <div><ol><li><p> msgid "" @@ -1030,24 +1025,24 @@ msgid "" msgstr "" #. type: Content of: <div><ol><li><p> -#, fuzzy -#| msgid "[[!img install/inc/screenshots/verifying_in_tails.png link=\"no\"]]" msgid "" "[[!img install/inc/screenshots/verifying_in_tails_img_untrusted.png link=\"no" "\"]]" -msgstr "[[!img install/inc/screenshots/notification_in_tails.png link=\"no\"]]" +msgstr "" +"[[!img install/inc/screenshots/verifying_in_tails_img_untrusted.png link=\"" +"no\"]]" #. type: Content of: <div><ol><li><p> -#, fuzzy -#| msgid "[[!img install/inc/screenshots/verifying_in_tails.png link=\"no\"]]" msgid "" "[[!img install/inc/screenshots/verifying_in_tails_iso_untrusted.png link=\"no" "\"]]" -msgstr "[[!img install/inc/screenshots/notification_in_tails.png link=\"no\"]]" +msgstr "" +"[[!img install/inc/screenshots/verifying_in_tails_iso_untrusted.png link=\"" +"no\"]]" #. type: Content of: <div> msgid "<a id=\"command-line\"></a>" -msgstr "<a id=\"riga di comando\"></a>" +msgstr "<a id=\"command-line\"></a>" #. type: Content of: <div><h3> msgid "Using the command line" @@ -1078,7 +1073,7 @@ msgstr "Esegui:" #. type: Content of: <div><ol><li><p> msgid "gpg --import tails-signing.key" -msgstr "" +msgstr "gpg --import tails-signing.key" #. type: Content of: <div><ol><li><p> #, fuzzy @@ -1093,52 +1088,40 @@ msgstr "" "la firma." #. type: Content of: <div><ol><li><p> -#, fuzzy -#| msgid "" -#| "[[!inline pages=\"inc/stable_amd64_gpg_verify\" raw=\"yes\" sort=\"age\"]]" msgid "" "[[!inline pages=\"inc/stable_amd64_img_gpg_verify\" raw=\"yes\" sort=\"age" "\"]]" msgstr "" -"[[!inline pages=\"inc/stable_amd64_gpg_verify\" raw=\"yes\" sort=\"age\"]]" +"[[!inline pages=\"inc/stable_amd64_img_gpg_verify\" raw=\"yes\" sort=\"age\"" +"]]" #. type: Content of: <div><ol><li><p> -#, fuzzy -#| msgid "" -#| "[[!inline pages=\"inc/stable_amd64_gpg_verify\" raw=\"yes\" sort=\"age\"]]" msgid "" "[[!inline pages=\"inc/stable_amd64_iso_gpg_verify\" raw=\"yes\" sort=\"age" "\"]]" msgstr "" -"[[!inline pages=\"inc/stable_amd64_gpg_verify\" raw=\"yes\" sort=\"age\"]]" +"[[!inline pages=\"inc/stable_amd64_iso_gpg_verify\" raw=\"yes\" sort=\"age\"" +"]]" #. type: Content of: <div><ol><li><p> msgid "The output of this command should be the following:" msgstr "L'output di questo comando dovrebbe essere il seguente:" #. type: Content of: <div><ol><li><p> -#, fuzzy -#| msgid "" -#| "[[!inline pages=\"inc/stable_amd64_gpg_signature_output\" raw=\"yes\" " -#| "sort=\"age\"]]" msgid "" "[[!inline pages=\"inc/stable_amd64_img_gpg_signature_output\" raw=\"yes\" " "sort=\"age\"]]" msgstr "" -"[[!inline pages=\"inc/stable_amd64_gpg_signature_output\" raw=\"yes\" sort=" -"\"age\"]]" +"[[!inline pages=\"inc/stable_amd64_img_gpg_signature_output\" raw=\"yes\" " +"sort=\"age\"]]" #. type: Content of: <div><ol><li><p> -#, fuzzy -#| msgid "" -#| "[[!inline pages=\"inc/stable_amd64_gpg_signature_output\" raw=\"yes\" " -#| "sort=\"age\"]]" msgid "" "[[!inline pages=\"inc/stable_amd64_iso_gpg_signature_output\" raw=\"yes\" " "sort=\"age\"]]" msgstr "" -"[[!inline pages=\"inc/stable_amd64_gpg_signature_output\" raw=\"yes\" sort=" -"\"age\"]]" +"[[!inline pages=\"inc/stable_amd64_iso_gpg_signature_output\" raw=\"yes\" " +"sort=\"age\"]]" #. type: Content of: <div><ol><li><p> msgid "If the output also includes:" diff --git a/wiki/src/install/inc/steps/download.inline.pt.po b/wiki/src/install/inc/steps/download.inline.pt.po index 5fa2bb57c905fdba535876bcad860a169e2caef3..32960fbd330ed58767ffc8315e4c8b6c4ff74b66 100644 --- a/wiki/src/install/inc/steps/download.inline.pt.po +++ b/wiki/src/install/inc/steps/download.inline.pt.po @@ -6,16 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 02:04+0000\n" -"PO-Revision-Date: 2018-02-09 11:58+0000\n" -"Last-Translator: Tails translators <amnesia@boum.org\n" +"PO-Revision-Date: 2020-01-17 08:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "2.4" @@ -23,7 +24,7 @@ msgstr "" #. type: Content of: <div> msgid "[[!inline pages=\"inc/stable_amd64_version\" raw=\"yes\" sort=\"age\"]]" -msgstr "" +msgstr "[[!inline pages=\"inc/stable_amd64_version\" raw=\"yes\" sort=\"age\"]]" #. type: Content of: <h1> msgid "" @@ -110,6 +111,8 @@ msgid "" "[[!toggleable id=\"why-verify-supported\" text=\"\"\" [[!toggle id=\"why-" "verify-supported\" text=\"X\"]]" msgstr "" +"[[!toggleable id=\"why-verify-supported\" text=\"\"\" [[!toggle id=\"why-" +"verify-supported\" text=\"X\"]]" #. type: Content of: <div><div><div><div><div><p> msgid "With an unverified download, you might:" @@ -152,7 +155,7 @@ msgstr "" #. type: Content of: <div> msgid "\"\"\"]]" -msgstr "" +msgstr "\"\"\"]]" #. type: Content of: <div><div><div><div><div><p> msgid "Our browser extension makes it quick and easy." @@ -177,7 +180,7 @@ msgstr "" #. type: Content of: <div><div><div><div><div><div> msgid "[[!img screenshots/allow_js.png link=\"no\"]]" -msgstr "" +msgstr "[[!img screenshots/allow_js.png link=\"no\"]]" #. type: Content of: <div><div><div><div><div><p> msgid "Your extension is an older version." @@ -226,6 +229,8 @@ msgid "" "[[!toggleable id=\"why-failed\" text=\"\"\" [[!toggle id=\"why-failed\" text=" "\"X\"]]" msgstr "" +"[[!toggleable id=\"why-failed\" text=\"\"\" [[!toggle id=\"why-failed\" text=" +"\"X\"]]" #. type: Content of: <div><div><div><div><div><div><div><p> msgid "" @@ -381,7 +386,7 @@ msgstr "" #. type: Content of: <div><div><div><div><div> msgid "|mac/usb]]" -msgstr "" +msgstr "|mac/usb]]" #. type: Content of: <div><div><div><div><div><div> msgid "" diff --git a/wiki/src/install/inc/steps/download.inline.tr.po b/wiki/src/install/inc/steps/download.inline.tr.po index 13cce9a267b7a2d16beca66f7c730110fa384f3b..2b8a577a2fe3e20035b7a920118008681450e4f9 100644 --- a/wiki/src/install/inc/steps/download.inline.tr.po +++ b/wiki/src/install/inc/steps/download.inline.tr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 02:04+0000\n" -"PO-Revision-Date: 2019-06-01 14:04+0000\n" +"PO-Revision-Date: 2020-01-17 08:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "2.4" @@ -180,7 +180,7 @@ msgstr "" #. type: Content of: <div><div><div><div><div><div> msgid "[[!img screenshots/allow_js.png link=\"no\"]]" -msgstr "" +msgstr "[[!img screenshots/allow_js.png link=\"no\"]]" #. type: Content of: <div><div><div><div><div><p> msgid "Your extension is an older version." @@ -229,6 +229,8 @@ msgid "" "[[!toggleable id=\"why-failed\" text=\"\"\" [[!toggle id=\"why-failed\" text=" "\"X\"]]" msgstr "" +"[[!toggleable id=\"why-failed\" text=\"\"\" [[!toggle id=\"why-failed\" text=" +"\"X\"]]" #. type: Content of: <div><div><div><div><div><div><div><p> msgid "" @@ -281,6 +283,8 @@ msgid "" "[[!toggleable id=\"why-failed-again\" text=\"\"\" [[!toggle id=\"why-failed-" "again\" text=\"X\"]]" msgstr "" +"[[!toggleable id=\"why-failed-again\" text=\"\"\" [[!toggle id=\"why-failed-" +"again\" text=\"X\"]]" #. type: Content of: <div><div><div><div><div><div><div><p> msgid "The verification might have failed again because of:" @@ -368,7 +372,7 @@ msgstr "" #. type: Content of: <div><div><div><div><div> msgid "[[" -msgstr "" +msgstr "[[" #. type: Content of: <div><div><div><div><div><div> msgid "Next: Install Tails (<span class=\"next-counter\"></span>)" @@ -376,15 +380,15 @@ msgstr "" #. type: Content of: <div><div><div><div><div> msgid "|win/usb]]" -msgstr "" +msgstr "|win/usb]]" #. type: Content of: <div><div><div><div><div> msgid "|linux/usb]]" -msgstr "" +msgstr "|linux/usb]]" #. type: Content of: <div><div><div><div><div> msgid "|mac/usb]]" -msgstr "" +msgstr "|mac/usb]]" #. type: Content of: <div><div><div><div><div><div> msgid "" diff --git a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.ar.po b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.ar.po index 597438a304ace14bd44da140c50604c983f00702..9c3e72ba37a64d9ef887ae23514f8715bf2c0e91 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.ar.po +++ b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.ar.po @@ -7,19 +7,21 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2018-09-07 18:25+0200\n" -"Last-Translator: Tails translators\n" +"PO-Revision-Date: 2020-01-22 15:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.1.1\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "<div class=\"hidden-step-1\"></div>\n" -msgstr "" +msgstr "<div class=\"hidden-step-1\"></div>\n" #. type: Plain text msgid "These instructions require:" @@ -33,6 +35,8 @@ msgstr "" #, no-wrap msgid "<div class=\"step-image\">[[!img install/inc/infography/os-mac.png link=\"no\" alt=\"\"]]</div>\n" msgstr "" +"<div class=\"step-image\">[[!img install/inc/infography/os-mac.png link=\"" +"no\" alt=\"\"]]</div>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.es.po b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.es.po index 92bf21cebe956067dbecc1c6ab53e99baa4350bb..011dd562b79a87033aedf40e7020c8e0e2377b46 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.es.po +++ b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.es.po @@ -7,8 +7,8 @@ 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" -"PO-Revision-Date: 2019-11-16 12:11+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-15 08:26+0000\n" +"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "install-mac/es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -47,6 +47,10 @@ msgid "" "<h1 class=\"usb\">Install Tails using <span class=\"application\">Etcher</span></h1>\n" "<h1 class=\"upgrade\">Install an intermediary Tails using <span class=\"application\">Etcher</span></h1>\n" msgstr "" +"<h1 class=\"usb\">Instalar Tails usando <span class=\"application\"" +">Etcher</span></h1>\n" +"<h1 class=\"upgrade\">Instalar un Tails intermedio usando <span class=\"" +"application\">Etcher</span></h1>\n" #. type: Plain text #, no-wrap @@ -54,6 +58,9 @@ msgid "" "<p class=\"upgrade\">In this step, you will install an intermediary Tails using the Tails USB\n" "image that you downloaded earlier.</p>\n" msgstr "" +"<p class=\"upgrade\">En este paso, instalarás un Tails intermedio usando la " +"imagen USB\n" +"de Tails que descargaste anteriormente.</p>\n" #. type: Title - #, no-wrap @@ -350,10 +357,12 @@ msgstr "" " agregando <code>sudo</code> al principio del comando:</p>\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid " <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.iso</span> of=<span class=\"command-placeholder\">device</span> bs=16m && sync</p>\n" +#, no-wrap msgid " <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16m && sync</p>\n" -msgstr " <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.iso</span> of=<span class=\"command-placeholder\">device</span> bs=16m && sync</p>\n" +msgstr "" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\"" +">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=" +"16m && sync</p>\n" #. type: Plain text #, no-wrap @@ -380,10 +389,9 @@ msgid " The installation is complete once the command prompt reappeared.\n" msgstr " La instalación se ha completado una vez que reaparezca el interprete de comandos.\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Install Tails using <span class=\"application\">Etcher</span>\n" +#, no-wrap msgid "Install <span class=\"upgrade\"> the intermediary</span> Tails\n" -msgstr "Instalar Tails usando <span class=\"application\">Etcher</span>\n" +msgstr "Instalar Tails <span class=\"upgrade\">intermedio</span>\n" #~ msgid "[[!meta title=\"Install from macOS\"]]\n" #~ msgstr "[[!meta title=\"Instalar desde macOS\"]]\n" diff --git a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.fa.po b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.fa.po index 0e5be7d944927d580591fee566a5b9e0833abce8..8e8ac1fb156ec8ab16da52f543f95646167dbc90 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.fa.po +++ b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.fa.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-03-23 10:05+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" "Language: fa\n" @@ -16,12 +16,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "<div class=\"hidden-step-1\"></div>\n" -msgstr "" +msgstr "<div class=\"hidden-step-1\"></div>\n" #. type: Plain text msgid "These instructions require:" @@ -35,6 +35,8 @@ msgstr "" #, no-wrap msgid "<div class=\"step-image\">[[!img install/inc/infography/os-mac.png link=\"no\" alt=\"\"]]</div>\n" msgstr "" +"<div class=\"step-image\">[[!img install/inc/infography/os-mac.png link=\"" +"no\" alt=\"\"]]</div>\n" #. type: Plain text #, no-wrap @@ -77,10 +79,11 @@ msgid "" msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid " [[!img install/inc/screenshots/install_etcher_in_mac.png link=\"no\" alt=\"\"]]\n" -msgstr "[[!inline pages=\"install/inc/steps/clone.inline.fa\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" +" [[!img install/inc/screenshots/install_etcher_in_mac.png link=\"no\" alt=" +"\"\"]]\n" #. type: Bullet: '1. ' msgid "" @@ -105,6 +108,8 @@ msgstr "" #, no-wrap msgid " [[!img install/inc/screenshots/eject_etcher_dmg.png link=\"no\" alt=\"\"]]\n" msgstr "" +" [[!img install/inc/screenshots/eject_etcher_dmg.png link=\"no\" alt=\"\"]]" +"\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.it.po b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.it.po index 42640e2bc0d29e6c916725439a71a0dd711c948d..97e2661f571aa51c8790a056ac250963960b1444 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.it.po +++ b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.it.po @@ -8,15 +8,15 @@ 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" -"PO-Revision-Date: 2019-08-18 08:47+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-22 16:26+0000\n" +"Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: ita <transitails@inventati.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -158,10 +158,9 @@ msgid "Execute the following command:" msgstr "Esegui il comando seguente:" #. type: Plain text -#, fuzzy, no-wrap -#| msgid " diskutil list\n" +#, no-wrap msgid " <p class=\"pre command\">diskutil list</p>\n" -msgstr " diskutil list\n" +msgstr " <p class=\"pre command\">diskutil list</p>\n" #. type: Plain text #, no-wrap @@ -169,16 +168,7 @@ msgid " It returns a list of the storage devices on the system. For example:\n msgstr " Restituisce un elenco dei dispositivi di archiviazione sul sistema. Per esempio:\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| " $ diskutil list\n" -#| " /dev/disk0\n" -#| " #: TYPE NAME SIZE IDENTIFIER\n" -#| " 0: GUID_partition_scheme *500.1 GB disk0\n" -#| " 1: EFI 209.7 MB disk0s1\n" -#| " 2: Apple_HFS MacDrive 250.0 GB disk0s2\n" -#| " 3: EFI 134.1 GB disk0s3\n" -#| " 4: Microsoft Basic Data BOOTCAMP 115.5 GB disk0s4\n" +#, no-wrap msgid "" " <p class=\"pre command-output\">/dev/disk0\n" " #: TYPE NAME SIZE IDENTIFIER\n" @@ -188,14 +178,13 @@ msgid "" " 3: EFI 134.1 GB disk0s3\n" " 4: Microsoft Basic Data BOOTCAMP 115.5 GB disk0s4</p>\n" msgstr "" -" $ diskutil list\n" -" /dev/disk0\n" -" #: TYPE NAME SIZE IDENTIFIER\n" -" 0: GUID_partition_scheme *500.1 GB disk0\n" -" 1: EFI 209.7 MB disk0s1\n" -" 2: Apple_HFS MacDrive 250.0 GB disk0s2\n" -" 3: EFI 134.1 GB disk0s3\n" -" 4: Microsoft Basic Data BOOTCAMP 115.5 GB disk0s4\n" +" <p class=\"pre command-output\">/dev/disk0\n" +" #: TYPE NAME SIZE IDENTIFIER\n" +" 0: GUID_partition_scheme *500.1 GB disk0\n" +" 1: EFI 209.7 MB disk0s1\n" +" 2: Apple_HFS MacDrive 250.0 GB disk0s2\n" +" 3: EFI 134.1 GB disk0s3\n" +" 4: Microsoft Basic Data BOOTCAMP 115.5 GB disk0s4</p>\n" #. type: Bullet: '1. ' #, fuzzy @@ -220,20 +209,7 @@ msgstr "" " che la sua dimensione corrisponda a quella della tua chiave USB.\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| " $ diskutil list\n" -#| " /dev/disk0\n" -#| " #: TYPE NAME SIZE IDENTIFIER\n" -#| " 0: GUID_partition_scheme *500.1 GB disk0\n" -#| " 1: EFI 209.7 MB disk0s1\n" -#| " 2: Apple_HFS MacDrive 250.0 GB disk0s2\n" -#| " 3: EFI 134.1 GB disk0s3\n" -#| " 4: Microsoft Basic Data BOOTCAMP 115.5 GB disk0s4\n" -#| " /dev/disk1\n" -#| " #: TYPE NAME SIZE IDENTIFIER\n" -#| " 0: FDisk_partition_scheme *8.0 GB disk1\n" -#| " 1: Apple_HFS Untitled 1 8.0 GB disk1s1\n" +#, no-wrap msgid "" " <p class=\"pre command-output\">/dev/disk0\n" " #: TYPE NAME SIZE IDENTIFIER\n" @@ -247,18 +223,17 @@ msgid "" " 0: FDisk_partition_scheme *8.0 GB disk1\n" " 1: Apple_HFS Untitled 1 8.0 GB disk1s1</p>\n" msgstr "" -" $ diskutil list\n" -" /dev/disk0\n" -" #: TYPE NAME SIZE IDENTIFIER\n" -" 0: GUID_partition_scheme *500.1 GB disk0\n" -" 1: EFI 209.7 MB disk0s1\n" -" 2: Apple_HFS MacDrive 250.0 GB disk0s2\n" -" 3: EFI 134.1 GB disk0s3\n" -" 4: Microsoft Basic Data BOOTCAMP 115.5 GB disk0s4\n" -" /dev/disk1\n" -" #: TYPE NAME SIZE IDENTIFIER\n" -" 0: FDisk_partition_scheme *8.0 GB disk1\n" -" 1: Apple_HFS Untitled 1 8.0 GB disk1s1\n" +" <p class=\"pre command-output\">/dev/disk0\n" +" #: TYPE NAME SIZE IDENTIFIER\n" +" 0: GUID_partition_scheme ∗500.1 GB disk0\n" +" 1: EFI 209.7 MB disk0s1\n" +" 2: Apple_HFS MacDrive 250.0 GB disk0s2\n" +" 3: EFI 134.1 GB disk0s3\n" +" 4: Microsoft Basic Data BOOTCAMP 115.5 GB disk0s4\n" +" /dev/disk1\n" +" #: TYPE NAME SIZE IDENTIFIER\n" +" 0: FDisk_partition_scheme *8.0 GB disk1\n" +" 1: Apple_HFS Untitled 1 8.0 GB disk1s1</p>\n" #. type: Bullet: '1. ' msgid "" @@ -355,6 +330,8 @@ msgstr "" #, no-wrap msgid " <p class=\"pre command\">diskutil unmountDisk <span class=\"command-placeholder\">device</span></p>\n" msgstr "" +" <p class=\"pre command\">diskutil unmountDisk <span class=\"command-" +"placeholder\">device</span></p>\n" #. type: Plain text #, no-wrap @@ -367,10 +344,11 @@ msgid " You should get something like this:\n" msgstr " Dovreste ottenere qualcosa del genere:\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid " dd if=/Users/me/tails-amd64-3.0.iso of=/dev/rdisk9 bs=16m && sync\n" +#, no-wrap msgid " <p class=\"pre command-example\">dd if=/Users/me/tails-amd64-3.12.img of=/dev/rdisk9 bs=16m && sync</p>\n" -msgstr " dd if=/Users/me/tails-amd64-3.0.iso of=/dev/rdisk9 bs=16m && sync\n" +msgstr "" +" <p class=\"pre command-example\">dd if=/Users/me/tails-amd64-3.12.img of=/" +"dev/rdisk9 bs=16m && sync</p>\n" #. type: Plain text #, no-wrap @@ -396,6 +374,9 @@ msgstr "" #, no-wrap msgid " <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=16m && sync</p>\n" msgstr "" +" <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder\"" +">tails.img</span> of=<span class=\"command-placeholder\">device</span> bs=" +"16m && sync</p>\n" #. type: Plain text #, fuzzy, no-wrap diff --git a/wiki/src/install/inc/steps/install_etcher_in_windows.inline.ar.po b/wiki/src/install/inc/steps/install_etcher_in_windows.inline.ar.po index 0a2139e2584019a226fd7f69b0350f9d0f142156..7a72cb5d2f886c9df6719705d92c2dd3f3e2fe70 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_windows.inline.ar.po +++ b/wiki/src/install/inc/steps/install_etcher_in_windows.inline.ar.po @@ -3,23 +3,25 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "<div class=\"hidden-step-1\"></div>\n" -msgstr "" +msgstr "<div class=\"hidden-step-1\"></div>\n" #. type: Plain text msgid "These instructions require:" @@ -33,6 +35,8 @@ msgstr "" #, no-wrap msgid "<div class=\"step-image\">[[!img install/inc/infography/os-windows.png link=\"no\" alt=\"\"]]</div>\n" msgstr "" +"<div class=\"step-image\">[[!img install/inc/infography/os-windows.png link=" +"\"no\" alt=\"\"]]</div>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/install_etcher_in_windows.inline.es.po b/wiki/src/install/inc/steps/install_etcher_in_windows.inline.es.po index 5662b50ae2311850b1ae4cfbc6a761d78b537a7b..e3d9266abbcc326d12f7f5595f2951cb60c6de64 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_windows.inline.es.po +++ b/wiki/src/install/inc/steps/install_etcher_in_windows.inline.es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-16 12:11+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-15 08:26+0000\n" +"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -28,7 +28,7 @@ msgstr "Estas instrucciones requieren:" #. type: Bullet: ' - ' msgid "Windows 7 (64-bit) or later" -msgstr "" +msgstr "Windows 7 (64-bit) o posterior" #. type: Plain text #, no-wrap @@ -36,11 +36,13 @@ msgid "" "<div class=\"step-image\">[[!img install/inc/infography/os-windows.png " "link=\"no\" alt=\"\"]]</div>\n" msgstr "" +"<div class=\"step-image\">[[!img install/inc/infography/os-windows.png link=" +"\"no\" alt=\"\"]]</div>\n" #. type: Plain text #, no-wrap msgid "<p class=\"start\">Start in Windows.</p>\n" -msgstr "" +msgstr "<p class=\"start\">Iniciar en Windows.</p>\n" #. type: Plain text #, no-wrap @@ -50,6 +52,10 @@ msgid "" "<h1 class=\"upgrade\">Install an intermediary Tails using <span " "class=\"application\">Etcher</span></h1>\n" msgstr "" +"<h1 class=\"usb\">Instalar Tails usando <span class=\"application\"" +">Etcher</span></h1>\n" +"<h1 class=\"upgrade\">Instalar un Tails intermedio usando <span class=\"" +"application\">Etcher</span></h1>\n" #. type: Plain text #, no-wrap @@ -58,6 +64,9 @@ msgid "" "using the Tails USB\n" "image that you downloaded earlier.</p>\n" msgstr "" +"<p class=\"upgrade\">En este paso, instalarás un Tails intermedio usando la " +"imagen USB\n" +"de Tails que descargaste anteriormente.</p>\n" #. type: Bullet: '1. ' msgid "" @@ -73,3 +82,5 @@ msgid "" " <a href='https://tails.boum.org/etcher/Etcher-Portable.exe'>Download " "Etcher for Windows</a>\n" msgstr "" +" <a href='https://tails.boum.org/etcher/Etcher-Portable.exe'>Descargar " +"Etcher para Windows</a>\n" diff --git a/wiki/src/install/inc/steps/install_etcher_in_windows.inline.fa.po b/wiki/src/install/inc/steps/install_etcher_in_windows.inline.fa.po index f1615db2771fb67b155d76e83b06f052321c1381..d6dd97da05b94ee89a3e3d63553e9d0d3dfd587e 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_windows.inline.fa.po +++ b/wiki/src/install/inc/steps/install_etcher_in_windows.inline.fa.po @@ -3,23 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "<div class=\"hidden-step-1\"></div>\n" -msgstr "" +msgstr "<div class=\"hidden-step-1\"></div>\n" #. type: Plain text msgid "These instructions require:" @@ -35,6 +36,8 @@ msgid "" "<div class=\"step-image\">[[!img install/inc/infography/os-windows.png " "link=\"no\" alt=\"\"]]</div>\n" msgstr "" +"<div class=\"step-image\">[[!img install/inc/infography/os-windows.png link=" +"\"no\" alt=\"\"]]</div>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/install_etcher_in_windows.inline.it.po b/wiki/src/install/inc/steps/install_etcher_in_windows.inline.it.po index f1615db2771fb67b155d76e83b06f052321c1381..350b63134f4e00584c8f834144d3b6268a152989 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_windows.inline.it.po +++ b/wiki/src/install/inc/steps/install_etcher_in_windows.inline.it.po @@ -3,23 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-18 16:26+0000\n" +"Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "<div class=\"hidden-step-1\"></div>\n" -msgstr "" +msgstr "<div class=\"hidden-step-1\"></div>\n" #. type: Plain text msgid "These instructions require:" @@ -35,6 +36,8 @@ msgid "" "<div class=\"step-image\">[[!img install/inc/infography/os-windows.png " "link=\"no\" alt=\"\"]]</div>\n" msgstr "" +"<div class=\"step-image\">[[!img install/inc/infography/os-windows.png link=" +"\"no\" alt=\"\"]]</div>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/install_etcher_in_windows.inline.pt.po b/wiki/src/install/inc/steps/install_etcher_in_windows.inline.pt.po index f1615db2771fb67b155d76e83b06f052321c1381..191e792406be46f186d01d9ac5b2e27fe8497850 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_windows.inline.pt.po +++ b/wiki/src/install/inc/steps/install_etcher_in_windows.inline.pt.po @@ -3,23 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "<div class=\"hidden-step-1\"></div>\n" -msgstr "" +msgstr "<div class=\"hidden-step-1\"></div>\n" #. type: Plain text msgid "These instructions require:" diff --git a/wiki/src/install/inc/steps/install_etcher_in_windows.inline.tr.po b/wiki/src/install/inc/steps/install_etcher_in_windows.inline.tr.po index be5c987b2b807f9f80b3f51cc8fdb7923243d851..25fe4205def530c647c386aa2cc51e2a3c631ff1 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_windows.inline.tr.po +++ b/wiki/src/install/inc/steps/install_etcher_in_windows.inline.tr.po @@ -3,23 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "<div class=\"hidden-step-1\"></div>\n" -msgstr "" +msgstr "<div class=\"hidden-step-1\"></div>\n" #. type: Plain text msgid "These instructions require:" diff --git a/wiki/src/install/inc/steps/install_with_etcher.inline.es.po b/wiki/src/install/inc/steps/install_with_etcher.inline.es.po index ab695b01e7318f510def8c2b43b0801924c1c258..6c1ef278319defea4b508b1db68514876740073e 100644 --- a/wiki/src/install/inc/steps/install_with_etcher.inline.es.po +++ b/wiki/src/install/inc/steps/install_with_etcher.inline.es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-08-24 06:22+0000\n" -"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\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" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -23,12 +23,19 @@ msgid "" " <div class=\"step-image usb\">[[!img install/inc/infography/plug-usb.png link=\"no\" alt=\"USB stick plugged in the computer\"]]</div>\n" " <div class=\"step-image upgrade\">[[!img install/inc/infography/plug-upgrade-usb-only.png link=\"no\" alt=\"USB stick plugged on the left\"]]</div>\n" msgstr "" +" <div class=\"step-image usb\">[[!img install/inc/infography/plug-usb.png " +"link=\"no\" alt=\"Memoria USB conectada a la computadora\"]]</div>\n" +" <div class=\"step-image upgrade\">[[!img install/inc/infography/plug-" +"upgrade-usb-only.png link=\"no\" alt=\"Memoria USB conectada a la izquierda\"" +"]]</div>\n" #. type: Bullet: '1. ' msgid "" "Plug in the USB stick on which you want to install <span class=\"usb" "\">Tails</span> <span class=\"upgrade\">the intermediary Tails</span>." msgstr "" +"Conecta la memoria USB en la que quieres instalar <span class=\"usb\"" +">Tails</span> <span class=\"upgrade\">el Tails intermedio</span>." #. type: Plain text #, no-wrap @@ -41,6 +48,9 @@ msgid "" " <div class=\"note upgrade\"><p>The persistent storage of your Tails USB stick will not be\n" " copied to the temporary Tails.</p></div>\n" msgstr "" +" <div class=\"note upgrade\"><p>El amacenamiento persistente de tu memoria " +"USB de Tails no será\n" +" copiado al Tails temporario.</p></div>\n" #. type: Bullet: '1. ' msgid "" @@ -48,6 +58,9 @@ msgid "" "and choose <span class=\"application\">Etcher</span> in <span class=" "\"guilabel\">Applications</span>. </p>" msgstr "" +"<p class=\"mac upgrade-mac\"> Abre <span class=\"application\">Finder</span> " +"y elige <span class=\"application\">Etcher</span> en <span class=\"guilabel\"" +">Aplicaciones</span>. </p>" #. type: Plain text #, no-wrap @@ -56,6 +69,9 @@ msgid "" " Open the <span class=\"application\">Etcher</span> download.\n" " </p>\n" msgstr "" +" <p class=\"windows upgrade-windows\">\n" +" Abre la descarga de <span class=\"application\">Etcher</span>.\n" +" </p>\n" #. type: Plain text #, no-wrap @@ -67,26 +83,30 @@ msgstr "" #. type: Plain text #, no-wrap msgid " <span class=\"application\">Etcher</span> starts.\n" -msgstr "" +msgstr " <span class=\"application\">Etcher</span> inicia.\n" #. type: Plain text #, no-wrap msgid " [[!img install/inc/screenshots/etcher_in_mac.png class=\"mac upgrade-mac\" link=\"no\" alt=\"\"]]\n" msgstr "" +" [[!img install/inc/screenshots/etcher_in_mac.png class=\"mac upgrade-mac\"" +" link=\"no\" alt=\"\"]]\n" #. type: Plain text #, no-wrap msgid " [[!img install/inc/screenshots/etcher_in_windows.png class=\"windows upgrade-windows\" link=\"no\" alt=\"\"]]\n" msgstr "" +" [[!img install/inc/screenshots/etcher_in_windows.png class=\"windows " +"upgrade-windows\" link=\"no\" alt=\"\"]]\n" #. type: Bullet: '1. ' msgid "Click the <span class=\"button\">Select image</span> button." -msgstr "" +msgstr "Haz click en el botón <span class=\"button\">Select image</span>." #. type: Plain text #, no-wrap msgid " Choose the USB image that you downloaded earlier.\n" -msgstr "" +msgstr " Elige la imagen USB que descargaste antes.\n" #. type: Plain text #, no-wrap @@ -95,6 +115,9 @@ msgid "" " <p>Make sure that the USB image has an\n" " <span class=\"filename\">.img</span> file extension.</p>\n" msgstr "" +" <div class=\"note\">\n" +" <p>Asegúrate de que la imagen USB tiene la extensión\n" +" <span class=\"filename\">.img</span>.</p>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/install_with_etcher.inline.it.po b/wiki/src/install/inc/steps/install_with_etcher.inline.it.po index cad3bc4a19f6cae167b9956a42e7fde4effa8c88..e5b847554f2ccabd3be97ee6953d852eeb60cbe7 100644 --- a/wiki/src/install/inc/steps/install_with_etcher.inline.it.po +++ b/wiki/src/install/inc/steps/install_with_etcher.inline.it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-31 11:29+0000\n" -"PO-Revision-Date: 2019-10-22 10:54+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-18 16:26+0000\n" +"Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -73,11 +73,15 @@ msgstr "" #, no-wrap msgid " [[!img install/inc/screenshots/etcher_in_mac.png class=\"mac upgrade-mac\" link=\"no\" alt=\"\"]]\n" msgstr "" +" [[!img install/inc/screenshots/etcher_in_mac.png class=\"mac upgrade-mac\"" +" link=\"no\" alt=\"\"]]\n" #. type: Plain text #, no-wrap msgid " [[!img install/inc/screenshots/etcher_in_windows.png class=\"windows upgrade-windows\" link=\"no\" alt=\"\"]]\n" msgstr "" +" [[!img install/inc/screenshots/etcher_in_windows.png class=\"windows " +"upgrade-windows\" link=\"no\" alt=\"\"]]\n" #. type: Bullet: '1. ' msgid "Click the <span class=\"button\">Select image</span> button." diff --git a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.ar.po b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.ar.po index 8cd61899016c5d6e5fec87d8533ac9b12caf4bee..216dc69d38cd5c720c8d5ba556829cd7d4fa3e7e 100644 --- a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.ar.po +++ b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.ar.po @@ -3,18 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-31 11:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Bullet: '1. ' msgid "" @@ -46,7 +48,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " <div class=\"step-image\">\n" -msgstr "" +msgstr " <div class=\"step-image\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.es.po b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.es.po index bde41c65bf8b9ca7597597c65c508ef820979861..2b4ebeccc64143fc73e3cc4d0c15d3e5b1b0ba19 100644 --- a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.es.po +++ b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-31 11:29+0000\n" -"PO-Revision-Date: 2019-08-24 06:22+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-22 14:26+0000\n" +"Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Bullet: '1. ' msgid "" @@ -86,6 +86,9 @@ msgid "" " <div class=\"note upgrade\"><p>The persistent storage of your Tails USB stick will not be\n" " copied to the temporary Tails.</p></div>\n" msgstr "" +" <div class=\"note upgrade\"><p>El amacenamiento persistente de tu memoria " +"USB de Tails no será\n" +" copiado al Tails temporario.</p></div>\n" #. type: Plain text #, no-wrap @@ -133,7 +136,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " Choose the USB image that you downloaded earlier.\n" -msgstr "" +msgstr " Elige la imagen USB que descargaste antes.\n" #. type: Plain text #, no-wrap @@ -142,6 +145,9 @@ msgid "" " <p>Make sure that the USB image has an\n" " <span class=\"filename\">.img</span> file extension.</p>\n" msgstr "" +" <div class=\"note\">\n" +" <p>Asegúrate de que la imagen USB tiene la extensión\n" +" <span class=\"filename\">.img</span>.</p>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.fa.po b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.fa.po index a23ccb56640eb2d8944bee301b9574c42968ffed..ba4688054c542280bcf78e4954c4b34c0264da4d 100644 --- a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.fa.po +++ b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.fa.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-31 11:29+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Bullet: '1. ' msgid "" @@ -46,7 +47,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " <div class=\"step-image\">\n" -msgstr "" +msgstr " <div class=\"step-image\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.fr.po b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.fr.po index d47d0f28112766aaedf9f874440700f4a622040e..d5f07ca1a0f355469b53071e1e77e3b4b73b2f96 100644 --- a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.fr.po +++ b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-09-06 21:25+0000\n" +"PO-Revision-Date: 2020-01-03 14:25+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Bullet: '1. ' msgid "" @@ -68,16 +68,18 @@ msgid " [[!img install/inc/infography/plug-usb.png link=\"no\" class=\"linux msgstr " [[!img install/inc/infography/plug-usb.png link=\"no\" class=\"linux\" alt=\"Clé USB branchée dans l'ordinateur\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid " [[!img install/inc/infography/plug-upgrade-usb.png link=\"no\" class=\"upgrade\" alt=\"USB stick plugged on the left\"]]\n" +#, no-wrap msgid " [[!img install/inc/infography/plug-upgrade-usb.png link=\"no\" class=\"upgrade-tails\" alt=\"USB stick plugged on the left\"]]\n" -msgstr " [[!img install/inc/infography/plug-upgrade-usb.png link=\"no\" class=\"upgrade\" alt=\"Clé USB branchée sur la gauche\"]]\n" +msgstr "" +" [[!img install/inc/infography/plug-upgrade-usb.png link=\"no\" class" +"=\"upgrade-tails\" alt=\"Clé USB branchée sur la gauche\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid " [[!img install/inc/infography/plug-upgrade-usb.png link=\"no\" class=\"upgrade\" alt=\"USB stick plugged on the left\"]]\n" +#, no-wrap msgid " [[!img install/inc/infography/plug-upgrade-usb-only.png link=\"no\" class=\"upgrade-linux\" alt=\"USB stick plugged on the left\"]]\n" -msgstr " [[!img install/inc/infography/plug-upgrade-usb.png link=\"no\" class=\"upgrade\" alt=\"Clé USB branchée sur la gauche\"]]\n" +msgstr "" +" [[!img install/inc/infography/plug-upgrade-usb-only.png link=\"no\" " +"class=\"upgrade-linux\" alt=\"Clé USB branchée sur la gauche\"]]\n" #. type: Plain text #, no-wrap @@ -120,16 +122,20 @@ msgid " [[!img install/inc/infography/install-tails.png link=\"no\" class=\" msgstr " [[!img install/inc/infography/install-tails.png link=\"no\" class=\"linux\" alt=\"Image USB installée sur la clé USB\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid " [[!img install/inc/infography/install-upgrade-usb.png link=\"no\" class=\"upgrade\" alt=\"USB image installed on USB stick on the left\"]]\n" +#, no-wrap msgid " [[!img install/inc/infography/install-upgrade-usb.png link=\"no\" class=\"upgrade-tails\" alt=\"USB image installed on USB stick on the left\"]]\n" -msgstr " [[!img install/inc/infography/install-upgrade-usb.png link=\"no\" class=\"upgrade\" alt=\"Image USB installée sur la clé USB sur la gauche\"]]\n" +msgstr "" +" [[!img install/inc/infography/install-upgrade-usb.png link=\"no\" class" +"=\"upgrade-tails\" alt=\"Image USB installée sur la clé USB sur la gauche\"]]" +"\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid " [[!img install/inc/infography/install-upgrade-usb.png link=\"no\" class=\"upgrade\" alt=\"USB image installed on USB stick on the left\"]]\n" +#, no-wrap msgid " [[!img install/inc/infography/install-upgrade-usb-only.png link=\"no\" class=\"upgrade-linux\" alt=\"USB image installed on USB stick on the left\"]]\n" -msgstr " [[!img install/inc/infography/install-upgrade-usb.png link=\"no\" class=\"upgrade\" alt=\"Image USB installée sur la clé USB sur la gauche\"]]\n" +msgstr "" +" [[!img install/inc/infography/install-upgrade-usb-only.png link=\"no\" " +"class=\"upgrade-linux\" alt=\"Image USB installée sur la clé USB sur la " +"gauche\"]]\n" #. type: Bullet: '1. ' msgid "" diff --git a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.it.po b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.it.po index 2256d2444e42d8b5b787dd859d5ce161351229c1..e540b941dd0d50c187c2525d36d3004bd2ac0482 100644 --- a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.it.po +++ b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-31 11:29+0000\n" -"PO-Revision-Date: 2019-10-22 10:53+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-22 16:26+0000\n" +"Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Bullet: '1. ' msgid "" @@ -42,7 +42,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[!img install/inc/icons/gnome-disks.png link=\"no\" alt=\"\"]]\n" -msgstr "" +msgstr " [[!img install/inc/icons/gnome-disks.png link=\"no\" alt=\"\"]]\n" #. type: Plain text #, no-wrap @@ -96,11 +96,15 @@ msgstr "" #, no-wrap msgid " [[!img install/inc/screenshots/gnome_disks_drive.png link=\"no\" alt=\"\"]]\n" msgstr "" +" [[!img install/inc/screenshots/gnome_disks_drive.png link=\"no\" alt=\"\"" +"]]\n" #. type: Plain text #, no-wrap msgid " [[!img install/inc/infography/install-tails.png link=\"no\" class=\"linux\" alt=\"USB image installed on USB stick\"]]\n" msgstr "" +" [[!img install/inc/infography/install-tails.png link=\"no\" class=\"" +"linux\" alt=\"Immagine USB installata sulla chiavetta USB\"]]\n" #. type: Plain text #, no-wrap @@ -123,6 +127,8 @@ msgstr "" #, no-wrap msgid " [[!img install/inc/screenshots/gnome_disks_menu.png link=\"no\" alt=\"\"]]\n" msgstr "" +" [[!img install/inc/screenshots/gnome_disks_menu.png link=\"no\" alt=\"\"]]" +"\n" #. type: Bullet: '1. ' msgid "" 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 11b9adf797ae34db91e436db879fe82f5241edcf..9ad4f89ea828e480d85ae2763e38ed515bd50d80 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 @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-10 09:20+0000\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" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <ol><li><p> msgid "Shut down the computer while leaving the USB stick plugged in." @@ -39,17 +39,12 @@ msgstr "" "ce que la liste des disques de démarrage possibles apparaisse." #. type: Content of: <ol><li><p> -#, fuzzy -#| msgid "" -#| "[[!img install/inc/screenshots/mac_option_key.png class=\"mac mac-clone\" " -#| "link=\"no\" alt=\"'Option' or 'alt' key in the bottom left of Mac keyboard" -#| "\"]]" msgid "" "[[!img install/inc/screenshots/mac_option_key.png link=\"no\" alt=\"'Option' " "or 'alt' key in the bottom left of Mac keyboard\"]]" msgstr "" -"[[!img install/inc/screenshots/mac_option_key.png class=\"mac mac-clone\" " -"link=\"no\" alt=\"Touche 'Option' ou 'alt' en bas à gauche du clavier Mac\"]]" +"[[!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 "" @@ -64,20 +59,14 @@ msgstr "" "comme dans la capture d'écran suivante :" #. type: Content of: <ol><li><p> -#, fuzzy -#| msgid "" -#| "[[!img install/inc/screenshots/mac_startup_usb.png class=\"mac mac-clone" -#| "\" link=\"no\" alt=\"Screen with the logo of an internal hard disk " -#| "labeled 'Macintosh HD' and an external hard disk labelled " -#| "'Windows' (selected)\"]]" msgid "" "[[!img install/inc/screenshots/mac_startup_usb.png link=\"no\" alt=\"Screen " "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 class=\"mac mac-clone\" " -"link=\"no\" alt=\"Écran avec le logo d'un disque dur interne nommé " -"'Macintosh HD' et un disque dur externe nommé 'Windows' (sélectionné)\"]]" +"[[!img install/inc/screenshots/mac_startup_usb.png link=\"no\" alt=\"Écran " +"avec le logo d'un disque dur interne nommé 'Macintosh HD' et un disque dur " +"externe nommé 'Windows' (sélectionné)\"]]" #. type: Content of: <ol><li><div><p> msgid "If the USB stick does not appear in the list of possible startup disks:" 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 feb7115b60f8afea3bdc825e22edf3039f0fb8d1..f24ae8c3faaccfba249e875c41486035dec1973c 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 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-11-28 18:06+0000\n" -"PO-Revision-Date: 2019-10-10 10:05+0000\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" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <h2> msgid "Make the computer start on the USB stick" @@ -86,27 +86,17 @@ 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 *boot menu key* to display a list " -#| "of\n" -#| " possible devices to start from. The following instructions explain " -#| "how\n" -#| " to display the boot menu and start on the USB stick. The following\n" -#| " screenshot is an example of such boot menu:\n" 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:" msgstr "" -" Sur la plupart des ordinateurs, il est possible d'appuyer sur une touche " -"afin d'obtenir un\n" -" menu (souvent appelé *Boot Menu*) permettant de choisir le périphérique " -"sur lequel\n" -" démarrer. Les instructions suivantes expliquent comment afficher le menu " -"et démarrer sur\n" -" la clé USB. La capture d'écran qui suit montre l'exemple d'un tel menu :\n" +"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 " +"périphérique sur lequel démarrer. Les instructions suivantes expliquent " +"comment afficher le menu et démarrer sur la clé USB. La capture d'écran qui " +"suit montre l'exemple d'un tel menu :" #. type: Content of: <p> msgid "" diff --git a/wiki/src/install/inc/steps/reporting.inline.fr.po b/wiki/src/install/inc/steps/reporting.inline.fr.po index ac640d04c86ff34b1d036be285dba072d206a9dc..1f69bf1975b3595a35f5c3f88837be249f8a2008 100644 --- a/wiki/src/install/inc/steps/reporting.inline.fr.po +++ b/wiki/src/install/inc/steps/reporting.inline.fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-08-29 08:06+0000\n" -"PO-Revision-Date: 2019-09-25 11:30+0000\n" -"Last-Translator: xin <xin@riseup.net>\n" +"PO-Revision-Date: 2020-01-24 08:26+0000\n" +"Last-Translator: takt <ffr43366@eveav.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <h3> msgid "Reporting the problem to our help desk" @@ -24,18 +24,20 @@ msgstr "" #. type: Content of: <p> msgid "Please send the following information to [[tails-support-private@boum.org]]:" msgstr "" +"Merci d'envoyer les informations suivantes à [[tails-support-" +"private@boum.org]] :" #. type: Content of: <ol><li><p> msgid "Which version of Tails are you trying to start?" -msgstr "" +msgstr "Quelle version de Tails essayez-vous de démarrer ?" #. type: Content of: <ol><li><p> msgid "How did you verify the USB image?" -msgstr "" +msgstr "Comment avez-vous vérifié l'image USB ?" #. type: Content of: <ol><li><p> msgid "What is the brand and model of your computer?" -msgstr "" +msgstr "Quels sont la marque et le modèle de votre ordinateur ?" #. type: Content of: <ol><li><p> msgid "" @@ -46,6 +48,7 @@ msgstr "" #. type: Content of: <ol><li><p> msgid "What program did you use to install your USB stick?" msgstr "" +"Quel programme avez-vous utilisé pour installer Tails sur votre clé USB ?" #. type: Content of: <ol><li><p> msgid "" @@ -58,6 +61,8 @@ msgid "" "Have you been able to successfully start another version of Tails on this " "computer before? If so, which version?" msgstr "" +"Avez-vous déjà pu démarrer correctement une autre version de Tails sur cet " +"ordinateur ? Si oui, quelle version ?" #. type: Content of: outside any tag (error?) msgid "[[!inline pages=\"support/talk/languages.inline\" raw=\"yes\"]]" 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 7279745524daa90f00371e5478f7046d280f64b7..086d810b8e77a9b212304dcec3c75a7ab4d8fff8 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 @@ -8,8 +8,8 @@ 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" -"PO-Revision-Date: 2018-10-27 07:05+0000\n" -"Last-Translator: Weblate Admin <admin@example.com>\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Arabic <http://translate.tails.boum.org/projects/tails/" "restart_first_timeinline/ar/>\n" "Language: ar\n" @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "<div class=\"trophy windows linux mac expert\">\n" -msgstr "" +msgstr "<div class=\"trophy windows linux mac expert\">\n" #. type: Plain text #, fuzzy, no-wrap 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 6fb45e1bffa0e8146f2d42431e233a6524d33972..d778c249e90fc31005b42fd83edef2f21132837c 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 @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-07-29 19:40+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" "Language: fa\n" @@ -16,12 +16,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "<div class=\"trophy windows linux mac expert\">\n" -msgstr "" +msgstr "<div class=\"trophy windows linux mac expert\">\n" #. type: Plain text #, no-wrap @@ -56,6 +56,8 @@ msgstr "" #, 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" #. type: Plain text msgid "" @@ -158,7 +160,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"step-image\">\n" -msgstr "" +msgstr "<div class=\"step-image\">\n" #. type: Plain text #, no-wrap 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 c78ba1c5cbebb6ca36a7913f76cf34f61872a5ce..5bbdc0195986426bcf1d7a9c5937b185d2f90221 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 @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-09-26 08:58+0000\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" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -110,22 +110,25 @@ msgid " [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png cla msgstr " [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png class=\"upgrade-tails qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid " [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png class=\"upgrade-tails qrcode\" link=\"no\" alt=\"\"]]\n" +#, 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_tails_back_1.png class=\"upgrade-tails 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 -#, fuzzy, no-wrap -#| msgid " [[!img install/inc/qrcodes/tails_boum_org_upgrade_clone_back_1.png class=\"upgrade-clone qrcode\" link=\"no\" alt=\"\"]]\n" +#, 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_clone_back_1.png class=\"upgrade-clone 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 -#, fuzzy, no-wrap -#| msgid " [[!img install/inc/qrcodes/tails_boum_org_upgrade_clone_back_1.png class=\"upgrade-clone qrcode\" link=\"no\" alt=\"\"]]\n" +#, 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_clone_back_1.png class=\"upgrade-clone 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 "" @@ -143,16 +146,7 @@ msgid "Take note of the URL of this page to be able to come back later:" msgstr "Noter l'adresse de cette page pour pouvoir y revenir plus tard :" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| " <span class=\"install-clone\">`https://tails.boum.org/install/clone?back=1`</span>\n" -#| " <span class=\"windows\">`https://tails.boum.org/install/win/usb?back=1`</span>\n" -#| " <span class=\"mac\">`https://tails.boum.org/install/mac/usb?back=1`</span>\n" -#| " <span class=\"mac-clone\">`https://tails.boum.org/install/mac/clone?back=1`</span>\n" -#| " <span class=\"expert\">`https://tails.boum.org/install/expert/usb?back=1`</span>\n" -#| " <span class=\"linux\">`https://tails.boum.org/install/linux/usb?back=1`</span>\n" -#| " <span class=\"upgrade-clone\">`https://tails.boum.org/upgrade/clone?back=1`</span>\n" -#| " <span class=\"upgrade-tails\">`https://tails.boum.org/upgrade/tails?back=1`</span>\n" +#, no-wrap msgid "" " <span class=\"install-clone\">`https://tails.boum.org/install/clone?back=1`</span>\n" " <span class=\"windows\">`https://tails.boum.org/install/win/usb?back=1`</span>\n" @@ -166,29 +160,41 @@ 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" - -#. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<h1 id=\"start-intermediary\" class=\"upgrade-tails\">Restart on the intermediary Tails</h1>\n" -#| "<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" +" <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 msgid "" "<h1 id=\"start-intermediary\" class=\"upgrade-tails upgrade-os\">Restart on the intermediary Tails</h1>\n" "<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\">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 @@ -206,10 +212,12 @@ msgid "[[!img install/inc/infography/restart-on-tails.png link=\"no\" class=\"wi msgstr "[[!img install/inc/infography/restart-on-tails.png link=\"no\" class=\"windows linux mac\" alt=\"Ordinateur redémarrant avec la clé USB\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" class=\"clone\" alt=\"Computer restarted on USB stick on the left\"]]\n" +#, 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\" 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 @@ -217,10 +225,11 @@ msgid "[[!img install/inc/infography/restart-on-upgrade-usb.png link=\"no\" clas msgstr "[[!img install/inc/infography/restart-on-upgrade-usb.png link=\"no\" class=\"upgrade-tails\" alt=\"Clé USB débranchée sur la droite et ordinateur redémarrant avec la clé USB sur la gauche\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<div class=\"windows linux expert install-clone upgrade-clone upgrade-tails\">\n" +#, 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\">\n" +msgstr "" +"<div class=\"windows linux expert install-clone upgrade-clone upgrade-tails " +"upgrade-windows upgrade-linux\">\n" #. type: Plain text #, no-wrap @@ -228,10 +237,9 @@ msgid "[[!inline pages=\"install/inc/steps/pc_boot_menu.inline\" raw=\"yes\" sor msgstr "[[!inline pages=\"install/inc/steps/pc_boot_menu.inline.fr\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<div class=\"mac mac-clone\">\n" +#, no-wrap msgid "<div class=\"mac mac-clone upgrade-mac\">\n" -msgstr "<div class=\"mac mac-clone\">\n" +msgstr "<div class=\"mac mac-clone upgrade-mac\">\n" #. type: Plain text #, no-wrap 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 8767722973a728d5f9b92093434c5c22d1805527..54c1b1808cc5cf25879b4c6375f099333f53c67c 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 @@ -8,19 +8,20 @@ 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" -"PO-Revision-Date: 2017-02-09 21:00+0100\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<div class=\"trophy windows linux mac\">\n" +#, no-wrap msgid "<div class=\"trophy windows linux mac expert\">\n" -msgstr "<div class=\"trophy windows linux mac\">\n" +msgstr "<div class=\"trophy windows linux mac expert\">\n" #. type: Plain text #, fuzzy, no-wrap @@ -77,53 +78,67 @@ msgid " [[!img install/inc/qrcodes/tails_boum_org_install_win_usb_back_1.png c msgstr " [[!img install/inc/qrcodes/tails_boum_org_install_win_usb_back_1.png class=\"windows qrcode\" link=\"no\" alt=\"\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid " [[!img install/inc/qrcodes/tails_boum_org_install_mac_usb_back_1.png class=\"mac-usb qrcode\" link=\"no\" alt=\"\"]]\n" +#, 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-usb 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" #. 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" #. 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" #. 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" #. 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" #. type: Plain text -#, fuzzy, no-wrap -#| msgid " [[!img install/inc/qrcodes/tails_boum_org_install_win_usb_back_1.png class=\"windows qrcode\" link=\"no\" alt=\"\"]]\n" +#, 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_install_win_usb_back_1.png class=\"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 -#, fuzzy, no-wrap -#| msgid " [[!img install/inc/qrcodes/tails_boum_org_install_mac_usb_back_1.png class=\"mac-usb qrcode\" link=\"no\" alt=\"\"]]\n" +#, 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_install_mac_usb_back_1.png class=\"mac-usb 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 -#, fuzzy, no-wrap -#| msgid " [[!img install/inc/qrcodes/tails_boum_org_install_win_usb_back_1.png class=\"windows qrcode\" link=\"no\" alt=\"\"]]\n" +#, 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_install_win_usb_back_1.png class=\"windows 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 "" @@ -141,18 +156,7 @@ msgstr "" "Prendi nota dell'indirizzo di questa pagina per poterci tornare più tardi:" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| " <span class=\"install-clone\">`https://tails.boum.org/install/clone?back=1`</span>\n" -#| " <span class=\"windows\">`https://tails.boum.org/install/win/usb?back=1`</span>\n" -#| " <span class=\"mac-usb\">`https://tails.boum.org/install/mac/usb?back=1`</span>\n" -#| " <span class=\"mac-clone\">`https://tails.boum.org/install/mac/clone?back=1`</span>\n" -#| " <span class=\"mac-dvd\">`https://tails.boum.org/install/mac/dvd?back=1`</span>\n" -#| " <span class=\"debian\">`https://tails.boum.org/install/debian/usb?back=1`</span>\n" -#| " <span class=\"expert\">`https://tails.boum.org/install/expert/usb?back=1`</span>\n" -#| " <span class=\"linux\">`https://tails.boum.org/install/linux/usb?back=1`</span>\n" -#| " <span class=\"upgrade-clone\">`https://tails.boum.org/upgrade/clone?back=1`</span>\n" -#| " <span class=\"upgrade-tails\">`https://tails.boum.org/upgrade/tails?back=1`</span>\n" +#, no-wrap msgid "" " <span class=\"install-clone\">`https://tails.boum.org/install/clone?back=1`</span>\n" " <span class=\"windows\">`https://tails.boum.org/install/win/usb?back=1`</span>\n" @@ -166,16 +170,28 @@ 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?back=1`</span>\n" -" <span class=\"windows\">`https://tails.boum.org/install/win/usb?back=1`</span>\n" -" <span class=\"mac-usb\">`https://tails.boum.org/install/mac/usb?back=1`</span>\n" -" <span class=\"mac-clone\">`https://tails.boum.org/install/mac/clone?back=1`</span>\n" -" <span class=\"mac-dvd\">`https://tails.boum.org/install/mac/dvd?back=1`</span>\n" -" <span class=\"debian\">`https://tails.boum.org/install/debian/usb?back=1`</span>\n" -" <span class=\"expert\">`https://tails.boum.org/install/expert/usb?back=1`</span>\n" -" <span class=\"linux\">`https://tails.boum.org/install/linux/usb?back=1`</span>\n" -" <span class=\"upgrade-clone\">`https://tails.boum.org/upgrade/clone?back=1`</span>\n" -" <span class=\"upgrade-tails\">`https://tails.boum.org/upgrade/tails?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 @@ -226,24 +242,27 @@ msgstr "" #, 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" #. type: Plain text -#, fuzzy, no-wrap -#| msgid " [[!inline pages=\"install/inc/steps/not_at_all.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid "[[!inline pages=\"install/inc/steps/pc_boot_menu.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr " [[!inline pages=\"install/inc/steps/not_at_all.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 -#, fuzzy, no-wrap -#| msgid " <div class=\"mac-usb mac-clone\">\n" +#, no-wrap msgid "<div class=\"mac mac-clone upgrade-mac\">\n" -msgstr " <div class=\"mac-usb mac-clone\">\n" +msgstr "<div class=\"mac mac-clone upgrade-mac\">\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid " [[!inline pages=\"install/inc/steps/mac_startup_disks.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, 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" +msgstr "" +"[[!inline pages=\"install/inc/steps/mac_startup_disks.inline.it\" raw=\"yes\"" +" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -453,6 +472,8 @@ msgstr "Dopo 15–30 secondi, ti apparirà il Desktop di Tails." #, 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" #~ msgid "" #~ "If the error message is <span class=\"code\">/bin/sh: can't access tty; " diff --git a/wiki/src/install/linux.fa.po b/wiki/src/install/linux.fa.po index 52ae87616ae00171fa97417052f3d8b005a10ced..1f6ce2d8656117d276c6125d3fb2309fb767f800 100644 --- a/wiki/src/install/linux.fa.po +++ b/wiki/src/install/linux.fa.po @@ -3,18 +3,20 @@ # 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" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-30 19:48+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Linux\"]]" @@ -66,7 +68,7 @@ msgstr "" #. type: Content of: <div><div> msgid "[[" -msgstr "" +msgstr "[[" #. type: Content of: <div><div><div><div> msgid "Install from Linux" diff --git a/wiki/src/install/linux.it.po b/wiki/src/install/linux.it.po index 9987c5dfda937fb5895695928c702e2e84bd2410..5f4ecf56175e706c3057c532bc921d9c04a153d2 100644 --- a/wiki/src/install/linux.it.po +++ b/wiki/src/install/linux.it.po @@ -8,37 +8,29 @@ msgstr "" "Project-Id-Version: transitails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-30 19:48+0000\n" -"PO-Revision-Date: 2019-11-24 09:26+0000\n" -"Last-Translator: Davide <davidesantoro@mail.ru>\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" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Linux\"]]" -msgstr "" +msgstr "[[!meta title=\"Linux\"]]" #. type: Content of: outside any tag (error?) -#, fuzzy -#| msgid "" -#| "[[!meta title=\"Other Linux (Red Hat, Fedora, etc.)\"]] [[!meta robots=" -#| "\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" " -#| "title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" rel=" -#| "\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/linux\" " -#| "rel=\"stylesheet\" title=\"\"]]" msgid "" "[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=" "\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" " "rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/linux\" " "rel=\"stylesheet\" title=\"\"]]" msgstr "" -"[[!meta title=\"Altre distribuzioni Linux (Red Hat, Fedora, etc.)\"]] [[!" -"meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=" -"\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" " +"[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"" +"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" " "rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/linux\" " "rel=\"stylesheet\" title=\"\"]]" diff --git a/wiki/src/install/linux.tr.po b/wiki/src/install/linux.tr.po index 0bddbb7ff1e8757a128dc74d0f10b5881edc57e7..10b2e77db89baa5f662a59fcf518b3f4e29ccd22 100644 --- a/wiki/src/install/linux.tr.po +++ b/wiki/src/install/linux.tr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-30 19:48+0000\n" -"PO-Revision-Date: 2018-07-02 06:27+0000\n" +"PO-Revision-Date: 2020-01-17 08:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Linux\"]]" @@ -68,7 +68,7 @@ msgstr "" #. type: Content of: <div><div> msgid "[[" -msgstr "" +msgstr "[[" #. type: Content of: <div><div><div><div> msgid "Install from Linux" diff --git a/wiki/src/install/linux/usb-download.pt.po b/wiki/src/install/linux/usb-download.pt.po index 98d4c20e1a1e1b3d7238b2331df205dbe9a6adc9..03c36607f354ef282a1e373662fb620e85ef3e2b 100644 --- a/wiki/src/install/linux/usb-download.pt.po +++ b/wiki/src/install/linux/usb-download.pt.po @@ -8,20 +8,20 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-11-15 12:31+0000\n" -"PO-Revision-Date: 2019-10-22 11:26+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-03 14:25+0000\n" +"Last-Translator: Eduardo Addad de Oliveira <duduaddad@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Install from Linux\"]]\n" -msgstr "" +msgstr "[[!meta title=\"Instalar a partir do Linux\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/linux/usb.ar.po b/wiki/src/install/linux/usb.ar.po index 1142b7e20c44311eac7e5f8563aec13ff2a12e55..7a574fc6b13c5737af4ba21a03fb951471fc9acf 100644 --- a/wiki/src/install/linux/usb.ar.po +++ b/wiki/src/install/linux/usb.ar.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-01-18 14:46+0100\n" -"PO-Revision-Date: 2019-10-24 10:30+0000\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Arabic <http://translate.tails.boum.org/projects/tails/" "install-linux-usb/ar/>\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -59,6 +59,8 @@ msgstr "<div class=\"hidden-step-1\"></div>\n" #, no-wrap msgid "<div class=\"step-image\">[[!img install/inc/infography/os-linux.png link=\"no\" alt=\"\"]]</div>\n" msgstr "" +"<div class=\"step-image\">[[!img install/inc/infography/os-linux.png link=\"" +"no\" alt=\"\"]]</div>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/linux/usb.fa.po b/wiki/src/install/linux/usb.fa.po index 45fe60bbcee1be5de51f8f3ab42be42b5bd42792..e7012ee3472fbff591caaecdd912f4dd760f339d 100644 --- a/wiki/src/install/linux/usb.fa.po +++ b/wiki/src/install/linux/usb.fa.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-01-18 14:46+0100\n" -"PO-Revision-Date: 2019-11-21 13:24+0000\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fa\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -55,12 +55,14 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"hidden-step-1\"></div>\n" -msgstr "" +msgstr "<div class=\"hidden-step-1\"></div>\n" #. type: Plain text #, no-wrap msgid "<div class=\"step-image\">[[!img install/inc/infography/os-linux.png link=\"no\" alt=\"\"]]</div>\n" msgstr "" +"<div class=\"step-image\">[[!img install/inc/infography/os-linux.png link=\"" +"no\" alt=\"\"]]</div>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/linux/usb.it.po b/wiki/src/install/linux/usb.it.po index 24f1c4678e16bf8814de990e9200ca0f340a5455..95ec5de15275e47e91516895125a47bd844fecda 100644 --- a/wiki/src/install/linux/usb.it.po +++ b/wiki/src/install/linux/usb.it.po @@ -8,14 +8,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-01-18 14:46+0100\n" -"PO-Revision-Date: 2016-07-17 15:57+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2020-01-15 08:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -102,10 +103,11 @@ msgid "" msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid "[[!inline pages=\"install/inc/steps/install_with_gnome_disks.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"install/inc/steps/clone.inline.it\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_gnome_disks.inline.it\" raw=" +"\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/linux/usb.pt.po b/wiki/src/install/linux/usb.pt.po index 0f48ded2352ba30dd54870b44c37a36c7e77e863..998efa33b45f8712bdb4f6eb374a48efc5e31fff 100644 --- a/wiki/src/install/linux/usb.pt.po +++ b/wiki/src/install/linux/usb.pt.po @@ -8,20 +8,20 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-01-18 14:46+0100\n" -"PO-Revision-Date: 2019-10-24 10:21+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-03 14:25+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Install from Linux\"]]\n" -msgstr "" +msgstr "[[!meta title=\"Instalar a partir do Linux\"]]\n" #. type: Plain text #, no-wrap @@ -96,10 +96,11 @@ msgid "" msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid "[[!inline pages=\"install/inc/steps/install_with_gnome_disks.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"install/inc/steps/clone.inline.pt\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_gnome_disks.inline.pt\" raw=" +"\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/mac.fa.po b/wiki/src/install/mac.fa.po index 672aa659cbc36e79de754df03996e016db1866ce..0487361fb044bc66103a4dc5f2cb5340f8147bef 100644 --- a/wiki/src/install/mac.fa.po +++ b/wiki/src/install/mac.fa.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-30 19:48+0000\n" -"PO-Revision-Date: 2019-03-25 09:13+0000\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fa\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"macOS\"]]" @@ -67,7 +67,7 @@ msgstr "" #. type: Content of: <div><div> msgid "[[" -msgstr "" +msgstr "[[" #. type: Content of: <div><div><div><div> msgid "Install from macOS" diff --git a/wiki/src/install/mac.it.po b/wiki/src/install/mac.it.po index 76dd906f694d71b1dbaa8573ebbfae492a78069c..56a04b2a8c0242865ba46360f8b0be8fca666a76 100644 --- a/wiki/src/install/mac.it.po +++ b/wiki/src/install/mac.it.po @@ -8,36 +8,29 @@ msgstr "" "Project-Id-Version: transitalian\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-30 19:48+0000\n" -"PO-Revision-Date: 2019-10-23 10:55+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\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" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"macOS\"]]" -msgstr "" +msgstr "[[!meta title=\"macOS\"]]" #. type: Content of: outside any tag (error?) -#, fuzzy -#| msgid "" -#| "[[!meta title=\"Mac\"]] [[!meta robots=\"noindex\"]] [[!meta stylesheet=" -#| "\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=" -#| "\"inc/stylesheets/assistant\" rel=\"stylesheet\" title=\"\"]] [[!meta " -#| "stylesheet=\"inc/stylesheets/router-mac\" rel=\"stylesheet\" title=\"\"]]" msgid "" "[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=" "\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" " "rel=\"stylesheet\" title=\"\"]]" msgstr "" -"[[!meta title=\"Mac\"]] [[!meta robots=\"noindex\"]] [[!meta stylesheet=" -"\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/" -"stylesheets/assistant\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=" -"\"inc/stylesheets/router-mac\" rel=\"stylesheet\" title=\"\"]]" +"[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"" +"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" " +"rel=\"stylesheet\" title=\"\"]]" #. type: Content of: <div><div> msgid "" diff --git a/wiki/src/install/mac.tr.po b/wiki/src/install/mac.tr.po index 82ed5a9c4f6b72a62f1e5eba6e0743b5b0fdd350..24c3b65134c319bfc01507f1d4849e67c0e0b7c5 100644 --- a/wiki/src/install/mac.tr.po +++ b/wiki/src/install/mac.tr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-30 19:48+0000\n" -"PO-Revision-Date: 2019-06-01 13:08+0000\n" +"PO-Revision-Date: 2020-01-17 08:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"macOS\"]]" @@ -67,7 +67,7 @@ msgstr "" #. type: Content of: <div><div> msgid "[[" -msgstr "" +msgstr "[[" #. type: Content of: <div><div><div><div> msgid "Install from macOS" diff --git a/wiki/src/install/mac/clone-overview.it.po b/wiki/src/install/mac/clone-overview.it.po index d76e3ca5ebfa89a74f10260bf93d1f92cdaf8154..06ab56efa352b2ea37cbda275c3906740124d9f9 100644 --- a/wiki/src/install/mac/clone-overview.it.po +++ b/wiki/src/install/mac/clone-overview.it.po @@ -6,30 +6,23 @@ msgid "" msgstr "" "Project-Id-Version: \n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-30 19:48+0000\n" -"PO-Revision-Date: 2016-07-29 14:27+0200\n" -"Last-Translator: \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" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Install from another Tails\"]]" msgstr "" #. type: Content of: outside any tag (error?) -#, fuzzy -#| msgid "" -#| "[[!meta title=\"Install from another Tails\"]] [[!meta robots=\"noindex" -#| "\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] " -#| "[[!meta stylesheet=\"inc/stylesheets/assistant\" rel=\"stylesheet\" title=" -#| "\"\"]] [[!meta stylesheet=\"inc/stylesheets/overview\" rel=\"stylesheet\" " -#| "title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/mac-clone\" rel=" -#| "\"stylesheet\" title=\"\"]] [[!inline pages=\"install/inc/overview\" raw=" -#| "\"yes\" sort=\"age\"]] [[" msgid "" "[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=" "\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" " @@ -38,13 +31,12 @@ msgid "" "clone\" rel=\"stylesheet\" title=\"\"]] [[!inline pages=\"install/inc/" "overview\" raw=\"yes\" sort=\"age\"]] [[" msgstr "" -"[[!meta title=\"Installa da un altro Tails\"]] [[!meta robots=\"noindex\"]] " -"[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"inc/stylesheets/assistant\" rel=\"stylesheet\" title=\"\"]] [[!" -"meta stylesheet=\"inc/stylesheets/overview\" rel=\"stylesheet\" title=\"\"]] " -"[[!meta stylesheet=\"inc/stylesheets/mac-clone\" rel=\"stylesheet\" title=" -"\"\"]] [[!inline pages=\"install/inc/overview.it\" raw=\"yes\" sort=\"age" -"\"]] [[" +"[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"" +"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" " +"rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/" +"overview\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/" +"stylesheets/mac-clone\" rel=\"stylesheet\" title=\"\"]] [[!inline pages=\"" +"install/inc/overview.it\" raw=\"yes\" sort=\"age\"]] [[" #. type: Content of: <div><div> msgid "Let's go!" diff --git a/wiki/src/install/mac/clone.fa.po b/wiki/src/install/mac/clone.fa.po index 3481b872f1ff4d84d56505914f0a2ab92a710492..64aaf52485850032662a7e2c098bf189a4af8efc 100644 --- a/wiki/src/install/mac/clone.fa.po +++ b/wiki/src/install/mac/clone.fa.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-04-24 16:42+0300\n" -"PO-Revision-Date: 2019-11-21 13:24+0000\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fa\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -44,11 +44,15 @@ msgstr "" #, no-wrap msgid "[[!meta stylesheet=\"inc/stylesheets/steps\" rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"inc/stylesheets/steps\" rel=\"stylesheet\" title=\"\"]]" +"\n" #. type: Plain text #, no-wrap msgid "[[!meta stylesheet=\"inc/stylesheets/mac-clone\" rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"inc/stylesheets/mac-clone\" rel=\"stylesheet\" title=\"" +"\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/mac/clone.pt.po b/wiki/src/install/mac/clone.pt.po index 6bcdb3cbf0e013ccdcd4d9ef203e82b31fd9c4f2..f0649cbfbacae5bfaa86335fe949ad86cf85213d 100644 --- a/wiki/src/install/mac/clone.pt.po +++ b/wiki/src/install/mac/clone.pt.po @@ -8,20 +8,20 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-04-24 16:42+0300\n" -"PO-Revision-Date: 2019-10-24 10:21+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2019-12-31 13:25+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Install from another Tails\"]]\n" -msgstr "" +msgstr "[[!meta title=\"Instale a partir de outro Tails\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/mac/usb-download.fa.po b/wiki/src/install/mac/usb-download.fa.po index 113d96ce7e45d2ff5bc6f00d4e036680ab90861e..40f64f9832ad637b0ee64a03cbf122cd46f0b28e 100644 --- a/wiki/src/install/mac/usb-download.fa.po +++ b/wiki/src/install/mac/usb-download.fa.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-01-07 19:28+0000\n" -"PO-Revision-Date: 2019-11-21 13:24+0000\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fa\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -51,6 +51,8 @@ msgstr "" #, no-wrap msgid "[[!meta stylesheet=\"inc/stylesheets/steps\" rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"inc/stylesheets/steps\" rel=\"stylesheet\" title=\"\"]]" +"\n" #. type: Plain text #, no-wrap @@ -60,7 +62,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!meta script=\"install/inc/js/download\"]]\n" -msgstr "" +msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/mac/usb-overview.it.po b/wiki/src/install/mac/usb-overview.it.po index f87e452d9b57334334fc893974c5d19e34fe082c..d1de8f803b878764d846b2b126ca3e7a09749e11 100644 --- a/wiki/src/install/mac/usb-overview.it.po +++ b/wiki/src/install/mac/usb-overview.it.po @@ -6,30 +6,23 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-30 19:48+0000\n" -"PO-Revision-Date: 2016-07-29 14:49+0200\n" -"Last-Translator: \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" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Install from macOS\"]]" msgstr "" #. type: Content of: outside any tag (error?) -#, fuzzy -#| msgid "" -#| "[[!meta title=\"Install from Mac using the command line\"]] [[!meta " -#| "robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet" -#| "\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" rel=" -#| "\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/overview" -#| "\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/" -#| "mac\" rel=\"stylesheet\" title=\"\"]] [[!inline pages=\"install/inc/" -#| "overview\" raw=\"yes\" sort=\"age\"]] [[" msgid "" "[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=" "\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" " @@ -38,13 +31,12 @@ msgid "" "\" rel=\"stylesheet\" title=\"\"]] [[!inline pages=\"install/inc/overview\" " "raw=\"yes\" sort=\"age\"]] [[" msgstr "" -"[[!meta title=\"Installare da Mac usando la riga di comando\"]] [[!meta " -"robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet" -"\"title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" rel=" -"\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/overview\" " -"rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/mac\" " -"rel=\"stylesheet\" title=\"\"]] [[!inline pages=\"install/inc/overview.it\" " -"raw=\"yes\" sort=\"age\"]] [[" +"[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"" +"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" " +"rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/" +"overview\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/" +"stylesheets/mac\" rel=\"stylesheet\" title=\"\"]] [[!inline pages=\"install/" +"inc/overview.it\" raw=\"yes\" sort=\"age\"]] [[" #. type: Content of: <div><div> msgid "Let's go!" diff --git a/wiki/src/install/mac/usb.de.po b/wiki/src/install/mac/usb.de.po index 2aaed5455e7f25893e85d81516b8f1114e75d60c..bbf2d4b0a90c1bbcabff7b14a574128b42466da5 100644 --- a/wiki/src/install/mac/usb.de.po +++ b/wiki/src/install/mac/usb.de.po @@ -7,14 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2018-09-07 18:25+0200\n" -"Last-Translator: Tails translators\n" +"PO-Revision-Date: 2020-01-15 21:29+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.1.1\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, fuzzy, no-wrap @@ -54,10 +55,11 @@ msgid "[[!inline pages=\"install/inc/steps/install_etcher_in_mac.inline\" raw=\" msgstr "[[!inline pages=\"install/inc/steps/clone.inline.de\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid "[[!inline pages=\"install/inc/steps/install_with_etcher.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"install/inc/steps/clone.inline.de\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_etcher.inline.de\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/mac/usb.fa.po b/wiki/src/install/mac/usb.fa.po index a75475d92ab6117351a55d4e935e7b9c38222ddb..970288a95c5245f5fabaa0903c7c1d605fcb52ee 100644 --- a/wiki/src/install/mac/usb.fa.po +++ b/wiki/src/install/mac/usb.fa.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-03-23 10:05+0000\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fa\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -49,16 +49,18 @@ msgid "[[!meta stylesheet=\"inc/stylesheets/mac\" rel=\"stylesheet\" title=\"\"] msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid "[[!inline pages=\"install/inc/steps/install_etcher_in_mac.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"install/inc/steps/clone.inline.fa\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" +"[[!inline pages=\"install/inc/steps/install_etcher_in_mac.inline.fa\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid "[[!inline pages=\"install/inc/steps/install_with_etcher.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"install/inc/steps/clone.inline.fa\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_etcher.inline.fa\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/mac/usb.it.po b/wiki/src/install/mac/usb.it.po index 91f71365c117864999ebac6930af50b4c93386fa..26e1e83bf71595d1db62979599aaed71aaa0cf2f 100644 --- a/wiki/src/install/mac/usb.it.po +++ b/wiki/src/install/mac/usb.it.po @@ -8,15 +8,15 @@ 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" -"PO-Revision-Date: 2019-11-16 12:00+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\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" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -49,12 +49,11 @@ msgid "[[!meta stylesheet=\"inc/stylesheets/mac\" rel=\"stylesheet\" title=\"\"] msgstr "[[!meta stylesheet=\"inc/stylesheets/mac\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!inline pages=\"install/inc/steps/install_with_etcher.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid "[[!inline pages=\"install/inc/steps/install_etcher_in_mac.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" -"[[!inline pages=\"install/inc/steps/install_with_etcher.inline\" raw=\"yes\" sort=\"age\"]]\n" -"\n" +"[[!inline pages=\"install/inc/steps/install_etcher_in_mac.inline.it\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/v2/Tails/amd64/stable/latest.json b/wiki/src/install/v2/Tails/amd64/stable/latest.json index fd4607cddb7b6420dcd0836726b86cca87716fe5..73113d77928603605199dfc1bd08e9dd6ffe058e 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": "5b672a59925d93bc6b173d03b5da333eaa1f0c9c619400b52213ad3de6973e30", + "sha256": "cf0024036fc33b8727450eac9bb54615bab099145ffc7228e1ff8dcc58da495f", "size": 1161822208, - "url": "http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.1/tails-amd64-4.1.img" + "url": "http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2.2/tails-amd64-4.2.2.img" } ], "type": "img" @@ -17,15 +17,15 @@ { "target-files": [ { - "sha256": "f5ad5d1314af0a0247ab995f80cc55cd9b219fade862d4954d5c3532fb0fe84a", + "sha256": "307be5c051a10920b9dfe0b3b4447eeabf0037c427081997017b58cdac0ac4a1", "size": 1151539200, - "url": "http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.1/tails-amd64-4.1.iso" + "url": "http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2.2/tails-amd64-4.2.2.iso" } ], "type": "iso" } ], - "version": "4.1" + "version": "4.2.2" } ], "product-name": "Tails" diff --git a/wiki/src/install/win.fa.po b/wiki/src/install/win.fa.po index 76918be313618dc28125abd583cfdb5c1cb78cf1..ab5d58321919393f5d8b57acf79a91087cd3f929 100644 --- a/wiki/src/install/win.fa.po +++ b/wiki/src/install/win.fa.po @@ -3,18 +3,20 @@ # 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" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-30 19:48+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Windows\"]]" @@ -66,7 +68,7 @@ msgstr "" #. type: Content of: <div><div> msgid "[[" -msgstr "" +msgstr "[[" #. type: Content of: <div><div><div><div> msgid "Install from Windows" diff --git a/wiki/src/install/win.tr.po b/wiki/src/install/win.tr.po index 5c20ed34a3ba2b7a947cdc319b47a6e6d45a3cef..80d2ad02dd24c95172c4b9cad2fb7e1eb283478a 100644 --- a/wiki/src/install/win.tr.po +++ b/wiki/src/install/win.tr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-30 19:48+0000\n" -"PO-Revision-Date: 2018-07-02 06:27+0000\n" +"PO-Revision-Date: 2020-01-17 08:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Windows\"]]" @@ -68,7 +68,7 @@ msgstr "" #. type: Content of: <div><div> msgid "[[" -msgstr "" +msgstr "[[" #. type: Content of: <div><div><div><div> msgid "Install from Windows" diff --git a/wiki/src/install/win/usb-overview.it.po b/wiki/src/install/win/usb-overview.it.po index 99c11dbb32bafe281bacb10cfef51f8b032e52b1..8c1e322b079066f8027c96e88776d86ac7ae4353 100644 --- a/wiki/src/install/win/usb-overview.it.po +++ b/wiki/src/install/win/usb-overview.it.po @@ -6,30 +6,23 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-30 19:48+0000\n" -"PO-Revision-Date: 2016-07-29 15:10+0200\n" -"Last-Translator: \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" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Install from Windows\"]]" msgstr "" #. type: Content of: outside any tag (error?) -#, fuzzy -#| msgid "" -#| "[[!meta title=\"Install from Windows\"]] [[!meta robots=\"noindex\"]] [[!" -#| "meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " -#| "stylesheet=\"inc/stylesheets/assistant\" rel=\"stylesheet\" title=\"\"]] " -#| "[[!meta stylesheet=\"inc/stylesheets/overview\" rel=\"stylesheet\" title=" -#| "\"\"]] [[!meta stylesheet=\"inc/stylesheets/windows\" rel=\"stylesheet\" " -#| "title=\"\"]] [[!inline pages=\"install/inc/overview\" raw=\"yes\" sort=" -#| "\"age\"]] [[" msgid "" "[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=" "\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" " @@ -38,13 +31,12 @@ msgid "" "windows\" rel=\"stylesheet\" title=\"\"]] [[!inline pages=\"install/inc/" "overview\" raw=\"yes\" sort=\"age\"]] [[" msgstr "" -"[[!meta title=\"Installa da Windows\"]] [[!meta robots=\"noindex\"]] [[!meta " -"stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"inc/stylesheets/assistant\" rel=\"stylesheet\" title=\"\"]] [[!" -"meta stylesheet=\"inc/stylesheets/overview\" rel=\"stylesheet\" title=\"\"]] " -"[[!meta stylesheet=\"inc/stylesheets/windows\" rel=\"stylesheet\" title=" -"\"\"]] [[!inline pages=\"install/inc/overview.it\" raw=\"yes\" sort=\"age" -"\"]] [[" +"[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"" +"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/assistant\" " +"rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/stylesheets/" +"overview\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"inc/" +"stylesheets/windows\" rel=\"stylesheet\" title=\"\"]] [[!inline pages=\"" +"install/inc/overview.it\" raw=\"yes\" sort=\"age\"]] [[" #. type: Content of: <div><div> msgid "Let's go!" diff --git a/wiki/src/install/win/usb.de.po b/wiki/src/install/win/usb.de.po index 1161b8dc70f3a2c3f4934799a9e6c7d4bb05fe84..60135582b18348f15e38510c73dbbf8b60a433a5 100644 --- a/wiki/src/install/win/usb.de.po +++ b/wiki/src/install/win/usb.de.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: \n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2018-09-06 18:16+0200\n" -"Last-Translator: Tails translators\n" +"PO-Revision-Date: 2020-01-15 21:29+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.1.1\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" "X-Poedit-Bookmarks: -1,25,-1,-1,-1,-1,-1,-1,-1,-1\n" #. type: Plain text @@ -48,16 +50,18 @@ msgid "[[!meta stylesheet=\"inc/stylesheets/windows\" rel=\"stylesheet\" title=\ msgstr "[[!meta stylesheet=\"inc/stylesheets/windows\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid "[[!inline pages=\"install/inc/steps/install_etcher_in_windows.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"install/inc/steps/clone.inline.de\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" +"[[!inline pages=\"install/inc/steps/install_etcher_in_windows.inline.de\" " +"raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid "[[!inline pages=\"install/inc/steps/install_with_etcher.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"install/inc/steps/clone.inline.de\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_etcher.inline.de\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/win/usb.fa.po b/wiki/src/install/win/usb.fa.po index 309f42375189033eb5312373b05b25f1f5c6ca40..749e6bee6572d122b22fab321f3ea1e6f510cec9 100644 --- a/wiki/src/install/win/usb.fa.po +++ b/wiki/src/install/win/usb.fa.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-11-21 13:24+0000\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fa\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -44,6 +44,8 @@ msgstr "" #, no-wrap msgid "[[!meta stylesheet=\"inc/stylesheets/steps\" rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"inc/stylesheets/steps\" rel=\"stylesheet\" title=\"\"]]" +"\n" #. type: Plain text #, no-wrap @@ -51,16 +53,18 @@ msgid "[[!meta stylesheet=\"inc/stylesheets/windows\" rel=\"stylesheet\" title=\ msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid "[[!inline pages=\"install/inc/steps/install_etcher_in_windows.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"install/inc/steps/clone.inline.fa\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" +"[[!inline pages=\"install/inc/steps/install_etcher_in_windows.inline.fa\" " +"raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid "[[!inline pages=\"install/inc/steps/install_with_etcher.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"install/inc/steps/clone.inline.fa\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_etcher.inline.fa\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/win/usb.it.po b/wiki/src/install/win/usb.it.po index aef4c7a0666a65eb2f95f15f1b9fb7400366d98e..acca5ceaed3936dd7e1771c468197cbf425c4778 100644 --- a/wiki/src/install/win/usb.it.po +++ b/wiki/src/install/win/usb.it.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-11-16 12:00+0000\n" +"PO-Revision-Date: 2020-01-15 21:29+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" "Language: it\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -49,12 +49,11 @@ msgid "[[!meta stylesheet=\"inc/stylesheets/windows\" rel=\"stylesheet\" title=\ msgstr "[[!meta stylesheet=\"inc/stylesheets/windows\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!inline pages=\"install/inc/steps/install_with_etcher.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid "[[!inline pages=\"install/inc/steps/install_etcher_in_windows.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" -"[[!inline pages=\"install/inc/steps/install_with_etcher.inline\" raw=\"yes\" sort=\"age\"]]\n" -"\n" +"[[!inline pages=\"install/inc/steps/install_etcher_in_windows.inline.it\" " +"raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/win/usb.pt.po b/wiki/src/install/win/usb.pt.po index 99b3c2771eb54d6dbbf5b5d8e60becbbbbcbd370..be91306b47c86262457cbdf2425b35a11c931068 100644 --- a/wiki/src/install/win/usb.pt.po +++ b/wiki/src/install/win/usb.pt.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-24 10:32+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" "Language: pt\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -49,10 +49,11 @@ msgid "[[!meta stylesheet=\"inc/stylesheets/windows\" rel=\"stylesheet\" title=\ msgstr "[[!meta stylesheet=\"inc/stylesheets/windows\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!inline pages=\"install/inc/steps/install_with_etcher.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid "[[!inline pages=\"install/inc/steps/install_etcher_in_windows.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"install/inc/steps/install_with_etcher.inline.pt\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" +"[[!inline pages=\"install/inc/steps/install_etcher_in_windows.inline.pt\" " +"raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/jobs.mdwn b/wiki/src/jobs.mdwn index 9dfb6a6f9691cd06848d340b92c65eaeb6915564..e966873a20b78febd0b6197fd59788c9771ebd3e 100644 --- a/wiki/src/jobs.mdwn +++ b/wiki/src/jobs.mdwn @@ -27,16 +27,16 @@ We don't have any open full-time or part-time position at the moment. Consultancy jobs ================ -<!-- - We don't have any open consultancy job at the moment. ---> +<!-- <ul class="open-jobs"> [[!inline pages="page(jobs/*) and tagged(job/consultancy) and tagged(job/open)" sort="age" template="job" feeds="no"]] </ul> +--> + Learn about new opportunities ============================= diff --git a/wiki/src/jobs/illustration-how-tails-work.mdwn b/wiki/src/jobs/illustration-how-tails-work.mdwn deleted file mode 100644 index 4da19419f0b4fc9eff88abaaa2243682326f6c7f..0000000000000000000000000000000000000000 --- a/wiki/src/jobs/illustration-how-tails-work.mdwn +++ /dev/null @@ -1,2 +0,0 @@ -[[!meta title="Redirecting…"]] -[[!meta redir="https://tails.boum.org/jobs/illustrations_how_tails_work/"]] diff --git a/wiki/src/jobs/illustrations_how_tails_work.mdwn b/wiki/src/jobs/illustrations_how_tails_work.mdwn index adc494bd3c6d5db7b80df0c894579d42a597f186..501880cad02ecf2e5aa322fd721feb7d15428c48 100644 --- a/wiki/src/jobs/illustrations_how_tails_work.mdwn +++ b/wiki/src/jobs/illustrations_how_tails_work.mdwn @@ -2,11 +2,10 @@ [[!meta stylesheet="jobs" rel="stylesheet" title=""]] [[!tag job/consultancy]] -[[!tag job/open]] [[!meta robots="noindex"]] -**This is a design brief for a consultancy job.** +**This job application is closed.** [[!toc levels=2]] @@ -37,15 +36,11 @@ The contractor will create illustrations to aid in communicating: 6 small illustrations or icons, around 200px. - See the [[draft description and benefits for the homepage|blueprint/explain_tails/homepage]] - - On the 'How Tails works' page: the main properties and features of Tails 10 medium-size illustrations, around 400px. - See the [[Draft text for the 'How Tails works' page|blueprint/explain_tails/about]] - The contractor will work as a team with the Tails UX designer: - The contractor will be responsible for all the illustration work. diff --git a/wiki/src/local.css b/wiki/src/local.css index 1e59b9d4953ebd8c0b8745b1482f9a47e724d6ae..1fcde47f9ddd15cfcf934230fa69a35d23fd65a3 100644 --- a/wiki/src/local.css +++ b/wiki/src/local.css @@ -39,9 +39,6 @@ Table of Content: /* Load RTL stylesheet */ @import url("local.rtl.css"); -/* Load stylesheet for donation campaign */ -@import url("donate-banner.css"); - /* Fonts */ @font-face { font-family: "Source Sans Pro Regular"; src: url("lib/SourceSansPro-Regular.ttf"); } diff --git a/wiki/src/news.id.po b/wiki/src/news.id.po index 982ea156efab488eb6ad14131b03ace4136714b2..4a5edd67584915a6cc5633b8c432863e64101b9d 100644 --- a/wiki/src/news.id.po +++ b/wiki/src/news.id.po @@ -8,14 +8,15 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-07-30 19:48+0000\n" -"PO-Revision-Date: 2018-06-10 16:23+0200\n" -"Last-Translator: Tails translators\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" +"Last-Translator: Caesar <pinkpidgeon@protonmail.com>\n" "Language-Team: \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.11\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"News\"]]" @@ -45,6 +46,9 @@ msgid "" "(currentlang() or news/report_2* or news/test_*)\" show=\"10\" sort=\"-" "meta(date) age -path\"]]" msgstr "" +"[[!inline pages=\"page(news/*) and !news/*/* and !news/discussion and " +"(currentlang() or news/report_2* or news/test_*)\" show=\"10\" sort=\"" +"-meta(date) age -path\"]]" #. type: Content of: <div> msgid "" @@ -53,3 +57,7 @@ msgid "" "\"10\" feeds=\"yes\" feedonly=\"yes\" feedfile=\"emails\" sort=\"-meta(date) " "age -path\"]]" msgstr "" +"[[!inline pages=\"page(news/*) and !news/*/* and !news/discussion and " +"(currentlang() or news/report_2* or news/test_*) and tagged(announce)\" show=" +"\"10\" feeds=\"yes\" feedonly=\"yes\" feedfile=\"emails\" sort=\"-meta(date) " +"age -path\"]]" diff --git a/wiki/src/news/2018-fundraiser.id.po b/wiki/src/news/2018-fundraiser.id.po index 9ab749be7b031f899eb2fba738964c80820ec60e..2797df93482a924c71ca56192795a75f8b44c3de 100644 --- a/wiki/src/news/2018-fundraiser.id.po +++ b/wiki/src/news/2018-fundraiser.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-12-10 16:29+0100\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/2019-fundraiser.fr.po b/wiki/src/news/2019-fundraiser.fr.po index f4aa49f7a99d45d2ad57643c52268d9546482f01..bddb37986268446488f74642a047a560ce29e012 100644 --- a/wiki/src/news/2019-fundraiser.fr.po +++ b/wiki/src/news/2019-fundraiser.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-07 17:12+0000\n" -"PO-Revision-Date: 2019-11-09 18:05+0000\n" +"PO-Revision-Date: 2020-01-12 20:26+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -42,6 +42,9 @@ msgid "" "The mission of Tails is to empower people worldwide by giving out an " "operating system that protects from surveillance and censorship." msgstr "" +"La mission de Tails est d'encapaciter les personnes du monde entier en leur " +"fournissant un système d'exploitation qui les protègent de la surveillance " +"et de la censure." #. type: Plain text msgid "" @@ -49,6 +52,10 @@ msgid "" "lives, keeping in mind that the most vulnerable and oppressed people are " "also the most in need of privacy and security:" msgstr "" +"Nous fabriquons une technologie libératrice qui met les personnes en " +"situation de contrôler leur vie numérique, en gardant à l'esprit que les " +"personnes les plus vulnérables et oppressées sont aussi celles qui ont le " +"plus besoin de confidentialité et de sécurité :" #. type: Bullet: '- ' msgid "" @@ -102,11 +109,16 @@ msgid "" "for giving to an anti-surveillance tool or simply because they don't have " "the money." msgstr "" +"Toutefois, Tails à besoin de fonds pour poursuivre le combat et nous savons " +"que les personnes qui ont le plus besoin de Tails ne peuvent pas toujours " +"donner : parce qu'elles pourraient avoir des ennuis pour avoir donné à un " +"outil de lutte contre la surveillance ou simplement parce qu'elles n'ont pas " +"d'argent." #. type: Title = #, no-wrap msgid "Why supporting Tails is more important than ever\n" -msgstr "" +msgstr "Pourquoi soutenir Tails est plus important que jamais\n" #. type: Plain text msgid "" @@ -117,6 +129,13 @@ msgid "" "journalists can work in complete security, continues to decline, while " "authoritarian regimes continue to tighten their grip on the media." msgstr "" +"Le [Classement mondial de la liberté de la presse 2019](https://rsf.org/fr/" +"classement-mondial-de-la-liberte-de-la-presse-2019-la-mecanique-de-la-peur) " +"compilé par Reporters sans frontières (RSF) montre comment la haine des " +"journalistes a dégénéré en violence, contribuant à augmenter la peur. Le " +"nombre de pays considéré comme sûrs, dans lesquels les journalistes peuvent " +"travailler complètement en sécurité, continue de diminuer, tandis que les " +"régimes autoritaires continuent de renforcer leur emprise sur les médias." #. type: Plain text msgid "" @@ -129,6 +148,15 @@ msgid "" "arbitrary detention, sometimes to torture and possibly to extrajudicial " "killings." msgstr "" +"Comme l'indique le [rapport 2019 du Rapporteur spécial des Nations Unies " +"David Kaye](https://daccess-ods.un.org/access.nsf/Get?Open&DS=A/HRC/41/" +"35&Lang=F), la surveillance des individus – souvent des journalistes, des " +"activistes, des opposants, des critiques et d'autres exerçant leur droit à " +"la liberté d'expression – prospère en raison de la faiblesse des contrôles " +"sur les exportations et des transferts de technologies de surveillance aux " +"gouvernements répressifs. Cette surveillance est connue pour conduire à des " +"détentions arbitraires, quelquefois à de la torture et à de possibles " +"meurtres extrajudiciaires." #. type: Plain text msgid "" @@ -137,6 +165,11 @@ msgid "" "one of the best tool to protect from while reducing the risk of dangerous " "mistakes." msgstr "" +"Ces technologies incluent des diffusions de logiciels malveillants, des " +"interceptions de communications réseau et de l'inspection profonde de " +"paquets (DPI - Deep Packet Inspection) ; toutes technologies pour lesquelles " +"Tails est l'un des meilleurs outils pour s'en protéger en réduisant les " +"risques de dangereuses erreurs." #. type: Plain text msgid "" @@ -145,11 +178,15 @@ msgid "" "Tails are more needed than ever right now, in an act of empowerment and self-" "defense." msgstr "" +"Un cadre légal pour réguler cette industrie de la surveillance, comme le " +"recommande David Kaye, pourrait être utile dans le futur. Mais les outils de " +"liberté numérique comme Tails sont aujourd'hui plus que jamais nécessaires, " +"dans un acte d'autonomisation et d'autodéfense." #. type: Title = #, no-wrap msgid "You are our best guarantee\n" -msgstr "" +msgstr "Vous êtes notre meilleure garantie\n" #. type: Plain text msgid "" @@ -177,6 +214,9 @@ msgid "" "We are extremely proud that our primary source of funding in the last years " "has been donations from passionate people like you. Let's keep it this way!" msgstr "" +"Nous avons la fierté que notre source principale de fonds de ces dernières " +"années soit des dons de personnes passionnées comme vous. Que les choses " +"restent ainsi !" #. type: Plain text msgid "In 2017–2019, our money came from:" @@ -204,11 +244,43 @@ msgid "" "</div>\n" "</div>\n" msgstr "" +"<div class=\"chart\">\n" +"<div class=\"chart-content\">\n" +"<svg width=\"75%\" height=\"75%\" viewBox=\"0 0 64 64\">\n" +"<circle cx=\"32\" cy=\"32\" r=\"15.91549430918954\" fill=\"transparent\" " +"stroke=\"#5da5da\" stroke-width=\"32\" stroke-dasharray=\"36 64\" stroke-" +"dashoffset=\"25\" aria-labelledby=\"\"></circle>\n" +"<circle cx=\"32\" cy=\"32\" r=\"15.91549430918954\" fill=\"transparent\" " +"stroke=\"#faa43a\" stroke-width=\"32\" stroke-dasharray=\"30 70\" stroke-" +"dashoffset=\"89\" aria-labelledby=\"\"></circle>\n" +"<circle cx=\"32\" cy=\"32\" r=\"15.91549430918954\" fill=\"transparent\" " +"stroke=\"#60bd68\" stroke-width=\"32\" stroke-dasharray=\"25 75\" stroke-" +"dashoffset=\"59\" aria-labelledby=\"\"></circle>\n" +"<circle cx=\"32\" cy=\"32\" r=\"15.91549430918954\" fill=\"transparent\" " +"stroke=\"#f17cb0\" stroke-width=\"32\" stroke-dasharray=\"9 91\" stroke-" +"dashoffset=\"34\" aria-labelledby=\"\"></circle>\n" +"</svg>\n" +"</div>\n" +"<div class=\"chart-key\">\n" +"<ul class=\"chart-key-list\">\n" +"<li class=\"blue\"><div class=\"key-label\">Personnes passionnées comme " +"vous</div><div class=\"key-percent\">(36%)</div></li>\n" +"<li class=\"orange\"><div class=\"key-label\">Fondations & ONG</div><div " +"class=\"key-percent\">(30%)</div><br/>comme Mozilla ou the Handshake " +"Foundation</li>\n" +"<li class=\"green\"><div class=\"key-label\">Entités liées au gouvernement " +"des États-Unis</div><div class=\"key-percent\">(25%)</div><br/>comme the " +"Open Technology Fund ou the ISC Project</li>\n" +"<li class=\"pink\"><div class=\"key-label\">Entreprises privées</div><div " +"class=\"key-percent\">(9%)</div><br/>comme DuckDuckGo ou Lush</li>\n" +"</ul>\n" +"</div>\n" +"</div>\n" #. type: Title = #, no-wrap msgid "New anonymous ways to donate\n" -msgstr "" +msgstr "Nouvelles méthodes anonymes pour faire un don\n" #. type: Plain text msgid "" @@ -216,10 +288,14 @@ msgid "" "some of you, we are adding this year 3 new ways to donate anonymously to " "Tails." msgstr "" +"Parce que nous savons qu'avoir la possibilité de faire un don anonymement " +"est très importante pour certaines personnes parmi vous, nous avons ajouté " +"cette année trois nouvelles méthodes pour faire un don de manière anonyme à " +"Tails." #. type: Plain text msgid "You can send us:" -msgstr "" +msgstr "Vous pouvez nous envoyer :" #. type: Plain text msgid "- Monero:" @@ -245,7 +321,7 @@ msgstr "" #. type: Plain text msgid "- Cash by post:" -msgstr "" +msgstr "- du liquide par courrier postal :" #. type: Plain text #, no-wrap @@ -255,10 +331,14 @@ msgid "" " 04177 Leipzig<br/>\n" " Germany\n" msgstr "" +" Weber<br/>\n" +" Merseburger Strasse 95<br/>\n" +" 04177 Leipzig<br/>\n" +" Allemagne\n" #. type: Plain text msgid "Please take a minute to donate to Tails today!" -msgstr "" +msgstr "Merci de prendre une minute pour donner à Tails aujourd'hui !" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/2019-fundraiser.id.po b/wiki/src/news/2019-fundraiser.id.po index 0ac4092d3a9ceb22a51ccd898bf79a6268a9a6fd..6e98f1d88ee721fb3f8fc29298a4e07cbaa0e422 100644 --- a/wiki/src/news/2019-fundraiser.id.po +++ b/wiki/src/news/2019-fundraiser.id.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-07 17:12+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -29,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/33c3.id.po b/wiki/src/news/33c3.id.po index cc112ef9a98b320a0df197dfd91053a16254201d..31f22a8f1bc06eaa1fff73eb9d8d21253123e7b4 100644 --- a/wiki/src/news/33c3.id.po +++ b/wiki/src/news/33c3.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:45+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/IP_leakage_with_Icedove.id.po b/wiki/src/news/IP_leakage_with_Icedove.id.po index 36523c1c2634feb4d2d42ee9704ea9958d98ca19..80ea338a6abf92d3e0738f28cb9e527eacf771cf 100644 --- a/wiki/src/news/IP_leakage_with_Icedove.id.po +++ b/wiki/src/news/IP_leakage_with_Icedove.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:45+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/Join_us_at_the_Tails_HackFest_2014.id.po b/wiki/src/news/Join_us_at_the_Tails_HackFest_2014.id.po index 149eb17df1460ba79cfe64c21208e2f07cd3eea6..534ac6779e6e6ad0b0f41e68a11dbff5f4463a84 100644 --- a/wiki/src/news/Join_us_at_the_Tails_HackFest_2014.id.po +++ b/wiki/src/news/Join_us_at_the_Tails_HackFest_2014.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/Mac_and_PC_UEFI_hardware_needed.de.po b/wiki/src/news/Mac_and_PC_UEFI_hardware_needed.de.po index d3d43c23af8aebf08234d11d67e8ca6ee60ab533..130a9455eb095bd17d96d1f5cc3526a1b158eb78 100644 --- a/wiki/src/news/Mac_and_PC_UEFI_hardware_needed.de.po +++ b/wiki/src/news/Mac_and_PC_UEFI_hardware_needed.de.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-07-16 07:52+0000\n" +"PO-Revision-Date: 2020-01-15 21:29+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: de\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -54,7 +54,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/news/Mac_and_PC_UEFI_hardware_needed.id.po b/wiki/src/news/Mac_and_PC_UEFI_hardware_needed.id.po index b1ae0bd9e1573905c124c14b0b72cc564c5df0d7..300c9398264db409810588b939044a63c9061d73 100644 --- a/wiki/src/news/Mac_and_PC_UEFI_hardware_needed.id.po +++ b/wiki/src/news/Mac_and_PC_UEFI_hardware_needed.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -54,7 +54,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/news/Mac_and_PC_UEFI_hardware_needed.pt.po b/wiki/src/news/Mac_and_PC_UEFI_hardware_needed.pt.po index 62057b3758b92669096ab0aa82a3e03c1a9355cc..7caa5846f57fdb829755d141ef4037dbc4b7f270 100644 --- a/wiki/src/news/Mac_and_PC_UEFI_hardware_needed.pt.po +++ b/wiki/src/news/Mac_and_PC_UEFI_hardware_needed.pt.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2018-02-08 19:45+0000\n" -"Last-Translator: Tails translators <amnesia@boum.org\n" +"PO-Revision-Date: 2019-12-22 21:04+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" "mac_and_pc_uefi_hardware_needed/pt/>\n" "Language: pt\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/On_0days_exploits_and_disclosure.id.po b/wiki/src/news/On_0days_exploits_and_disclosure.id.po index 1a15861b802f7d26f86aab73e957f276596c786b..140ffe2483217afb8ee465cd596a85e312b99992 100644 --- a/wiki/src/news/On_0days_exploits_and_disclosure.id.po +++ b/wiki/src/news/On_0days_exploits_and_disclosure.id.po @@ -6,14 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -28,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text msgid "" diff --git a/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.id.po b/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.id.po index bebb9cd60ff3f052932783774daa445a9a1afaa0..6ee489ba7233805076080021da04898ea7709f01 100644 --- a/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.id.po +++ b/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/Tails_HackFest_2014.id.po b/wiki/src/news/Tails_HackFest_2014.id.po index e95d5264c069170164e950014a19bbf2e7a1aa7c..3f6e823b61187efe0bb864fb26b7a113b8b5c539 100644 --- a/wiki/src/news/Tails_HackFest_2014.id.po +++ b/wiki/src/news/Tails_HackFest_2014.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/achievements_in_2018.id.po b/wiki/src/news/achievements_in_2018.id.po index f24d774067486958b5ffb2ff2224a77a80a60878..f02d6c0736869f436b7b240badd83cea22536e11 100644 --- a/wiki/src/news/achievements_in_2018.id.po +++ b/wiki/src/news/achievements_in_2018.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-11-22 14:52+0000\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/achievements_in_2019.ar.po b/wiki/src/news/achievements_in_2019.ar.po index 436260d9f032962bbd82eaf42b769df332ec2ddf..5f5867c6d9af4355267f53e9e6aca763db269661 100644 --- a/wiki/src/news/achievements_in_2019.ar.po +++ b/wiki/src/news/achievements_in_2019.ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-31 13:06+0000\n" -"PO-Revision-Date: 2019-11-22 08:50+0000\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ar\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -36,7 +36,7 @@ msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap msgid "[[!tag announce]]\n" -msgstr "" +msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" diff --git a/wiki/src/news/achievements_in_2019.fa.po b/wiki/src/news/achievements_in_2019.fa.po index e8dfa10ab5e04230a851ef36692bcaf3acacba8b..6c267872f46531be6414c54430ea6c2b3288a8ae 100644 --- a/wiki/src/news/achievements_in_2019.fa.po +++ b/wiki/src/news/achievements_in_2019.fa.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-31 13:06+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -34,7 +35,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!tag announce]]\n" -msgstr "" +msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" diff --git a/wiki/src/news/achievements_in_2019.fr.po b/wiki/src/news/achievements_in_2019.fr.po index fa3d623ca3d2b57afadaab16558385360124826d..0df86be45729c56baba0d6173b864363e15cccb0 100644 --- a/wiki/src/news/achievements_in_2019.fr.po +++ b/wiki/src/news/achievements_in_2019.fr.po @@ -7,20 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-31 13:06+0000\n" -"PO-Revision-Date: 2019-11-16 16:25+0000\n" -"Last-Translator: xin <xin@riseup.net>\n" +"PO-Revision-Date: 2020-01-04 11:52+0000\n" +"Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Our achievements in 2019\"]]\n" -msgstr "" +msgstr "[[!meta title=\"Nos réalisations en 2019\"]]\n" #. type: Plain text #, no-wrap @@ -52,6 +52,8 @@ msgid "" "If you liked our work in 2019, please take a minute to donate and make Tails " "thrive in 2020!" msgstr "" +"Si vous avez aimé notre travail en 2019, merci de prendre une minute pour " +"faire un don et faire prospérer Tails en 2020 !" #. type: Title = #, no-wrap diff --git a/wiki/src/news/achievements_in_2019.id.po b/wiki/src/news/achievements_in_2019.id.po index b9b44c2ecfa5f7431ce218a795e79abf2c7bce27..6cbe5e889d7338777285dd3d9a757ba9b0ad0bc7 100644 --- a/wiki/src/news/achievements_in_2019.id.po +++ b/wiki/src/news/achievements_in_2019.id.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-31 13:06+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -29,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/additional_software_ux_design.fr.po b/wiki/src/news/additional_software_ux_design.fr.po index 7cd988fc82e1789f7b200508e8ba2258eb9589d7..01aeecce28d30bbf66409fb45a18453b7f02bee1 100644 --- a/wiki/src/news/additional_software_ux_design.fr.po +++ b/wiki/src/news/additional_software_ux_design.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-09-21 09:55+0000\n" +"PO-Revision-Date: 2020-01-24 08:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: French <http://translate.tails.boum.org/projects/tails/" "additional_software_ux_design/fr/>\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -59,19 +59,19 @@ msgstr "" #. type: Plain text msgid "The tests will take place in Berlin (Wedding) in January on:" -msgstr "" +msgstr "Les tests auront lieu à Berlin (Wedding) en janvier les :" #. type: Plain text msgid "- Saturday 27 - Sunday 28 - Monday 29" -msgstr "" +msgstr "- Samedi 27 - Dimanche 28 - Lundi 29" #. type: Plain text msgid "Plan to stay with us for 1 hour." -msgstr "" +msgstr "Prévoyez de rester avec nous pendant 1 heure." #. type: Plain text msgid "We will give you a Tails T-shirt as a token of our thanks." -msgstr "" +msgstr "Nous vous donnerons un T-shirt Tails en remerciement." #. type: Plain text #, no-wrap @@ -92,3 +92,5 @@ msgid "" "And if you can't come, maybe you can share this with 2-3 other people in " "Berlin?" msgstr "" +"Et si vous ne pouvez pas venir, vous pouvez peut-être partager cela avec 2 " +"ou 3 autres personnes à Berlin ?" diff --git a/wiki/src/news/additional_software_ux_design.id.po b/wiki/src/news/additional_software_ux_design.id.po index 6fd48c78f27574d3070da1c51f45308368a10464..353b1ae6ad26ed099ee363beb5e21122f7204162 100644 --- a/wiki/src/news/additional_software_ux_design.id.po +++ b/wiki/src/news/additional_software_ux_design.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/amnesia_may_now_work_on_the_Mac.id.po b/wiki/src/news/amnesia_may_now_work_on_the_Mac.id.po index c82533448fce5cccc905caa6357d381fd57d5000..41856541c8695493a52834064c6c40c3121019e9 100644 --- a/wiki/src/news/amnesia_may_now_work_on_the_Mac.id.po +++ b/wiki/src/news/amnesia_may_now_work_on_the_Mac.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/and_the_winner_is.fr.po b/wiki/src/news/and_the_winner_is.fr.po index 9448379c761ba22cf8c890c2a12e30f7dc9c63ff..51cfc2447e0a83afb32dc9608886073fa6ba4f87 100644 --- a/wiki/src/news/and_the_winner_is.fr.po +++ b/wiki/src/news/and_the_winner_is.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-09-21 10:50+0000\n" +"PO-Revision-Date: 2020-01-02 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -78,7 +78,7 @@ msgstr "" #. type: Title = #, no-wrap msgid "Top 7\n" -msgstr "" +msgstr "Top 7\n" #. type: Plain text msgid "Six other great proposals made it to the top 7:" diff --git a/wiki/src/news/and_the_winner_is.id.po b/wiki/src/news/and_the_winner_is.id.po index 02ed05f3ee821d98196653302c82e567a11dc1ce..bff8a1b5bf76592dcb0ab7f7d74a6504aaa60bd6 100644 --- a/wiki/src/news/and_the_winner_is.id.po +++ b/wiki/src/news/and_the_winner_is.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:45+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/call-for-translations.fr.po b/wiki/src/news/call-for-translations.fr.po index 7c20a0adff1cbb93b90fdb9864484f98647ae3a6..5a3856d16749db639c50c7d70938cc052ec004b1 100644 --- a/wiki/src/news/call-for-translations.fr.po +++ b/wiki/src/news/call-for-translations.fr.po @@ -7,20 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-11-06 08:52+0000\n" -"PO-Revision-Date: 2019-11-15 16:19+0000\n" -"Last-Translator: Chre <tor@renaudineau.org>\n" +"PO-Revision-Date: 2020-01-10 16:11+0000\n" +"Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Translate Tails: Help wanted\"]]\n" -msgstr "" +msgstr "[[!meta title=\"Traduire Tails : nous avons besoin d'aide\"]]\n" #. type: Plain text #, no-wrap @@ -37,6 +37,8 @@ msgid "" "We are happy to announce the launch of our [translation " "platform](https://translate.tails.boum.org/)." msgstr "" +"Nous avons le plaisir d'annoncer le lancement de notre [plate-forme de " +"traduction](https://translate.tails.boum.org/)." #. type: Plain text msgid "" @@ -48,6 +50,14 @@ msgid "" "Tails, updating and translating the documentation into more languages is " "welcome and needed." msgstr "" +"Tails est un outil prêt à l'emploi qui à pour objectif d'aider les personnes " +"à préserver leur vie privée et leur anonymat en ligne. Il est fourni avec un " +"[site web et de la documentation](https://tails.boum.org) qui sont " +"actuellement traduits dans six autres langues que l'anglais : persan, " +"français, allemand, italien, portugais et espagnol. Pour aider plus de " +"personnes à travers le monde qui courent des risques à comprendre et " +"utiliser Tails, mettre à jour et traduire la documentation dans davantage de " +"langues est bienvenue et nécessaire." #. type: Plain text msgid "" @@ -59,6 +69,13 @@ msgid "" "make sure to read our [[documentation for " "translators|/contribute/how/translate/with_translation_platform/]]." msgstr "" +"C'est pourquoi nous avons fait un énorme effort pour mettre en place une " +"façon plus simple de traduire la documentation : bienvenue à notre [plate-" +"forme de traduction](https://translate.tails.boum.org/). Après avoir [créé " +"un compte](https://translate.tails.boum.org/accounts/register/) vous pouvez " +"immédiatement commencer à suggérer des traductions ! Pour plus de détails " +"sur comment commencer, prenez soin de lire notre [[documentation sur la " +"traduction|/contribute/how/translate/with_translation_platform/]]." #. type: Plain text msgid "" @@ -67,6 +84,11 @@ msgid "" "valuable to our user base: Arabic, Farsi, French, German, Hindi, Indonesian, " "Italian, Portuguese, Russian, Simplified Chinese, Spanish, and Turkish." msgstr "" +"Nous cherchons plus particulièrement à traduire un ensemble de [[langues|/" +"contribute/how/translate/#tier-1-languages]] que nous considérons comme " +"utiles à notre base de personnes utilisant Tails : arabe, persan, français, " +"allemand, indi, indonésien, italien, portugais, russe, chinois simplifié, " +"espagnol et turc." #. type: Plain text msgid "" @@ -74,6 +96,9 @@ msgid "" "help|/contribute/how/translate/with_translation_platform#getting-help]] if " "you have further questions or experience technical problems." msgstr "" +"Merci de consulter la section [[Getting help|/contribute/how/translate/" +"with_translation_platform#getting-help]] si vous avez d'autres questions ou " +"que vous rencontrez des problèmes techniques." #. type: Plain text msgid "Thank you for your contribution!" diff --git a/wiki/src/news/call-for-translations.id.po b/wiki/src/news/call-for-translations.id.po index 678848e58052c8ff61e5f08488be4d22c112d42f..955d5a6a17cb419fc9f79e82297ae46fdbb870de 100644 --- a/wiki/src/news/call-for-translations.id.po +++ b/wiki/src/news/call-for-translations.id.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-11-06 08:52+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -29,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text msgid "" diff --git a/wiki/src/news/celebrating_10_years.ar.po b/wiki/src/news/celebrating_10_years.ar.po new file mode 100644 index 0000000000000000000000000000000000000000..1df6f0456c87b4f28449c82c8c11489ad3dcee37 --- /dev/null +++ b/wiki/src/news/celebrating_10_years.ar.po @@ -0,0 +1,593 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-03 10:46+0000\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Celebrating 10 years of Tails!\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Mon, 15 Dec 2019 20:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"In 2019, we are especially proud of celebrating with you the 10 years of " +"Tails." +msgstr "" + +#. type: Plain text +msgid "" +"The first release of Tails, back then *amnesia*, was announced in 2009. " +"Since then we released 98 versions of Tails, which were used more than 40 " +"million times." +msgstr "" + +#. type: Plain text +msgid "" +"Here are some stories about how it all started and some vintage screenshots. " +"But first of all, the birthday cake!" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<pre style=\"width: 29em;\">\n" +" _____\n" +" |_|_|_|\n" +" | . . |\n" +" |_____|\n" +" ´ `\n" +" | |\n" +" | :-) |\n" +" {} {}\n" +" || ||\n" +" _||_______||_\n" +" {} {~ ~ ~ ~ ~ ~ ~} {}\n" +" || { ~ ~ ~ ~ ~ ~ } ||\n" +" __||__{_____________}__||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" {} { H a p p y \\} {}\n" +" || {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\} ||\n" +" __||_{___________________________}_||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" { B i r t h d a y }\n" +" { ! ! ! T a i ls ! ! ! }\n" +" {/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/}\n" +" {_______________________________________}\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</pre>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2009–2010: amnesia, T(A)ILS, and their ancestors\n" +msgstr "" + +#. type: Plain text +msgid "" +"Today, Tails is based on Debian, Tor, and GNOME. We inherit from their work " +"and try to contribute back in order to create a healthy ecosystem of " +"reliable, secure, and usable tools." +msgstr "" + +#. type: Plain text +msgid "" +"When we started the *amnesia* project back in 2009, other projects before us " +"paved the way to what is Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[Knoppix](http://www.knoppix.org/), born in 2000 and still alive today, was " +"the first popular live Linux distribution. Back then, it was a " +"groundbreaking achievement to be able to start and use Linux without going " +"through lengthy, very complex, and uncertain Linux install \"parties\". " +"Knoppix was primarily designed for convenience and diagnosis." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." +"net:80/download/ele/), born in 2005 and based on Damn Small Linux, [Anonym." +"OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/" +"projects.html), born in 2006 and based on OpenBSD, and [Incognito](https://" +"web.archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/" +"incognito/index.php?option=com_content&task=view&id=28&Itemid=41), born in " +"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 "" + +#. type: Plain text +#, no-wrap +msgid "" +" *Incognito*\n" +" was the first live operating system to include a full set of\n" +" applications preconfigured to go through Tor (browser, email\n" +" client, IRC client, etc.), offer a persistent *Home*\n" +" directory, and even allow hosting onion services.\n" +" *Incognito* was also the first live operating system to receive an\n" +" [official recognition from the Tor\n" +" Project](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement).\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" The original author of *Incognito*, *Pat Double*, resigned in 2007 and *anonym*, who\n" +" still works for Tails today, took over the maintenance.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"On August 16 2009, *intrigeri* announced the first release of *amnesia* on " +"the [*tor-talk* mailing list](https://lists.torproject.org/pipermail/tor-" +"talk/2009-August/002667.html)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"In March 2010, *Incognito* was declared dead and *amnesia* its \"[spiritual " +"successor](https://web.archive.org/web/20100728224716/http://www." +"anonymityanywhere.com:80/incognito)\". Some weeks later, *amnesia* would be " +"renamed *T(A)ILS*, *The Amnesic Incognito Live System*, to act the fusion " +"between *amnesia* and *Incognito*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We quickly realized that having parenthesis in our name looked very\n" +" radical but was quite confusing and finally settled on *Tails* in 2011.\n" +" Eight years later, we still see most people on the Internet write it\n" +" TAILS though it's never been written in all caps on our website.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Hey people, it's Tails not TAILS!\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how *amnesia* 0.2 and our website looked like in 2009. The browser " +"was *Iceweasel* with *Tor Button* and the Tor controller was *TorK*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img amnesia-0.2.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2011-2014: core features, Tails 1.0, and public recognition\n" +msgstr "" + +#. type: Plain text +msgid "" +"Until Tails 1.0 (April 2014), we would develop most of the core features " +"that make Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc=" +"\"Fedora Live USB Creator\"]]" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Persistence**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Tails Greeter**, our welcome screen" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Automatic upgades**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**MAC Spoofing**" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**MAT (Metadata Anonymization Toolkit)**, which was developed by Julien " +"Voisin as a Google Summer of Code with our help in 2011." +msgstr "" + +#. type: Plain text +msgid "" +"To support this intense development and the increased responsibility on our " +"shoulders, we accepted our first grant, from the *Swedish International " +"Development Agency* in 2011 and started paying for some of the development " +"work." +msgstr "" + +#. type: Plain text +msgid "" +"In October 2012, Tails was started around 2 500 times a day, 10 times " +"less than today." +msgstr "" + +#. type: Plain text +msgid "" +"In June 2013, Edward Snowden would reveal thousands of classified documents " +"on the surveillance programs of the NSA. Tails got mentioned by famous " +"technologists [Bruce Schneier](https://www.theguardian.com/world/2013/sep/05/" +"nsa-how-to-remain-secure-surveillance) and [Micah Lee](https://freedom." +"press/news/encryption-works-how-to-protect-your-privacy-and-your-sources-in-" +"the-age-of-nsa-surveillance/) as one of the tools that protect from the NSA " +"surveillance." +msgstr "" + +#. type: Plain text +msgid "" +"In March 2014, we received our first award, the [Access Innovation Prize for " +"Endpoint Security](https://www.accessnow.org/blog/2014/03/11/2014-access-" +"innovation-prize-winners-announced-at-rightscon). According to Access Now:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"> Tails embodies the successful collaboration of developers, trainers,\n" +"> security professionals towards tackling the spectrum of user needs --\n" +"> from usability to security -- in high-risk environments.\n" +msgstr "" + +#. type: Plain text +msgid "" +"The same month, we launched a [[logo contest|blueprint/logo]]. It was " +"heartwarming to receive 36 very creative proposals. Here are some of the " +"best ones:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img logos.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"In April 2014, Freedom of the Press Foundation launched the first " +"crowdfunding campaign for Tails and revealed that Tails \"has been critical " +"to all of the main NSA journalists\". Since then, [Edward Snowden](https://" +"twitter.com/Snowden/status/975827513321623553) and journalists [Laura " +"Poitras](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-" +"making-citizenfour), [Glenn Greenwald](https://www.eff.org/" +"deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), and [Micah " +"Lee](https://theintercept.com/2014/10/28/smuggling-snowden-secrets/) have " +"repeatedly stated the importance of Tails for their work and supported us in " +"many ways." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p style=\"max-width: 800px;\">\n" +msgstr "" + +#. 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 "" + +#. type: Plain text +#, no-wrap +msgid "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden showing NSA documents on Tails to Ewen MacAskill\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<em>Images from <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em>\n" +"</p>\n" +msgstr "" + +#. type: Plain text +msgid "" +"A few weeks later, the release of Tails 1.0 got press coverage on [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), " +"and many others. In December, [Der Spiegel](https://www.spiegel.de/media/" +"media-35535.pdf) published internal NSA slides that categorize Tails as " +"\"catastrophic impact\" and \"highest priority\":" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img nsa.png link=\"https://www.spiegel.de/media/media-35535.pdf\"\n" +"alt=\"Tor, TrueCrypt, Tails are classified as 'Use Risk: Current Highest\n" +"Priority Target Use' and 'Impact: Catastrophic (near-total loss/lack of\n" +"insight to target communications, presence)'\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how Tails 1.0 looked like in 2014. It had a camouflage mode that " +"looked like Windows XP and the Tor controller was *Vidalia*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img tails-1.0.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2015-2019 - Maturity, user experience, and automation\n" +msgstr "" + +#. type: Plain text +msgid "" +"In May 2014, the UX team at [NUMA Paris](https://web.archive.org/" +"web/20140524130455/http://events.numaparis.com/Evenements/Apero-Experience-" +"Utilisateur-Tails-The-Amnesic-Incognito-Live-System) invited us to organize " +"a usability testing session of Tails with journalists. We asked participants " +"to do slightly complex tasks such as establishing an encrypted conversation " +"with someone else using *Pidgin*. Reality hit us hard when all the " +"journalists in the room encountered problems to either install, start, or " +"connect Tails to Tor. We realized that, despite having laid down most of the " +"core features in Tails 1.0, we still had a lot of work to do to make Tails " +"easy to use by most people." +msgstr "" + +#. type: Plain text +msgid "" +"Since then, we focused our work on 3 aspects of the project that don't bring " +"in so many new features but rather ensure its long term sustainability and " +"growth: user experience, continuous integration, and project sustainability." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "User experience" +msgstr "" + +#. type: Plain text +msgid "" +"Since these first usability tests in 2014, we systematically relied on user-" +"centered design practices to ensure that all the major changes that we do in " +"Tails are making it easier to use. We conducted 10 sessions of usability " +"tests, used [paper prototypes](https://simplysecure.org/blog/formative-" +"testing), conducted [[quantitative surveys|blueprint/veracrypt]], and " +"defined better our audience using [[personas|contribute/personas]]." +msgstr "" + +#. 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 "" + +#. type: Plain text +msgid "" +"This usability work was key in all the work that we did since 2015 to make " +"Tails easier to install:" +msgstr "" + +#. type: Plain text +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)" +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Continuous integration" +msgstr "" + +#. type: Plain text +msgid "" +"To cope with this rapid development and the many releases, we built a " +"cutting edge *continuous integration* infrastructure:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Images of Tails are [built automatically](https://nightly.tails.boum.org/) " +"every time we develop a change for an upcoming release." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"These images are [[tested automatically|contribute/release_process/test/" +"automated_tests]] against a comprehensive list of usability and security " +"scenarios." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"All our images are [[reproducible|news/reproducible_Tails]], which allows " +"security researchers to verify that the images distributed on our website " +"have not been modified to introduce undisclosed security vulnerabilities." +msgstr "" + +#. type: Plain text +msgid "" +"The following video shows the test suite in action. On the left, it displays " +"the scenario that is being tested, for example \"*symmetrically encrypting a " +"message*\". On the right, it displays Tails being manipulated automatically " +"according to the scenario." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<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" +"</video>\n" +msgstr "" + +#. type: Plain text +msgid "" +"This infrastructure increases the quality and reliability of our releases. " +"It also makes it faster to publish emergency security releases when " +"important vulnerabilities are fixed, for example in Firefox and Tor Browser." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Project sustainability" +msgstr "" + +#. type: Plain text +msgid "" +"The combination of these efforts both on visible improvements and behind the " +"scene had to go hand-in-hand with working on the sustainability of the " +"project as an organization." +msgstr "" + +#. type: Plain text +msgid "Since 2014:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The number of Tails users was multiplied by 2.4, increasing by 20% each year " +"on average, reaching 25000 daily users on average in 2019. Our yearly " +"budget was multiplied by a similar amount, to reach 240 000€ " +"(estimated) in 2019." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We worked on foundational documents and processes to ensure a healthy " +"community and project, such as our [[Code of Conduct|contribute/" +"working_together/code_of_conduct]], [[Social Contract|contribute/" +"working_together/social_contract]], and [[Missions and values|contribute/" +"mission]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img users-budget.svg link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Sustainability cannot go without enjoying working together and having fun. " +"We had memorable gatherings where we danced to the privacy-protecting sound " +"of [Rockwell — Somebody's Watching Me](https://www.youtube.com/watch?" +"v=7YvAYIJSSZY=), [Rap News — Whistleblower](https://www.youtube.com/" +"watch?v=7aiZjD0_mTA), [Pete Seeger — The Onion Makes Us Strong (*sic*)]" +"(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " +"Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " +"Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " +"d'état\"]]." +msgstr "" + +#. type: Plain text +msgid "In 2018 and 2019:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"66 different people contributed to our main source code, including coders, " +"writers, and translators." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"22 different people were paid to work on Tails: a few of them full-time, " +"most of them part-time or as consultants." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We attended 21 conferences in 10 different countries to stay connected with " +"the communities of the Tails ecosystem: related Free Software projects, " +"digital security trainers, and users." +msgstr "" + +#. type: Bullet: '- ' +msgid "20 people, both workers and volunteers, attended our yearly gatherings." +msgstr "" + +#. type: Plain text +msgid "" +"Meanwhile, we counted no less than [[21 projects|doc/about/" +"acknowledgments_and_similar_projects#similar_projects]], who also tried to " +"build a live operating system for privacy and anonymity but are now " +"abandoned." +msgstr "" + +#. type: Plain text +msgid "" +"A big thank you to everybody who either contributed to Tails or supported us:" +msgstr "" + +#. type: Bullet: '- ' +msgid "All the people mentioned in this article one way or another" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The people from other related Free Software projects that Tails relies upon" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The thousands of activists, journalists, and human-rights defenders who are " +"using Tails everyday" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The digital security trainers and technologists who got excited about Tails " +"in its early days and continue advocating for it today" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Everybody who ever contributed to our source code, including the dozens of " +"translators" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Our [[partners, sponsors|partners]], and everybody who ever donated to Tails." +msgstr "" + +#. type: Plain text +msgid "Thank you!" +msgstr "" diff --git a/wiki/src/news/celebrating_10_years.ca.po b/wiki/src/news/celebrating_10_years.ca.po new file mode 100644 index 0000000000000000000000000000000000000000..f962f7fc7eb25806541b271eebfc50ac76a56e93 --- /dev/null +++ b/wiki/src/news/celebrating_10_years.ca.po @@ -0,0 +1,591 @@ +# 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-01-03 10:46+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: ca\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=\"Celebrating 10 years of Tails!\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Mon, 15 Dec 2019 20:00:00 +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 "" +"In 2019, we are especially proud of celebrating with you the 10 years of " +"Tails." +msgstr "" + +#. type: Plain text +msgid "" +"The first release of Tails, back then *amnesia*, was announced in 2009. " +"Since then we released 98 versions of Tails, which were used more than 40 " +"million times." +msgstr "" + +#. type: Plain text +msgid "" +"Here are some stories about how it all started and some vintage screenshots. " +"But first of all, the birthday cake!" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<pre style=\"width: 29em;\">\n" +" _____\n" +" |_|_|_|\n" +" | . . |\n" +" |_____|\n" +" ´ `\n" +" | |\n" +" | :-) |\n" +" {} {}\n" +" || ||\n" +" _||_______||_\n" +" {} {~ ~ ~ ~ ~ ~ ~} {}\n" +" || { ~ ~ ~ ~ ~ ~ } ||\n" +" __||__{_____________}__||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" {} { H a p p y \\} {}\n" +" || {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\} ||\n" +" __||_{___________________________}_||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" { B i r t h d a y }\n" +" { ! ! ! T a i ls ! ! ! }\n" +" {/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/}\n" +" {_______________________________________}\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</pre>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2009–2010: amnesia, T(A)ILS, and their ancestors\n" +msgstr "" + +#. type: Plain text +msgid "" +"Today, Tails is based on Debian, Tor, and GNOME. We inherit from their work " +"and try to contribute back in order to create a healthy ecosystem of " +"reliable, secure, and usable tools." +msgstr "" + +#. type: Plain text +msgid "" +"When we started the *amnesia* project back in 2009, other projects before us " +"paved the way to what is Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[Knoppix](http://www.knoppix.org/), born in 2000 and still alive today, was " +"the first popular live Linux distribution. Back then, it was a " +"groundbreaking achievement to be able to start and use Linux without going " +"through lengthy, very complex, and uncertain Linux install \"parties\". " +"Knoppix was primarily designed for convenience and diagnosis." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." +"net:80/download/ele/), born in 2005 and based on Damn Small Linux, [Anonym." +"OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/" +"projects.html), born in 2006 and based on OpenBSD, and [Incognito](https://" +"web.archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/" +"incognito/index.php?option=com_content&task=view&id=28&Itemid=41), born in " +"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 "" + +#. type: Plain text +#, no-wrap +msgid "" +" *Incognito*\n" +" was the first live operating system to include a full set of\n" +" applications preconfigured to go through Tor (browser, email\n" +" client, IRC client, etc.), offer a persistent *Home*\n" +" directory, and even allow hosting onion services.\n" +" *Incognito* was also the first live operating system to receive an\n" +" [official recognition from the Tor\n" +" Project](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement).\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" The original author of *Incognito*, *Pat Double*, resigned in 2007 and *anonym*, who\n" +" still works for Tails today, took over the maintenance.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"On August 16 2009, *intrigeri* announced the first release of *amnesia* on " +"the [*tor-talk* mailing list](https://lists.torproject.org/pipermail/tor-" +"talk/2009-August/002667.html)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"In March 2010, *Incognito* was declared dead and *amnesia* its \"[spiritual " +"successor](https://web.archive.org/web/20100728224716/http://www." +"anonymityanywhere.com:80/incognito)\". Some weeks later, *amnesia* would be " +"renamed *T(A)ILS*, *The Amnesic Incognito Live System*, to act the fusion " +"between *amnesia* and *Incognito*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We quickly realized that having parenthesis in our name looked very\n" +" radical but was quite confusing and finally settled on *Tails* in 2011.\n" +" Eight years later, we still see most people on the Internet write it\n" +" TAILS though it's never been written in all caps on our website.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Hey people, it's Tails not TAILS!\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how *amnesia* 0.2 and our website looked like in 2009. The browser " +"was *Iceweasel* with *Tor Button* and the Tor controller was *TorK*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img amnesia-0.2.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2011-2014: core features, Tails 1.0, and public recognition\n" +msgstr "" + +#. type: Plain text +msgid "" +"Until Tails 1.0 (April 2014), we would develop most of the core features " +"that make Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc=" +"\"Fedora Live USB Creator\"]]" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Persistence**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Tails Greeter**, our welcome screen" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Automatic upgades**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**MAC Spoofing**" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**MAT (Metadata Anonymization Toolkit)**, which was developed by Julien " +"Voisin as a Google Summer of Code with our help in 2011." +msgstr "" + +#. type: Plain text +msgid "" +"To support this intense development and the increased responsibility on our " +"shoulders, we accepted our first grant, from the *Swedish International " +"Development Agency* in 2011 and started paying for some of the development " +"work." +msgstr "" + +#. type: Plain text +msgid "" +"In October 2012, Tails was started around 2 500 times a day, 10 times " +"less than today." +msgstr "" + +#. type: Plain text +msgid "" +"In June 2013, Edward Snowden would reveal thousands of classified documents " +"on the surveillance programs of the NSA. Tails got mentioned by famous " +"technologists [Bruce Schneier](https://www.theguardian.com/world/2013/sep/05/" +"nsa-how-to-remain-secure-surveillance) and [Micah Lee](https://freedom." +"press/news/encryption-works-how-to-protect-your-privacy-and-your-sources-in-" +"the-age-of-nsa-surveillance/) as one of the tools that protect from the NSA " +"surveillance." +msgstr "" + +#. type: Plain text +msgid "" +"In March 2014, we received our first award, the [Access Innovation Prize for " +"Endpoint Security](https://www.accessnow.org/blog/2014/03/11/2014-access-" +"innovation-prize-winners-announced-at-rightscon). According to Access Now:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"> Tails embodies the successful collaboration of developers, trainers,\n" +"> security professionals towards tackling the spectrum of user needs --\n" +"> from usability to security -- in high-risk environments.\n" +msgstr "" + +#. type: Plain text +msgid "" +"The same month, we launched a [[logo contest|blueprint/logo]]. It was " +"heartwarming to receive 36 very creative proposals. Here are some of the " +"best ones:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img logos.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"In April 2014, Freedom of the Press Foundation launched the first " +"crowdfunding campaign for Tails and revealed that Tails \"has been critical " +"to all of the main NSA journalists\". Since then, [Edward Snowden](https://" +"twitter.com/Snowden/status/975827513321623553) and journalists [Laura " +"Poitras](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-" +"making-citizenfour), [Glenn Greenwald](https://www.eff.org/" +"deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), and [Micah " +"Lee](https://theintercept.com/2014/10/28/smuggling-snowden-secrets/) have " +"repeatedly stated the importance of Tails for their work and supported us in " +"many ways." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p style=\"max-width: 800px;\">\n" +msgstr "" + +#. 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 "" + +#. type: Plain text +#, no-wrap +msgid "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden showing NSA documents on Tails to Ewen MacAskill\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<em>Images from <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em>\n" +"</p>\n" +msgstr "" + +#. type: Plain text +msgid "" +"A few weeks later, the release of Tails 1.0 got press coverage on [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), " +"and many others. In December, [Der Spiegel](https://www.spiegel.de/media/" +"media-35535.pdf) published internal NSA slides that categorize Tails as " +"\"catastrophic impact\" and \"highest priority\":" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img nsa.png link=\"https://www.spiegel.de/media/media-35535.pdf\"\n" +"alt=\"Tor, TrueCrypt, Tails are classified as 'Use Risk: Current Highest\n" +"Priority Target Use' and 'Impact: Catastrophic (near-total loss/lack of\n" +"insight to target communications, presence)'\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how Tails 1.0 looked like in 2014. It had a camouflage mode that " +"looked like Windows XP and the Tor controller was *Vidalia*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img tails-1.0.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2015-2019 - Maturity, user experience, and automation\n" +msgstr "" + +#. type: Plain text +msgid "" +"In May 2014, the UX team at [NUMA Paris](https://web.archive.org/" +"web/20140524130455/http://events.numaparis.com/Evenements/Apero-Experience-" +"Utilisateur-Tails-The-Amnesic-Incognito-Live-System) invited us to organize " +"a usability testing session of Tails with journalists. We asked participants " +"to do slightly complex tasks such as establishing an encrypted conversation " +"with someone else using *Pidgin*. Reality hit us hard when all the " +"journalists in the room encountered problems to either install, start, or " +"connect Tails to Tor. We realized that, despite having laid down most of the " +"core features in Tails 1.0, we still had a lot of work to do to make Tails " +"easy to use by most people." +msgstr "" + +#. type: Plain text +msgid "" +"Since then, we focused our work on 3 aspects of the project that don't bring " +"in so many new features but rather ensure its long term sustainability and " +"growth: user experience, continuous integration, and project sustainability." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "User experience" +msgstr "" + +#. type: Plain text +msgid "" +"Since these first usability tests in 2014, we systematically relied on user-" +"centered design practices to ensure that all the major changes that we do in " +"Tails are making it easier to use. We conducted 10 sessions of usability " +"tests, used [paper prototypes](https://simplysecure.org/blog/formative-" +"testing), conducted [[quantitative surveys|blueprint/veracrypt]], and " +"defined better our audience using [[personas|contribute/personas]]." +msgstr "" + +#. 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 "" + +#. type: Plain text +msgid "" +"This usability work was key in all the work that we did since 2015 to make " +"Tails easier to install:" +msgstr "" + +#. type: Plain text +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)" +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Continuous integration" +msgstr "" + +#. type: Plain text +msgid "" +"To cope with this rapid development and the many releases, we built a " +"cutting edge *continuous integration* infrastructure:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Images of Tails are [built automatically](https://nightly.tails.boum.org/) " +"every time we develop a change for an upcoming release." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"These images are [[tested automatically|contribute/release_process/test/" +"automated_tests]] against a comprehensive list of usability and security " +"scenarios." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"All our images are [[reproducible|news/reproducible_Tails]], which allows " +"security researchers to verify that the images distributed on our website " +"have not been modified to introduce undisclosed security vulnerabilities." +msgstr "" + +#. type: Plain text +msgid "" +"The following video shows the test suite in action. On the left, it displays " +"the scenario that is being tested, for example \"*symmetrically encrypting a " +"message*\". On the right, it displays Tails being manipulated automatically " +"according to the scenario." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<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" +"</video>\n" +msgstr "" + +#. type: Plain text +msgid "" +"This infrastructure increases the quality and reliability of our releases. " +"It also makes it faster to publish emergency security releases when " +"important vulnerabilities are fixed, for example in Firefox and Tor Browser." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Project sustainability" +msgstr "" + +#. type: Plain text +msgid "" +"The combination of these efforts both on visible improvements and behind the " +"scene had to go hand-in-hand with working on the sustainability of the " +"project as an organization." +msgstr "" + +#. type: Plain text +msgid "Since 2014:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The number of Tails users was multiplied by 2.4, increasing by 20% each year " +"on average, reaching 25000 daily users on average in 2019. Our yearly " +"budget was multiplied by a similar amount, to reach 240 000€ " +"(estimated) in 2019." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We worked on foundational documents and processes to ensure a healthy " +"community and project, such as our [[Code of Conduct|contribute/" +"working_together/code_of_conduct]], [[Social Contract|contribute/" +"working_together/social_contract]], and [[Missions and values|contribute/" +"mission]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img users-budget.svg link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Sustainability cannot go without enjoying working together and having fun. " +"We had memorable gatherings where we danced to the privacy-protecting sound " +"of [Rockwell — Somebody's Watching Me](https://www.youtube.com/watch?" +"v=7YvAYIJSSZY=), [Rap News — Whistleblower](https://www.youtube.com/" +"watch?v=7aiZjD0_mTA), [Pete Seeger — The Onion Makes Us Strong (*sic*)]" +"(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " +"Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " +"Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " +"d'état\"]]." +msgstr "" + +#. type: Plain text +msgid "In 2018 and 2019:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"66 different people contributed to our main source code, including coders, " +"writers, and translators." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"22 different people were paid to work on Tails: a few of them full-time, " +"most of them part-time or as consultants." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We attended 21 conferences in 10 different countries to stay connected with " +"the communities of the Tails ecosystem: related Free Software projects, " +"digital security trainers, and users." +msgstr "" + +#. type: Bullet: '- ' +msgid "20 people, both workers and volunteers, attended our yearly gatherings." +msgstr "" + +#. type: Plain text +msgid "" +"Meanwhile, we counted no less than [[21 projects|doc/about/" +"acknowledgments_and_similar_projects#similar_projects]], who also tried to " +"build a live operating system for privacy and anonymity but are now " +"abandoned." +msgstr "" + +#. type: Plain text +msgid "" +"A big thank you to everybody who either contributed to Tails or supported us:" +msgstr "" + +#. type: Bullet: '- ' +msgid "All the people mentioned in this article one way or another" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The people from other related Free Software projects that Tails relies upon" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The thousands of activists, journalists, and human-rights defenders who are " +"using Tails everyday" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The digital security trainers and technologists who got excited about Tails " +"in its early days and continue advocating for it today" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Everybody who ever contributed to our source code, including the dozens of " +"translators" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Our [[partners, sponsors|partners]], and everybody who ever donated to Tails." +msgstr "" + +#. type: Plain text +msgid "Thank you!" +msgstr "" diff --git a/wiki/src/news/celebrating_10_years.de.po b/wiki/src/news/celebrating_10_years.de.po new file mode 100644 index 0000000000000000000000000000000000000000..74f363ec3867675a9ca16dabf1cb9582619012b5 --- /dev/null +++ b/wiki/src/news/celebrating_10_years.de.po @@ -0,0 +1,591 @@ +# 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-01-03 10:46+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Celebrating 10 years of Tails!\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Mon, 15 Dec 2019 20:00:00 +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 "" +"In 2019, we are especially proud of celebrating with you the 10 years of " +"Tails." +msgstr "" + +#. type: Plain text +msgid "" +"The first release of Tails, back then *amnesia*, was announced in 2009. " +"Since then we released 98 versions of Tails, which were used more than 40 " +"million times." +msgstr "" + +#. type: Plain text +msgid "" +"Here are some stories about how it all started and some vintage screenshots. " +"But first of all, the birthday cake!" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<pre style=\"width: 29em;\">\n" +" _____\n" +" |_|_|_|\n" +" | . . |\n" +" |_____|\n" +" ´ `\n" +" | |\n" +" | :-) |\n" +" {} {}\n" +" || ||\n" +" _||_______||_\n" +" {} {~ ~ ~ ~ ~ ~ ~} {}\n" +" || { ~ ~ ~ ~ ~ ~ } ||\n" +" __||__{_____________}__||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" {} { H a p p y \\} {}\n" +" || {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\} ||\n" +" __||_{___________________________}_||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" { B i r t h d a y }\n" +" { ! ! ! T a i ls ! ! ! }\n" +" {/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/}\n" +" {_______________________________________}\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</pre>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2009–2010: amnesia, T(A)ILS, and their ancestors\n" +msgstr "" + +#. type: Plain text +msgid "" +"Today, Tails is based on Debian, Tor, and GNOME. We inherit from their work " +"and try to contribute back in order to create a healthy ecosystem of " +"reliable, secure, and usable tools." +msgstr "" + +#. type: Plain text +msgid "" +"When we started the *amnesia* project back in 2009, other projects before us " +"paved the way to what is Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[Knoppix](http://www.knoppix.org/), born in 2000 and still alive today, was " +"the first popular live Linux distribution. Back then, it was a " +"groundbreaking achievement to be able to start and use Linux without going " +"through lengthy, very complex, and uncertain Linux install \"parties\". " +"Knoppix was primarily designed for convenience and diagnosis." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." +"net:80/download/ele/), born in 2005 and based on Damn Small Linux, [Anonym." +"OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/" +"projects.html), born in 2006 and based on OpenBSD, and [Incognito](https://" +"web.archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/" +"incognito/index.php?option=com_content&task=view&id=28&Itemid=41), born in " +"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 "" + +#. type: Plain text +#, no-wrap +msgid "" +" *Incognito*\n" +" was the first live operating system to include a full set of\n" +" applications preconfigured to go through Tor (browser, email\n" +" client, IRC client, etc.), offer a persistent *Home*\n" +" directory, and even allow hosting onion services.\n" +" *Incognito* was also the first live operating system to receive an\n" +" [official recognition from the Tor\n" +" Project](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement).\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" The original author of *Incognito*, *Pat Double*, resigned in 2007 and *anonym*, who\n" +" still works for Tails today, took over the maintenance.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"On August 16 2009, *intrigeri* announced the first release of *amnesia* on " +"the [*tor-talk* mailing list](https://lists.torproject.org/pipermail/tor-" +"talk/2009-August/002667.html)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"In March 2010, *Incognito* was declared dead and *amnesia* its \"[spiritual " +"successor](https://web.archive.org/web/20100728224716/http://www." +"anonymityanywhere.com:80/incognito)\". Some weeks later, *amnesia* would be " +"renamed *T(A)ILS*, *The Amnesic Incognito Live System*, to act the fusion " +"between *amnesia* and *Incognito*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We quickly realized that having parenthesis in our name looked very\n" +" radical but was quite confusing and finally settled on *Tails* in 2011.\n" +" Eight years later, we still see most people on the Internet write it\n" +" TAILS though it's never been written in all caps on our website.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Hey people, it's Tails not TAILS!\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how *amnesia* 0.2 and our website looked like in 2009. The browser " +"was *Iceweasel* with *Tor Button* and the Tor controller was *TorK*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img amnesia-0.2.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2011-2014: core features, Tails 1.0, and public recognition\n" +msgstr "" + +#. type: Plain text +msgid "" +"Until Tails 1.0 (April 2014), we would develop most of the core features " +"that make Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc=" +"\"Fedora Live USB Creator\"]]" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Persistence**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Tails Greeter**, our welcome screen" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Automatic upgades**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**MAC Spoofing**" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**MAT (Metadata Anonymization Toolkit)**, which was developed by Julien " +"Voisin as a Google Summer of Code with our help in 2011." +msgstr "" + +#. type: Plain text +msgid "" +"To support this intense development and the increased responsibility on our " +"shoulders, we accepted our first grant, from the *Swedish International " +"Development Agency* in 2011 and started paying for some of the development " +"work." +msgstr "" + +#. type: Plain text +msgid "" +"In October 2012, Tails was started around 2 500 times a day, 10 times " +"less than today." +msgstr "" + +#. type: Plain text +msgid "" +"In June 2013, Edward Snowden would reveal thousands of classified documents " +"on the surveillance programs of the NSA. Tails got mentioned by famous " +"technologists [Bruce Schneier](https://www.theguardian.com/world/2013/sep/05/" +"nsa-how-to-remain-secure-surveillance) and [Micah Lee](https://freedom." +"press/news/encryption-works-how-to-protect-your-privacy-and-your-sources-in-" +"the-age-of-nsa-surveillance/) as one of the tools that protect from the NSA " +"surveillance." +msgstr "" + +#. type: Plain text +msgid "" +"In March 2014, we received our first award, the [Access Innovation Prize for " +"Endpoint Security](https://www.accessnow.org/blog/2014/03/11/2014-access-" +"innovation-prize-winners-announced-at-rightscon). According to Access Now:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"> Tails embodies the successful collaboration of developers, trainers,\n" +"> security professionals towards tackling the spectrum of user needs --\n" +"> from usability to security -- in high-risk environments.\n" +msgstr "" + +#. type: Plain text +msgid "" +"The same month, we launched a [[logo contest|blueprint/logo]]. It was " +"heartwarming to receive 36 very creative proposals. Here are some of the " +"best ones:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img logos.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"In April 2014, Freedom of the Press Foundation launched the first " +"crowdfunding campaign for Tails and revealed that Tails \"has been critical " +"to all of the main NSA journalists\". Since then, [Edward Snowden](https://" +"twitter.com/Snowden/status/975827513321623553) and journalists [Laura " +"Poitras](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-" +"making-citizenfour), [Glenn Greenwald](https://www.eff.org/" +"deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), and [Micah " +"Lee](https://theintercept.com/2014/10/28/smuggling-snowden-secrets/) have " +"repeatedly stated the importance of Tails for their work and supported us in " +"many ways." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p style=\"max-width: 800px;\">\n" +msgstr "" + +#. 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 "" + +#. type: Plain text +#, no-wrap +msgid "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden showing NSA documents on Tails to Ewen MacAskill\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<em>Images from <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em>\n" +"</p>\n" +msgstr "" + +#. type: Plain text +msgid "" +"A few weeks later, the release of Tails 1.0 got press coverage on [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), " +"and many others. In December, [Der Spiegel](https://www.spiegel.de/media/" +"media-35535.pdf) published internal NSA slides that categorize Tails as " +"\"catastrophic impact\" and \"highest priority\":" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img nsa.png link=\"https://www.spiegel.de/media/media-35535.pdf\"\n" +"alt=\"Tor, TrueCrypt, Tails are classified as 'Use Risk: Current Highest\n" +"Priority Target Use' and 'Impact: Catastrophic (near-total loss/lack of\n" +"insight to target communications, presence)'\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how Tails 1.0 looked like in 2014. It had a camouflage mode that " +"looked like Windows XP and the Tor controller was *Vidalia*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img tails-1.0.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2015-2019 - Maturity, user experience, and automation\n" +msgstr "" + +#. type: Plain text +msgid "" +"In May 2014, the UX team at [NUMA Paris](https://web.archive.org/" +"web/20140524130455/http://events.numaparis.com/Evenements/Apero-Experience-" +"Utilisateur-Tails-The-Amnesic-Incognito-Live-System) invited us to organize " +"a usability testing session of Tails with journalists. We asked participants " +"to do slightly complex tasks such as establishing an encrypted conversation " +"with someone else using *Pidgin*. Reality hit us hard when all the " +"journalists in the room encountered problems to either install, start, or " +"connect Tails to Tor. We realized that, despite having laid down most of the " +"core features in Tails 1.0, we still had a lot of work to do to make Tails " +"easy to use by most people." +msgstr "" + +#. type: Plain text +msgid "" +"Since then, we focused our work on 3 aspects of the project that don't bring " +"in so many new features but rather ensure its long term sustainability and " +"growth: user experience, continuous integration, and project sustainability." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "User experience" +msgstr "" + +#. type: Plain text +msgid "" +"Since these first usability tests in 2014, we systematically relied on user-" +"centered design practices to ensure that all the major changes that we do in " +"Tails are making it easier to use. We conducted 10 sessions of usability " +"tests, used [paper prototypes](https://simplysecure.org/blog/formative-" +"testing), conducted [[quantitative surveys|blueprint/veracrypt]], and " +"defined better our audience using [[personas|contribute/personas]]." +msgstr "" + +#. 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 "" + +#. type: Plain text +msgid "" +"This usability work was key in all the work that we did since 2015 to make " +"Tails easier to install:" +msgstr "" + +#. type: Plain text +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)" +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Continuous integration" +msgstr "" + +#. type: Plain text +msgid "" +"To cope with this rapid development and the many releases, we built a " +"cutting edge *continuous integration* infrastructure:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Images of Tails are [built automatically](https://nightly.tails.boum.org/) " +"every time we develop a change for an upcoming release." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"These images are [[tested automatically|contribute/release_process/test/" +"automated_tests]] against a comprehensive list of usability and security " +"scenarios." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"All our images are [[reproducible|news/reproducible_Tails]], which allows " +"security researchers to verify that the images distributed on our website " +"have not been modified to introduce undisclosed security vulnerabilities." +msgstr "" + +#. type: Plain text +msgid "" +"The following video shows the test suite in action. On the left, it displays " +"the scenario that is being tested, for example \"*symmetrically encrypting a " +"message*\". On the right, it displays Tails being manipulated automatically " +"according to the scenario." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<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" +"</video>\n" +msgstr "" + +#. type: Plain text +msgid "" +"This infrastructure increases the quality and reliability of our releases. " +"It also makes it faster to publish emergency security releases when " +"important vulnerabilities are fixed, for example in Firefox and Tor Browser." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Project sustainability" +msgstr "" + +#. type: Plain text +msgid "" +"The combination of these efforts both on visible improvements and behind the " +"scene had to go hand-in-hand with working on the sustainability of the " +"project as an organization." +msgstr "" + +#. type: Plain text +msgid "Since 2014:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The number of Tails users was multiplied by 2.4, increasing by 20% each year " +"on average, reaching 25000 daily users on average in 2019. Our yearly " +"budget was multiplied by a similar amount, to reach 240 000€ " +"(estimated) in 2019." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We worked on foundational documents and processes to ensure a healthy " +"community and project, such as our [[Code of Conduct|contribute/" +"working_together/code_of_conduct]], [[Social Contract|contribute/" +"working_together/social_contract]], and [[Missions and values|contribute/" +"mission]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img users-budget.svg link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Sustainability cannot go without enjoying working together and having fun. " +"We had memorable gatherings where we danced to the privacy-protecting sound " +"of [Rockwell — Somebody's Watching Me](https://www.youtube.com/watch?" +"v=7YvAYIJSSZY=), [Rap News — Whistleblower](https://www.youtube.com/" +"watch?v=7aiZjD0_mTA), [Pete Seeger — The Onion Makes Us Strong (*sic*)]" +"(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " +"Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " +"Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " +"d'état\"]]." +msgstr "" + +#. type: Plain text +msgid "In 2018 and 2019:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"66 different people contributed to our main source code, including coders, " +"writers, and translators." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"22 different people were paid to work on Tails: a few of them full-time, " +"most of them part-time or as consultants." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We attended 21 conferences in 10 different countries to stay connected with " +"the communities of the Tails ecosystem: related Free Software projects, " +"digital security trainers, and users." +msgstr "" + +#. type: Bullet: '- ' +msgid "20 people, both workers and volunteers, attended our yearly gatherings." +msgstr "" + +#. type: Plain text +msgid "" +"Meanwhile, we counted no less than [[21 projects|doc/about/" +"acknowledgments_and_similar_projects#similar_projects]], who also tried to " +"build a live operating system for privacy and anonymity but are now " +"abandoned." +msgstr "" + +#. type: Plain text +msgid "" +"A big thank you to everybody who either contributed to Tails or supported us:" +msgstr "" + +#. type: Bullet: '- ' +msgid "All the people mentioned in this article one way or another" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The people from other related Free Software projects that Tails relies upon" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The thousands of activists, journalists, and human-rights defenders who are " +"using Tails everyday" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The digital security trainers and technologists who got excited about Tails " +"in its early days and continue advocating for it today" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Everybody who ever contributed to our source code, including the dozens of " +"translators" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Our [[partners, sponsors|partners]], and everybody who ever donated to Tails." +msgstr "" + +#. type: Plain text +msgid "Thank you!" +msgstr "" diff --git a/wiki/src/news/celebrating_10_years.es.po b/wiki/src/news/celebrating_10_years.es.po new file mode 100644 index 0000000000000000000000000000000000000000..1a469688c31acb443a724c646475bec99f1d7bf4 --- /dev/null +++ b/wiki/src/news/celebrating_10_years.es.po @@ -0,0 +1,592 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-03 10:46+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" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Celebrating 10 years of Tails!\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Mon, 15 Dec 2019 20:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"In 2019, we are especially proud of celebrating with you the 10 years of " +"Tails." +msgstr "" + +#. type: Plain text +msgid "" +"The first release of Tails, back then *amnesia*, was announced in 2009. " +"Since then we released 98 versions of Tails, which were used more than 40 " +"million times." +msgstr "" + +#. type: Plain text +msgid "" +"Here are some stories about how it all started and some vintage screenshots. " +"But first of all, the birthday cake!" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<pre style=\"width: 29em;\">\n" +" _____\n" +" |_|_|_|\n" +" | . . |\n" +" |_____|\n" +" ´ `\n" +" | |\n" +" | :-) |\n" +" {} {}\n" +" || ||\n" +" _||_______||_\n" +" {} {~ ~ ~ ~ ~ ~ ~} {}\n" +" || { ~ ~ ~ ~ ~ ~ } ||\n" +" __||__{_____________}__||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" {} { H a p p y \\} {}\n" +" || {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\} ||\n" +" __||_{___________________________}_||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" { B i r t h d a y }\n" +" { ! ! ! T a i ls ! ! ! }\n" +" {/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/}\n" +" {_______________________________________}\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</pre>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2009–2010: amnesia, T(A)ILS, and their ancestors\n" +msgstr "" + +#. type: Plain text +msgid "" +"Today, Tails is based on Debian, Tor, and GNOME. We inherit from their work " +"and try to contribute back in order to create a healthy ecosystem of " +"reliable, secure, and usable tools." +msgstr "" + +#. type: Plain text +msgid "" +"When we started the *amnesia* project back in 2009, other projects before us " +"paved the way to what is Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[Knoppix](http://www.knoppix.org/), born in 2000 and still alive today, was " +"the first popular live Linux distribution. Back then, it was a " +"groundbreaking achievement to be able to start and use Linux without going " +"through lengthy, very complex, and uncertain Linux install \"parties\". " +"Knoppix was primarily designed for convenience and diagnosis." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." +"net:80/download/ele/), born in 2005 and based on Damn Small Linux, [Anonym." +"OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/" +"projects.html), born in 2006 and based on OpenBSD, and [Incognito](https://" +"web.archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/" +"incognito/index.php?option=com_content&task=view&id=28&Itemid=41), born in " +"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 "" + +#. type: Plain text +#, no-wrap +msgid "" +" *Incognito*\n" +" was the first live operating system to include a full set of\n" +" applications preconfigured to go through Tor (browser, email\n" +" client, IRC client, etc.), offer a persistent *Home*\n" +" directory, and even allow hosting onion services.\n" +" *Incognito* was also the first live operating system to receive an\n" +" [official recognition from the Tor\n" +" Project](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement).\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" The original author of *Incognito*, *Pat Double*, resigned in 2007 and *anonym*, who\n" +" still works for Tails today, took over the maintenance.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"On August 16 2009, *intrigeri* announced the first release of *amnesia* on " +"the [*tor-talk* mailing list](https://lists.torproject.org/pipermail/tor-" +"talk/2009-August/002667.html)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"In March 2010, *Incognito* was declared dead and *amnesia* its \"[spiritual " +"successor](https://web.archive.org/web/20100728224716/http://www." +"anonymityanywhere.com:80/incognito)\". Some weeks later, *amnesia* would be " +"renamed *T(A)ILS*, *The Amnesic Incognito Live System*, to act the fusion " +"between *amnesia* and *Incognito*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We quickly realized that having parenthesis in our name looked very\n" +" radical but was quite confusing and finally settled on *Tails* in 2011.\n" +" Eight years later, we still see most people on the Internet write it\n" +" TAILS though it's never been written in all caps on our website.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Hey people, it's Tails not TAILS!\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how *amnesia* 0.2 and our website looked like in 2009. The browser " +"was *Iceweasel* with *Tor Button* and the Tor controller was *TorK*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img amnesia-0.2.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2011-2014: core features, Tails 1.0, and public recognition\n" +msgstr "" + +#. type: Plain text +msgid "" +"Until Tails 1.0 (April 2014), we would develop most of the core features " +"that make Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc=" +"\"Fedora Live USB Creator\"]]" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Persistence**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Tails Greeter**, our welcome screen" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Automatic upgades**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**MAC Spoofing**" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**MAT (Metadata Anonymization Toolkit)**, which was developed by Julien " +"Voisin as a Google Summer of Code with our help in 2011." +msgstr "" + +#. type: Plain text +msgid "" +"To support this intense development and the increased responsibility on our " +"shoulders, we accepted our first grant, from the *Swedish International " +"Development Agency* in 2011 and started paying for some of the development " +"work." +msgstr "" + +#. type: Plain text +msgid "" +"In October 2012, Tails was started around 2 500 times a day, 10 times " +"less than today." +msgstr "" + +#. type: Plain text +msgid "" +"In June 2013, Edward Snowden would reveal thousands of classified documents " +"on the surveillance programs of the NSA. Tails got mentioned by famous " +"technologists [Bruce Schneier](https://www.theguardian.com/world/2013/sep/05/" +"nsa-how-to-remain-secure-surveillance) and [Micah Lee](https://freedom." +"press/news/encryption-works-how-to-protect-your-privacy-and-your-sources-in-" +"the-age-of-nsa-surveillance/) as one of the tools that protect from the NSA " +"surveillance." +msgstr "" + +#. type: Plain text +msgid "" +"In March 2014, we received our first award, the [Access Innovation Prize for " +"Endpoint Security](https://www.accessnow.org/blog/2014/03/11/2014-access-" +"innovation-prize-winners-announced-at-rightscon). According to Access Now:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"> Tails embodies the successful collaboration of developers, trainers,\n" +"> security professionals towards tackling the spectrum of user needs --\n" +"> from usability to security -- in high-risk environments.\n" +msgstr "" + +#. type: Plain text +msgid "" +"The same month, we launched a [[logo contest|blueprint/logo]]. It was " +"heartwarming to receive 36 very creative proposals. Here are some of the " +"best ones:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img logos.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"In April 2014, Freedom of the Press Foundation launched the first " +"crowdfunding campaign for Tails and revealed that Tails \"has been critical " +"to all of the main NSA journalists\". Since then, [Edward Snowden](https://" +"twitter.com/Snowden/status/975827513321623553) and journalists [Laura " +"Poitras](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-" +"making-citizenfour), [Glenn Greenwald](https://www.eff.org/" +"deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), and [Micah " +"Lee](https://theintercept.com/2014/10/28/smuggling-snowden-secrets/) have " +"repeatedly stated the importance of Tails for their work and supported us in " +"many ways." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p style=\"max-width: 800px;\">\n" +msgstr "" + +#. 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 "" + +#. type: Plain text +#, no-wrap +msgid "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden showing NSA documents on Tails to Ewen MacAskill\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<em>Images from <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em>\n" +"</p>\n" +msgstr "" + +#. type: Plain text +msgid "" +"A few weeks later, the release of Tails 1.0 got press coverage on [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), " +"and many others. In December, [Der Spiegel](https://www.spiegel.de/media/" +"media-35535.pdf) published internal NSA slides that categorize Tails as " +"\"catastrophic impact\" and \"highest priority\":" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img nsa.png link=\"https://www.spiegel.de/media/media-35535.pdf\"\n" +"alt=\"Tor, TrueCrypt, Tails are classified as 'Use Risk: Current Highest\n" +"Priority Target Use' and 'Impact: Catastrophic (near-total loss/lack of\n" +"insight to target communications, presence)'\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how Tails 1.0 looked like in 2014. It had a camouflage mode that " +"looked like Windows XP and the Tor controller was *Vidalia*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img tails-1.0.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2015-2019 - Maturity, user experience, and automation\n" +msgstr "" + +#. type: Plain text +msgid "" +"In May 2014, the UX team at [NUMA Paris](https://web.archive.org/" +"web/20140524130455/http://events.numaparis.com/Evenements/Apero-Experience-" +"Utilisateur-Tails-The-Amnesic-Incognito-Live-System) invited us to organize " +"a usability testing session of Tails with journalists. We asked participants " +"to do slightly complex tasks such as establishing an encrypted conversation " +"with someone else using *Pidgin*. Reality hit us hard when all the " +"journalists in the room encountered problems to either install, start, or " +"connect Tails to Tor. We realized that, despite having laid down most of the " +"core features in Tails 1.0, we still had a lot of work to do to make Tails " +"easy to use by most people." +msgstr "" + +#. type: Plain text +msgid "" +"Since then, we focused our work on 3 aspects of the project that don't bring " +"in so many new features but rather ensure its long term sustainability and " +"growth: user experience, continuous integration, and project sustainability." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "User experience" +msgstr "" + +#. type: Plain text +msgid "" +"Since these first usability tests in 2014, we systematically relied on user-" +"centered design practices to ensure that all the major changes that we do in " +"Tails are making it easier to use. We conducted 10 sessions of usability " +"tests, used [paper prototypes](https://simplysecure.org/blog/formative-" +"testing), conducted [[quantitative surveys|blueprint/veracrypt]], and " +"defined better our audience using [[personas|contribute/personas]]." +msgstr "" + +#. 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 "" + +#. type: Plain text +msgid "" +"This usability work was key in all the work that we did since 2015 to make " +"Tails easier to install:" +msgstr "" + +#. type: Plain text +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)" +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Continuous integration" +msgstr "" + +#. type: Plain text +msgid "" +"To cope with this rapid development and the many releases, we built a " +"cutting edge *continuous integration* infrastructure:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Images of Tails are [built automatically](https://nightly.tails.boum.org/) " +"every time we develop a change for an upcoming release." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"These images are [[tested automatically|contribute/release_process/test/" +"automated_tests]] against a comprehensive list of usability and security " +"scenarios." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"All our images are [[reproducible|news/reproducible_Tails]], which allows " +"security researchers to verify that the images distributed on our website " +"have not been modified to introduce undisclosed security vulnerabilities." +msgstr "" + +#. type: Plain text +msgid "" +"The following video shows the test suite in action. On the left, it displays " +"the scenario that is being tested, for example \"*symmetrically encrypting a " +"message*\". On the right, it displays Tails being manipulated automatically " +"according to the scenario." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<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" +"</video>\n" +msgstr "" + +#. type: Plain text +msgid "" +"This infrastructure increases the quality and reliability of our releases. " +"It also makes it faster to publish emergency security releases when " +"important vulnerabilities are fixed, for example in Firefox and Tor Browser." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Project sustainability" +msgstr "" + +#. type: Plain text +msgid "" +"The combination of these efforts both on visible improvements and behind the " +"scene had to go hand-in-hand with working on the sustainability of the " +"project as an organization." +msgstr "" + +#. type: Plain text +msgid "Since 2014:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The number of Tails users was multiplied by 2.4, increasing by 20% each year " +"on average, reaching 25000 daily users on average in 2019. Our yearly " +"budget was multiplied by a similar amount, to reach 240 000€ " +"(estimated) in 2019." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We worked on foundational documents and processes to ensure a healthy " +"community and project, such as our [[Code of Conduct|contribute/" +"working_together/code_of_conduct]], [[Social Contract|contribute/" +"working_together/social_contract]], and [[Missions and values|contribute/" +"mission]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img users-budget.svg link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Sustainability cannot go without enjoying working together and having fun. " +"We had memorable gatherings where we danced to the privacy-protecting sound " +"of [Rockwell — Somebody's Watching Me](https://www.youtube.com/watch?" +"v=7YvAYIJSSZY=), [Rap News — Whistleblower](https://www.youtube.com/" +"watch?v=7aiZjD0_mTA), [Pete Seeger — The Onion Makes Us Strong (*sic*)]" +"(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " +"Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " +"Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " +"d'état\"]]." +msgstr "" + +#. type: Plain text +msgid "In 2018 and 2019:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"66 different people contributed to our main source code, including coders, " +"writers, and translators." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"22 different people were paid to work on Tails: a few of them full-time, " +"most of them part-time or as consultants." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We attended 21 conferences in 10 different countries to stay connected with " +"the communities of the Tails ecosystem: related Free Software projects, " +"digital security trainers, and users." +msgstr "" + +#. type: Bullet: '- ' +msgid "20 people, both workers and volunteers, attended our yearly gatherings." +msgstr "" + +#. type: Plain text +msgid "" +"Meanwhile, we counted no less than [[21 projects|doc/about/" +"acknowledgments_and_similar_projects#similar_projects]], who also tried to " +"build a live operating system for privacy and anonymity but are now " +"abandoned." +msgstr "" + +#. type: Plain text +msgid "" +"A big thank you to everybody who either contributed to Tails or supported us:" +msgstr "" + +#. type: Bullet: '- ' +msgid "All the people mentioned in this article one way or another" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The people from other related Free Software projects that Tails relies upon" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The thousands of activists, journalists, and human-rights defenders who are " +"using Tails everyday" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The digital security trainers and technologists who got excited about Tails " +"in its early days and continue advocating for it today" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Everybody who ever contributed to our source code, including the dozens of " +"translators" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Our [[partners, sponsors|partners]], and everybody who ever donated to Tails." +msgstr "" + +#. type: Plain text +msgid "Thank you!" +msgstr "" diff --git a/wiki/src/news/celebrating_10_years.fa.po b/wiki/src/news/celebrating_10_years.fa.po new file mode 100644 index 0000000000000000000000000000000000000000..f75f7773f1dbf067f225a9be16609f39283f7b52 --- /dev/null +++ b/wiki/src/news/celebrating_10_years.fa.po @@ -0,0 +1,592 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-03 10:46+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" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Celebrating 10 years of Tails!\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Mon, 15 Dec 2019 20:00:00 +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 "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"In 2019, we are especially proud of celebrating with you the 10 years of " +"Tails." +msgstr "" + +#. type: Plain text +msgid "" +"The first release of Tails, back then *amnesia*, was announced in 2009. " +"Since then we released 98 versions of Tails, which were used more than 40 " +"million times." +msgstr "" + +#. type: Plain text +msgid "" +"Here are some stories about how it all started and some vintage screenshots. " +"But first of all, the birthday cake!" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<pre style=\"width: 29em;\">\n" +" _____\n" +" |_|_|_|\n" +" | . . |\n" +" |_____|\n" +" ´ `\n" +" | |\n" +" | :-) |\n" +" {} {}\n" +" || ||\n" +" _||_______||_\n" +" {} {~ ~ ~ ~ ~ ~ ~} {}\n" +" || { ~ ~ ~ ~ ~ ~ } ||\n" +" __||__{_____________}__||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" {} { H a p p y \\} {}\n" +" || {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\} ||\n" +" __||_{___________________________}_||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" { B i r t h d a y }\n" +" { ! ! ! T a i ls ! ! ! }\n" +" {/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/}\n" +" {_______________________________________}\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</pre>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2009–2010: amnesia, T(A)ILS, and their ancestors\n" +msgstr "" + +#. type: Plain text +msgid "" +"Today, Tails is based on Debian, Tor, and GNOME. We inherit from their work " +"and try to contribute back in order to create a healthy ecosystem of " +"reliable, secure, and usable tools." +msgstr "" + +#. type: Plain text +msgid "" +"When we started the *amnesia* project back in 2009, other projects before us " +"paved the way to what is Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[Knoppix](http://www.knoppix.org/), born in 2000 and still alive today, was " +"the first popular live Linux distribution. Back then, it was a " +"groundbreaking achievement to be able to start and use Linux without going " +"through lengthy, very complex, and uncertain Linux install \"parties\". " +"Knoppix was primarily designed for convenience and diagnosis." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." +"net:80/download/ele/), born in 2005 and based on Damn Small Linux, [Anonym." +"OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/" +"projects.html), born in 2006 and based on OpenBSD, and [Incognito](https://" +"web.archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/" +"incognito/index.php?option=com_content&task=view&id=28&Itemid=41), born in " +"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 "" + +#. type: Plain text +#, no-wrap +msgid "" +" *Incognito*\n" +" was the first live operating system to include a full set of\n" +" applications preconfigured to go through Tor (browser, email\n" +" client, IRC client, etc.), offer a persistent *Home*\n" +" directory, and even allow hosting onion services.\n" +" *Incognito* was also the first live operating system to receive an\n" +" [official recognition from the Tor\n" +" Project](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement).\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" The original author of *Incognito*, *Pat Double*, resigned in 2007 and *anonym*, who\n" +" still works for Tails today, took over the maintenance.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"On August 16 2009, *intrigeri* announced the first release of *amnesia* on " +"the [*tor-talk* mailing list](https://lists.torproject.org/pipermail/tor-" +"talk/2009-August/002667.html)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"In March 2010, *Incognito* was declared dead and *amnesia* its \"[spiritual " +"successor](https://web.archive.org/web/20100728224716/http://www." +"anonymityanywhere.com:80/incognito)\". Some weeks later, *amnesia* would be " +"renamed *T(A)ILS*, *The Amnesic Incognito Live System*, to act the fusion " +"between *amnesia* and *Incognito*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We quickly realized that having parenthesis in our name looked very\n" +" radical but was quite confusing and finally settled on *Tails* in 2011.\n" +" Eight years later, we still see most people on the Internet write it\n" +" TAILS though it's never been written in all caps on our website.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Hey people, it's Tails not TAILS!\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how *amnesia* 0.2 and our website looked like in 2009. The browser " +"was *Iceweasel* with *Tor Button* and the Tor controller was *TorK*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img amnesia-0.2.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2011-2014: core features, Tails 1.0, and public recognition\n" +msgstr "" + +#. type: Plain text +msgid "" +"Until Tails 1.0 (April 2014), we would develop most of the core features " +"that make Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc=" +"\"Fedora Live USB Creator\"]]" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Persistence**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Tails Greeter**, our welcome screen" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Automatic upgades**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**MAC Spoofing**" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**MAT (Metadata Anonymization Toolkit)**, which was developed by Julien " +"Voisin as a Google Summer of Code with our help in 2011." +msgstr "" + +#. type: Plain text +msgid "" +"To support this intense development and the increased responsibility on our " +"shoulders, we accepted our first grant, from the *Swedish International " +"Development Agency* in 2011 and started paying for some of the development " +"work." +msgstr "" + +#. type: Plain text +msgid "" +"In October 2012, Tails was started around 2 500 times a day, 10 times " +"less than today." +msgstr "" + +#. type: Plain text +msgid "" +"In June 2013, Edward Snowden would reveal thousands of classified documents " +"on the surveillance programs of the NSA. Tails got mentioned by famous " +"technologists [Bruce Schneier](https://www.theguardian.com/world/2013/sep/05/" +"nsa-how-to-remain-secure-surveillance) and [Micah Lee](https://freedom." +"press/news/encryption-works-how-to-protect-your-privacy-and-your-sources-in-" +"the-age-of-nsa-surveillance/) as one of the tools that protect from the NSA " +"surveillance." +msgstr "" + +#. type: Plain text +msgid "" +"In March 2014, we received our first award, the [Access Innovation Prize for " +"Endpoint Security](https://www.accessnow.org/blog/2014/03/11/2014-access-" +"innovation-prize-winners-announced-at-rightscon). According to Access Now:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"> Tails embodies the successful collaboration of developers, trainers,\n" +"> security professionals towards tackling the spectrum of user needs --\n" +"> from usability to security -- in high-risk environments.\n" +msgstr "" + +#. type: Plain text +msgid "" +"The same month, we launched a [[logo contest|blueprint/logo]]. It was " +"heartwarming to receive 36 very creative proposals. Here are some of the " +"best ones:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img logos.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"In April 2014, Freedom of the Press Foundation launched the first " +"crowdfunding campaign for Tails and revealed that Tails \"has been critical " +"to all of the main NSA journalists\". Since then, [Edward Snowden](https://" +"twitter.com/Snowden/status/975827513321623553) and journalists [Laura " +"Poitras](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-" +"making-citizenfour), [Glenn Greenwald](https://www.eff.org/" +"deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), and [Micah " +"Lee](https://theintercept.com/2014/10/28/smuggling-snowden-secrets/) have " +"repeatedly stated the importance of Tails for their work and supported us in " +"many ways." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p style=\"max-width: 800px;\">\n" +msgstr "" + +#. 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 "" + +#. type: Plain text +#, no-wrap +msgid "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden showing NSA documents on Tails to Ewen MacAskill\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<em>Images from <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em>\n" +"</p>\n" +msgstr "" + +#. type: Plain text +msgid "" +"A few weeks later, the release of Tails 1.0 got press coverage on [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), " +"and many others. In December, [Der Spiegel](https://www.spiegel.de/media/" +"media-35535.pdf) published internal NSA slides that categorize Tails as " +"\"catastrophic impact\" and \"highest priority\":" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img nsa.png link=\"https://www.spiegel.de/media/media-35535.pdf\"\n" +"alt=\"Tor, TrueCrypt, Tails are classified as 'Use Risk: Current Highest\n" +"Priority Target Use' and 'Impact: Catastrophic (near-total loss/lack of\n" +"insight to target communications, presence)'\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how Tails 1.0 looked like in 2014. It had a camouflage mode that " +"looked like Windows XP and the Tor controller was *Vidalia*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img tails-1.0.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2015-2019 - Maturity, user experience, and automation\n" +msgstr "" + +#. type: Plain text +msgid "" +"In May 2014, the UX team at [NUMA Paris](https://web.archive.org/" +"web/20140524130455/http://events.numaparis.com/Evenements/Apero-Experience-" +"Utilisateur-Tails-The-Amnesic-Incognito-Live-System) invited us to organize " +"a usability testing session of Tails with journalists. We asked participants " +"to do slightly complex tasks such as establishing an encrypted conversation " +"with someone else using *Pidgin*. Reality hit us hard when all the " +"journalists in the room encountered problems to either install, start, or " +"connect Tails to Tor. We realized that, despite having laid down most of the " +"core features in Tails 1.0, we still had a lot of work to do to make Tails " +"easy to use by most people." +msgstr "" + +#. type: Plain text +msgid "" +"Since then, we focused our work on 3 aspects of the project that don't bring " +"in so many new features but rather ensure its long term sustainability and " +"growth: user experience, continuous integration, and project sustainability." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "User experience" +msgstr "" + +#. type: Plain text +msgid "" +"Since these first usability tests in 2014, we systematically relied on user-" +"centered design practices to ensure that all the major changes that we do in " +"Tails are making it easier to use. We conducted 10 sessions of usability " +"tests, used [paper prototypes](https://simplysecure.org/blog/formative-" +"testing), conducted [[quantitative surveys|blueprint/veracrypt]], and " +"defined better our audience using [[personas|contribute/personas]]." +msgstr "" + +#. 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 "" + +#. type: Plain text +msgid "" +"This usability work was key in all the work that we did since 2015 to make " +"Tails easier to install:" +msgstr "" + +#. type: Plain text +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)" +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Continuous integration" +msgstr "" + +#. type: Plain text +msgid "" +"To cope with this rapid development and the many releases, we built a " +"cutting edge *continuous integration* infrastructure:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Images of Tails are [built automatically](https://nightly.tails.boum.org/) " +"every time we develop a change for an upcoming release." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"These images are [[tested automatically|contribute/release_process/test/" +"automated_tests]] against a comprehensive list of usability and security " +"scenarios." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"All our images are [[reproducible|news/reproducible_Tails]], which allows " +"security researchers to verify that the images distributed on our website " +"have not been modified to introduce undisclosed security vulnerabilities." +msgstr "" + +#. type: Plain text +msgid "" +"The following video shows the test suite in action. On the left, it displays " +"the scenario that is being tested, for example \"*symmetrically encrypting a " +"message*\". On the right, it displays Tails being manipulated automatically " +"according to the scenario." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<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" +"</video>\n" +msgstr "" + +#. type: Plain text +msgid "" +"This infrastructure increases the quality and reliability of our releases. " +"It also makes it faster to publish emergency security releases when " +"important vulnerabilities are fixed, for example in Firefox and Tor Browser." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Project sustainability" +msgstr "" + +#. type: Plain text +msgid "" +"The combination of these efforts both on visible improvements and behind the " +"scene had to go hand-in-hand with working on the sustainability of the " +"project as an organization." +msgstr "" + +#. type: Plain text +msgid "Since 2014:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The number of Tails users was multiplied by 2.4, increasing by 20% each year " +"on average, reaching 25000 daily users on average in 2019. Our yearly " +"budget was multiplied by a similar amount, to reach 240 000€ " +"(estimated) in 2019." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We worked on foundational documents and processes to ensure a healthy " +"community and project, such as our [[Code of Conduct|contribute/" +"working_together/code_of_conduct]], [[Social Contract|contribute/" +"working_together/social_contract]], and [[Missions and values|contribute/" +"mission]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img users-budget.svg link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Sustainability cannot go without enjoying working together and having fun. " +"We had memorable gatherings where we danced to the privacy-protecting sound " +"of [Rockwell — Somebody's Watching Me](https://www.youtube.com/watch?" +"v=7YvAYIJSSZY=), [Rap News — Whistleblower](https://www.youtube.com/" +"watch?v=7aiZjD0_mTA), [Pete Seeger — The Onion Makes Us Strong (*sic*)]" +"(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " +"Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " +"Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " +"d'état\"]]." +msgstr "" + +#. type: Plain text +msgid "In 2018 and 2019:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"66 different people contributed to our main source code, including coders, " +"writers, and translators." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"22 different people were paid to work on Tails: a few of them full-time, " +"most of them part-time or as consultants." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We attended 21 conferences in 10 different countries to stay connected with " +"the communities of the Tails ecosystem: related Free Software projects, " +"digital security trainers, and users." +msgstr "" + +#. type: Bullet: '- ' +msgid "20 people, both workers and volunteers, attended our yearly gatherings." +msgstr "" + +#. type: Plain text +msgid "" +"Meanwhile, we counted no less than [[21 projects|doc/about/" +"acknowledgments_and_similar_projects#similar_projects]], who also tried to " +"build a live operating system for privacy and anonymity but are now " +"abandoned." +msgstr "" + +#. type: Plain text +msgid "" +"A big thank you to everybody who either contributed to Tails or supported us:" +msgstr "" + +#. type: Bullet: '- ' +msgid "All the people mentioned in this article one way or another" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The people from other related Free Software projects that Tails relies upon" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The thousands of activists, journalists, and human-rights defenders who are " +"using Tails everyday" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The digital security trainers and technologists who got excited about Tails " +"in its early days and continue advocating for it today" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Everybody who ever contributed to our source code, including the dozens of " +"translators" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Our [[partners, sponsors|partners]], and everybody who ever donated to Tails." +msgstr "" + +#. type: Plain text +msgid "Thank you!" +msgstr "" diff --git a/wiki/src/news/celebrating_10_years.fr.po b/wiki/src/news/celebrating_10_years.fr.po new file mode 100644 index 0000000000000000000000000000000000000000..7a62f5c2c453a38649f4e8ec1c3031252e89f7de --- /dev/null +++ b/wiki/src/news/celebrating_10_years.fr.po @@ -0,0 +1,672 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-03 10:46+0000\n" +"PO-Revision-Date: 2020-01-25 11:37+0100\n" +"Last-Translator: xin <xin@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Celebrating 10 years of Tails!\"]]\n" +msgstr "[[!meta title=\"Fêtons les 10 ans de Tails !\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Mon, 15 Dec 2019 20:00:00 +0000\"]]\n" +msgstr "[[!meta date=\"Mon, 15 Dec 2019 20:00:00 +0000\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"In 2019, we are especially proud of celebrating with you the 10 years of " +"Tails." +msgstr "En 2019, nous avons la fierté de fêter avec vous les 10 ans de Tails." + +#. type: Plain text +msgid "" +"The first release of Tails, back then *amnesia*, was announced in 2009. " +"Since then we released 98 versions of Tails, which were used more than 40 " +"million times." +msgstr "" +"La première version de Tails, qui s'appelait *amnesia*, a été annoncée en " +"2009. Depuis lors nous avons publié 98 versions de Tails, qui ont été " +"utilisées plus de 40 millions de fois." + +#. type: Plain text +msgid "" +"Here are some stories about how it all started and some vintage screenshots. " +"But first of all, the birthday cake!" +msgstr "" +"Nous racontons ici quelques histoires sur comment tout à commencé et " +"quelques anciennes copies écrans. Mais avant tout, le gâteau d'anniversaire !" + +#. type: Plain text +#, no-wrap +msgid "" +"<pre style=\"width: 29em;\">\n" +" _____\n" +" |_|_|_|\n" +" | . . |\n" +" |_____|\n" +" ´ `\n" +" | |\n" +" | :-) |\n" +" {} {}\n" +" || ||\n" +" _||_______||_\n" +" {} {~ ~ ~ ~ ~ ~ ~} {}\n" +" || { ~ ~ ~ ~ ~ ~ } ||\n" +" __||__{_____________}__||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" {} { H a p p y \\} {}\n" +" || {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\} ||\n" +" __||_{___________________________}_||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" { B i r t h d a y }\n" +" { ! ! ! T a i ls ! ! ! }\n" +" {/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/}\n" +" {_______________________________________}\n" +msgstr "" +"<pre style=\"width: 29em;\">\n" +" _____\n" +" |_|_|_|\n" +" | . . |\n" +" |_____|\n" +" ´ `\n" +" | |\n" +" | :-) |\n" +" {} {}\n" +" || ||\n" +" _||_______||_\n" +" {} {~ ~ ~ ~ ~ ~ ~} {}\n" +" || { ~ ~ ~ ~ ~ ~ } ||\n" +" __||__{_____________}__||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" {} { B o n \\} {}\n" +" || {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\} ||\n" +" __||_{___________________________}_||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" { a n n i v e r s a i r e }\n" +" { ! ! ! T a i ls ! ! ! }\n" +" {/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/}\n" +" {_______________________________________}\n" + +#. type: Plain text +#, no-wrap +msgid "</pre>\n" +msgstr "</pre>\n" + +#. type: Title = +#, no-wrap +msgid "2009–2010: amnesia, T(A)ILS, and their ancestors\n" +msgstr "2009–2010 : amnesia, T(A)ILS et leurs ancêtres\n" + +#. type: Plain text +msgid "" +"Today, Tails is based on Debian, Tor, and GNOME. We inherit from their work " +"and try to contribute back in order to create a healthy ecosystem of " +"reliable, secure, and usable tools." +msgstr "" +"Aujourd'hui, Tails est basé sur Debian, Tor et GNOME. Nous avons hérité de " +"leur travail et essayons de contribuer en retour pour créer un écosystème " +"sain d'outils fiables, sécurisés et simples d'usages." + +#. type: Plain text +msgid "" +"When we started the *amnesia* project back in 2009, other projects before us " +"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 " +":" + +#. type: Bullet: '- ' +msgid "" +"[Knoppix](http://www.knoppix.org/), born in 2000 and still alive today, was " +"the first popular live Linux distribution. Back then, it was a " +"groundbreaking achievement to be able to start and use Linux without going " +"through lengthy, very complex, and uncertain Linux install \"parties\". " +"Knoppix was primarily designed for convenience and diagnosis." +msgstr "" +"[Knoppix](http://www.knoppix.org/), né en 2000 et toujours actif " +"aujourd'hui, a été la première distribution Linux live populaire. À ce " +"moment là, c'était une réalisation révolutionnaire d'être capable de " +"démarrer et d'utiliser Linux sans passer par de longues, très complexes et " +"incertaines « fêtes » d'installation de Linux. Knoppix a été conçu " +"principalement pour la commodité et le diagnostic." + +#. type: Bullet: '- ' +msgid "" +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." +"net:80/download/ele/), born in 2005 and based on Damn Small Linux, [Anonym." +"OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/" +"projects.html), born in 2006 and based on OpenBSD, and [Incognito](https://" +"web.archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/" +"incognito/index.php?option=com_content&task=view&id=28&Itemid=41), born in " +"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." + +#. type: Plain text +#, no-wrap +msgid "" +" *Incognito*\n" +" was the first live operating system to include a full set of\n" +" applications preconfigured to go through Tor (browser, email\n" +" client, IRC client, etc.), offer a persistent *Home*\n" +" directory, and even allow hosting onion services.\n" +" *Incognito* was also the first live operating system to receive an\n" +" [official recognition from the Tor\n" +" 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" +" 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" +" [reconnaissance officielle du projet\n" +" Tor](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-" +"agreement).\n" + +#. type: Plain text +#, no-wrap +msgid "" +" The original author of *Incognito*, *Pat Double*, resigned in 2007 and *anonym*, who\n" +" still works for Tails today, took over the maintenance.\n" +msgstr "" +" L'auteur original de *Incognito*, *Pat Double*, a démissionné en 2007 et *anonym*, qui \n" +" travaille encore aujourd'hui pour Tails, a pris en charge la maintenance.\n" + +#. type: Bullet: '- ' +msgid "" +"On August 16 2009, *intrigeri* announced the first release of *amnesia* on " +"the [*tor-talk* mailing list](https://lists.torproject.org/pipermail/tor-" +"talk/2009-August/002667.html)." +msgstr "" +"Le 16 août 2009, *intrigeri* a annoncé la première version d'*amnesia* sur " +"la [liste de discussion *tor-talk*](https://lists.torproject.org/pipermail/" +"tor-talk/2009-August/002667.html)." + +#. type: Bullet: '- ' +msgid "" +"In March 2010, *Incognito* was declared dead and *amnesia* its \"[spiritual " +"successor](https://web.archive.org/web/20100728224716/http://www." +"anonymityanywhere.com:80/incognito)\". Some weeks later, *amnesia* would be " +"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*." + +#. type: Plain text +#, no-wrap +msgid "" +" We quickly realized that having parenthesis in our name looked very\n" +" radical but was quite confusing and finally settled on *Tails* in 2011.\n" +" Eight years later, we still see most people on the Internet write it\n" +" TAILS though it's never been written in all caps on our website.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Hey people, it's Tails not TAILS!\n" +msgstr " Hey les gens, c'est Tails, pas TAILS !\n" + +#. type: Plain text +msgid "" +"This is how *amnesia* 0.2 and our website looked like in 2009. The browser " +"was *Iceweasel* with *Tor Button* and the Tor controller was *TorK*." +msgstr "" +"Voilà à quoi ressemblaient *amnesia* 0.2 et notre site Web en 2009. Le " +"navigateur était *Iceweasel* avec le *Bouton Tor* et le contrôleur Tor était " +"*TorK*." + +#. type: Plain text +#, no-wrap +msgid "[[!img amnesia-0.2.png link=\"no\" alt=\"\"]]\n" +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" + +#. type: Plain text +msgid "" +"Until Tails 1.0 (April 2014), we would develop most of the core features " +"that make Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc=" +"\"Fedora Live USB Creator\"]]" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Persistence**" +msgstr "**Persistance**" + +#. type: Bullet: '- ' +msgid "**Tails Greeter**, our welcome screen" +msgstr "**Tails Greeter**, notre écran de bienvenue" + +#. type: Bullet: '- ' +msgid "**Automatic upgades**" +msgstr "**Mises à jour automatiques**" + +#. type: Bullet: '- ' +msgid "**MAC Spoofing**" +msgstr "**Masquage d'adresses MAC**" + +#. type: Bullet: '- ' +msgid "" +"**MAT (Metadata Anonymization Toolkit)**, which was developed by Julien " +"Voisin as a Google Summer of Code with our help in 2011." +msgstr "" + +#. type: Plain text +msgid "" +"To support this intense development and the increased responsibility on our " +"shoulders, we accepted our first grant, from the *Swedish International " +"Development Agency* in 2011 and started paying for some of the development " +"work." +msgstr "" + +#. type: Plain text +msgid "" +"In October 2012, Tails was started around 2 500 times a day, 10 times " +"less than today." +msgstr "" + +#. type: Plain text +msgid "" +"In June 2013, Edward Snowden would reveal thousands of classified documents " +"on the surveillance programs of the NSA. Tails got mentioned by famous " +"technologists [Bruce Schneier](https://www.theguardian.com/world/2013/sep/05/" +"nsa-how-to-remain-secure-surveillance) and [Micah Lee](https://freedom." +"press/news/encryption-works-how-to-protect-your-privacy-and-your-sources-in-" +"the-age-of-nsa-surveillance/) as one of the tools that protect from the NSA " +"surveillance." +msgstr "" + +#. type: Plain text +msgid "" +"In March 2014, we received our first award, the [Access Innovation Prize for " +"Endpoint Security](https://www.accessnow.org/blog/2014/03/11/2014-access-" +"innovation-prize-winners-announced-at-rightscon). According to Access Now:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"> Tails embodies the successful collaboration of developers, trainers,\n" +"> security professionals towards tackling the spectrum of user needs --\n" +"> from usability to security -- in high-risk environments.\n" +msgstr "" + +#. type: Plain text +msgid "" +"The same month, we launched a [[logo contest|blueprint/logo]]. It was " +"heartwarming to receive 36 very creative proposals. Here are some of the " +"best ones:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img logos.png link=\"no\" alt=\"\"]]\n" +msgstr "[[!img logos.png link=\"no\" alt=\"\"]]\n" + +#. type: Plain text +msgid "" +"In April 2014, Freedom of the Press Foundation launched the first " +"crowdfunding campaign for Tails and revealed that Tails \"has been critical " +"to all of the main NSA journalists\". Since then, [Edward Snowden](https://" +"twitter.com/Snowden/status/975827513321623553) and journalists [Laura " +"Poitras](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-" +"making-citizenfour), [Glenn Greenwald](https://www.eff.org/" +"deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), and [Micah " +"Lee](https://theintercept.com/2014/10/28/smuggling-snowden-secrets/) have " +"repeatedly stated the importance of Tails for their work and supported us in " +"many ways." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p style=\"max-width: 800px;\">\n" +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 "" + +#. type: Plain text +#, no-wrap +msgid "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden showing NSA documents on Tails to Ewen MacAskill\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<em>Images from <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em>\n" +"</p>\n" +msgstr "" + +#. type: Plain text +msgid "" +"A few weeks later, the release of Tails 1.0 got press coverage on [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), " +"and many others. In December, [Der Spiegel](https://www.spiegel.de/media/" +"media-35535.pdf) published internal NSA slides that categorize Tails as " +"\"catastrophic impact\" and \"highest priority\":" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img nsa.png link=\"https://www.spiegel.de/media/media-35535.pdf\"\n" +"alt=\"Tor, TrueCrypt, Tails are classified as 'Use Risk: Current Highest\n" +"Priority Target Use' and 'Impact: Catastrophic (near-total loss/lack of\n" +"insight to target communications, presence)'\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how Tails 1.0 looked like in 2014. It had a camouflage mode that " +"looked like Windows XP and the Tor controller was *Vidalia*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img tails-1.0.png link=\"no\" alt=\"\"]]\n" +msgstr "[[!img tails-1.0.png link=\"no\" alt=\"\"]]\n" + +#. type: Title = +#, no-wrap +msgid "2015-2019 - Maturity, user experience, and automation\n" +msgstr "" + +#. type: Plain text +msgid "" +"In May 2014, the UX team at [NUMA Paris](https://web.archive.org/" +"web/20140524130455/http://events.numaparis.com/Evenements/Apero-Experience-" +"Utilisateur-Tails-The-Amnesic-Incognito-Live-System) invited us to organize " +"a usability testing session of Tails with journalists. We asked participants " +"to do slightly complex tasks such as establishing an encrypted conversation " +"with someone else using *Pidgin*. Reality hit us hard when all the " +"journalists in the room encountered problems to either install, start, or " +"connect Tails to Tor. We realized that, despite having laid down most of the " +"core features in Tails 1.0, we still had a lot of work to do to make Tails " +"easy to use by most people." +msgstr "" + +#. type: Plain text +msgid "" +"Since then, we focused our work on 3 aspects of the project that don't bring " +"in so many new features but rather ensure its long term sustainability and " +"growth: user experience, continuous integration, and project sustainability." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "User experience" +msgstr "" + +#. type: Plain text +msgid "" +"Since these first usability tests in 2014, we systematically relied on user-" +"centered design practices to ensure that all the major changes that we do in " +"Tails are making it easier to use. We conducted 10 sessions of usability " +"tests, used [paper prototypes](https://simplysecure.org/blog/formative-" +"testing), conducted [[quantitative surveys|blueprint/veracrypt]], and " +"defined better our audience using [[personas|contribute/personas]]." +msgstr "" + +#. 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 "" + +#. type: Plain text +msgid "" +"This usability work was key in all the work that we did since 2015 to make " +"Tails easier to install:" +msgstr "" + +#. type: Plain text +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)" +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Continuous integration" +msgstr "" + +#. type: Plain text +msgid "" +"To cope with this rapid development and the many releases, we built a " +"cutting edge *continuous integration* infrastructure:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Images of Tails are [built automatically](https://nightly.tails.boum.org/) " +"every time we develop a change for an upcoming release." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"These images are [[tested automatically|contribute/release_process/test/" +"automated_tests]] against a comprehensive list of usability and security " +"scenarios." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"All our images are [[reproducible|news/reproducible_Tails]], which allows " +"security researchers to verify that the images distributed on our website " +"have not been modified to introduce undisclosed security vulnerabilities." +msgstr "" + +#. type: Plain text +msgid "" +"The following video shows the test suite in action. On the left, it displays " +"the scenario that is being tested, for example \"*symmetrically encrypting a " +"message*\". On the right, it displays Tails being manipulated automatically " +"according to the scenario." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<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" +"</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" +"</video>\n" + +#. type: Plain text +msgid "" +"This infrastructure increases the quality and reliability of our releases. " +"It also makes it faster to publish emergency security releases when " +"important vulnerabilities are fixed, for example in Firefox and Tor Browser." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Project sustainability" +msgstr "" + +#. type: Plain text +msgid "" +"The combination of these efforts both on visible improvements and behind the " +"scene had to go hand-in-hand with working on the sustainability of the " +"project as an organization." +msgstr "" + +#. type: Plain text +msgid "Since 2014:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The number of Tails users was multiplied by 2.4, increasing by 20% each year " +"on average, reaching 25000 daily users on average in 2019. Our yearly " +"budget was multiplied by a similar amount, to reach 240 000€ " +"(estimated) in 2019." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We worked on foundational documents and processes to ensure a healthy " +"community and project, such as our [[Code of Conduct|contribute/" +"working_together/code_of_conduct]], [[Social Contract|contribute/" +"working_together/social_contract]], and [[Missions and values|contribute/" +"mission]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img users-budget.svg link=\"no\" alt=\"\"]]\n" +msgstr "[[!img users-budget.svg link=\"no\" alt=\"\"]]\n" + +#. type: Plain text +msgid "" +"Sustainability cannot go without enjoying working together and having fun. " +"We had memorable gatherings where we danced to the privacy-protecting sound " +"of [Rockwell — Somebody's Watching Me](https://www.youtube.com/watch?" +"v=7YvAYIJSSZY=), [Rap News — Whistleblower](https://www.youtube.com/" +"watch?v=7aiZjD0_mTA), [Pete Seeger — The Onion Makes Us Strong (*sic*)]" +"(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " +"Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " +"Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " +"d'état\"]]." +msgstr "" + +#. type: Plain text +msgid "In 2018 and 2019:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"66 different people contributed to our main source code, including coders, " +"writers, and translators." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"22 different people were paid to work on Tails: a few of them full-time, " +"most of them part-time or as consultants." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We attended 21 conferences in 10 different countries to stay connected with " +"the communities of the Tails ecosystem: related Free Software projects, " +"digital security trainers, and users." +msgstr "" + +#. type: Bullet: '- ' +msgid "20 people, both workers and volunteers, attended our yearly gatherings." +msgstr "" + +#. type: Plain text +msgid "" +"Meanwhile, we counted no less than [[21 projects|doc/about/" +"acknowledgments_and_similar_projects#similar_projects]], who also tried to " +"build a live operating system for privacy and anonymity but are now " +"abandoned." +msgstr "" + +#. type: Plain text +msgid "" +"A big thank you to everybody who either contributed to Tails or supported us:" +msgstr "" + +#. type: Bullet: '- ' +msgid "All the people mentioned in this article one way or another" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The people from other related Free Software projects that Tails relies upon" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The thousands of activists, journalists, and human-rights defenders who are " +"using Tails everyday" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The digital security trainers and technologists who got excited about Tails " +"in its early days and continue advocating for it today" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Everybody who ever contributed to our source code, including the dozens of " +"translators" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Our [[partners, sponsors|partners]], and everybody who ever donated to Tails." +msgstr "" + +#. type: Plain text +msgid "Thank you!" +msgstr "" diff --git a/wiki/src/news/celebrating_10_years.id.po b/wiki/src/news/celebrating_10_years.id.po new file mode 100644 index 0000000000000000000000000000000000000000..fa2f366736cfa408d394c3d92a659199d4f61709 --- /dev/null +++ b/wiki/src/news/celebrating_10_years.id.po @@ -0,0 +1,592 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-03 10:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Celebrating 10 years of Tails!\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Mon, 15 Dec 2019 20:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"In 2019, we are especially proud of celebrating with you the 10 years of " +"Tails." +msgstr "" + +#. type: Plain text +msgid "" +"The first release of Tails, back then *amnesia*, was announced in 2009. " +"Since then we released 98 versions of Tails, which were used more than 40 " +"million times." +msgstr "" + +#. type: Plain text +msgid "" +"Here are some stories about how it all started and some vintage screenshots. " +"But first of all, the birthday cake!" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<pre style=\"width: 29em;\">\n" +" _____\n" +" |_|_|_|\n" +" | . . |\n" +" |_____|\n" +" ´ `\n" +" | |\n" +" | :-) |\n" +" {} {}\n" +" || ||\n" +" _||_______||_\n" +" {} {~ ~ ~ ~ ~ ~ ~} {}\n" +" || { ~ ~ ~ ~ ~ ~ } ||\n" +" __||__{_____________}__||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" {} { H a p p y \\} {}\n" +" || {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\} ||\n" +" __||_{___________________________}_||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" { B i r t h d a y }\n" +" { ! ! ! T a i ls ! ! ! }\n" +" {/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/}\n" +" {_______________________________________}\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</pre>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2009–2010: amnesia, T(A)ILS, and their ancestors\n" +msgstr "" + +#. type: Plain text +msgid "" +"Today, Tails is based on Debian, Tor, and GNOME. We inherit from their work " +"and try to contribute back in order to create a healthy ecosystem of " +"reliable, secure, and usable tools." +msgstr "" + +#. type: Plain text +msgid "" +"When we started the *amnesia* project back in 2009, other projects before us " +"paved the way to what is Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[Knoppix](http://www.knoppix.org/), born in 2000 and still alive today, was " +"the first popular live Linux distribution. Back then, it was a " +"groundbreaking achievement to be able to start and use Linux without going " +"through lengthy, very complex, and uncertain Linux install \"parties\". " +"Knoppix was primarily designed for convenience and diagnosis." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." +"net:80/download/ele/), born in 2005 and based on Damn Small Linux, [Anonym." +"OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/" +"projects.html), born in 2006 and based on OpenBSD, and [Incognito](https://" +"web.archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/" +"incognito/index.php?option=com_content&task=view&id=28&Itemid=41), born in " +"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 "" + +#. type: Plain text +#, no-wrap +msgid "" +" *Incognito*\n" +" was the first live operating system to include a full set of\n" +" applications preconfigured to go through Tor (browser, email\n" +" client, IRC client, etc.), offer a persistent *Home*\n" +" directory, and even allow hosting onion services.\n" +" *Incognito* was also the first live operating system to receive an\n" +" [official recognition from the Tor\n" +" Project](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement).\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" The original author of *Incognito*, *Pat Double*, resigned in 2007 and *anonym*, who\n" +" still works for Tails today, took over the maintenance.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"On August 16 2009, *intrigeri* announced the first release of *amnesia* on " +"the [*tor-talk* mailing list](https://lists.torproject.org/pipermail/tor-" +"talk/2009-August/002667.html)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"In March 2010, *Incognito* was declared dead and *amnesia* its \"[spiritual " +"successor](https://web.archive.org/web/20100728224716/http://www." +"anonymityanywhere.com:80/incognito)\". Some weeks later, *amnesia* would be " +"renamed *T(A)ILS*, *The Amnesic Incognito Live System*, to act the fusion " +"between *amnesia* and *Incognito*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We quickly realized that having parenthesis in our name looked very\n" +" radical but was quite confusing and finally settled on *Tails* in 2011.\n" +" Eight years later, we still see most people on the Internet write it\n" +" TAILS though it's never been written in all caps on our website.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Hey people, it's Tails not TAILS!\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how *amnesia* 0.2 and our website looked like in 2009. The browser " +"was *Iceweasel* with *Tor Button* and the Tor controller was *TorK*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img amnesia-0.2.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2011-2014: core features, Tails 1.0, and public recognition\n" +msgstr "" + +#. type: Plain text +msgid "" +"Until Tails 1.0 (April 2014), we would develop most of the core features " +"that make Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc=" +"\"Fedora Live USB Creator\"]]" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Persistence**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Tails Greeter**, our welcome screen" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Automatic upgades**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**MAC Spoofing**" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**MAT (Metadata Anonymization Toolkit)**, which was developed by Julien " +"Voisin as a Google Summer of Code with our help in 2011." +msgstr "" + +#. type: Plain text +msgid "" +"To support this intense development and the increased responsibility on our " +"shoulders, we accepted our first grant, from the *Swedish International " +"Development Agency* in 2011 and started paying for some of the development " +"work." +msgstr "" + +#. type: Plain text +msgid "" +"In October 2012, Tails was started around 2 500 times a day, 10 times " +"less than today." +msgstr "" + +#. type: Plain text +msgid "" +"In June 2013, Edward Snowden would reveal thousands of classified documents " +"on the surveillance programs of the NSA. Tails got mentioned by famous " +"technologists [Bruce Schneier](https://www.theguardian.com/world/2013/sep/05/" +"nsa-how-to-remain-secure-surveillance) and [Micah Lee](https://freedom." +"press/news/encryption-works-how-to-protect-your-privacy-and-your-sources-in-" +"the-age-of-nsa-surveillance/) as one of the tools that protect from the NSA " +"surveillance." +msgstr "" + +#. type: Plain text +msgid "" +"In March 2014, we received our first award, the [Access Innovation Prize for " +"Endpoint Security](https://www.accessnow.org/blog/2014/03/11/2014-access-" +"innovation-prize-winners-announced-at-rightscon). According to Access Now:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"> Tails embodies the successful collaboration of developers, trainers,\n" +"> security professionals towards tackling the spectrum of user needs --\n" +"> from usability to security -- in high-risk environments.\n" +msgstr "" + +#. type: Plain text +msgid "" +"The same month, we launched a [[logo contest|blueprint/logo]]. It was " +"heartwarming to receive 36 very creative proposals. Here are some of the " +"best ones:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img logos.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"In April 2014, Freedom of the Press Foundation launched the first " +"crowdfunding campaign for Tails and revealed that Tails \"has been critical " +"to all of the main NSA journalists\". Since then, [Edward Snowden](https://" +"twitter.com/Snowden/status/975827513321623553) and journalists [Laura " +"Poitras](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-" +"making-citizenfour), [Glenn Greenwald](https://www.eff.org/" +"deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), and [Micah " +"Lee](https://theintercept.com/2014/10/28/smuggling-snowden-secrets/) have " +"repeatedly stated the importance of Tails for their work and supported us in " +"many ways." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p style=\"max-width: 800px;\">\n" +msgstr "" + +#. 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 "" + +#. type: Plain text +#, no-wrap +msgid "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden showing NSA documents on Tails to Ewen MacAskill\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<em>Images from <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em>\n" +"</p>\n" +msgstr "" + +#. type: Plain text +msgid "" +"A few weeks later, the release of Tails 1.0 got press coverage on [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), " +"and many others. In December, [Der Spiegel](https://www.spiegel.de/media/" +"media-35535.pdf) published internal NSA slides that categorize Tails as " +"\"catastrophic impact\" and \"highest priority\":" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img nsa.png link=\"https://www.spiegel.de/media/media-35535.pdf\"\n" +"alt=\"Tor, TrueCrypt, Tails are classified as 'Use Risk: Current Highest\n" +"Priority Target Use' and 'Impact: Catastrophic (near-total loss/lack of\n" +"insight to target communications, presence)'\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how Tails 1.0 looked like in 2014. It had a camouflage mode that " +"looked like Windows XP and the Tor controller was *Vidalia*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img tails-1.0.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2015-2019 - Maturity, user experience, and automation\n" +msgstr "" + +#. type: Plain text +msgid "" +"In May 2014, the UX team at [NUMA Paris](https://web.archive.org/" +"web/20140524130455/http://events.numaparis.com/Evenements/Apero-Experience-" +"Utilisateur-Tails-The-Amnesic-Incognito-Live-System) invited us to organize " +"a usability testing session of Tails with journalists. We asked participants " +"to do slightly complex tasks such as establishing an encrypted conversation " +"with someone else using *Pidgin*. Reality hit us hard when all the " +"journalists in the room encountered problems to either install, start, or " +"connect Tails to Tor. We realized that, despite having laid down most of the " +"core features in Tails 1.0, we still had a lot of work to do to make Tails " +"easy to use by most people." +msgstr "" + +#. type: Plain text +msgid "" +"Since then, we focused our work on 3 aspects of the project that don't bring " +"in so many new features but rather ensure its long term sustainability and " +"growth: user experience, continuous integration, and project sustainability." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "User experience" +msgstr "" + +#. type: Plain text +msgid "" +"Since these first usability tests in 2014, we systematically relied on user-" +"centered design practices to ensure that all the major changes that we do in " +"Tails are making it easier to use. We conducted 10 sessions of usability " +"tests, used [paper prototypes](https://simplysecure.org/blog/formative-" +"testing), conducted [[quantitative surveys|blueprint/veracrypt]], and " +"defined better our audience using [[personas|contribute/personas]]." +msgstr "" + +#. 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 "" + +#. type: Plain text +msgid "" +"This usability work was key in all the work that we did since 2015 to make " +"Tails easier to install:" +msgstr "" + +#. type: Plain text +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)" +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Continuous integration" +msgstr "" + +#. type: Plain text +msgid "" +"To cope with this rapid development and the many releases, we built a " +"cutting edge *continuous integration* infrastructure:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Images of Tails are [built automatically](https://nightly.tails.boum.org/) " +"every time we develop a change for an upcoming release." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"These images are [[tested automatically|contribute/release_process/test/" +"automated_tests]] against a comprehensive list of usability and security " +"scenarios." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"All our images are [[reproducible|news/reproducible_Tails]], which allows " +"security researchers to verify that the images distributed on our website " +"have not been modified to introduce undisclosed security vulnerabilities." +msgstr "" + +#. type: Plain text +msgid "" +"The following video shows the test suite in action. On the left, it displays " +"the scenario that is being tested, for example \"*symmetrically encrypting a " +"message*\". On the right, it displays Tails being manipulated automatically " +"according to the scenario." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<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" +"</video>\n" +msgstr "" + +#. type: Plain text +msgid "" +"This infrastructure increases the quality and reliability of our releases. " +"It also makes it faster to publish emergency security releases when " +"important vulnerabilities are fixed, for example in Firefox and Tor Browser." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Project sustainability" +msgstr "" + +#. type: Plain text +msgid "" +"The combination of these efforts both on visible improvements and behind the " +"scene had to go hand-in-hand with working on the sustainability of the " +"project as an organization." +msgstr "" + +#. type: Plain text +msgid "Since 2014:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The number of Tails users was multiplied by 2.4, increasing by 20% each year " +"on average, reaching 25000 daily users on average in 2019. Our yearly " +"budget was multiplied by a similar amount, to reach 240 000€ " +"(estimated) in 2019." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We worked on foundational documents and processes to ensure a healthy " +"community and project, such as our [[Code of Conduct|contribute/" +"working_together/code_of_conduct]], [[Social Contract|contribute/" +"working_together/social_contract]], and [[Missions and values|contribute/" +"mission]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img users-budget.svg link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Sustainability cannot go without enjoying working together and having fun. " +"We had memorable gatherings where we danced to the privacy-protecting sound " +"of [Rockwell — Somebody's Watching Me](https://www.youtube.com/watch?" +"v=7YvAYIJSSZY=), [Rap News — Whistleblower](https://www.youtube.com/" +"watch?v=7aiZjD0_mTA), [Pete Seeger — The Onion Makes Us Strong (*sic*)]" +"(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " +"Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " +"Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " +"d'état\"]]." +msgstr "" + +#. type: Plain text +msgid "In 2018 and 2019:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"66 different people contributed to our main source code, including coders, " +"writers, and translators." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"22 different people were paid to work on Tails: a few of them full-time, " +"most of them part-time or as consultants." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We attended 21 conferences in 10 different countries to stay connected with " +"the communities of the Tails ecosystem: related Free Software projects, " +"digital security trainers, and users." +msgstr "" + +#. type: Bullet: '- ' +msgid "20 people, both workers and volunteers, attended our yearly gatherings." +msgstr "" + +#. type: Plain text +msgid "" +"Meanwhile, we counted no less than [[21 projects|doc/about/" +"acknowledgments_and_similar_projects#similar_projects]], who also tried to " +"build a live operating system for privacy and anonymity but are now " +"abandoned." +msgstr "" + +#. type: Plain text +msgid "" +"A big thank you to everybody who either contributed to Tails or supported us:" +msgstr "" + +#. type: Bullet: '- ' +msgid "All the people mentioned in this article one way or another" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The people from other related Free Software projects that Tails relies upon" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The thousands of activists, journalists, and human-rights defenders who are " +"using Tails everyday" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The digital security trainers and technologists who got excited about Tails " +"in its early days and continue advocating for it today" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Everybody who ever contributed to our source code, including the dozens of " +"translators" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Our [[partners, sponsors|partners]], and everybody who ever donated to Tails." +msgstr "" + +#. type: Plain text +msgid "Thank you!" +msgstr "" diff --git a/wiki/src/news/celebrating_10_years.it.po b/wiki/src/news/celebrating_10_years.it.po new file mode 100644 index 0000000000000000000000000000000000000000..28e4bc312b84cf90f3b63fae431dbd9ea27e209f --- /dev/null +++ b/wiki/src/news/celebrating_10_years.it.po @@ -0,0 +1,592 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-03 10:46+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" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Celebrating 10 years of Tails!\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Mon, 15 Dec 2019 20:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"In 2019, we are especially proud of celebrating with you the 10 years of " +"Tails." +msgstr "" + +#. type: Plain text +msgid "" +"The first release of Tails, back then *amnesia*, was announced in 2009. " +"Since then we released 98 versions of Tails, which were used more than 40 " +"million times." +msgstr "" + +#. type: Plain text +msgid "" +"Here are some stories about how it all started and some vintage screenshots. " +"But first of all, the birthday cake!" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<pre style=\"width: 29em;\">\n" +" _____\n" +" |_|_|_|\n" +" | . . |\n" +" |_____|\n" +" ´ `\n" +" | |\n" +" | :-) |\n" +" {} {}\n" +" || ||\n" +" _||_______||_\n" +" {} {~ ~ ~ ~ ~ ~ ~} {}\n" +" || { ~ ~ ~ ~ ~ ~ } ||\n" +" __||__{_____________}__||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" {} { H a p p y \\} {}\n" +" || {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\} ||\n" +" __||_{___________________________}_||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" { B i r t h d a y }\n" +" { ! ! ! T a i ls ! ! ! }\n" +" {/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/}\n" +" {_______________________________________}\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</pre>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2009–2010: amnesia, T(A)ILS, and their ancestors\n" +msgstr "" + +#. type: Plain text +msgid "" +"Today, Tails is based on Debian, Tor, and GNOME. We inherit from their work " +"and try to contribute back in order to create a healthy ecosystem of " +"reliable, secure, and usable tools." +msgstr "" + +#. type: Plain text +msgid "" +"When we started the *amnesia* project back in 2009, other projects before us " +"paved the way to what is Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[Knoppix](http://www.knoppix.org/), born in 2000 and still alive today, was " +"the first popular live Linux distribution. Back then, it was a " +"groundbreaking achievement to be able to start and use Linux without going " +"through lengthy, very complex, and uncertain Linux install \"parties\". " +"Knoppix was primarily designed for convenience and diagnosis." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." +"net:80/download/ele/), born in 2005 and based on Damn Small Linux, [Anonym." +"OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/" +"projects.html), born in 2006 and based on OpenBSD, and [Incognito](https://" +"web.archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/" +"incognito/index.php?option=com_content&task=view&id=28&Itemid=41), born in " +"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 "" + +#. type: Plain text +#, no-wrap +msgid "" +" *Incognito*\n" +" was the first live operating system to include a full set of\n" +" applications preconfigured to go through Tor (browser, email\n" +" client, IRC client, etc.), offer a persistent *Home*\n" +" directory, and even allow hosting onion services.\n" +" *Incognito* was also the first live operating system to receive an\n" +" [official recognition from the Tor\n" +" Project](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement).\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" The original author of *Incognito*, *Pat Double*, resigned in 2007 and *anonym*, who\n" +" still works for Tails today, took over the maintenance.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"On August 16 2009, *intrigeri* announced the first release of *amnesia* on " +"the [*tor-talk* mailing list](https://lists.torproject.org/pipermail/tor-" +"talk/2009-August/002667.html)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"In March 2010, *Incognito* was declared dead and *amnesia* its \"[spiritual " +"successor](https://web.archive.org/web/20100728224716/http://www." +"anonymityanywhere.com:80/incognito)\". Some weeks later, *amnesia* would be " +"renamed *T(A)ILS*, *The Amnesic Incognito Live System*, to act the fusion " +"between *amnesia* and *Incognito*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We quickly realized that having parenthesis in our name looked very\n" +" radical but was quite confusing and finally settled on *Tails* in 2011.\n" +" Eight years later, we still see most people on the Internet write it\n" +" TAILS though it's never been written in all caps on our website.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Hey people, it's Tails not TAILS!\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how *amnesia* 0.2 and our website looked like in 2009. The browser " +"was *Iceweasel* with *Tor Button* and the Tor controller was *TorK*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img amnesia-0.2.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2011-2014: core features, Tails 1.0, and public recognition\n" +msgstr "" + +#. type: Plain text +msgid "" +"Until Tails 1.0 (April 2014), we would develop most of the core features " +"that make Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc=" +"\"Fedora Live USB Creator\"]]" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Persistence**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Tails Greeter**, our welcome screen" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Automatic upgades**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**MAC Spoofing**" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**MAT (Metadata Anonymization Toolkit)**, which was developed by Julien " +"Voisin as a Google Summer of Code with our help in 2011." +msgstr "" + +#. type: Plain text +msgid "" +"To support this intense development and the increased responsibility on our " +"shoulders, we accepted our first grant, from the *Swedish International " +"Development Agency* in 2011 and started paying for some of the development " +"work." +msgstr "" + +#. type: Plain text +msgid "" +"In October 2012, Tails was started around 2 500 times a day, 10 times " +"less than today." +msgstr "" + +#. type: Plain text +msgid "" +"In June 2013, Edward Snowden would reveal thousands of classified documents " +"on the surveillance programs of the NSA. Tails got mentioned by famous " +"technologists [Bruce Schneier](https://www.theguardian.com/world/2013/sep/05/" +"nsa-how-to-remain-secure-surveillance) and [Micah Lee](https://freedom." +"press/news/encryption-works-how-to-protect-your-privacy-and-your-sources-in-" +"the-age-of-nsa-surveillance/) as one of the tools that protect from the NSA " +"surveillance." +msgstr "" + +#. type: Plain text +msgid "" +"In March 2014, we received our first award, the [Access Innovation Prize for " +"Endpoint Security](https://www.accessnow.org/blog/2014/03/11/2014-access-" +"innovation-prize-winners-announced-at-rightscon). According to Access Now:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"> Tails embodies the successful collaboration of developers, trainers,\n" +"> security professionals towards tackling the spectrum of user needs --\n" +"> from usability to security -- in high-risk environments.\n" +msgstr "" + +#. type: Plain text +msgid "" +"The same month, we launched a [[logo contest|blueprint/logo]]. It was " +"heartwarming to receive 36 very creative proposals. Here are some of the " +"best ones:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img logos.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"In April 2014, Freedom of the Press Foundation launched the first " +"crowdfunding campaign for Tails and revealed that Tails \"has been critical " +"to all of the main NSA journalists\". Since then, [Edward Snowden](https://" +"twitter.com/Snowden/status/975827513321623553) and journalists [Laura " +"Poitras](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-" +"making-citizenfour), [Glenn Greenwald](https://www.eff.org/" +"deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), and [Micah " +"Lee](https://theintercept.com/2014/10/28/smuggling-snowden-secrets/) have " +"repeatedly stated the importance of Tails for their work and supported us in " +"many ways." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p style=\"max-width: 800px;\">\n" +msgstr "" + +#. 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 "" + +#. type: Plain text +#, no-wrap +msgid "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden showing NSA documents on Tails to Ewen MacAskill\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<em>Images from <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em>\n" +"</p>\n" +msgstr "" + +#. type: Plain text +msgid "" +"A few weeks later, the release of Tails 1.0 got press coverage on [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), " +"and many others. In December, [Der Spiegel](https://www.spiegel.de/media/" +"media-35535.pdf) published internal NSA slides that categorize Tails as " +"\"catastrophic impact\" and \"highest priority\":" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img nsa.png link=\"https://www.spiegel.de/media/media-35535.pdf\"\n" +"alt=\"Tor, TrueCrypt, Tails are classified as 'Use Risk: Current Highest\n" +"Priority Target Use' and 'Impact: Catastrophic (near-total loss/lack of\n" +"insight to target communications, presence)'\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how Tails 1.0 looked like in 2014. It had a camouflage mode that " +"looked like Windows XP and the Tor controller was *Vidalia*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img tails-1.0.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2015-2019 - Maturity, user experience, and automation\n" +msgstr "" + +#. type: Plain text +msgid "" +"In May 2014, the UX team at [NUMA Paris](https://web.archive.org/" +"web/20140524130455/http://events.numaparis.com/Evenements/Apero-Experience-" +"Utilisateur-Tails-The-Amnesic-Incognito-Live-System) invited us to organize " +"a usability testing session of Tails with journalists. We asked participants " +"to do slightly complex tasks such as establishing an encrypted conversation " +"with someone else using *Pidgin*. Reality hit us hard when all the " +"journalists in the room encountered problems to either install, start, or " +"connect Tails to Tor. We realized that, despite having laid down most of the " +"core features in Tails 1.0, we still had a lot of work to do to make Tails " +"easy to use by most people." +msgstr "" + +#. type: Plain text +msgid "" +"Since then, we focused our work on 3 aspects of the project that don't bring " +"in so many new features but rather ensure its long term sustainability and " +"growth: user experience, continuous integration, and project sustainability." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "User experience" +msgstr "" + +#. type: Plain text +msgid "" +"Since these first usability tests in 2014, we systematically relied on user-" +"centered design practices to ensure that all the major changes that we do in " +"Tails are making it easier to use. We conducted 10 sessions of usability " +"tests, used [paper prototypes](https://simplysecure.org/blog/formative-" +"testing), conducted [[quantitative surveys|blueprint/veracrypt]], and " +"defined better our audience using [[personas|contribute/personas]]." +msgstr "" + +#. 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 "" + +#. type: Plain text +msgid "" +"This usability work was key in all the work that we did since 2015 to make " +"Tails easier to install:" +msgstr "" + +#. type: Plain text +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)" +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Continuous integration" +msgstr "" + +#. type: Plain text +msgid "" +"To cope with this rapid development and the many releases, we built a " +"cutting edge *continuous integration* infrastructure:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Images of Tails are [built automatically](https://nightly.tails.boum.org/) " +"every time we develop a change for an upcoming release." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"These images are [[tested automatically|contribute/release_process/test/" +"automated_tests]] against a comprehensive list of usability and security " +"scenarios." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"All our images are [[reproducible|news/reproducible_Tails]], which allows " +"security researchers to verify that the images distributed on our website " +"have not been modified to introduce undisclosed security vulnerabilities." +msgstr "" + +#. type: Plain text +msgid "" +"The following video shows the test suite in action. On the left, it displays " +"the scenario that is being tested, for example \"*symmetrically encrypting a " +"message*\". On the right, it displays Tails being manipulated automatically " +"according to the scenario." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<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" +"</video>\n" +msgstr "" + +#. type: Plain text +msgid "" +"This infrastructure increases the quality and reliability of our releases. " +"It also makes it faster to publish emergency security releases when " +"important vulnerabilities are fixed, for example in Firefox and Tor Browser." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Project sustainability" +msgstr "" + +#. type: Plain text +msgid "" +"The combination of these efforts both on visible improvements and behind the " +"scene had to go hand-in-hand with working on the sustainability of the " +"project as an organization." +msgstr "" + +#. type: Plain text +msgid "Since 2014:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The number of Tails users was multiplied by 2.4, increasing by 20% each year " +"on average, reaching 25000 daily users on average in 2019. Our yearly " +"budget was multiplied by a similar amount, to reach 240 000€ " +"(estimated) in 2019." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We worked on foundational documents and processes to ensure a healthy " +"community and project, such as our [[Code of Conduct|contribute/" +"working_together/code_of_conduct]], [[Social Contract|contribute/" +"working_together/social_contract]], and [[Missions and values|contribute/" +"mission]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img users-budget.svg link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Sustainability cannot go without enjoying working together and having fun. " +"We had memorable gatherings where we danced to the privacy-protecting sound " +"of [Rockwell — Somebody's Watching Me](https://www.youtube.com/watch?" +"v=7YvAYIJSSZY=), [Rap News — Whistleblower](https://www.youtube.com/" +"watch?v=7aiZjD0_mTA), [Pete Seeger — The Onion Makes Us Strong (*sic*)]" +"(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " +"Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " +"Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " +"d'état\"]]." +msgstr "" + +#. type: Plain text +msgid "In 2018 and 2019:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"66 different people contributed to our main source code, including coders, " +"writers, and translators." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"22 different people were paid to work on Tails: a few of them full-time, " +"most of them part-time or as consultants." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We attended 21 conferences in 10 different countries to stay connected with " +"the communities of the Tails ecosystem: related Free Software projects, " +"digital security trainers, and users." +msgstr "" + +#. type: Bullet: '- ' +msgid "20 people, both workers and volunteers, attended our yearly gatherings." +msgstr "" + +#. type: Plain text +msgid "" +"Meanwhile, we counted no less than [[21 projects|doc/about/" +"acknowledgments_and_similar_projects#similar_projects]], who also tried to " +"build a live operating system for privacy and anonymity but are now " +"abandoned." +msgstr "" + +#. type: Plain text +msgid "" +"A big thank you to everybody who either contributed to Tails or supported us:" +msgstr "" + +#. type: Bullet: '- ' +msgid "All the people mentioned in this article one way or another" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The people from other related Free Software projects that Tails relies upon" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The thousands of activists, journalists, and human-rights defenders who are " +"using Tails everyday" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The digital security trainers and technologists who got excited about Tails " +"in its early days and continue advocating for it today" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Everybody who ever contributed to our source code, including the dozens of " +"translators" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Our [[partners, sponsors|partners]], and everybody who ever donated to Tails." +msgstr "" + +#. type: Plain text +msgid "Thank you!" +msgstr "" diff --git a/wiki/src/news/celebrating_10_years.mdwn b/wiki/src/news/celebrating_10_years.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..b8f3f5cd3517508e68269c273c9812d4a26b682d --- /dev/null +++ b/wiki/src/news/celebrating_10_years.mdwn @@ -0,0 +1,319 @@ +[[!meta title="Celebrating 10 years of Tails!"]] +[[!meta date="Mon, 15 Dec 2019 20:00:00 +0000"]] +[[!pagetemplate template="news.tmpl"]] +[[!tag announce]] + +In 2019, we are especially proud of celebrating with you the 10 years of +Tails. + +The first release of Tails, back then *amnesia*, was announced in 2009. +Since then we released 98 versions of Tails, which were used more than +40 million times. + +Here are some stories about how it all started and some vintage +screenshots. But first of all, the birthday cake! + +<pre style="width: 29em;"> + _____ + |_|_|_| + | . . | + |_____| + ´ ` + | | + | :-) | + {} {} + || || + _||_______||_ + {} {~ ~ ~ ~ ~ ~ ~} {} + || { ~ ~ ~ ~ ~ ~ } || + __||__{_____________}__||__ + {\/\/\/\/\/\/\/\/\/\/\/\/\/\} + {} { H a p p y \} {} + || {\/\/\/\/\/\/\/\/\/\/\/\/\/\} || + __||_{___________________________}_||__ + {\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\} + { B i r t h d a y } + { ! ! ! T a i ls ! ! ! } + {/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/} + {_______________________________________} + +</pre> + +2009–2010: amnesia, T(A)ILS, and their ancestors +====================================================== + +Today, Tails is based on Debian, Tor, and GNOME. We inherit from their +work and try to contribute back in order to create a healthy ecosystem +of reliable, secure, and usable tools. + +When we started the *amnesia* project back in 2009, other projects +before us paved the way to what is Tails today: + +- [Knoppix](http://www.knoppix.org/), born in 2000 and still alive + today, was the first popular live Linux distribution. Back then, it + was a groundbreaking achievement to be able to start and use Linux + without going through lengthy, very complex, and uncertain Linux + install "parties". Knoppix was primarily designed for convenience and + diagnosis. + + +- [ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity.net:80/download/ele/), born in 2005 and based on Damn Small Linux, + [Anonym.OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/projects.html), born in 2006 and based on OpenBSD, and + [Incognito](https://web.archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/incognito/index.php?option=com_content&task=view&id=28&Itemid=41), + born in 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. + + *Incognito* + was the first live operating system to include a full set of + applications preconfigured to go through Tor (browser, email + client, IRC client, etc.), offer a persistent *Home* + directory, and even allow hosting onion services. + *Incognito* was also the first live operating system to receive an + [official recognition from the Tor + Project](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement). + + The original author of *Incognito*, *Pat Double*, resigned in 2007 and *anonym*, who + still works for Tails today, took over the maintenance. + +- On August 16 2009, *intrigeri* announced the first release of + *amnesia* on the [*tor-talk* mailing + list](https://lists.torproject.org/pipermail/tor-talk/2009-August/002667.html). + +- In March 2010, *Incognito* was declared dead and *amnesia* its + "[spiritual + successor](https://web.archive.org/web/20100728224716/http://www.anonymityanywhere.com:80/incognito)". + Some weeks later, *amnesia* would be renamed *T(A)ILS*, *The Amnesic + Incognito Live System*, to act the fusion between *amnesia* and + *Incognito*. + + We quickly realized that having parenthesis in our name looked very + radical but was quite confusing and finally settled on *Tails* in 2011. + Eight years later, we still see most people on the Internet write it + TAILS though it's never been written in all caps on our website. + + Hey people, it's Tails not TAILS! + +This is how *amnesia* 0.2 and our website looked like in 2009. The +browser was *Iceweasel* with *Tor Button* and the Tor controller was +*TorK*. + +[[!img amnesia-0.2.png link="no" alt=""]] + +2011-2014: core features, Tails 1.0, and public recognition +=========================================================== + +Until Tails 1.0 (April 2014), we would develop most of the core features +that make Tails today: + +- **Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer + desc="Fedora Live USB Creator"]] +- **Persistence** +- **Tails Greeter**, our welcome screen +- **Automatic upgades** +- **MAC Spoofing** +- **MAT (Metadata Anonymization Toolkit)**, which was developed by + Julien Voisin as a Google Summer of Code with our help in 2011. + +To support this intense development and the increased responsibility on +our shoulders, we accepted our first grant, from the *Swedish International +Development Agency* in 2011 and started paying for some of the +development work. + +In October 2012, Tails was started around 2 500 times a day, 10 +times less than today. + +In June 2013, Edward Snowden would reveal thousands of classified +documents on the surveillance programs of the NSA. Tails got mentioned +by famous technologists [Bruce +Schneier](https://www.theguardian.com/world/2013/sep/05/nsa-how-to-remain-secure-surveillance) +and [Micah +Lee](https://freedom.press/news/encryption-works-how-to-protect-your-privacy-and-your-sources-in-the-age-of-nsa-surveillance/) +as one of the tools that protect from the NSA surveillance. + +In March 2014, we received our first award, the [Access Innovation Prize +for Endpoint +Security](https://www.accessnow.org/blog/2014/03/11/2014-access-innovation-prize-winners-announced-at-rightscon). +According to Access Now: + +> Tails embodies the successful collaboration of developers, trainers, +> security professionals towards tackling the spectrum of user needs -- +> from usability to security -- in high-risk environments. + +The same month, we launched a [[logo contest|blueprint/logo]]. It was +heartwarming to receive 36 very creative proposals. Here are some of +the best ones: + +[[!img logos.png link="no" alt=""]] + +In April 2014, Freedom of the Press Foundation launched the first +crowdfunding campaign for Tails and revealed that Tails +"has been critical to all of the main NSA journalists". Since then, +[Edward Snowden](https://twitter.com/Snowden/status/975827513321623553) +and journalists [Laura +Poitras](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), +[Glenn +Greenwald](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), +and [Micah +Lee](https://theintercept.com/2014/10/28/smuggling-snowden-secrets/) +have repeatedly stated the importance of Tails for their work and +supported us in many ways. + +<p style="max-width: 800px;"> +[[!img snowden-1.jpg size="380x" alt="Snowden plugging an SD card in a laptop with a blue Tails USB stick"]] +[[!img snowden-2.jpg size="380x" alt="Snowden showing NSA documents on Tails to Ewen MacAskill"]] +<em>Images from <a href="https://citizenfourfilm.com/">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em> +</p> + +A few weeks later, the release of Tails 1.0 got press coverage on +[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), +and many others. In December, [Der Spiegel](https://www.spiegel.de/media/media-35535.pdf) +published internal NSA slides that categorize Tails as "catastrophic +impact" and "highest priority": + +[[!img nsa.png link="https://www.spiegel.de/media/media-35535.pdf" +alt="Tor, TrueCrypt, Tails are classified as 'Use Risk: Current Highest +Priority Target Use' and 'Impact: Catastrophic (near-total loss/lack of +insight to target communications, presence)'"]] + +This is how Tails 1.0 looked like in 2014. It had a camouflage mode that +looked like Windows XP and the Tor controller was *Vidalia*. + +[[!img tails-1.0.png link="no" alt=""]] + +2015-2019 - Maturity, user experience, and automation +===================================================== + +In May 2014, the UX team at [NUMA +Paris](https://web.archive.org/web/20140524130455/http://events.numaparis.com/Evenements/Apero-Experience-Utilisateur-Tails-The-Amnesic-Incognito-Live-System) +invited us to organize a usability testing session of Tails with +journalists. We asked participants to do slightly complex tasks such as +establishing an encrypted conversation with someone else using *Pidgin*. +Reality hit us hard when all the journalists in the room encountered +problems to either install, start, or connect Tails to Tor. We realized +that, despite having laid down most of the core features in Tails 1.0, +we still had a lot of work to do to make Tails easy to use by most people. + +Since then, we focused our work on 3 aspects of the project that don't +bring in so many new features but rather ensure its long term +sustainability and growth: user experience, continuous integration, and +project sustainability. + +### User experience + +Since these first usability tests in 2014, we systematically relied on +user-centered design practices to ensure that all the major changes that +we do in Tails are making it easier to use. We conducted 10 sessions of +usability tests, used [paper +prototypes](https://simplysecure.org/blog/formative-testing), conducted +[[quantitative surveys|blueprint/veracrypt]], and defined better our +audience using [[personas|contribute/personas]]. + +[[<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]] + +This usability work was key in all the work that we did since 2015 to +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 shift to [[USB images and Etcher|news/version_3.12#usb-images]] (2019) + +### Continuous integration + +To cope with this rapid development and the many releases, we built a +cutting edge *continuous integration* infrastructure: + +- Images of Tails are [built + automatically](https://nightly.tails.boum.org/) every time we develop + a change for an upcoming release. +- These images are [[tested + automatically|contribute/release_process/test/automated_tests]] + against a comprehensive list of usability and security scenarios. +- All our images are [[reproducible|news/reproducible_Tails]], which + allows security researchers to verify that the images distributed on + our website have not been modified to introduce undisclosed security + vulnerabilities. + +The following video shows the test suite in action. On the left, it +displays the scenario that is being tested, for example "*symmetrically +encrypting a message*". On the right, it displays Tails being +manipulated automatically according to the scenario. + +<video controls="true" width="880" height="352"> + <source src="https://tails.boum.org/news/celebrating_10_years/test-suite.mp4" type="video/mp4" /> +</video> + +This infrastructure increases the quality and reliability of our +releases. It also makes it faster to publish emergency security releases +when important vulnerabilities are fixed, for example in Firefox and Tor +Browser. + +### Project sustainability + +The combination of these efforts both on visible improvements and behind +the scene had to go hand-in-hand with working on the sustainability of +the project as an organization. + +Since 2014: + +- The number of Tails users was multiplied by 2.4, increasing by 20% + each year on average, reaching 25000 daily users on average in 2019. + Our yearly budget was multiplied by a similar amount, to reach + 240 000€ (estimated) in 2019. +- We worked on foundational documents and processes to ensure a healthy + community and project, such as our [[Code of + Conduct|contribute/working_together/code_of_conduct]], [[Social + Contract|contribute/working_together/social_contract]], and [[Missions + and values|contribute/mission]]. + +[[!img users-budget.svg link="no" alt=""]] + +Sustainability cannot go without enjoying working together and having +fun. We had memorable gatherings where we danced to the +privacy-protecting sound of [Rockwell — Somebody's Watching +Me](https://www.youtube.com/watch?v=7YvAYIJSSZY=), [Rap News — +Whistleblower](https://www.youtube.com/watch?v=7aiZjD0_mTA), [Pete +Seeger — The Onion Makes Us Strong +(*sic*)](https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police +— Every Breath You +Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi Lauper +— Girls Just Want To Fix Bugs +(*sic*)](https://www.youtube.com/watch?v=PIb6AZdTr-A), ate delicious +[[vegan mafé|mafe]] from our beloved cooking team, and squashed an +[[!tails_ticket 11140 desc="anarchist coup d'état"]]. + +In 2018 and 2019: + +- 66 different people contributed to our main source code, including + coders, writers, and translators. +- 22 different people were paid to work on Tails: a few of them + full-time, most of them part-time or as consultants. +- We attended 21 conferences in 10 different countries to stay connected + with the communities of the Tails ecosystem: related Free Software + projects, digital security trainers, and users. +- 20 people, both workers and volunteers, attended our yearly + gatherings. + +Meanwhile, we counted no less than [[21 +projects|doc/about/acknowledgments_and_similar_projects#similar_projects]], +who also tried to build a live operating system for privacy and +anonymity but are now abandoned. + +A big thank you to everybody who either contributed to Tails or +supported us: + +- All the people mentioned in this article one way or another +- The people from other related Free Software projects that Tails relies + upon +- The thousands of activists, journalists, and human-rights defenders who are + using Tails everyday +- The digital security trainers and technologists who got excited about + Tails in its early days and continue advocating for it today +- Everybody who ever contributed to our source code, including the + dozens of translators +- Our [[partners, sponsors|partners]], and everybody who ever donated to + Tails. + +Thank you! diff --git a/wiki/src/news/celebrating_10_years.pl.po b/wiki/src/news/celebrating_10_years.pl.po new file mode 100644 index 0000000000000000000000000000000000000000..3cb6696fd61faea3f0a97f5618806ce2e0fadf00 --- /dev/null +++ b/wiki/src/news/celebrating_10_years.pl.po @@ -0,0 +1,591 @@ +# 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-01-03 10:46+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: pl\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=\"Celebrating 10 years of Tails!\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Mon, 15 Dec 2019 20:00:00 +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 "" +"In 2019, we are especially proud of celebrating with you the 10 years of " +"Tails." +msgstr "" + +#. type: Plain text +msgid "" +"The first release of Tails, back then *amnesia*, was announced in 2009. " +"Since then we released 98 versions of Tails, which were used more than 40 " +"million times." +msgstr "" + +#. type: Plain text +msgid "" +"Here are some stories about how it all started and some vintage screenshots. " +"But first of all, the birthday cake!" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<pre style=\"width: 29em;\">\n" +" _____\n" +" |_|_|_|\n" +" | . . |\n" +" |_____|\n" +" ´ `\n" +" | |\n" +" | :-) |\n" +" {} {}\n" +" || ||\n" +" _||_______||_\n" +" {} {~ ~ ~ ~ ~ ~ ~} {}\n" +" || { ~ ~ ~ ~ ~ ~ } ||\n" +" __||__{_____________}__||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" {} { H a p p y \\} {}\n" +" || {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\} ||\n" +" __||_{___________________________}_||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" { B i r t h d a y }\n" +" { ! ! ! T a i ls ! ! ! }\n" +" {/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/}\n" +" {_______________________________________}\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</pre>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2009–2010: amnesia, T(A)ILS, and their ancestors\n" +msgstr "" + +#. type: Plain text +msgid "" +"Today, Tails is based on Debian, Tor, and GNOME. We inherit from their work " +"and try to contribute back in order to create a healthy ecosystem of " +"reliable, secure, and usable tools." +msgstr "" + +#. type: Plain text +msgid "" +"When we started the *amnesia* project back in 2009, other projects before us " +"paved the way to what is Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[Knoppix](http://www.knoppix.org/), born in 2000 and still alive today, was " +"the first popular live Linux distribution. Back then, it was a " +"groundbreaking achievement to be able to start and use Linux without going " +"through lengthy, very complex, and uncertain Linux install \"parties\". " +"Knoppix was primarily designed for convenience and diagnosis." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." +"net:80/download/ele/), born in 2005 and based on Damn Small Linux, [Anonym." +"OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/" +"projects.html), born in 2006 and based on OpenBSD, and [Incognito](https://" +"web.archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/" +"incognito/index.php?option=com_content&task=view&id=28&Itemid=41), born in " +"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 "" + +#. type: Plain text +#, no-wrap +msgid "" +" *Incognito*\n" +" was the first live operating system to include a full set of\n" +" applications preconfigured to go through Tor (browser, email\n" +" client, IRC client, etc.), offer a persistent *Home*\n" +" directory, and even allow hosting onion services.\n" +" *Incognito* was also the first live operating system to receive an\n" +" [official recognition from the Tor\n" +" Project](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement).\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" The original author of *Incognito*, *Pat Double*, resigned in 2007 and *anonym*, who\n" +" still works for Tails today, took over the maintenance.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"On August 16 2009, *intrigeri* announced the first release of *amnesia* on " +"the [*tor-talk* mailing list](https://lists.torproject.org/pipermail/tor-" +"talk/2009-August/002667.html)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"In March 2010, *Incognito* was declared dead and *amnesia* its \"[spiritual " +"successor](https://web.archive.org/web/20100728224716/http://www." +"anonymityanywhere.com:80/incognito)\". Some weeks later, *amnesia* would be " +"renamed *T(A)ILS*, *The Amnesic Incognito Live System*, to act the fusion " +"between *amnesia* and *Incognito*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We quickly realized that having parenthesis in our name looked very\n" +" radical but was quite confusing and finally settled on *Tails* in 2011.\n" +" Eight years later, we still see most people on the Internet write it\n" +" TAILS though it's never been written in all caps on our website.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Hey people, it's Tails not TAILS!\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how *amnesia* 0.2 and our website looked like in 2009. The browser " +"was *Iceweasel* with *Tor Button* and the Tor controller was *TorK*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img amnesia-0.2.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2011-2014: core features, Tails 1.0, and public recognition\n" +msgstr "" + +#. type: Plain text +msgid "" +"Until Tails 1.0 (April 2014), we would develop most of the core features " +"that make Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc=" +"\"Fedora Live USB Creator\"]]" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Persistence**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Tails Greeter**, our welcome screen" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Automatic upgades**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**MAC Spoofing**" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**MAT (Metadata Anonymization Toolkit)**, which was developed by Julien " +"Voisin as a Google Summer of Code with our help in 2011." +msgstr "" + +#. type: Plain text +msgid "" +"To support this intense development and the increased responsibility on our " +"shoulders, we accepted our first grant, from the *Swedish International " +"Development Agency* in 2011 and started paying for some of the development " +"work." +msgstr "" + +#. type: Plain text +msgid "" +"In October 2012, Tails was started around 2 500 times a day, 10 times " +"less than today." +msgstr "" + +#. type: Plain text +msgid "" +"In June 2013, Edward Snowden would reveal thousands of classified documents " +"on the surveillance programs of the NSA. Tails got mentioned by famous " +"technologists [Bruce Schneier](https://www.theguardian.com/world/2013/sep/05/" +"nsa-how-to-remain-secure-surveillance) and [Micah Lee](https://freedom." +"press/news/encryption-works-how-to-protect-your-privacy-and-your-sources-in-" +"the-age-of-nsa-surveillance/) as one of the tools that protect from the NSA " +"surveillance." +msgstr "" + +#. type: Plain text +msgid "" +"In March 2014, we received our first award, the [Access Innovation Prize for " +"Endpoint Security](https://www.accessnow.org/blog/2014/03/11/2014-access-" +"innovation-prize-winners-announced-at-rightscon). According to Access Now:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"> Tails embodies the successful collaboration of developers, trainers,\n" +"> security professionals towards tackling the spectrum of user needs --\n" +"> from usability to security -- in high-risk environments.\n" +msgstr "" + +#. type: Plain text +msgid "" +"The same month, we launched a [[logo contest|blueprint/logo]]. It was " +"heartwarming to receive 36 very creative proposals. Here are some of the " +"best ones:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img logos.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"In April 2014, Freedom of the Press Foundation launched the first " +"crowdfunding campaign for Tails and revealed that Tails \"has been critical " +"to all of the main NSA journalists\". Since then, [Edward Snowden](https://" +"twitter.com/Snowden/status/975827513321623553) and journalists [Laura " +"Poitras](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-" +"making-citizenfour), [Glenn Greenwald](https://www.eff.org/" +"deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), and [Micah " +"Lee](https://theintercept.com/2014/10/28/smuggling-snowden-secrets/) have " +"repeatedly stated the importance of Tails for their work and supported us in " +"many ways." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p style=\"max-width: 800px;\">\n" +msgstr "" + +#. 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 "" + +#. type: Plain text +#, no-wrap +msgid "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden showing NSA documents on Tails to Ewen MacAskill\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<em>Images from <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em>\n" +"</p>\n" +msgstr "" + +#. type: Plain text +msgid "" +"A few weeks later, the release of Tails 1.0 got press coverage on [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), " +"and many others. In December, [Der Spiegel](https://www.spiegel.de/media/" +"media-35535.pdf) published internal NSA slides that categorize Tails as " +"\"catastrophic impact\" and \"highest priority\":" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img nsa.png link=\"https://www.spiegel.de/media/media-35535.pdf\"\n" +"alt=\"Tor, TrueCrypt, Tails are classified as 'Use Risk: Current Highest\n" +"Priority Target Use' and 'Impact: Catastrophic (near-total loss/lack of\n" +"insight to target communications, presence)'\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how Tails 1.0 looked like in 2014. It had a camouflage mode that " +"looked like Windows XP and the Tor controller was *Vidalia*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img tails-1.0.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2015-2019 - Maturity, user experience, and automation\n" +msgstr "" + +#. type: Plain text +msgid "" +"In May 2014, the UX team at [NUMA Paris](https://web.archive.org/" +"web/20140524130455/http://events.numaparis.com/Evenements/Apero-Experience-" +"Utilisateur-Tails-The-Amnesic-Incognito-Live-System) invited us to organize " +"a usability testing session of Tails with journalists. We asked participants " +"to do slightly complex tasks such as establishing an encrypted conversation " +"with someone else using *Pidgin*. Reality hit us hard when all the " +"journalists in the room encountered problems to either install, start, or " +"connect Tails to Tor. We realized that, despite having laid down most of the " +"core features in Tails 1.0, we still had a lot of work to do to make Tails " +"easy to use by most people." +msgstr "" + +#. type: Plain text +msgid "" +"Since then, we focused our work on 3 aspects of the project that don't bring " +"in so many new features but rather ensure its long term sustainability and " +"growth: user experience, continuous integration, and project sustainability." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "User experience" +msgstr "" + +#. type: Plain text +msgid "" +"Since these first usability tests in 2014, we systematically relied on user-" +"centered design practices to ensure that all the major changes that we do in " +"Tails are making it easier to use. We conducted 10 sessions of usability " +"tests, used [paper prototypes](https://simplysecure.org/blog/formative-" +"testing), conducted [[quantitative surveys|blueprint/veracrypt]], and " +"defined better our audience using [[personas|contribute/personas]]." +msgstr "" + +#. 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 "" + +#. type: Plain text +msgid "" +"This usability work was key in all the work that we did since 2015 to make " +"Tails easier to install:" +msgstr "" + +#. type: Plain text +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)" +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Continuous integration" +msgstr "" + +#. type: Plain text +msgid "" +"To cope with this rapid development and the many releases, we built a " +"cutting edge *continuous integration* infrastructure:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Images of Tails are [built automatically](https://nightly.tails.boum.org/) " +"every time we develop a change for an upcoming release." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"These images are [[tested automatically|contribute/release_process/test/" +"automated_tests]] against a comprehensive list of usability and security " +"scenarios." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"All our images are [[reproducible|news/reproducible_Tails]], which allows " +"security researchers to verify that the images distributed on our website " +"have not been modified to introduce undisclosed security vulnerabilities." +msgstr "" + +#. type: Plain text +msgid "" +"The following video shows the test suite in action. On the left, it displays " +"the scenario that is being tested, for example \"*symmetrically encrypting a " +"message*\". On the right, it displays Tails being manipulated automatically " +"according to the scenario." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<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" +"</video>\n" +msgstr "" + +#. type: Plain text +msgid "" +"This infrastructure increases the quality and reliability of our releases. " +"It also makes it faster to publish emergency security releases when " +"important vulnerabilities are fixed, for example in Firefox and Tor Browser." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Project sustainability" +msgstr "" + +#. type: Plain text +msgid "" +"The combination of these efforts both on visible improvements and behind the " +"scene had to go hand-in-hand with working on the sustainability of the " +"project as an organization." +msgstr "" + +#. type: Plain text +msgid "Since 2014:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The number of Tails users was multiplied by 2.4, increasing by 20% each year " +"on average, reaching 25000 daily users on average in 2019. Our yearly " +"budget was multiplied by a similar amount, to reach 240 000€ " +"(estimated) in 2019." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We worked on foundational documents and processes to ensure a healthy " +"community and project, such as our [[Code of Conduct|contribute/" +"working_together/code_of_conduct]], [[Social Contract|contribute/" +"working_together/social_contract]], and [[Missions and values|contribute/" +"mission]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img users-budget.svg link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Sustainability cannot go without enjoying working together and having fun. " +"We had memorable gatherings where we danced to the privacy-protecting sound " +"of [Rockwell — Somebody's Watching Me](https://www.youtube.com/watch?" +"v=7YvAYIJSSZY=), [Rap News — Whistleblower](https://www.youtube.com/" +"watch?v=7aiZjD0_mTA), [Pete Seeger — The Onion Makes Us Strong (*sic*)]" +"(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " +"Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " +"Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " +"d'état\"]]." +msgstr "" + +#. type: Plain text +msgid "In 2018 and 2019:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"66 different people contributed to our main source code, including coders, " +"writers, and translators." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"22 different people were paid to work on Tails: a few of them full-time, " +"most of them part-time or as consultants." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We attended 21 conferences in 10 different countries to stay connected with " +"the communities of the Tails ecosystem: related Free Software projects, " +"digital security trainers, and users." +msgstr "" + +#. type: Bullet: '- ' +msgid "20 people, both workers and volunteers, attended our yearly gatherings." +msgstr "" + +#. type: Plain text +msgid "" +"Meanwhile, we counted no less than [[21 projects|doc/about/" +"acknowledgments_and_similar_projects#similar_projects]], who also tried to " +"build a live operating system for privacy and anonymity but are now " +"abandoned." +msgstr "" + +#. type: Plain text +msgid "" +"A big thank you to everybody who either contributed to Tails or supported us:" +msgstr "" + +#. type: Bullet: '- ' +msgid "All the people mentioned in this article one way or another" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The people from other related Free Software projects that Tails relies upon" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The thousands of activists, journalists, and human-rights defenders who are " +"using Tails everyday" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The digital security trainers and technologists who got excited about Tails " +"in its early days and continue advocating for it today" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Everybody who ever contributed to our source code, including the dozens of " +"translators" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Our [[partners, sponsors|partners]], and everybody who ever donated to Tails." +msgstr "" + +#. type: Plain text +msgid "Thank you!" +msgstr "" diff --git a/wiki/src/news/celebrating_10_years.pt.po b/wiki/src/news/celebrating_10_years.pt.po new file mode 100644 index 0000000000000000000000000000000000000000..65e824e8e04cd9d6fa15500c10b9ffa62aaa01fe --- /dev/null +++ b/wiki/src/news/celebrating_10_years.pt.po @@ -0,0 +1,592 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-03 10:46+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" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Celebrating 10 years of Tails!\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Mon, 15 Dec 2019 20:00:00 +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 "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"In 2019, we are especially proud of celebrating with you the 10 years of " +"Tails." +msgstr "" + +#. type: Plain text +msgid "" +"The first release of Tails, back then *amnesia*, was announced in 2009. " +"Since then we released 98 versions of Tails, which were used more than 40 " +"million times." +msgstr "" + +#. type: Plain text +msgid "" +"Here are some stories about how it all started and some vintage screenshots. " +"But first of all, the birthday cake!" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<pre style=\"width: 29em;\">\n" +" _____\n" +" |_|_|_|\n" +" | . . |\n" +" |_____|\n" +" ´ `\n" +" | |\n" +" | :-) |\n" +" {} {}\n" +" || ||\n" +" _||_______||_\n" +" {} {~ ~ ~ ~ ~ ~ ~} {}\n" +" || { ~ ~ ~ ~ ~ ~ } ||\n" +" __||__{_____________}__||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" {} { H a p p y \\} {}\n" +" || {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\} ||\n" +" __||_{___________________________}_||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" { B i r t h d a y }\n" +" { ! ! ! T a i ls ! ! ! }\n" +" {/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/}\n" +" {_______________________________________}\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</pre>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2009–2010: amnesia, T(A)ILS, and their ancestors\n" +msgstr "" + +#. type: Plain text +msgid "" +"Today, Tails is based on Debian, Tor, and GNOME. We inherit from their work " +"and try to contribute back in order to create a healthy ecosystem of " +"reliable, secure, and usable tools." +msgstr "" + +#. type: Plain text +msgid "" +"When we started the *amnesia* project back in 2009, other projects before us " +"paved the way to what is Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[Knoppix](http://www.knoppix.org/), born in 2000 and still alive today, was " +"the first popular live Linux distribution. Back then, it was a " +"groundbreaking achievement to be able to start and use Linux without going " +"through lengthy, very complex, and uncertain Linux install \"parties\". " +"Knoppix was primarily designed for convenience and diagnosis." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." +"net:80/download/ele/), born in 2005 and based on Damn Small Linux, [Anonym." +"OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/" +"projects.html), born in 2006 and based on OpenBSD, and [Incognito](https://" +"web.archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/" +"incognito/index.php?option=com_content&task=view&id=28&Itemid=41), born in " +"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 "" + +#. type: Plain text +#, no-wrap +msgid "" +" *Incognito*\n" +" was the first live operating system to include a full set of\n" +" applications preconfigured to go through Tor (browser, email\n" +" client, IRC client, etc.), offer a persistent *Home*\n" +" directory, and even allow hosting onion services.\n" +" *Incognito* was also the first live operating system to receive an\n" +" [official recognition from the Tor\n" +" Project](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement).\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" The original author of *Incognito*, *Pat Double*, resigned in 2007 and *anonym*, who\n" +" still works for Tails today, took over the maintenance.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"On August 16 2009, *intrigeri* announced the first release of *amnesia* on " +"the [*tor-talk* mailing list](https://lists.torproject.org/pipermail/tor-" +"talk/2009-August/002667.html)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"In March 2010, *Incognito* was declared dead and *amnesia* its \"[spiritual " +"successor](https://web.archive.org/web/20100728224716/http://www." +"anonymityanywhere.com:80/incognito)\". Some weeks later, *amnesia* would be " +"renamed *T(A)ILS*, *The Amnesic Incognito Live System*, to act the fusion " +"between *amnesia* and *Incognito*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We quickly realized that having parenthesis in our name looked very\n" +" radical but was quite confusing and finally settled on *Tails* in 2011.\n" +" Eight years later, we still see most people on the Internet write it\n" +" TAILS though it's never been written in all caps on our website.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Hey people, it's Tails not TAILS!\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how *amnesia* 0.2 and our website looked like in 2009. The browser " +"was *Iceweasel* with *Tor Button* and the Tor controller was *TorK*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img amnesia-0.2.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2011-2014: core features, Tails 1.0, and public recognition\n" +msgstr "" + +#. type: Plain text +msgid "" +"Until Tails 1.0 (April 2014), we would develop most of the core features " +"that make Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc=" +"\"Fedora Live USB Creator\"]]" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Persistence**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Tails Greeter**, our welcome screen" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Automatic upgades**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**MAC Spoofing**" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**MAT (Metadata Anonymization Toolkit)**, which was developed by Julien " +"Voisin as a Google Summer of Code with our help in 2011." +msgstr "" + +#. type: Plain text +msgid "" +"To support this intense development and the increased responsibility on our " +"shoulders, we accepted our first grant, from the *Swedish International " +"Development Agency* in 2011 and started paying for some of the development " +"work." +msgstr "" + +#. type: Plain text +msgid "" +"In October 2012, Tails was started around 2 500 times a day, 10 times " +"less than today." +msgstr "" + +#. type: Plain text +msgid "" +"In June 2013, Edward Snowden would reveal thousands of classified documents " +"on the surveillance programs of the NSA. Tails got mentioned by famous " +"technologists [Bruce Schneier](https://www.theguardian.com/world/2013/sep/05/" +"nsa-how-to-remain-secure-surveillance) and [Micah Lee](https://freedom." +"press/news/encryption-works-how-to-protect-your-privacy-and-your-sources-in-" +"the-age-of-nsa-surveillance/) as one of the tools that protect from the NSA " +"surveillance." +msgstr "" + +#. type: Plain text +msgid "" +"In March 2014, we received our first award, the [Access Innovation Prize for " +"Endpoint Security](https://www.accessnow.org/blog/2014/03/11/2014-access-" +"innovation-prize-winners-announced-at-rightscon). According to Access Now:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"> Tails embodies the successful collaboration of developers, trainers,\n" +"> security professionals towards tackling the spectrum of user needs --\n" +"> from usability to security -- in high-risk environments.\n" +msgstr "" + +#. type: Plain text +msgid "" +"The same month, we launched a [[logo contest|blueprint/logo]]. It was " +"heartwarming to receive 36 very creative proposals. Here are some of the " +"best ones:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img logos.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"In April 2014, Freedom of the Press Foundation launched the first " +"crowdfunding campaign for Tails and revealed that Tails \"has been critical " +"to all of the main NSA journalists\". Since then, [Edward Snowden](https://" +"twitter.com/Snowden/status/975827513321623553) and journalists [Laura " +"Poitras](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-" +"making-citizenfour), [Glenn Greenwald](https://www.eff.org/" +"deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), and [Micah " +"Lee](https://theintercept.com/2014/10/28/smuggling-snowden-secrets/) have " +"repeatedly stated the importance of Tails for their work and supported us in " +"many ways." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p style=\"max-width: 800px;\">\n" +msgstr "" + +#. 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 "" + +#. type: Plain text +#, no-wrap +msgid "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden showing NSA documents on Tails to Ewen MacAskill\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<em>Images from <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em>\n" +"</p>\n" +msgstr "" + +#. type: Plain text +msgid "" +"A few weeks later, the release of Tails 1.0 got press coverage on [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), " +"and many others. In December, [Der Spiegel](https://www.spiegel.de/media/" +"media-35535.pdf) published internal NSA slides that categorize Tails as " +"\"catastrophic impact\" and \"highest priority\":" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img nsa.png link=\"https://www.spiegel.de/media/media-35535.pdf\"\n" +"alt=\"Tor, TrueCrypt, Tails are classified as 'Use Risk: Current Highest\n" +"Priority Target Use' and 'Impact: Catastrophic (near-total loss/lack of\n" +"insight to target communications, presence)'\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how Tails 1.0 looked like in 2014. It had a camouflage mode that " +"looked like Windows XP and the Tor controller was *Vidalia*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img tails-1.0.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2015-2019 - Maturity, user experience, and automation\n" +msgstr "" + +#. type: Plain text +msgid "" +"In May 2014, the UX team at [NUMA Paris](https://web.archive.org/" +"web/20140524130455/http://events.numaparis.com/Evenements/Apero-Experience-" +"Utilisateur-Tails-The-Amnesic-Incognito-Live-System) invited us to organize " +"a usability testing session of Tails with journalists. We asked participants " +"to do slightly complex tasks such as establishing an encrypted conversation " +"with someone else using *Pidgin*. Reality hit us hard when all the " +"journalists in the room encountered problems to either install, start, or " +"connect Tails to Tor. We realized that, despite having laid down most of the " +"core features in Tails 1.0, we still had a lot of work to do to make Tails " +"easy to use by most people." +msgstr "" + +#. type: Plain text +msgid "" +"Since then, we focused our work on 3 aspects of the project that don't bring " +"in so many new features but rather ensure its long term sustainability and " +"growth: user experience, continuous integration, and project sustainability." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "User experience" +msgstr "" + +#. type: Plain text +msgid "" +"Since these first usability tests in 2014, we systematically relied on user-" +"centered design practices to ensure that all the major changes that we do in " +"Tails are making it easier to use. We conducted 10 sessions of usability " +"tests, used [paper prototypes](https://simplysecure.org/blog/formative-" +"testing), conducted [[quantitative surveys|blueprint/veracrypt]], and " +"defined better our audience using [[personas|contribute/personas]]." +msgstr "" + +#. 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 "" + +#. type: Plain text +msgid "" +"This usability work was key in all the work that we did since 2015 to make " +"Tails easier to install:" +msgstr "" + +#. type: Plain text +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)" +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Continuous integration" +msgstr "" + +#. type: Plain text +msgid "" +"To cope with this rapid development and the many releases, we built a " +"cutting edge *continuous integration* infrastructure:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Images of Tails are [built automatically](https://nightly.tails.boum.org/) " +"every time we develop a change for an upcoming release." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"These images are [[tested automatically|contribute/release_process/test/" +"automated_tests]] against a comprehensive list of usability and security " +"scenarios." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"All our images are [[reproducible|news/reproducible_Tails]], which allows " +"security researchers to verify that the images distributed on our website " +"have not been modified to introduce undisclosed security vulnerabilities." +msgstr "" + +#. type: Plain text +msgid "" +"The following video shows the test suite in action. On the left, it displays " +"the scenario that is being tested, for example \"*symmetrically encrypting a " +"message*\". On the right, it displays Tails being manipulated automatically " +"according to the scenario." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<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" +"</video>\n" +msgstr "" + +#. type: Plain text +msgid "" +"This infrastructure increases the quality and reliability of our releases. " +"It also makes it faster to publish emergency security releases when " +"important vulnerabilities are fixed, for example in Firefox and Tor Browser." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Project sustainability" +msgstr "" + +#. type: Plain text +msgid "" +"The combination of these efforts both on visible improvements and behind the " +"scene had to go hand-in-hand with working on the sustainability of the " +"project as an organization." +msgstr "" + +#. type: Plain text +msgid "Since 2014:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The number of Tails users was multiplied by 2.4, increasing by 20% each year " +"on average, reaching 25000 daily users on average in 2019. Our yearly " +"budget was multiplied by a similar amount, to reach 240 000€ " +"(estimated) in 2019." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We worked on foundational documents and processes to ensure a healthy " +"community and project, such as our [[Code of Conduct|contribute/" +"working_together/code_of_conduct]], [[Social Contract|contribute/" +"working_together/social_contract]], and [[Missions and values|contribute/" +"mission]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img users-budget.svg link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Sustainability cannot go without enjoying working together and having fun. " +"We had memorable gatherings where we danced to the privacy-protecting sound " +"of [Rockwell — Somebody's Watching Me](https://www.youtube.com/watch?" +"v=7YvAYIJSSZY=), [Rap News — Whistleblower](https://www.youtube.com/" +"watch?v=7aiZjD0_mTA), [Pete Seeger — The Onion Makes Us Strong (*sic*)]" +"(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " +"Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " +"Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " +"d'état\"]]." +msgstr "" + +#. type: Plain text +msgid "In 2018 and 2019:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"66 different people contributed to our main source code, including coders, " +"writers, and translators." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"22 different people were paid to work on Tails: a few of them full-time, " +"most of them part-time or as consultants." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We attended 21 conferences in 10 different countries to stay connected with " +"the communities of the Tails ecosystem: related Free Software projects, " +"digital security trainers, and users." +msgstr "" + +#. type: Bullet: '- ' +msgid "20 people, both workers and volunteers, attended our yearly gatherings." +msgstr "" + +#. type: Plain text +msgid "" +"Meanwhile, we counted no less than [[21 projects|doc/about/" +"acknowledgments_and_similar_projects#similar_projects]], who also tried to " +"build a live operating system for privacy and anonymity but are now " +"abandoned." +msgstr "" + +#. type: Plain text +msgid "" +"A big thank you to everybody who either contributed to Tails or supported us:" +msgstr "" + +#. type: Bullet: '- ' +msgid "All the people mentioned in this article one way or another" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The people from other related Free Software projects that Tails relies upon" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The thousands of activists, journalists, and human-rights defenders who are " +"using Tails everyday" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The digital security trainers and technologists who got excited about Tails " +"in its early days and continue advocating for it today" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Everybody who ever contributed to our source code, including the dozens of " +"translators" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Our [[partners, sponsors|partners]], and everybody who ever donated to Tails." +msgstr "" + +#. type: Plain text +msgid "Thank you!" +msgstr "" diff --git a/wiki/src/news/celebrating_10_years.ru.po b/wiki/src/news/celebrating_10_years.ru.po new file mode 100644 index 0000000000000000000000000000000000000000..d519ac57e2b9e899ac2cbb69a00b540997d98a05 --- /dev/null +++ b/wiki/src/news/celebrating_10_years.ru.po @@ -0,0 +1,591 @@ +# 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-01-03 10:46+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: ru\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=\"Celebrating 10 years of Tails!\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Mon, 15 Dec 2019 20:00:00 +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 "" +"In 2019, we are especially proud of celebrating with you the 10 years of " +"Tails." +msgstr "" + +#. type: Plain text +msgid "" +"The first release of Tails, back then *amnesia*, was announced in 2009. " +"Since then we released 98 versions of Tails, which were used more than 40 " +"million times." +msgstr "" + +#. type: Plain text +msgid "" +"Here are some stories about how it all started and some vintage screenshots. " +"But first of all, the birthday cake!" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<pre style=\"width: 29em;\">\n" +" _____\n" +" |_|_|_|\n" +" | . . |\n" +" |_____|\n" +" ´ `\n" +" | |\n" +" | :-) |\n" +" {} {}\n" +" || ||\n" +" _||_______||_\n" +" {} {~ ~ ~ ~ ~ ~ ~} {}\n" +" || { ~ ~ ~ ~ ~ ~ } ||\n" +" __||__{_____________}__||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" {} { H a p p y \\} {}\n" +" || {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\} ||\n" +" __||_{___________________________}_||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" { B i r t h d a y }\n" +" { ! ! ! T a i ls ! ! ! }\n" +" {/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/}\n" +" {_______________________________________}\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</pre>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2009–2010: amnesia, T(A)ILS, and their ancestors\n" +msgstr "" + +#. type: Plain text +msgid "" +"Today, Tails is based on Debian, Tor, and GNOME. We inherit from their work " +"and try to contribute back in order to create a healthy ecosystem of " +"reliable, secure, and usable tools." +msgstr "" + +#. type: Plain text +msgid "" +"When we started the *amnesia* project back in 2009, other projects before us " +"paved the way to what is Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[Knoppix](http://www.knoppix.org/), born in 2000 and still alive today, was " +"the first popular live Linux distribution. Back then, it was a " +"groundbreaking achievement to be able to start and use Linux without going " +"through lengthy, very complex, and uncertain Linux install \"parties\". " +"Knoppix was primarily designed for convenience and diagnosis." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." +"net:80/download/ele/), born in 2005 and based on Damn Small Linux, [Anonym." +"OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/" +"projects.html), born in 2006 and based on OpenBSD, and [Incognito](https://" +"web.archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/" +"incognito/index.php?option=com_content&task=view&id=28&Itemid=41), born in " +"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 "" + +#. type: Plain text +#, no-wrap +msgid "" +" *Incognito*\n" +" was the first live operating system to include a full set of\n" +" applications preconfigured to go through Tor (browser, email\n" +" client, IRC client, etc.), offer a persistent *Home*\n" +" directory, and even allow hosting onion services.\n" +" *Incognito* was also the first live operating system to receive an\n" +" [official recognition from the Tor\n" +" Project](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement).\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" The original author of *Incognito*, *Pat Double*, resigned in 2007 and *anonym*, who\n" +" still works for Tails today, took over the maintenance.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"On August 16 2009, *intrigeri* announced the first release of *amnesia* on " +"the [*tor-talk* mailing list](https://lists.torproject.org/pipermail/tor-" +"talk/2009-August/002667.html)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"In March 2010, *Incognito* was declared dead and *amnesia* its \"[spiritual " +"successor](https://web.archive.org/web/20100728224716/http://www." +"anonymityanywhere.com:80/incognito)\". Some weeks later, *amnesia* would be " +"renamed *T(A)ILS*, *The Amnesic Incognito Live System*, to act the fusion " +"between *amnesia* and *Incognito*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We quickly realized that having parenthesis in our name looked very\n" +" radical but was quite confusing and finally settled on *Tails* in 2011.\n" +" Eight years later, we still see most people on the Internet write it\n" +" TAILS though it's never been written in all caps on our website.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Hey people, it's Tails not TAILS!\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how *amnesia* 0.2 and our website looked like in 2009. The browser " +"was *Iceweasel* with *Tor Button* and the Tor controller was *TorK*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img amnesia-0.2.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2011-2014: core features, Tails 1.0, and public recognition\n" +msgstr "" + +#. type: Plain text +msgid "" +"Until Tails 1.0 (April 2014), we would develop most of the core features " +"that make Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc=" +"\"Fedora Live USB Creator\"]]" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Persistence**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Tails Greeter**, our welcome screen" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Automatic upgades**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**MAC Spoofing**" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**MAT (Metadata Anonymization Toolkit)**, which was developed by Julien " +"Voisin as a Google Summer of Code with our help in 2011." +msgstr "" + +#. type: Plain text +msgid "" +"To support this intense development and the increased responsibility on our " +"shoulders, we accepted our first grant, from the *Swedish International " +"Development Agency* in 2011 and started paying for some of the development " +"work." +msgstr "" + +#. type: Plain text +msgid "" +"In October 2012, Tails was started around 2 500 times a day, 10 times " +"less than today." +msgstr "" + +#. type: Plain text +msgid "" +"In June 2013, Edward Snowden would reveal thousands of classified documents " +"on the surveillance programs of the NSA. Tails got mentioned by famous " +"technologists [Bruce Schneier](https://www.theguardian.com/world/2013/sep/05/" +"nsa-how-to-remain-secure-surveillance) and [Micah Lee](https://freedom." +"press/news/encryption-works-how-to-protect-your-privacy-and-your-sources-in-" +"the-age-of-nsa-surveillance/) as one of the tools that protect from the NSA " +"surveillance." +msgstr "" + +#. type: Plain text +msgid "" +"In March 2014, we received our first award, the [Access Innovation Prize for " +"Endpoint Security](https://www.accessnow.org/blog/2014/03/11/2014-access-" +"innovation-prize-winners-announced-at-rightscon). According to Access Now:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"> Tails embodies the successful collaboration of developers, trainers,\n" +"> security professionals towards tackling the spectrum of user needs --\n" +"> from usability to security -- in high-risk environments.\n" +msgstr "" + +#. type: Plain text +msgid "" +"The same month, we launched a [[logo contest|blueprint/logo]]. It was " +"heartwarming to receive 36 very creative proposals. Here are some of the " +"best ones:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img logos.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"In April 2014, Freedom of the Press Foundation launched the first " +"crowdfunding campaign for Tails and revealed that Tails \"has been critical " +"to all of the main NSA journalists\". Since then, [Edward Snowden](https://" +"twitter.com/Snowden/status/975827513321623553) and journalists [Laura " +"Poitras](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-" +"making-citizenfour), [Glenn Greenwald](https://www.eff.org/" +"deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), and [Micah " +"Lee](https://theintercept.com/2014/10/28/smuggling-snowden-secrets/) have " +"repeatedly stated the importance of Tails for their work and supported us in " +"many ways." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p style=\"max-width: 800px;\">\n" +msgstr "" + +#. 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 "" + +#. type: Plain text +#, no-wrap +msgid "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden showing NSA documents on Tails to Ewen MacAskill\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<em>Images from <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em>\n" +"</p>\n" +msgstr "" + +#. type: Plain text +msgid "" +"A few weeks later, the release of Tails 1.0 got press coverage on [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), " +"and many others. In December, [Der Spiegel](https://www.spiegel.de/media/" +"media-35535.pdf) published internal NSA slides that categorize Tails as " +"\"catastrophic impact\" and \"highest priority\":" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img nsa.png link=\"https://www.spiegel.de/media/media-35535.pdf\"\n" +"alt=\"Tor, TrueCrypt, Tails are classified as 'Use Risk: Current Highest\n" +"Priority Target Use' and 'Impact: Catastrophic (near-total loss/lack of\n" +"insight to target communications, presence)'\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how Tails 1.0 looked like in 2014. It had a camouflage mode that " +"looked like Windows XP and the Tor controller was *Vidalia*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img tails-1.0.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2015-2019 - Maturity, user experience, and automation\n" +msgstr "" + +#. type: Plain text +msgid "" +"In May 2014, the UX team at [NUMA Paris](https://web.archive.org/" +"web/20140524130455/http://events.numaparis.com/Evenements/Apero-Experience-" +"Utilisateur-Tails-The-Amnesic-Incognito-Live-System) invited us to organize " +"a usability testing session of Tails with journalists. We asked participants " +"to do slightly complex tasks such as establishing an encrypted conversation " +"with someone else using *Pidgin*. Reality hit us hard when all the " +"journalists in the room encountered problems to either install, start, or " +"connect Tails to Tor. We realized that, despite having laid down most of the " +"core features in Tails 1.0, we still had a lot of work to do to make Tails " +"easy to use by most people." +msgstr "" + +#. type: Plain text +msgid "" +"Since then, we focused our work on 3 aspects of the project that don't bring " +"in so many new features but rather ensure its long term sustainability and " +"growth: user experience, continuous integration, and project sustainability." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "User experience" +msgstr "" + +#. type: Plain text +msgid "" +"Since these first usability tests in 2014, we systematically relied on user-" +"centered design practices to ensure that all the major changes that we do in " +"Tails are making it easier to use. We conducted 10 sessions of usability " +"tests, used [paper prototypes](https://simplysecure.org/blog/formative-" +"testing), conducted [[quantitative surveys|blueprint/veracrypt]], and " +"defined better our audience using [[personas|contribute/personas]]." +msgstr "" + +#. 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 "" + +#. type: Plain text +msgid "" +"This usability work was key in all the work that we did since 2015 to make " +"Tails easier to install:" +msgstr "" + +#. type: Plain text +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)" +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Continuous integration" +msgstr "" + +#. type: Plain text +msgid "" +"To cope with this rapid development and the many releases, we built a " +"cutting edge *continuous integration* infrastructure:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Images of Tails are [built automatically](https://nightly.tails.boum.org/) " +"every time we develop a change for an upcoming release." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"These images are [[tested automatically|contribute/release_process/test/" +"automated_tests]] against a comprehensive list of usability and security " +"scenarios." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"All our images are [[reproducible|news/reproducible_Tails]], which allows " +"security researchers to verify that the images distributed on our website " +"have not been modified to introduce undisclosed security vulnerabilities." +msgstr "" + +#. type: Plain text +msgid "" +"The following video shows the test suite in action. On the left, it displays " +"the scenario that is being tested, for example \"*symmetrically encrypting a " +"message*\". On the right, it displays Tails being manipulated automatically " +"according to the scenario." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<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" +"</video>\n" +msgstr "" + +#. type: Plain text +msgid "" +"This infrastructure increases the quality and reliability of our releases. " +"It also makes it faster to publish emergency security releases when " +"important vulnerabilities are fixed, for example in Firefox and Tor Browser." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Project sustainability" +msgstr "" + +#. type: Plain text +msgid "" +"The combination of these efforts both on visible improvements and behind the " +"scene had to go hand-in-hand with working on the sustainability of the " +"project as an organization." +msgstr "" + +#. type: Plain text +msgid "Since 2014:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The number of Tails users was multiplied by 2.4, increasing by 20% each year " +"on average, reaching 25000 daily users on average in 2019. Our yearly " +"budget was multiplied by a similar amount, to reach 240 000€ " +"(estimated) in 2019." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We worked on foundational documents and processes to ensure a healthy " +"community and project, such as our [[Code of Conduct|contribute/" +"working_together/code_of_conduct]], [[Social Contract|contribute/" +"working_together/social_contract]], and [[Missions and values|contribute/" +"mission]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img users-budget.svg link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Sustainability cannot go without enjoying working together and having fun. " +"We had memorable gatherings where we danced to the privacy-protecting sound " +"of [Rockwell — Somebody's Watching Me](https://www.youtube.com/watch?" +"v=7YvAYIJSSZY=), [Rap News — Whistleblower](https://www.youtube.com/" +"watch?v=7aiZjD0_mTA), [Pete Seeger — The Onion Makes Us Strong (*sic*)]" +"(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " +"Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " +"Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " +"d'état\"]]." +msgstr "" + +#. type: Plain text +msgid "In 2018 and 2019:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"66 different people contributed to our main source code, including coders, " +"writers, and translators." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"22 different people were paid to work on Tails: a few of them full-time, " +"most of them part-time or as consultants." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We attended 21 conferences in 10 different countries to stay connected with " +"the communities of the Tails ecosystem: related Free Software projects, " +"digital security trainers, and users." +msgstr "" + +#. type: Bullet: '- ' +msgid "20 people, both workers and volunteers, attended our yearly gatherings." +msgstr "" + +#. type: Plain text +msgid "" +"Meanwhile, we counted no less than [[21 projects|doc/about/" +"acknowledgments_and_similar_projects#similar_projects]], who also tried to " +"build a live operating system for privacy and anonymity but are now " +"abandoned." +msgstr "" + +#. type: Plain text +msgid "" +"A big thank you to everybody who either contributed to Tails or supported us:" +msgstr "" + +#. type: Bullet: '- ' +msgid "All the people mentioned in this article one way or another" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The people from other related Free Software projects that Tails relies upon" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The thousands of activists, journalists, and human-rights defenders who are " +"using Tails everyday" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The digital security trainers and technologists who got excited about Tails " +"in its early days and continue advocating for it today" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Everybody who ever contributed to our source code, including the dozens of " +"translators" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Our [[partners, sponsors|partners]], and everybody who ever donated to Tails." +msgstr "" + +#. type: Plain text +msgid "Thank you!" +msgstr "" diff --git a/wiki/src/news/celebrating_10_years.sr_Latn.po b/wiki/src/news/celebrating_10_years.sr_Latn.po new file mode 100644 index 0000000000000000000000000000000000000000..b23a1590448ab78c1acc7cef4df79694d72fc925 --- /dev/null +++ b/wiki/src/news/celebrating_10_years.sr_Latn.po @@ -0,0 +1,591 @@ +# 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-01-03 10:46+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: sr_Latn\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=\"Celebrating 10 years of Tails!\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Mon, 15 Dec 2019 20:00:00 +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 "" +"In 2019, we are especially proud of celebrating with you the 10 years of " +"Tails." +msgstr "" + +#. type: Plain text +msgid "" +"The first release of Tails, back then *amnesia*, was announced in 2009. " +"Since then we released 98 versions of Tails, which were used more than 40 " +"million times." +msgstr "" + +#. type: Plain text +msgid "" +"Here are some stories about how it all started and some vintage screenshots. " +"But first of all, the birthday cake!" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<pre style=\"width: 29em;\">\n" +" _____\n" +" |_|_|_|\n" +" | . . |\n" +" |_____|\n" +" ´ `\n" +" | |\n" +" | :-) |\n" +" {} {}\n" +" || ||\n" +" _||_______||_\n" +" {} {~ ~ ~ ~ ~ ~ ~} {}\n" +" || { ~ ~ ~ ~ ~ ~ } ||\n" +" __||__{_____________}__||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" {} { H a p p y \\} {}\n" +" || {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\} ||\n" +" __||_{___________________________}_||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" { B i r t h d a y }\n" +" { ! ! ! T a i ls ! ! ! }\n" +" {/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/}\n" +" {_______________________________________}\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</pre>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2009–2010: amnesia, T(A)ILS, and their ancestors\n" +msgstr "" + +#. type: Plain text +msgid "" +"Today, Tails is based on Debian, Tor, and GNOME. We inherit from their work " +"and try to contribute back in order to create a healthy ecosystem of " +"reliable, secure, and usable tools." +msgstr "" + +#. type: Plain text +msgid "" +"When we started the *amnesia* project back in 2009, other projects before us " +"paved the way to what is Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[Knoppix](http://www.knoppix.org/), born in 2000 and still alive today, was " +"the first popular live Linux distribution. Back then, it was a " +"groundbreaking achievement to be able to start and use Linux without going " +"through lengthy, very complex, and uncertain Linux install \"parties\". " +"Knoppix was primarily designed for convenience and diagnosis." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." +"net:80/download/ele/), born in 2005 and based on Damn Small Linux, [Anonym." +"OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/" +"projects.html), born in 2006 and based on OpenBSD, and [Incognito](https://" +"web.archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/" +"incognito/index.php?option=com_content&task=view&id=28&Itemid=41), born in " +"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 "" + +#. type: Plain text +#, no-wrap +msgid "" +" *Incognito*\n" +" was the first live operating system to include a full set of\n" +" applications preconfigured to go through Tor (browser, email\n" +" client, IRC client, etc.), offer a persistent *Home*\n" +" directory, and even allow hosting onion services.\n" +" *Incognito* was also the first live operating system to receive an\n" +" [official recognition from the Tor\n" +" Project](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement).\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" The original author of *Incognito*, *Pat Double*, resigned in 2007 and *anonym*, who\n" +" still works for Tails today, took over the maintenance.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"On August 16 2009, *intrigeri* announced the first release of *amnesia* on " +"the [*tor-talk* mailing list](https://lists.torproject.org/pipermail/tor-" +"talk/2009-August/002667.html)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"In March 2010, *Incognito* was declared dead and *amnesia* its \"[spiritual " +"successor](https://web.archive.org/web/20100728224716/http://www." +"anonymityanywhere.com:80/incognito)\". Some weeks later, *amnesia* would be " +"renamed *T(A)ILS*, *The Amnesic Incognito Live System*, to act the fusion " +"between *amnesia* and *Incognito*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We quickly realized that having parenthesis in our name looked very\n" +" radical but was quite confusing and finally settled on *Tails* in 2011.\n" +" Eight years later, we still see most people on the Internet write it\n" +" TAILS though it's never been written in all caps on our website.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Hey people, it's Tails not TAILS!\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how *amnesia* 0.2 and our website looked like in 2009. The browser " +"was *Iceweasel* with *Tor Button* and the Tor controller was *TorK*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img amnesia-0.2.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2011-2014: core features, Tails 1.0, and public recognition\n" +msgstr "" + +#. type: Plain text +msgid "" +"Until Tails 1.0 (April 2014), we would develop most of the core features " +"that make Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc=" +"\"Fedora Live USB Creator\"]]" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Persistence**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Tails Greeter**, our welcome screen" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Automatic upgades**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**MAC Spoofing**" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**MAT (Metadata Anonymization Toolkit)**, which was developed by Julien " +"Voisin as a Google Summer of Code with our help in 2011." +msgstr "" + +#. type: Plain text +msgid "" +"To support this intense development and the increased responsibility on our " +"shoulders, we accepted our first grant, from the *Swedish International " +"Development Agency* in 2011 and started paying for some of the development " +"work." +msgstr "" + +#. type: Plain text +msgid "" +"In October 2012, Tails was started around 2 500 times a day, 10 times " +"less than today." +msgstr "" + +#. type: Plain text +msgid "" +"In June 2013, Edward Snowden would reveal thousands of classified documents " +"on the surveillance programs of the NSA. Tails got mentioned by famous " +"technologists [Bruce Schneier](https://www.theguardian.com/world/2013/sep/05/" +"nsa-how-to-remain-secure-surveillance) and [Micah Lee](https://freedom." +"press/news/encryption-works-how-to-protect-your-privacy-and-your-sources-in-" +"the-age-of-nsa-surveillance/) as one of the tools that protect from the NSA " +"surveillance." +msgstr "" + +#. type: Plain text +msgid "" +"In March 2014, we received our first award, the [Access Innovation Prize for " +"Endpoint Security](https://www.accessnow.org/blog/2014/03/11/2014-access-" +"innovation-prize-winners-announced-at-rightscon). According to Access Now:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"> Tails embodies the successful collaboration of developers, trainers,\n" +"> security professionals towards tackling the spectrum of user needs --\n" +"> from usability to security -- in high-risk environments.\n" +msgstr "" + +#. type: Plain text +msgid "" +"The same month, we launched a [[logo contest|blueprint/logo]]. It was " +"heartwarming to receive 36 very creative proposals. Here are some of the " +"best ones:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img logos.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"In April 2014, Freedom of the Press Foundation launched the first " +"crowdfunding campaign for Tails and revealed that Tails \"has been critical " +"to all of the main NSA journalists\". Since then, [Edward Snowden](https://" +"twitter.com/Snowden/status/975827513321623553) and journalists [Laura " +"Poitras](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-" +"making-citizenfour), [Glenn Greenwald](https://www.eff.org/" +"deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), and [Micah " +"Lee](https://theintercept.com/2014/10/28/smuggling-snowden-secrets/) have " +"repeatedly stated the importance of Tails for their work and supported us in " +"many ways." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p style=\"max-width: 800px;\">\n" +msgstr "" + +#. 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 "" + +#. type: Plain text +#, no-wrap +msgid "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden showing NSA documents on Tails to Ewen MacAskill\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<em>Images from <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em>\n" +"</p>\n" +msgstr "" + +#. type: Plain text +msgid "" +"A few weeks later, the release of Tails 1.0 got press coverage on [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), " +"and many others. In December, [Der Spiegel](https://www.spiegel.de/media/" +"media-35535.pdf) published internal NSA slides that categorize Tails as " +"\"catastrophic impact\" and \"highest priority\":" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img nsa.png link=\"https://www.spiegel.de/media/media-35535.pdf\"\n" +"alt=\"Tor, TrueCrypt, Tails are classified as 'Use Risk: Current Highest\n" +"Priority Target Use' and 'Impact: Catastrophic (near-total loss/lack of\n" +"insight to target communications, presence)'\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how Tails 1.0 looked like in 2014. It had a camouflage mode that " +"looked like Windows XP and the Tor controller was *Vidalia*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img tails-1.0.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2015-2019 - Maturity, user experience, and automation\n" +msgstr "" + +#. type: Plain text +msgid "" +"In May 2014, the UX team at [NUMA Paris](https://web.archive.org/" +"web/20140524130455/http://events.numaparis.com/Evenements/Apero-Experience-" +"Utilisateur-Tails-The-Amnesic-Incognito-Live-System) invited us to organize " +"a usability testing session of Tails with journalists. We asked participants " +"to do slightly complex tasks such as establishing an encrypted conversation " +"with someone else using *Pidgin*. Reality hit us hard when all the " +"journalists in the room encountered problems to either install, start, or " +"connect Tails to Tor. We realized that, despite having laid down most of the " +"core features in Tails 1.0, we still had a lot of work to do to make Tails " +"easy to use by most people." +msgstr "" + +#. type: Plain text +msgid "" +"Since then, we focused our work on 3 aspects of the project that don't bring " +"in so many new features but rather ensure its long term sustainability and " +"growth: user experience, continuous integration, and project sustainability." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "User experience" +msgstr "" + +#. type: Plain text +msgid "" +"Since these first usability tests in 2014, we systematically relied on user-" +"centered design practices to ensure that all the major changes that we do in " +"Tails are making it easier to use. We conducted 10 sessions of usability " +"tests, used [paper prototypes](https://simplysecure.org/blog/formative-" +"testing), conducted [[quantitative surveys|blueprint/veracrypt]], and " +"defined better our audience using [[personas|contribute/personas]]." +msgstr "" + +#. 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 "" + +#. type: Plain text +msgid "" +"This usability work was key in all the work that we did since 2015 to make " +"Tails easier to install:" +msgstr "" + +#. type: Plain text +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)" +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Continuous integration" +msgstr "" + +#. type: Plain text +msgid "" +"To cope with this rapid development and the many releases, we built a " +"cutting edge *continuous integration* infrastructure:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Images of Tails are [built automatically](https://nightly.tails.boum.org/) " +"every time we develop a change for an upcoming release." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"These images are [[tested automatically|contribute/release_process/test/" +"automated_tests]] against a comprehensive list of usability and security " +"scenarios." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"All our images are [[reproducible|news/reproducible_Tails]], which allows " +"security researchers to verify that the images distributed on our website " +"have not been modified to introduce undisclosed security vulnerabilities." +msgstr "" + +#. type: Plain text +msgid "" +"The following video shows the test suite in action. On the left, it displays " +"the scenario that is being tested, for example \"*symmetrically encrypting a " +"message*\". On the right, it displays Tails being manipulated automatically " +"according to the scenario." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<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" +"</video>\n" +msgstr "" + +#. type: Plain text +msgid "" +"This infrastructure increases the quality and reliability of our releases. " +"It also makes it faster to publish emergency security releases when " +"important vulnerabilities are fixed, for example in Firefox and Tor Browser." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Project sustainability" +msgstr "" + +#. type: Plain text +msgid "" +"The combination of these efforts both on visible improvements and behind the " +"scene had to go hand-in-hand with working on the sustainability of the " +"project as an organization." +msgstr "" + +#. type: Plain text +msgid "Since 2014:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The number of Tails users was multiplied by 2.4, increasing by 20% each year " +"on average, reaching 25000 daily users on average in 2019. Our yearly " +"budget was multiplied by a similar amount, to reach 240 000€ " +"(estimated) in 2019." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We worked on foundational documents and processes to ensure a healthy " +"community and project, such as our [[Code of Conduct|contribute/" +"working_together/code_of_conduct]], [[Social Contract|contribute/" +"working_together/social_contract]], and [[Missions and values|contribute/" +"mission]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img users-budget.svg link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Sustainability cannot go without enjoying working together and having fun. " +"We had memorable gatherings where we danced to the privacy-protecting sound " +"of [Rockwell — Somebody's Watching Me](https://www.youtube.com/watch?" +"v=7YvAYIJSSZY=), [Rap News — Whistleblower](https://www.youtube.com/" +"watch?v=7aiZjD0_mTA), [Pete Seeger — The Onion Makes Us Strong (*sic*)]" +"(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " +"Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " +"Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " +"d'état\"]]." +msgstr "" + +#. type: Plain text +msgid "In 2018 and 2019:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"66 different people contributed to our main source code, including coders, " +"writers, and translators." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"22 different people were paid to work on Tails: a few of them full-time, " +"most of them part-time or as consultants." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We attended 21 conferences in 10 different countries to stay connected with " +"the communities of the Tails ecosystem: related Free Software projects, " +"digital security trainers, and users." +msgstr "" + +#. type: Bullet: '- ' +msgid "20 people, both workers and volunteers, attended our yearly gatherings." +msgstr "" + +#. type: Plain text +msgid "" +"Meanwhile, we counted no less than [[21 projects|doc/about/" +"acknowledgments_and_similar_projects#similar_projects]], who also tried to " +"build a live operating system for privacy and anonymity but are now " +"abandoned." +msgstr "" + +#. type: Plain text +msgid "" +"A big thank you to everybody who either contributed to Tails or supported us:" +msgstr "" + +#. type: Bullet: '- ' +msgid "All the people mentioned in this article one way or another" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The people from other related Free Software projects that Tails relies upon" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The thousands of activists, journalists, and human-rights defenders who are " +"using Tails everyday" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The digital security trainers and technologists who got excited about Tails " +"in its early days and continue advocating for it today" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Everybody who ever contributed to our source code, including the dozens of " +"translators" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Our [[partners, sponsors|partners]], and everybody who ever donated to Tails." +msgstr "" + +#. type: Plain text +msgid "Thank you!" +msgstr "" diff --git a/wiki/src/news/celebrating_10_years.tr.po b/wiki/src/news/celebrating_10_years.tr.po new file mode 100644 index 0000000000000000000000000000000000000000..91567030c0546a2d3ba88a126832dbc63f6e96e9 --- /dev/null +++ b/wiki/src/news/celebrating_10_years.tr.po @@ -0,0 +1,591 @@ +# 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-01-03 10:46+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: tr\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=\"Celebrating 10 years of Tails!\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Mon, 15 Dec 2019 20:00:00 +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 "" +"In 2019, we are especially proud of celebrating with you the 10 years of " +"Tails." +msgstr "" + +#. type: Plain text +msgid "" +"The first release of Tails, back then *amnesia*, was announced in 2009. " +"Since then we released 98 versions of Tails, which were used more than 40 " +"million times." +msgstr "" + +#. type: Plain text +msgid "" +"Here are some stories about how it all started and some vintage screenshots. " +"But first of all, the birthday cake!" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<pre style=\"width: 29em;\">\n" +" _____\n" +" |_|_|_|\n" +" | . . |\n" +" |_____|\n" +" ´ `\n" +" | |\n" +" | :-) |\n" +" {} {}\n" +" || ||\n" +" _||_______||_\n" +" {} {~ ~ ~ ~ ~ ~ ~} {}\n" +" || { ~ ~ ~ ~ ~ ~ } ||\n" +" __||__{_____________}__||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" {} { H a p p y \\} {}\n" +" || {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\} ||\n" +" __||_{___________________________}_||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" { B i r t h d a y }\n" +" { ! ! ! T a i ls ! ! ! }\n" +" {/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/}\n" +" {_______________________________________}\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</pre>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2009–2010: amnesia, T(A)ILS, and their ancestors\n" +msgstr "" + +#. type: Plain text +msgid "" +"Today, Tails is based on Debian, Tor, and GNOME. We inherit from their work " +"and try to contribute back in order to create a healthy ecosystem of " +"reliable, secure, and usable tools." +msgstr "" + +#. type: Plain text +msgid "" +"When we started the *amnesia* project back in 2009, other projects before us " +"paved the way to what is Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[Knoppix](http://www.knoppix.org/), born in 2000 and still alive today, was " +"the first popular live Linux distribution. Back then, it was a " +"groundbreaking achievement to be able to start and use Linux without going " +"through lengthy, very complex, and uncertain Linux install \"parties\". " +"Knoppix was primarily designed for convenience and diagnosis." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." +"net:80/download/ele/), born in 2005 and based on Damn Small Linux, [Anonym." +"OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/" +"projects.html), born in 2006 and based on OpenBSD, and [Incognito](https://" +"web.archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/" +"incognito/index.php?option=com_content&task=view&id=28&Itemid=41), born in " +"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 "" + +#. type: Plain text +#, no-wrap +msgid "" +" *Incognito*\n" +" was the first live operating system to include a full set of\n" +" applications preconfigured to go through Tor (browser, email\n" +" client, IRC client, etc.), offer a persistent *Home*\n" +" directory, and even allow hosting onion services.\n" +" *Incognito* was also the first live operating system to receive an\n" +" [official recognition from the Tor\n" +" Project](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement).\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" The original author of *Incognito*, *Pat Double*, resigned in 2007 and *anonym*, who\n" +" still works for Tails today, took over the maintenance.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"On August 16 2009, *intrigeri* announced the first release of *amnesia* on " +"the [*tor-talk* mailing list](https://lists.torproject.org/pipermail/tor-" +"talk/2009-August/002667.html)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"In March 2010, *Incognito* was declared dead and *amnesia* its \"[spiritual " +"successor](https://web.archive.org/web/20100728224716/http://www." +"anonymityanywhere.com:80/incognito)\". Some weeks later, *amnesia* would be " +"renamed *T(A)ILS*, *The Amnesic Incognito Live System*, to act the fusion " +"between *amnesia* and *Incognito*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We quickly realized that having parenthesis in our name looked very\n" +" radical but was quite confusing and finally settled on *Tails* in 2011.\n" +" Eight years later, we still see most people on the Internet write it\n" +" TAILS though it's never been written in all caps on our website.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Hey people, it's Tails not TAILS!\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how *amnesia* 0.2 and our website looked like in 2009. The browser " +"was *Iceweasel* with *Tor Button* and the Tor controller was *TorK*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img amnesia-0.2.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2011-2014: core features, Tails 1.0, and public recognition\n" +msgstr "" + +#. type: Plain text +msgid "" +"Until Tails 1.0 (April 2014), we would develop most of the core features " +"that make Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc=" +"\"Fedora Live USB Creator\"]]" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Persistence**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Tails Greeter**, our welcome screen" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Automatic upgades**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**MAC Spoofing**" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**MAT (Metadata Anonymization Toolkit)**, which was developed by Julien " +"Voisin as a Google Summer of Code with our help in 2011." +msgstr "" + +#. type: Plain text +msgid "" +"To support this intense development and the increased responsibility on our " +"shoulders, we accepted our first grant, from the *Swedish International " +"Development Agency* in 2011 and started paying for some of the development " +"work." +msgstr "" + +#. type: Plain text +msgid "" +"In October 2012, Tails was started around 2 500 times a day, 10 times " +"less than today." +msgstr "" + +#. type: Plain text +msgid "" +"In June 2013, Edward Snowden would reveal thousands of classified documents " +"on the surveillance programs of the NSA. Tails got mentioned by famous " +"technologists [Bruce Schneier](https://www.theguardian.com/world/2013/sep/05/" +"nsa-how-to-remain-secure-surveillance) and [Micah Lee](https://freedom." +"press/news/encryption-works-how-to-protect-your-privacy-and-your-sources-in-" +"the-age-of-nsa-surveillance/) as one of the tools that protect from the NSA " +"surveillance." +msgstr "" + +#. type: Plain text +msgid "" +"In March 2014, we received our first award, the [Access Innovation Prize for " +"Endpoint Security](https://www.accessnow.org/blog/2014/03/11/2014-access-" +"innovation-prize-winners-announced-at-rightscon). According to Access Now:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"> Tails embodies the successful collaboration of developers, trainers,\n" +"> security professionals towards tackling the spectrum of user needs --\n" +"> from usability to security -- in high-risk environments.\n" +msgstr "" + +#. type: Plain text +msgid "" +"The same month, we launched a [[logo contest|blueprint/logo]]. It was " +"heartwarming to receive 36 very creative proposals. Here are some of the " +"best ones:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img logos.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"In April 2014, Freedom of the Press Foundation launched the first " +"crowdfunding campaign for Tails and revealed that Tails \"has been critical " +"to all of the main NSA journalists\". Since then, [Edward Snowden](https://" +"twitter.com/Snowden/status/975827513321623553) and journalists [Laura " +"Poitras](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-" +"making-citizenfour), [Glenn Greenwald](https://www.eff.org/" +"deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), and [Micah " +"Lee](https://theintercept.com/2014/10/28/smuggling-snowden-secrets/) have " +"repeatedly stated the importance of Tails for their work and supported us in " +"many ways." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p style=\"max-width: 800px;\">\n" +msgstr "" + +#. 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 "" + +#. type: Plain text +#, no-wrap +msgid "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden showing NSA documents on Tails to Ewen MacAskill\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<em>Images from <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em>\n" +"</p>\n" +msgstr "" + +#. type: Plain text +msgid "" +"A few weeks later, the release of Tails 1.0 got press coverage on [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), " +"and many others. In December, [Der Spiegel](https://www.spiegel.de/media/" +"media-35535.pdf) published internal NSA slides that categorize Tails as " +"\"catastrophic impact\" and \"highest priority\":" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img nsa.png link=\"https://www.spiegel.de/media/media-35535.pdf\"\n" +"alt=\"Tor, TrueCrypt, Tails are classified as 'Use Risk: Current Highest\n" +"Priority Target Use' and 'Impact: Catastrophic (near-total loss/lack of\n" +"insight to target communications, presence)'\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how Tails 1.0 looked like in 2014. It had a camouflage mode that " +"looked like Windows XP and the Tor controller was *Vidalia*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img tails-1.0.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2015-2019 - Maturity, user experience, and automation\n" +msgstr "" + +#. type: Plain text +msgid "" +"In May 2014, the UX team at [NUMA Paris](https://web.archive.org/" +"web/20140524130455/http://events.numaparis.com/Evenements/Apero-Experience-" +"Utilisateur-Tails-The-Amnesic-Incognito-Live-System) invited us to organize " +"a usability testing session of Tails with journalists. We asked participants " +"to do slightly complex tasks such as establishing an encrypted conversation " +"with someone else using *Pidgin*. Reality hit us hard when all the " +"journalists in the room encountered problems to either install, start, or " +"connect Tails to Tor. We realized that, despite having laid down most of the " +"core features in Tails 1.0, we still had a lot of work to do to make Tails " +"easy to use by most people." +msgstr "" + +#. type: Plain text +msgid "" +"Since then, we focused our work on 3 aspects of the project that don't bring " +"in so many new features but rather ensure its long term sustainability and " +"growth: user experience, continuous integration, and project sustainability." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "User experience" +msgstr "" + +#. type: Plain text +msgid "" +"Since these first usability tests in 2014, we systematically relied on user-" +"centered design practices to ensure that all the major changes that we do in " +"Tails are making it easier to use. We conducted 10 sessions of usability " +"tests, used [paper prototypes](https://simplysecure.org/blog/formative-" +"testing), conducted [[quantitative surveys|blueprint/veracrypt]], and " +"defined better our audience using [[personas|contribute/personas]]." +msgstr "" + +#. 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 "" + +#. type: Plain text +msgid "" +"This usability work was key in all the work that we did since 2015 to make " +"Tails easier to install:" +msgstr "" + +#. type: Plain text +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)" +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Continuous integration" +msgstr "" + +#. type: Plain text +msgid "" +"To cope with this rapid development and the many releases, we built a " +"cutting edge *continuous integration* infrastructure:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Images of Tails are [built automatically](https://nightly.tails.boum.org/) " +"every time we develop a change for an upcoming release." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"These images are [[tested automatically|contribute/release_process/test/" +"automated_tests]] against a comprehensive list of usability and security " +"scenarios." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"All our images are [[reproducible|news/reproducible_Tails]], which allows " +"security researchers to verify that the images distributed on our website " +"have not been modified to introduce undisclosed security vulnerabilities." +msgstr "" + +#. type: Plain text +msgid "" +"The following video shows the test suite in action. On the left, it displays " +"the scenario that is being tested, for example \"*symmetrically encrypting a " +"message*\". On the right, it displays Tails being manipulated automatically " +"according to the scenario." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<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" +"</video>\n" +msgstr "" + +#. type: Plain text +msgid "" +"This infrastructure increases the quality and reliability of our releases. " +"It also makes it faster to publish emergency security releases when " +"important vulnerabilities are fixed, for example in Firefox and Tor Browser." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Project sustainability" +msgstr "" + +#. type: Plain text +msgid "" +"The combination of these efforts both on visible improvements and behind the " +"scene had to go hand-in-hand with working on the sustainability of the " +"project as an organization." +msgstr "" + +#. type: Plain text +msgid "Since 2014:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The number of Tails users was multiplied by 2.4, increasing by 20% each year " +"on average, reaching 25000 daily users on average in 2019. Our yearly " +"budget was multiplied by a similar amount, to reach 240 000€ " +"(estimated) in 2019." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We worked on foundational documents and processes to ensure a healthy " +"community and project, such as our [[Code of Conduct|contribute/" +"working_together/code_of_conduct]], [[Social Contract|contribute/" +"working_together/social_contract]], and [[Missions and values|contribute/" +"mission]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img users-budget.svg link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Sustainability cannot go without enjoying working together and having fun. " +"We had memorable gatherings where we danced to the privacy-protecting sound " +"of [Rockwell — Somebody's Watching Me](https://www.youtube.com/watch?" +"v=7YvAYIJSSZY=), [Rap News — Whistleblower](https://www.youtube.com/" +"watch?v=7aiZjD0_mTA), [Pete Seeger — The Onion Makes Us Strong (*sic*)]" +"(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " +"Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " +"Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " +"d'état\"]]." +msgstr "" + +#. type: Plain text +msgid "In 2018 and 2019:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"66 different people contributed to our main source code, including coders, " +"writers, and translators." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"22 different people were paid to work on Tails: a few of them full-time, " +"most of them part-time or as consultants." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We attended 21 conferences in 10 different countries to stay connected with " +"the communities of the Tails ecosystem: related Free Software projects, " +"digital security trainers, and users." +msgstr "" + +#. type: Bullet: '- ' +msgid "20 people, both workers and volunteers, attended our yearly gatherings." +msgstr "" + +#. type: Plain text +msgid "" +"Meanwhile, we counted no less than [[21 projects|doc/about/" +"acknowledgments_and_similar_projects#similar_projects]], who also tried to " +"build a live operating system for privacy and anonymity but are now " +"abandoned." +msgstr "" + +#. type: Plain text +msgid "" +"A big thank you to everybody who either contributed to Tails or supported us:" +msgstr "" + +#. type: Bullet: '- ' +msgid "All the people mentioned in this article one way or another" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The people from other related Free Software projects that Tails relies upon" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The thousands of activists, journalists, and human-rights defenders who are " +"using Tails everyday" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The digital security trainers and technologists who got excited about Tails " +"in its early days and continue advocating for it today" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Everybody who ever contributed to our source code, including the dozens of " +"translators" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Our [[partners, sponsors|partners]], and everybody who ever donated to Tails." +msgstr "" + +#. type: Plain text +msgid "Thank you!" +msgstr "" diff --git a/wiki/src/news/celebrating_10_years.zh.po b/wiki/src/news/celebrating_10_years.zh.po new file mode 100644 index 0000000000000000000000000000000000000000..ef183f63cf170dd212583e6d594116aa433cd81b --- /dev/null +++ b/wiki/src/news/celebrating_10_years.zh.po @@ -0,0 +1,591 @@ +# 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-01-03 10:46+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: zh\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=\"Celebrating 10 years of Tails!\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Mon, 15 Dec 2019 20:00:00 +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 "" +"In 2019, we are especially proud of celebrating with you the 10 years of " +"Tails." +msgstr "" + +#. type: Plain text +msgid "" +"The first release of Tails, back then *amnesia*, was announced in 2009. " +"Since then we released 98 versions of Tails, which were used more than 40 " +"million times." +msgstr "" + +#. type: Plain text +msgid "" +"Here are some stories about how it all started and some vintage screenshots. " +"But first of all, the birthday cake!" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<pre style=\"width: 29em;\">\n" +" _____\n" +" |_|_|_|\n" +" | . . |\n" +" |_____|\n" +" ´ `\n" +" | |\n" +" | :-) |\n" +" {} {}\n" +" || ||\n" +" _||_______||_\n" +" {} {~ ~ ~ ~ ~ ~ ~} {}\n" +" || { ~ ~ ~ ~ ~ ~ } ||\n" +" __||__{_____________}__||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" {} { H a p p y \\} {}\n" +" || {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\} ||\n" +" __||_{___________________________}_||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" { B i r t h d a y }\n" +" { ! ! ! T a i ls ! ! ! }\n" +" {/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/}\n" +" {_______________________________________}\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</pre>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2009–2010: amnesia, T(A)ILS, and their ancestors\n" +msgstr "" + +#. type: Plain text +msgid "" +"Today, Tails is based on Debian, Tor, and GNOME. We inherit from their work " +"and try to contribute back in order to create a healthy ecosystem of " +"reliable, secure, and usable tools." +msgstr "" + +#. type: Plain text +msgid "" +"When we started the *amnesia* project back in 2009, other projects before us " +"paved the way to what is Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[Knoppix](http://www.knoppix.org/), born in 2000 and still alive today, was " +"the first popular live Linux distribution. Back then, it was a " +"groundbreaking achievement to be able to start and use Linux without going " +"through lengthy, very complex, and uncertain Linux install \"parties\". " +"Knoppix was primarily designed for convenience and diagnosis." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." +"net:80/download/ele/), born in 2005 and based on Damn Small Linux, [Anonym." +"OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/" +"projects.html), born in 2006 and based on OpenBSD, and [Incognito](https://" +"web.archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/" +"incognito/index.php?option=com_content&task=view&id=28&Itemid=41), born in " +"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 "" + +#. type: Plain text +#, no-wrap +msgid "" +" *Incognito*\n" +" was the first live operating system to include a full set of\n" +" applications preconfigured to go through Tor (browser, email\n" +" client, IRC client, etc.), offer a persistent *Home*\n" +" directory, and even allow hosting onion services.\n" +" *Incognito* was also the first live operating system to receive an\n" +" [official recognition from the Tor\n" +" Project](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement).\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" The original author of *Incognito*, *Pat Double*, resigned in 2007 and *anonym*, who\n" +" still works for Tails today, took over the maintenance.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"On August 16 2009, *intrigeri* announced the first release of *amnesia* on " +"the [*tor-talk* mailing list](https://lists.torproject.org/pipermail/tor-" +"talk/2009-August/002667.html)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"In March 2010, *Incognito* was declared dead and *amnesia* its \"[spiritual " +"successor](https://web.archive.org/web/20100728224716/http://www." +"anonymityanywhere.com:80/incognito)\". Some weeks later, *amnesia* would be " +"renamed *T(A)ILS*, *The Amnesic Incognito Live System*, to act the fusion " +"between *amnesia* and *Incognito*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We quickly realized that having parenthesis in our name looked very\n" +" radical but was quite confusing and finally settled on *Tails* in 2011.\n" +" Eight years later, we still see most people on the Internet write it\n" +" TAILS though it's never been written in all caps on our website.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Hey people, it's Tails not TAILS!\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how *amnesia* 0.2 and our website looked like in 2009. The browser " +"was *Iceweasel* with *Tor Button* and the Tor controller was *TorK*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img amnesia-0.2.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2011-2014: core features, Tails 1.0, and public recognition\n" +msgstr "" + +#. type: Plain text +msgid "" +"Until Tails 1.0 (April 2014), we would develop most of the core features " +"that make Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc=" +"\"Fedora Live USB Creator\"]]" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Persistence**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Tails Greeter**, our welcome screen" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Automatic upgades**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**MAC Spoofing**" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**MAT (Metadata Anonymization Toolkit)**, which was developed by Julien " +"Voisin as a Google Summer of Code with our help in 2011." +msgstr "" + +#. type: Plain text +msgid "" +"To support this intense development and the increased responsibility on our " +"shoulders, we accepted our first grant, from the *Swedish International " +"Development Agency* in 2011 and started paying for some of the development " +"work." +msgstr "" + +#. type: Plain text +msgid "" +"In October 2012, Tails was started around 2 500 times a day, 10 times " +"less than today." +msgstr "" + +#. type: Plain text +msgid "" +"In June 2013, Edward Snowden would reveal thousands of classified documents " +"on the surveillance programs of the NSA. Tails got mentioned by famous " +"technologists [Bruce Schneier](https://www.theguardian.com/world/2013/sep/05/" +"nsa-how-to-remain-secure-surveillance) and [Micah Lee](https://freedom." +"press/news/encryption-works-how-to-protect-your-privacy-and-your-sources-in-" +"the-age-of-nsa-surveillance/) as one of the tools that protect from the NSA " +"surveillance." +msgstr "" + +#. type: Plain text +msgid "" +"In March 2014, we received our first award, the [Access Innovation Prize for " +"Endpoint Security](https://www.accessnow.org/blog/2014/03/11/2014-access-" +"innovation-prize-winners-announced-at-rightscon). According to Access Now:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"> Tails embodies the successful collaboration of developers, trainers,\n" +"> security professionals towards tackling the spectrum of user needs --\n" +"> from usability to security -- in high-risk environments.\n" +msgstr "" + +#. type: Plain text +msgid "" +"The same month, we launched a [[logo contest|blueprint/logo]]. It was " +"heartwarming to receive 36 very creative proposals. Here are some of the " +"best ones:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img logos.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"In April 2014, Freedom of the Press Foundation launched the first " +"crowdfunding campaign for Tails and revealed that Tails \"has been critical " +"to all of the main NSA journalists\". Since then, [Edward Snowden](https://" +"twitter.com/Snowden/status/975827513321623553) and journalists [Laura " +"Poitras](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-" +"making-citizenfour), [Glenn Greenwald](https://www.eff.org/" +"deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), and [Micah " +"Lee](https://theintercept.com/2014/10/28/smuggling-snowden-secrets/) have " +"repeatedly stated the importance of Tails for their work and supported us in " +"many ways." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p style=\"max-width: 800px;\">\n" +msgstr "" + +#. 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 "" + +#. type: Plain text +#, no-wrap +msgid "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden showing NSA documents on Tails to Ewen MacAskill\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<em>Images from <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em>\n" +"</p>\n" +msgstr "" + +#. type: Plain text +msgid "" +"A few weeks later, the release of Tails 1.0 got press coverage on [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), " +"and many others. In December, [Der Spiegel](https://www.spiegel.de/media/" +"media-35535.pdf) published internal NSA slides that categorize Tails as " +"\"catastrophic impact\" and \"highest priority\":" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img nsa.png link=\"https://www.spiegel.de/media/media-35535.pdf\"\n" +"alt=\"Tor, TrueCrypt, Tails are classified as 'Use Risk: Current Highest\n" +"Priority Target Use' and 'Impact: Catastrophic (near-total loss/lack of\n" +"insight to target communications, presence)'\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how Tails 1.0 looked like in 2014. It had a camouflage mode that " +"looked like Windows XP and the Tor controller was *Vidalia*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img tails-1.0.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2015-2019 - Maturity, user experience, and automation\n" +msgstr "" + +#. type: Plain text +msgid "" +"In May 2014, the UX team at [NUMA Paris](https://web.archive.org/" +"web/20140524130455/http://events.numaparis.com/Evenements/Apero-Experience-" +"Utilisateur-Tails-The-Amnesic-Incognito-Live-System) invited us to organize " +"a usability testing session of Tails with journalists. We asked participants " +"to do slightly complex tasks such as establishing an encrypted conversation " +"with someone else using *Pidgin*. Reality hit us hard when all the " +"journalists in the room encountered problems to either install, start, or " +"connect Tails to Tor. We realized that, despite having laid down most of the " +"core features in Tails 1.0, we still had a lot of work to do to make Tails " +"easy to use by most people." +msgstr "" + +#. type: Plain text +msgid "" +"Since then, we focused our work on 3 aspects of the project that don't bring " +"in so many new features but rather ensure its long term sustainability and " +"growth: user experience, continuous integration, and project sustainability." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "User experience" +msgstr "" + +#. type: Plain text +msgid "" +"Since these first usability tests in 2014, we systematically relied on user-" +"centered design practices to ensure that all the major changes that we do in " +"Tails are making it easier to use. We conducted 10 sessions of usability " +"tests, used [paper prototypes](https://simplysecure.org/blog/formative-" +"testing), conducted [[quantitative surveys|blueprint/veracrypt]], and " +"defined better our audience using [[personas|contribute/personas]]." +msgstr "" + +#. 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 "" + +#. type: Plain text +msgid "" +"This usability work was key in all the work that we did since 2015 to make " +"Tails easier to install:" +msgstr "" + +#. type: Plain text +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)" +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Continuous integration" +msgstr "" + +#. type: Plain text +msgid "" +"To cope with this rapid development and the many releases, we built a " +"cutting edge *continuous integration* infrastructure:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Images of Tails are [built automatically](https://nightly.tails.boum.org/) " +"every time we develop a change for an upcoming release." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"These images are [[tested automatically|contribute/release_process/test/" +"automated_tests]] against a comprehensive list of usability and security " +"scenarios." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"All our images are [[reproducible|news/reproducible_Tails]], which allows " +"security researchers to verify that the images distributed on our website " +"have not been modified to introduce undisclosed security vulnerabilities." +msgstr "" + +#. type: Plain text +msgid "" +"The following video shows the test suite in action. On the left, it displays " +"the scenario that is being tested, for example \"*symmetrically encrypting a " +"message*\". On the right, it displays Tails being manipulated automatically " +"according to the scenario." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<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" +"</video>\n" +msgstr "" + +#. type: Plain text +msgid "" +"This infrastructure increases the quality and reliability of our releases. " +"It also makes it faster to publish emergency security releases when " +"important vulnerabilities are fixed, for example in Firefox and Tor Browser." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Project sustainability" +msgstr "" + +#. type: Plain text +msgid "" +"The combination of these efforts both on visible improvements and behind the " +"scene had to go hand-in-hand with working on the sustainability of the " +"project as an organization." +msgstr "" + +#. type: Plain text +msgid "Since 2014:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The number of Tails users was multiplied by 2.4, increasing by 20% each year " +"on average, reaching 25000 daily users on average in 2019. Our yearly " +"budget was multiplied by a similar amount, to reach 240 000€ " +"(estimated) in 2019." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We worked on foundational documents and processes to ensure a healthy " +"community and project, such as our [[Code of Conduct|contribute/" +"working_together/code_of_conduct]], [[Social Contract|contribute/" +"working_together/social_contract]], and [[Missions and values|contribute/" +"mission]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img users-budget.svg link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Sustainability cannot go without enjoying working together and having fun. " +"We had memorable gatherings where we danced to the privacy-protecting sound " +"of [Rockwell — Somebody's Watching Me](https://www.youtube.com/watch?" +"v=7YvAYIJSSZY=), [Rap News — Whistleblower](https://www.youtube.com/" +"watch?v=7aiZjD0_mTA), [Pete Seeger — The Onion Makes Us Strong (*sic*)]" +"(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " +"Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " +"Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " +"d'état\"]]." +msgstr "" + +#. type: Plain text +msgid "In 2018 and 2019:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"66 different people contributed to our main source code, including coders, " +"writers, and translators." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"22 different people were paid to work on Tails: a few of them full-time, " +"most of them part-time or as consultants." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We attended 21 conferences in 10 different countries to stay connected with " +"the communities of the Tails ecosystem: related Free Software projects, " +"digital security trainers, and users." +msgstr "" + +#. type: Bullet: '- ' +msgid "20 people, both workers and volunteers, attended our yearly gatherings." +msgstr "" + +#. type: Plain text +msgid "" +"Meanwhile, we counted no less than [[21 projects|doc/about/" +"acknowledgments_and_similar_projects#similar_projects]], who also tried to " +"build a live operating system for privacy and anonymity but are now " +"abandoned." +msgstr "" + +#. type: Plain text +msgid "" +"A big thank you to everybody who either contributed to Tails or supported us:" +msgstr "" + +#. type: Bullet: '- ' +msgid "All the people mentioned in this article one way or another" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The people from other related Free Software projects that Tails relies upon" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The thousands of activists, journalists, and human-rights defenders who are " +"using Tails everyday" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The digital security trainers and technologists who got excited about Tails " +"in its early days and continue advocating for it today" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Everybody who ever contributed to our source code, including the dozens of " +"translators" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Our [[partners, sponsors|partners]], and everybody who ever donated to Tails." +msgstr "" + +#. type: Plain text +msgid "Thank you!" +msgstr "" diff --git a/wiki/src/news/celebrating_10_years.zh_TW.po b/wiki/src/news/celebrating_10_years.zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..6887b8baa0b017422032dd737ed154367029b603 --- /dev/null +++ b/wiki/src/news/celebrating_10_years.zh_TW.po @@ -0,0 +1,591 @@ +# 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-01-03 10:46+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: zh_TW\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=\"Celebrating 10 years of Tails!\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Mon, 15 Dec 2019 20:00:00 +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 "" +"In 2019, we are especially proud of celebrating with you the 10 years of " +"Tails." +msgstr "" + +#. type: Plain text +msgid "" +"The first release of Tails, back then *amnesia*, was announced in 2009. " +"Since then we released 98 versions of Tails, which were used more than 40 " +"million times." +msgstr "" + +#. type: Plain text +msgid "" +"Here are some stories about how it all started and some vintage screenshots. " +"But first of all, the birthday cake!" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<pre style=\"width: 29em;\">\n" +" _____\n" +" |_|_|_|\n" +" | . . |\n" +" |_____|\n" +" ´ `\n" +" | |\n" +" | :-) |\n" +" {} {}\n" +" || ||\n" +" _||_______||_\n" +" {} {~ ~ ~ ~ ~ ~ ~} {}\n" +" || { ~ ~ ~ ~ ~ ~ } ||\n" +" __||__{_____________}__||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" {} { H a p p y \\} {}\n" +" || {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\} ||\n" +" __||_{___________________________}_||__\n" +" {\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\}\n" +" { B i r t h d a y }\n" +" { ! ! ! T a i ls ! ! ! }\n" +" {/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/}\n" +" {_______________________________________}\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "</pre>\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2009–2010: amnesia, T(A)ILS, and their ancestors\n" +msgstr "" + +#. type: Plain text +msgid "" +"Today, Tails is based on Debian, Tor, and GNOME. We inherit from their work " +"and try to contribute back in order to create a healthy ecosystem of " +"reliable, secure, and usable tools." +msgstr "" + +#. type: Plain text +msgid "" +"When we started the *amnesia* project back in 2009, other projects before us " +"paved the way to what is Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[Knoppix](http://www.knoppix.org/), born in 2000 and still alive today, was " +"the first popular live Linux distribution. Back then, it was a " +"groundbreaking achievement to be able to start and use Linux without going " +"through lengthy, very complex, and uncertain Linux install \"parties\". " +"Knoppix was primarily designed for convenience and diagnosis." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"[ELE](https://web.archive.org/web/20050422130010/http://www.northernsecurity." +"net:80/download/ele/), born in 2005 and based on Damn Small Linux, [Anonym." +"OS](https://web.archive.org/web/20060212030338/http://theory.kaos.to:80/" +"projects.html), born in 2006 and based on OpenBSD, and [Incognito](https://" +"web.archive.org/web/20071213084719/http://www.browseanonymouslyanywhere.com/" +"incognito/index.php?option=com_content&task=view&id=28&Itemid=41), born in " +"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 "" + +#. type: Plain text +#, no-wrap +msgid "" +" *Incognito*\n" +" was the first live operating system to include a full set of\n" +" applications preconfigured to go through Tor (browser, email\n" +" client, IRC client, etc.), offer a persistent *Home*\n" +" directory, and even allow hosting onion services.\n" +" *Incognito* was also the first live operating system to receive an\n" +" [official recognition from the Tor\n" +" Project](https://blog.torproject.org/incognito-and-tor-project-sign-licensing-agreement).\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" The original author of *Incognito*, *Pat Double*, resigned in 2007 and *anonym*, who\n" +" still works for Tails today, took over the maintenance.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"On August 16 2009, *intrigeri* announced the first release of *amnesia* on " +"the [*tor-talk* mailing list](https://lists.torproject.org/pipermail/tor-" +"talk/2009-August/002667.html)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"In March 2010, *Incognito* was declared dead and *amnesia* its \"[spiritual " +"successor](https://web.archive.org/web/20100728224716/http://www." +"anonymityanywhere.com:80/incognito)\". Some weeks later, *amnesia* would be " +"renamed *T(A)ILS*, *The Amnesic Incognito Live System*, to act the fusion " +"between *amnesia* and *Incognito*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" We quickly realized that having parenthesis in our name looked very\n" +" radical but was quite confusing and finally settled on *Tails* in 2011.\n" +" Eight years later, we still see most people on the Internet write it\n" +" TAILS though it's never been written in all caps on our website.\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " Hey people, it's Tails not TAILS!\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how *amnesia* 0.2 and our website looked like in 2009. The browser " +"was *Iceweasel* with *Tor Button* and the Tor controller was *TorK*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img amnesia-0.2.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2011-2014: core features, Tails 1.0, and public recognition\n" +msgstr "" + +#. type: Plain text +msgid "" +"Until Tails 1.0 (April 2014), we would develop most of the core features " +"that make Tails today:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**Tails Installer**, forked from the [[!wikipedia Fedora_Media_Writer desc=" +"\"Fedora Live USB Creator\"]]" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Persistence**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Tails Greeter**, our welcome screen" +msgstr "" + +#. type: Bullet: '- ' +msgid "**Automatic upgades**" +msgstr "" + +#. type: Bullet: '- ' +msgid "**MAC Spoofing**" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"**MAT (Metadata Anonymization Toolkit)**, which was developed by Julien " +"Voisin as a Google Summer of Code with our help in 2011." +msgstr "" + +#. type: Plain text +msgid "" +"To support this intense development and the increased responsibility on our " +"shoulders, we accepted our first grant, from the *Swedish International " +"Development Agency* in 2011 and started paying for some of the development " +"work." +msgstr "" + +#. type: Plain text +msgid "" +"In October 2012, Tails was started around 2 500 times a day, 10 times " +"less than today." +msgstr "" + +#. type: Plain text +msgid "" +"In June 2013, Edward Snowden would reveal thousands of classified documents " +"on the surveillance programs of the NSA. Tails got mentioned by famous " +"technologists [Bruce Schneier](https://www.theguardian.com/world/2013/sep/05/" +"nsa-how-to-remain-secure-surveillance) and [Micah Lee](https://freedom." +"press/news/encryption-works-how-to-protect-your-privacy-and-your-sources-in-" +"the-age-of-nsa-surveillance/) as one of the tools that protect from the NSA " +"surveillance." +msgstr "" + +#. type: Plain text +msgid "" +"In March 2014, we received our first award, the [Access Innovation Prize for " +"Endpoint Security](https://www.accessnow.org/blog/2014/03/11/2014-access-" +"innovation-prize-winners-announced-at-rightscon). According to Access Now:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"> Tails embodies the successful collaboration of developers, trainers,\n" +"> security professionals towards tackling the spectrum of user needs --\n" +"> from usability to security -- in high-risk environments.\n" +msgstr "" + +#. type: Plain text +msgid "" +"The same month, we launched a [[logo contest|blueprint/logo]]. It was " +"heartwarming to receive 36 very creative proposals. Here are some of the " +"best ones:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img logos.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"In April 2014, Freedom of the Press Foundation launched the first " +"crowdfunding campaign for Tails and revealed that Tails \"has been critical " +"to all of the main NSA journalists\". Since then, [Edward Snowden](https://" +"twitter.com/Snowden/status/975827513321623553) and journalists [Laura " +"Poitras](https://www.eff.org/deeplinks/2014/10/7-privacy-tools-essential-" +"making-citizenfour), [Glenn Greenwald](https://www.eff.org/" +"deeplinks/2014/10/7-privacy-tools-essential-making-citizenfour), and [Micah " +"Lee](https://theintercept.com/2014/10/28/smuggling-snowden-secrets/) have " +"repeatedly stated the importance of Tails for their work and supported us in " +"many ways." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<p style=\"max-width: 800px;\">\n" +msgstr "" + +#. 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 "" + +#. type: Plain text +#, no-wrap +msgid "[[!img snowden-2.jpg size=\"380x\" alt=\"Snowden showing NSA documents on Tails to Ewen MacAskill\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<em>Images from <a href=\"https://citizenfourfilm.com/\">Citizenfour</a> by Laura Poitras, minutes 37 and 41.</em>\n" +"</p>\n" +msgstr "" + +#. type: Plain text +msgid "" +"A few weeks later, the release of Tails 1.0 got press coverage on [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), " +"and many others. In December, [Der Spiegel](https://www.spiegel.de/media/" +"media-35535.pdf) published internal NSA slides that categorize Tails as " +"\"catastrophic impact\" and \"highest priority\":" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"[[!img nsa.png link=\"https://www.spiegel.de/media/media-35535.pdf\"\n" +"alt=\"Tor, TrueCrypt, Tails are classified as 'Use Risk: Current Highest\n" +"Priority Target Use' and 'Impact: Catastrophic (near-total loss/lack of\n" +"insight to target communications, presence)'\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This is how Tails 1.0 looked like in 2014. It had a camouflage mode that " +"looked like Windows XP and the Tor controller was *Vidalia*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img tails-1.0.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Title = +#, no-wrap +msgid "2015-2019 - Maturity, user experience, and automation\n" +msgstr "" + +#. type: Plain text +msgid "" +"In May 2014, the UX team at [NUMA Paris](https://web.archive.org/" +"web/20140524130455/http://events.numaparis.com/Evenements/Apero-Experience-" +"Utilisateur-Tails-The-Amnesic-Incognito-Live-System) invited us to organize " +"a usability testing session of Tails with journalists. We asked participants " +"to do slightly complex tasks such as establishing an encrypted conversation " +"with someone else using *Pidgin*. Reality hit us hard when all the " +"journalists in the room encountered problems to either install, start, or " +"connect Tails to Tor. We realized that, despite having laid down most of the " +"core features in Tails 1.0, we still had a lot of work to do to make Tails " +"easy to use by most people." +msgstr "" + +#. type: Plain text +msgid "" +"Since then, we focused our work on 3 aspects of the project that don't bring " +"in so many new features but rather ensure its long term sustainability and " +"growth: user experience, continuous integration, and project sustainability." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "User experience" +msgstr "" + +#. type: Plain text +msgid "" +"Since these first usability tests in 2014, we systematically relied on user-" +"centered design practices to ensure that all the major changes that we do in " +"Tails are making it easier to use. We conducted 10 sessions of usability " +"tests, used [paper prototypes](https://simplysecure.org/blog/formative-" +"testing), conducted [[quantitative surveys|blueprint/veracrypt]], and " +"defined better our audience using [[personas|contribute/personas]]." +msgstr "" + +#. 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 "" + +#. type: Plain text +msgid "" +"This usability work was key in all the work that we did since 2015 to make " +"Tails easier to install:" +msgstr "" + +#. type: Plain text +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)" +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Continuous integration" +msgstr "" + +#. type: Plain text +msgid "" +"To cope with this rapid development and the many releases, we built a " +"cutting edge *continuous integration* infrastructure:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Images of Tails are [built automatically](https://nightly.tails.boum.org/) " +"every time we develop a change for an upcoming release." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"These images are [[tested automatically|contribute/release_process/test/" +"automated_tests]] against a comprehensive list of usability and security " +"scenarios." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"All our images are [[reproducible|news/reproducible_Tails]], which allows " +"security researchers to verify that the images distributed on our website " +"have not been modified to introduce undisclosed security vulnerabilities." +msgstr "" + +#. type: Plain text +msgid "" +"The following video shows the test suite in action. On the left, it displays " +"the scenario that is being tested, for example \"*symmetrically encrypting a " +"message*\". On the right, it displays Tails being manipulated automatically " +"according to the scenario." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"<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" +"</video>\n" +msgstr "" + +#. type: Plain text +msgid "" +"This infrastructure increases the quality and reliability of our releases. " +"It also makes it faster to publish emergency security releases when " +"important vulnerabilities are fixed, for example in Firefox and Tor Browser." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "Project sustainability" +msgstr "" + +#. type: Plain text +msgid "" +"The combination of these efforts both on visible improvements and behind the " +"scene had to go hand-in-hand with working on the sustainability of the " +"project as an organization." +msgstr "" + +#. type: Plain text +msgid "Since 2014:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The number of Tails users was multiplied by 2.4, increasing by 20% each year " +"on average, reaching 25000 daily users on average in 2019. Our yearly " +"budget was multiplied by a similar amount, to reach 240 000€ " +"(estimated) in 2019." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We worked on foundational documents and processes to ensure a healthy " +"community and project, such as our [[Code of Conduct|contribute/" +"working_together/code_of_conduct]], [[Social Contract|contribute/" +"working_together/social_contract]], and [[Missions and values|contribute/" +"mission]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!img users-budget.svg link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Sustainability cannot go without enjoying working together and having fun. " +"We had memorable gatherings where we danced to the privacy-protecting sound " +"of [Rockwell — Somebody's Watching Me](https://www.youtube.com/watch?" +"v=7YvAYIJSSZY=), [Rap News — Whistleblower](https://www.youtube.com/" +"watch?v=7aiZjD0_mTA), [Pete Seeger — The Onion Makes Us Strong (*sic*)]" +"(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " +"Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " +"Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " +"d'état\"]]." +msgstr "" + +#. type: Plain text +msgid "In 2018 and 2019:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"66 different people contributed to our main source code, including coders, " +"writers, and translators." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"22 different people were paid to work on Tails: a few of them full-time, " +"most of them part-time or as consultants." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We attended 21 conferences in 10 different countries to stay connected with " +"the communities of the Tails ecosystem: related Free Software projects, " +"digital security trainers, and users." +msgstr "" + +#. type: Bullet: '- ' +msgid "20 people, both workers and volunteers, attended our yearly gatherings." +msgstr "" + +#. type: Plain text +msgid "" +"Meanwhile, we counted no less than [[21 projects|doc/about/" +"acknowledgments_and_similar_projects#similar_projects]], who also tried to " +"build a live operating system for privacy and anonymity but are now " +"abandoned." +msgstr "" + +#. type: Plain text +msgid "" +"A big thank you to everybody who either contributed to Tails or supported us:" +msgstr "" + +#. type: Bullet: '- ' +msgid "All the people mentioned in this article one way or another" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The people from other related Free Software projects that Tails relies upon" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The thousands of activists, journalists, and human-rights defenders who are " +"using Tails everyday" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"The digital security trainers and technologists who got excited about Tails " +"in its early days and continue advocating for it today" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Everybody who ever contributed to our source code, including the dozens of " +"translators" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Our [[partners, sponsors|partners]], and everybody who ever donated to Tails." +msgstr "" + +#. type: Plain text +msgid "Thank you!" +msgstr "" diff --git a/wiki/src/news/celebrating_10_years/amnesia-0.2.png b/wiki/src/news/celebrating_10_years/amnesia-0.2.png new file mode 100644 index 0000000000000000000000000000000000000000..b846d67acd032e7963c0fd852102e96a1aab814f Binary files /dev/null and b/wiki/src/news/celebrating_10_years/amnesia-0.2.png differ diff --git a/wiki/src/news/celebrating_10_years/logos.png b/wiki/src/news/celebrating_10_years/logos.png new file mode 100644 index 0000000000000000000000000000000000000000..841ed6e31549c5d5ca08e31e9290756e81bc491d Binary files /dev/null and b/wiki/src/news/celebrating_10_years/logos.png differ diff --git a/wiki/src/news/celebrating_10_years/mafe.ar.po b/wiki/src/news/celebrating_10_years/mafe.ar.po new file mode 100644 index 0000000000000000000000000000000000000000..7330f9aa525e4ae5d1572075ba5a1254eeb29975 --- /dev/null +++ b/wiki/src/news/celebrating_10_years/mafe.ar.po @@ -0,0 +1,159 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: ar\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=\"Mafé\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Western African dish based on sweet potatoes. Ingredients for 12 people! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Yof ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 bunch of parsley" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 big onion" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cloves of garlic" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cubes dehydrated vegetable broth" +msgstr "" + +#. type: Bullet: '* ' +msgid "2 teaspoons of chili powder (or fresh)" +msgstr "" + +#. type: Bullet: '* ' +msgid "Salt" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Main ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 big onions" +msgstr "" + +#. type: Bullet: '* ' +msgid "2.5 kg sweet potatoes 🍠 (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgstr "" + +#. type: Bullet: '* ' +msgid "800 g. crushed tomatoes (canned is fine)" +msgstr "" + +#. type: Bullet: '* ' +msgid "400 g. smooth peanut butter" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." +msgstr "" + +#. type: Bullet: '* ' +msgid "4 table spoons sunflower oil" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"decoration" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [but not used during the 2017 summit]): more chili for a more " +"authentic/traditional experience! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Steps" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Prepare the yof by mixing (preferably with an electrical mixer) all " +"ingredients into a paste." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Peel and chop both onions and sweet potatoes into big pieces." +msgstr "" + +#. type: Bullet: '3. ' +msgid "" +"Heat the sunflower oil in a pot (will need a lid later!) for the main dish." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Add the yof and stir for 2 minutes on medium heat." +msgstr "" + +#. type: Bullet: '5. ' +msgid "Add onions." +msgstr "" + +#. type: Bullet: '6. ' +msgid "Stir for 4 minutes." +msgstr "" + +#. type: Bullet: '7. ' +msgid "" +"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." +msgstr "" + +#. type: Bullet: '8. ' +msgid "" +"Increase to high heat, cover the pot with a lid and let it boil until the " +"sweet potatoes are cooked. Stir regularly! This should take about 25 minutes " +"(but it depends on the size of the potato pieces)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"9. Add peanut butter and the rest of the broth, and stir it evenly in\n" +" the mixture.\n" +"10. Decrease to low heat and stir regularly for another 20 minutes.\n" +"11. Season with salt (and optionally more chili), and serve with rice!\n" +msgstr "" + +#. type: Plain text +msgid "" +"As mentioned in the main ingredients, if the result is too thick, it can be " +"made thinner by adding any extra broth." +msgstr "" diff --git a/wiki/src/news/celebrating_10_years/mafe.ca.po b/wiki/src/news/celebrating_10_years/mafe.ca.po new file mode 100644 index 0000000000000000000000000000000000000000..e8859ef8fbd76cc0d1e98f6c7e086c4b6389df76 --- /dev/null +++ b/wiki/src/news/celebrating_10_years/mafe.ca.po @@ -0,0 +1,159 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: ca\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=\"Mafé\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Western African dish based on sweet potatoes. Ingredients for 12 people! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Yof ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 bunch of parsley" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 big onion" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cloves of garlic" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cubes dehydrated vegetable broth" +msgstr "" + +#. type: Bullet: '* ' +msgid "2 teaspoons of chili powder (or fresh)" +msgstr "" + +#. type: Bullet: '* ' +msgid "Salt" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Main ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 big onions" +msgstr "" + +#. type: Bullet: '* ' +msgid "2.5 kg sweet potatoes 🍠 (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgstr "" + +#. type: Bullet: '* ' +msgid "800 g. crushed tomatoes (canned is fine)" +msgstr "" + +#. type: Bullet: '* ' +msgid "400 g. smooth peanut butter" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." +msgstr "" + +#. type: Bullet: '* ' +msgid "4 table spoons sunflower oil" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"decoration" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [but not used during the 2017 summit]): more chili for a more " +"authentic/traditional experience! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Steps" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Prepare the yof by mixing (preferably with an electrical mixer) all " +"ingredients into a paste." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Peel and chop both onions and sweet potatoes into big pieces." +msgstr "" + +#. type: Bullet: '3. ' +msgid "" +"Heat the sunflower oil in a pot (will need a lid later!) for the main dish." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Add the yof and stir for 2 minutes on medium heat." +msgstr "" + +#. type: Bullet: '5. ' +msgid "Add onions." +msgstr "" + +#. type: Bullet: '6. ' +msgid "Stir for 4 minutes." +msgstr "" + +#. type: Bullet: '7. ' +msgid "" +"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." +msgstr "" + +#. type: Bullet: '8. ' +msgid "" +"Increase to high heat, cover the pot with a lid and let it boil until the " +"sweet potatoes are cooked. Stir regularly! This should take about 25 minutes " +"(but it depends on the size of the potato pieces)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"9. Add peanut butter and the rest of the broth, and stir it evenly in\n" +" the mixture.\n" +"10. Decrease to low heat and stir regularly for another 20 minutes.\n" +"11. Season with salt (and optionally more chili), and serve with rice!\n" +msgstr "" + +#. type: Plain text +msgid "" +"As mentioned in the main ingredients, if the result is too thick, it can be " +"made thinner by adding any extra broth." +msgstr "" diff --git a/wiki/src/news/celebrating_10_years/mafe.de.po b/wiki/src/news/celebrating_10_years/mafe.de.po new file mode 100644 index 0000000000000000000000000000000000000000..7b95bc83f716b512bcd61d7813a0ee3bb3cf40e6 --- /dev/null +++ b/wiki/src/news/celebrating_10_years/mafe.de.po @@ -0,0 +1,157 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Mafé\"]]\n" +msgstr "" + +#. type: Plain text +msgid "Western African dish based on sweet potatoes. Ingredients for 12 people! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Yof ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 bunch of parsley" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 big onion" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cloves of garlic" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cubes dehydrated vegetable broth" +msgstr "" + +#. type: Bullet: '* ' +msgid "2 teaspoons of chili powder (or fresh)" +msgstr "" + +#. type: Bullet: '* ' +msgid "Salt" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Main ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 big onions" +msgstr "" + +#. type: Bullet: '* ' +msgid "2.5 kg sweet potatoes 🍠 (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgstr "" + +#. type: Bullet: '* ' +msgid "800 g. crushed tomatoes (canned is fine)" +msgstr "" + +#. type: Bullet: '* ' +msgid "400 g. smooth peanut butter" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." +msgstr "" + +#. type: Bullet: '* ' +msgid "4 table spoons sunflower oil" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"decoration" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [but not used during the 2017 summit]): more chili for a more " +"authentic/traditional experience! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Steps" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Prepare the yof by mixing (preferably with an electrical mixer) all " +"ingredients into a paste." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Peel and chop both onions and sweet potatoes into big pieces." +msgstr "" + +#. type: Bullet: '3. ' +msgid "Heat the sunflower oil in a pot (will need a lid later!) for the main dish." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Add the yof and stir for 2 minutes on medium heat." +msgstr "" + +#. type: Bullet: '5. ' +msgid "Add onions." +msgstr "" + +#. type: Bullet: '6. ' +msgid "Stir for 4 minutes." +msgstr "" + +#. type: Bullet: '7. ' +msgid "" +"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." +msgstr "" + +#. type: Bullet: '8. ' +msgid "" +"Increase to high heat, cover the pot with a lid and let it boil until the " +"sweet potatoes are cooked. Stir regularly! This should take about 25 minutes " +"(but it depends on the size of the potato pieces)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"9. Add peanut butter and the rest of the broth, and stir it evenly in\n" +" the mixture.\n" +"10. Decrease to low heat and stir regularly for another 20 minutes.\n" +"11. Season with salt (and optionally more chili), and serve with rice!\n" +msgstr "" + +#. type: Plain text +msgid "" +"As mentioned in the main ingredients, if the result is too thick, it can be " +"made thinner by adding any extra broth." +msgstr "" diff --git a/wiki/src/news/celebrating_10_years/mafe.es.po b/wiki/src/news/celebrating_10_years/mafe.es.po new file mode 100644 index 0000000000000000000000000000000000000000..7b95bc83f716b512bcd61d7813a0ee3bb3cf40e6 --- /dev/null +++ b/wiki/src/news/celebrating_10_years/mafe.es.po @@ -0,0 +1,157 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Mafé\"]]\n" +msgstr "" + +#. type: Plain text +msgid "Western African dish based on sweet potatoes. Ingredients for 12 people! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Yof ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 bunch of parsley" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 big onion" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cloves of garlic" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cubes dehydrated vegetable broth" +msgstr "" + +#. type: Bullet: '* ' +msgid "2 teaspoons of chili powder (or fresh)" +msgstr "" + +#. type: Bullet: '* ' +msgid "Salt" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Main ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 big onions" +msgstr "" + +#. type: Bullet: '* ' +msgid "2.5 kg sweet potatoes 🍠 (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgstr "" + +#. type: Bullet: '* ' +msgid "800 g. crushed tomatoes (canned is fine)" +msgstr "" + +#. type: Bullet: '* ' +msgid "400 g. smooth peanut butter" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." +msgstr "" + +#. type: Bullet: '* ' +msgid "4 table spoons sunflower oil" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"decoration" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [but not used during the 2017 summit]): more chili for a more " +"authentic/traditional experience! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Steps" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Prepare the yof by mixing (preferably with an electrical mixer) all " +"ingredients into a paste." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Peel and chop both onions and sweet potatoes into big pieces." +msgstr "" + +#. type: Bullet: '3. ' +msgid "Heat the sunflower oil in a pot (will need a lid later!) for the main dish." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Add the yof and stir for 2 minutes on medium heat." +msgstr "" + +#. type: Bullet: '5. ' +msgid "Add onions." +msgstr "" + +#. type: Bullet: '6. ' +msgid "Stir for 4 minutes." +msgstr "" + +#. type: Bullet: '7. ' +msgid "" +"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." +msgstr "" + +#. type: Bullet: '8. ' +msgid "" +"Increase to high heat, cover the pot with a lid and let it boil until the " +"sweet potatoes are cooked. Stir regularly! This should take about 25 minutes " +"(but it depends on the size of the potato pieces)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"9. Add peanut butter and the rest of the broth, and stir it evenly in\n" +" the mixture.\n" +"10. Decrease to low heat and stir regularly for another 20 minutes.\n" +"11. Season with salt (and optionally more chili), and serve with rice!\n" +msgstr "" + +#. type: Plain text +msgid "" +"As mentioned in the main ingredients, if the result is too thick, it can be " +"made thinner by adding any extra broth." +msgstr "" diff --git a/wiki/src/news/celebrating_10_years/mafe.fa.po b/wiki/src/news/celebrating_10_years/mafe.fa.po new file mode 100644 index 0000000000000000000000000000000000000000..7b95bc83f716b512bcd61d7813a0ee3bb3cf40e6 --- /dev/null +++ b/wiki/src/news/celebrating_10_years/mafe.fa.po @@ -0,0 +1,157 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Mafé\"]]\n" +msgstr "" + +#. type: Plain text +msgid "Western African dish based on sweet potatoes. Ingredients for 12 people! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Yof ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 bunch of parsley" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 big onion" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cloves of garlic" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cubes dehydrated vegetable broth" +msgstr "" + +#. type: Bullet: '* ' +msgid "2 teaspoons of chili powder (or fresh)" +msgstr "" + +#. type: Bullet: '* ' +msgid "Salt" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Main ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 big onions" +msgstr "" + +#. type: Bullet: '* ' +msgid "2.5 kg sweet potatoes 🍠 (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgstr "" + +#. type: Bullet: '* ' +msgid "800 g. crushed tomatoes (canned is fine)" +msgstr "" + +#. type: Bullet: '* ' +msgid "400 g. smooth peanut butter" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." +msgstr "" + +#. type: Bullet: '* ' +msgid "4 table spoons sunflower oil" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"decoration" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [but not used during the 2017 summit]): more chili for a more " +"authentic/traditional experience! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Steps" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Prepare the yof by mixing (preferably with an electrical mixer) all " +"ingredients into a paste." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Peel and chop both onions and sweet potatoes into big pieces." +msgstr "" + +#. type: Bullet: '3. ' +msgid "Heat the sunflower oil in a pot (will need a lid later!) for the main dish." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Add the yof and stir for 2 minutes on medium heat." +msgstr "" + +#. type: Bullet: '5. ' +msgid "Add onions." +msgstr "" + +#. type: Bullet: '6. ' +msgid "Stir for 4 minutes." +msgstr "" + +#. type: Bullet: '7. ' +msgid "" +"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." +msgstr "" + +#. type: Bullet: '8. ' +msgid "" +"Increase to high heat, cover the pot with a lid and let it boil until the " +"sweet potatoes are cooked. Stir regularly! This should take about 25 minutes " +"(but it depends on the size of the potato pieces)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"9. Add peanut butter and the rest of the broth, and stir it evenly in\n" +" the mixture.\n" +"10. Decrease to low heat and stir regularly for another 20 minutes.\n" +"11. Season with salt (and optionally more chili), and serve with rice!\n" +msgstr "" + +#. type: Plain text +msgid "" +"As mentioned in the main ingredients, if the result is too thick, it can be " +"made thinner by adding any extra broth." +msgstr "" diff --git a/wiki/src/news/celebrating_10_years/mafe.fr.po b/wiki/src/news/celebrating_10_years/mafe.fr.po new file mode 100644 index 0000000000000000000000000000000000000000..7b95bc83f716b512bcd61d7813a0ee3bb3cf40e6 --- /dev/null +++ b/wiki/src/news/celebrating_10_years/mafe.fr.po @@ -0,0 +1,157 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Mafé\"]]\n" +msgstr "" + +#. type: Plain text +msgid "Western African dish based on sweet potatoes. Ingredients for 12 people! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Yof ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 bunch of parsley" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 big onion" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cloves of garlic" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cubes dehydrated vegetable broth" +msgstr "" + +#. type: Bullet: '* ' +msgid "2 teaspoons of chili powder (or fresh)" +msgstr "" + +#. type: Bullet: '* ' +msgid "Salt" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Main ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 big onions" +msgstr "" + +#. type: Bullet: '* ' +msgid "2.5 kg sweet potatoes 🍠 (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgstr "" + +#. type: Bullet: '* ' +msgid "800 g. crushed tomatoes (canned is fine)" +msgstr "" + +#. type: Bullet: '* ' +msgid "400 g. smooth peanut butter" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." +msgstr "" + +#. type: Bullet: '* ' +msgid "4 table spoons sunflower oil" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"decoration" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [but not used during the 2017 summit]): more chili for a more " +"authentic/traditional experience! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Steps" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Prepare the yof by mixing (preferably with an electrical mixer) all " +"ingredients into a paste." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Peel and chop both onions and sweet potatoes into big pieces." +msgstr "" + +#. type: Bullet: '3. ' +msgid "Heat the sunflower oil in a pot (will need a lid later!) for the main dish." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Add the yof and stir for 2 minutes on medium heat." +msgstr "" + +#. type: Bullet: '5. ' +msgid "Add onions." +msgstr "" + +#. type: Bullet: '6. ' +msgid "Stir for 4 minutes." +msgstr "" + +#. type: Bullet: '7. ' +msgid "" +"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." +msgstr "" + +#. type: Bullet: '8. ' +msgid "" +"Increase to high heat, cover the pot with a lid and let it boil until the " +"sweet potatoes are cooked. Stir regularly! This should take about 25 minutes " +"(but it depends on the size of the potato pieces)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"9. Add peanut butter and the rest of the broth, and stir it evenly in\n" +" the mixture.\n" +"10. Decrease to low heat and stir regularly for another 20 minutes.\n" +"11. Season with salt (and optionally more chili), and serve with rice!\n" +msgstr "" + +#. type: Plain text +msgid "" +"As mentioned in the main ingredients, if the result is too thick, it can be " +"made thinner by adding any extra broth." +msgstr "" diff --git a/wiki/src/news/celebrating_10_years/mafe.id.po b/wiki/src/news/celebrating_10_years/mafe.id.po new file mode 100644 index 0000000000000000000000000000000000000000..e28aea663359ef2669614d9a200f9ff13a05aaab --- /dev/null +++ b/wiki/src/news/celebrating_10_years/mafe.id.po @@ -0,0 +1,159 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: id\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=\"Mafé\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Western African dish based on sweet potatoes. Ingredients for 12 people! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Yof ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 bunch of parsley" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 big onion" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cloves of garlic" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cubes dehydrated vegetable broth" +msgstr "" + +#. type: Bullet: '* ' +msgid "2 teaspoons of chili powder (or fresh)" +msgstr "" + +#. type: Bullet: '* ' +msgid "Salt" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Main ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 big onions" +msgstr "" + +#. type: Bullet: '* ' +msgid "2.5 kg sweet potatoes 🍠 (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgstr "" + +#. type: Bullet: '* ' +msgid "800 g. crushed tomatoes (canned is fine)" +msgstr "" + +#. type: Bullet: '* ' +msgid "400 g. smooth peanut butter" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." +msgstr "" + +#. type: Bullet: '* ' +msgid "4 table spoons sunflower oil" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"decoration" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [but not used during the 2017 summit]): more chili for a more " +"authentic/traditional experience! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Steps" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Prepare the yof by mixing (preferably with an electrical mixer) all " +"ingredients into a paste." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Peel and chop both onions and sweet potatoes into big pieces." +msgstr "" + +#. type: Bullet: '3. ' +msgid "" +"Heat the sunflower oil in a pot (will need a lid later!) for the main dish." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Add the yof and stir for 2 minutes on medium heat." +msgstr "" + +#. type: Bullet: '5. ' +msgid "Add onions." +msgstr "" + +#. type: Bullet: '6. ' +msgid "Stir for 4 minutes." +msgstr "" + +#. type: Bullet: '7. ' +msgid "" +"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." +msgstr "" + +#. type: Bullet: '8. ' +msgid "" +"Increase to high heat, cover the pot with a lid and let it boil until the " +"sweet potatoes are cooked. Stir regularly! This should take about 25 minutes " +"(but it depends on the size of the potato pieces)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"9. Add peanut butter and the rest of the broth, and stir it evenly in\n" +" the mixture.\n" +"10. Decrease to low heat and stir regularly for another 20 minutes.\n" +"11. Season with salt (and optionally more chili), and serve with rice!\n" +msgstr "" + +#. type: Plain text +msgid "" +"As mentioned in the main ingredients, if the result is too thick, it can be " +"made thinner by adding any extra broth." +msgstr "" diff --git a/wiki/src/news/celebrating_10_years/mafe.it.po b/wiki/src/news/celebrating_10_years/mafe.it.po new file mode 100644 index 0000000000000000000000000000000000000000..7b95bc83f716b512bcd61d7813a0ee3bb3cf40e6 --- /dev/null +++ b/wiki/src/news/celebrating_10_years/mafe.it.po @@ -0,0 +1,157 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Mafé\"]]\n" +msgstr "" + +#. type: Plain text +msgid "Western African dish based on sweet potatoes. Ingredients for 12 people! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Yof ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 bunch of parsley" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 big onion" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cloves of garlic" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cubes dehydrated vegetable broth" +msgstr "" + +#. type: Bullet: '* ' +msgid "2 teaspoons of chili powder (or fresh)" +msgstr "" + +#. type: Bullet: '* ' +msgid "Salt" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Main ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 big onions" +msgstr "" + +#. type: Bullet: '* ' +msgid "2.5 kg sweet potatoes 🍠 (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgstr "" + +#. type: Bullet: '* ' +msgid "800 g. crushed tomatoes (canned is fine)" +msgstr "" + +#. type: Bullet: '* ' +msgid "400 g. smooth peanut butter" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." +msgstr "" + +#. type: Bullet: '* ' +msgid "4 table spoons sunflower oil" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"decoration" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [but not used during the 2017 summit]): more chili for a more " +"authentic/traditional experience! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Steps" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Prepare the yof by mixing (preferably with an electrical mixer) all " +"ingredients into a paste." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Peel and chop both onions and sweet potatoes into big pieces." +msgstr "" + +#. type: Bullet: '3. ' +msgid "Heat the sunflower oil in a pot (will need a lid later!) for the main dish." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Add the yof and stir for 2 minutes on medium heat." +msgstr "" + +#. type: Bullet: '5. ' +msgid "Add onions." +msgstr "" + +#. type: Bullet: '6. ' +msgid "Stir for 4 minutes." +msgstr "" + +#. type: Bullet: '7. ' +msgid "" +"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." +msgstr "" + +#. type: Bullet: '8. ' +msgid "" +"Increase to high heat, cover the pot with a lid and let it boil until the " +"sweet potatoes are cooked. Stir regularly! This should take about 25 minutes " +"(but it depends on the size of the potato pieces)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"9. Add peanut butter and the rest of the broth, and stir it evenly in\n" +" the mixture.\n" +"10. Decrease to low heat and stir regularly for another 20 minutes.\n" +"11. Season with salt (and optionally more chili), and serve with rice!\n" +msgstr "" + +#. type: Plain text +msgid "" +"As mentioned in the main ingredients, if the result is too thick, it can be " +"made thinner by adding any extra broth." +msgstr "" diff --git a/wiki/src/news/celebrating_10_years/mafe.mdwn b/wiki/src/news/celebrating_10_years/mafe.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..6253f267d71728c906650d75edc51a9bb208f6ec --- /dev/null +++ b/wiki/src/news/celebrating_10_years/mafe.mdwn @@ -0,0 +1,52 @@ +[[!meta title="Mafé"]] + +Western African dish based on sweet potatoes. Ingredients for 12 +people! :) + +## Yof ingredients + +* 1 bunch of parsley +* 1 big onion +* 3 cloves of garlic +* 3 cubes dehydrated vegetable broth +* 2 teaspoons of chili powder (or fresh) +* Salt + +## Main ingredients + +* 3 big onions +* 2.5 kg sweet potatoes 🍠 (yes! U+1F360 is "ROASTED SWEET POTATO"!) +* 800 g. crushed tomatoes (canned is fine) +* 400 g. smooth peanut butter +* ½ l. boiled vegetable broth. It is a good idea to make a bit more + and keep it in case the mafé becomes to thick. +* 4 table spoons sunflower oil +* Salt +* (Optional [used during the 2017 summit]): ½ bunch chopped parsley + for decoration +* (Optional [but not used during the 2017 summit]): more chili for a + more authentic/traditional experience! :) + +## Steps + +1. Prepare the yof by mixing (preferably with an electrical mixer) + all ingredients into a paste. +2. Peel and chop both onions and sweet potatoes into big pieces. +3. Heat the sunflower oil in a pot (will need a lid later!) for the + main dish. +4. Add the yof and stir for 2 minutes on medium heat. +5. Add onions. +6. Stir for 4 minutes. +7. Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that + the potatoes are *exactly* covered by the liquid. +8. Increase to high heat, cover the pot with a lid and let it boil + until the sweet potatoes are cooked. Stir regularly! This should + take about 25 minutes (but it depends on the size of the potato + pieces). +9. Add peanut butter and the rest of the broth, and stir it evenly in + the mixture. +10. Decrease to low heat and stir regularly for another 20 minutes. +11. Season with salt (and optionally more chili), and serve with rice! + +As mentioned in the main ingredients, if the result is too thick, it +can be made thinner by adding any extra broth. diff --git a/wiki/src/news/celebrating_10_years/mafe.pl.po b/wiki/src/news/celebrating_10_years/mafe.pl.po new file mode 100644 index 0000000000000000000000000000000000000000..14cd8a23cfb4261f04539a9f7e654bc985af1352 --- /dev/null +++ b/wiki/src/news/celebrating_10_years/mafe.pl.po @@ -0,0 +1,159 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: pl\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=\"Mafé\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Western African dish based on sweet potatoes. Ingredients for 12 people! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Yof ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 bunch of parsley" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 big onion" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cloves of garlic" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cubes dehydrated vegetable broth" +msgstr "" + +#. type: Bullet: '* ' +msgid "2 teaspoons of chili powder (or fresh)" +msgstr "" + +#. type: Bullet: '* ' +msgid "Salt" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Main ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 big onions" +msgstr "" + +#. type: Bullet: '* ' +msgid "2.5 kg sweet potatoes 🍠 (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgstr "" + +#. type: Bullet: '* ' +msgid "800 g. crushed tomatoes (canned is fine)" +msgstr "" + +#. type: Bullet: '* ' +msgid "400 g. smooth peanut butter" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." +msgstr "" + +#. type: Bullet: '* ' +msgid "4 table spoons sunflower oil" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"decoration" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [but not used during the 2017 summit]): more chili for a more " +"authentic/traditional experience! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Steps" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Prepare the yof by mixing (preferably with an electrical mixer) all " +"ingredients into a paste." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Peel and chop both onions and sweet potatoes into big pieces." +msgstr "" + +#. type: Bullet: '3. ' +msgid "" +"Heat the sunflower oil in a pot (will need a lid later!) for the main dish." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Add the yof and stir for 2 minutes on medium heat." +msgstr "" + +#. type: Bullet: '5. ' +msgid "Add onions." +msgstr "" + +#. type: Bullet: '6. ' +msgid "Stir for 4 minutes." +msgstr "" + +#. type: Bullet: '7. ' +msgid "" +"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." +msgstr "" + +#. type: Bullet: '8. ' +msgid "" +"Increase to high heat, cover the pot with a lid and let it boil until the " +"sweet potatoes are cooked. Stir regularly! This should take about 25 minutes " +"(but it depends on the size of the potato pieces)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"9. Add peanut butter and the rest of the broth, and stir it evenly in\n" +" the mixture.\n" +"10. Decrease to low heat and stir regularly for another 20 minutes.\n" +"11. Season with salt (and optionally more chili), and serve with rice!\n" +msgstr "" + +#. type: Plain text +msgid "" +"As mentioned in the main ingredients, if the result is too thick, it can be " +"made thinner by adding any extra broth." +msgstr "" diff --git a/wiki/src/news/celebrating_10_years/mafe.pt.po b/wiki/src/news/celebrating_10_years/mafe.pt.po new file mode 100644 index 0000000000000000000000000000000000000000..7b95bc83f716b512bcd61d7813a0ee3bb3cf40e6 --- /dev/null +++ b/wiki/src/news/celebrating_10_years/mafe.pt.po @@ -0,0 +1,157 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Mafé\"]]\n" +msgstr "" + +#. type: Plain text +msgid "Western African dish based on sweet potatoes. Ingredients for 12 people! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Yof ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 bunch of parsley" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 big onion" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cloves of garlic" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cubes dehydrated vegetable broth" +msgstr "" + +#. type: Bullet: '* ' +msgid "2 teaspoons of chili powder (or fresh)" +msgstr "" + +#. type: Bullet: '* ' +msgid "Salt" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Main ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 big onions" +msgstr "" + +#. type: Bullet: '* ' +msgid "2.5 kg sweet potatoes 🍠 (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgstr "" + +#. type: Bullet: '* ' +msgid "800 g. crushed tomatoes (canned is fine)" +msgstr "" + +#. type: Bullet: '* ' +msgid "400 g. smooth peanut butter" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." +msgstr "" + +#. type: Bullet: '* ' +msgid "4 table spoons sunflower oil" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"decoration" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [but not used during the 2017 summit]): more chili for a more " +"authentic/traditional experience! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Steps" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Prepare the yof by mixing (preferably with an electrical mixer) all " +"ingredients into a paste." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Peel and chop both onions and sweet potatoes into big pieces." +msgstr "" + +#. type: Bullet: '3. ' +msgid "Heat the sunflower oil in a pot (will need a lid later!) for the main dish." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Add the yof and stir for 2 minutes on medium heat." +msgstr "" + +#. type: Bullet: '5. ' +msgid "Add onions." +msgstr "" + +#. type: Bullet: '6. ' +msgid "Stir for 4 minutes." +msgstr "" + +#. type: Bullet: '7. ' +msgid "" +"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." +msgstr "" + +#. type: Bullet: '8. ' +msgid "" +"Increase to high heat, cover the pot with a lid and let it boil until the " +"sweet potatoes are cooked. Stir regularly! This should take about 25 minutes " +"(but it depends on the size of the potato pieces)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"9. Add peanut butter and the rest of the broth, and stir it evenly in\n" +" the mixture.\n" +"10. Decrease to low heat and stir regularly for another 20 minutes.\n" +"11. Season with salt (and optionally more chili), and serve with rice!\n" +msgstr "" + +#. type: Plain text +msgid "" +"As mentioned in the main ingredients, if the result is too thick, it can be " +"made thinner by adding any extra broth." +msgstr "" diff --git a/wiki/src/news/celebrating_10_years/mafe.ru.po b/wiki/src/news/celebrating_10_years/mafe.ru.po new file mode 100644 index 0000000000000000000000000000000000000000..000261473b2a6deb77367ec5fcccb9d61a7f2250 --- /dev/null +++ b/wiki/src/news/celebrating_10_years/mafe.ru.po @@ -0,0 +1,159 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: ru\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=\"Mafé\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Western African dish based on sweet potatoes. Ingredients for 12 people! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Yof ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 bunch of parsley" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 big onion" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cloves of garlic" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cubes dehydrated vegetable broth" +msgstr "" + +#. type: Bullet: '* ' +msgid "2 teaspoons of chili powder (or fresh)" +msgstr "" + +#. type: Bullet: '* ' +msgid "Salt" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Main ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 big onions" +msgstr "" + +#. type: Bullet: '* ' +msgid "2.5 kg sweet potatoes 🍠 (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgstr "" + +#. type: Bullet: '* ' +msgid "800 g. crushed tomatoes (canned is fine)" +msgstr "" + +#. type: Bullet: '* ' +msgid "400 g. smooth peanut butter" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." +msgstr "" + +#. type: Bullet: '* ' +msgid "4 table spoons sunflower oil" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"decoration" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [but not used during the 2017 summit]): more chili for a more " +"authentic/traditional experience! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Steps" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Prepare the yof by mixing (preferably with an electrical mixer) all " +"ingredients into a paste." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Peel and chop both onions and sweet potatoes into big pieces." +msgstr "" + +#. type: Bullet: '3. ' +msgid "" +"Heat the sunflower oil in a pot (will need a lid later!) for the main dish." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Add the yof and stir for 2 minutes on medium heat." +msgstr "" + +#. type: Bullet: '5. ' +msgid "Add onions." +msgstr "" + +#. type: Bullet: '6. ' +msgid "Stir for 4 minutes." +msgstr "" + +#. type: Bullet: '7. ' +msgid "" +"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." +msgstr "" + +#. type: Bullet: '8. ' +msgid "" +"Increase to high heat, cover the pot with a lid and let it boil until the " +"sweet potatoes are cooked. Stir regularly! This should take about 25 minutes " +"(but it depends on the size of the potato pieces)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"9. Add peanut butter and the rest of the broth, and stir it evenly in\n" +" the mixture.\n" +"10. Decrease to low heat and stir regularly for another 20 minutes.\n" +"11. Season with salt (and optionally more chili), and serve with rice!\n" +msgstr "" + +#. type: Plain text +msgid "" +"As mentioned in the main ingredients, if the result is too thick, it can be " +"made thinner by adding any extra broth." +msgstr "" diff --git a/wiki/src/news/celebrating_10_years/mafe.sr_Latn.po b/wiki/src/news/celebrating_10_years/mafe.sr_Latn.po new file mode 100644 index 0000000000000000000000000000000000000000..72443301a1452ea28ae7c1d3c2f90685826ba160 --- /dev/null +++ b/wiki/src/news/celebrating_10_years/mafe.sr_Latn.po @@ -0,0 +1,159 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: sr_Latn\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=\"Mafé\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Western African dish based on sweet potatoes. Ingredients for 12 people! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Yof ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 bunch of parsley" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 big onion" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cloves of garlic" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cubes dehydrated vegetable broth" +msgstr "" + +#. type: Bullet: '* ' +msgid "2 teaspoons of chili powder (or fresh)" +msgstr "" + +#. type: Bullet: '* ' +msgid "Salt" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Main ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 big onions" +msgstr "" + +#. type: Bullet: '* ' +msgid "2.5 kg sweet potatoes 🍠 (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgstr "" + +#. type: Bullet: '* ' +msgid "800 g. crushed tomatoes (canned is fine)" +msgstr "" + +#. type: Bullet: '* ' +msgid "400 g. smooth peanut butter" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." +msgstr "" + +#. type: Bullet: '* ' +msgid "4 table spoons sunflower oil" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"decoration" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [but not used during the 2017 summit]): more chili for a more " +"authentic/traditional experience! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Steps" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Prepare the yof by mixing (preferably with an electrical mixer) all " +"ingredients into a paste." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Peel and chop both onions and sweet potatoes into big pieces." +msgstr "" + +#. type: Bullet: '3. ' +msgid "" +"Heat the sunflower oil in a pot (will need a lid later!) for the main dish." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Add the yof and stir for 2 minutes on medium heat." +msgstr "" + +#. type: Bullet: '5. ' +msgid "Add onions." +msgstr "" + +#. type: Bullet: '6. ' +msgid "Stir for 4 minutes." +msgstr "" + +#. type: Bullet: '7. ' +msgid "" +"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." +msgstr "" + +#. type: Bullet: '8. ' +msgid "" +"Increase to high heat, cover the pot with a lid and let it boil until the " +"sweet potatoes are cooked. Stir regularly! This should take about 25 minutes " +"(but it depends on the size of the potato pieces)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"9. Add peanut butter and the rest of the broth, and stir it evenly in\n" +" the mixture.\n" +"10. Decrease to low heat and stir regularly for another 20 minutes.\n" +"11. Season with salt (and optionally more chili), and serve with rice!\n" +msgstr "" + +#. type: Plain text +msgid "" +"As mentioned in the main ingredients, if the result is too thick, it can be " +"made thinner by adding any extra broth." +msgstr "" diff --git a/wiki/src/news/celebrating_10_years/mafe.tr.po b/wiki/src/news/celebrating_10_years/mafe.tr.po new file mode 100644 index 0000000000000000000000000000000000000000..ebc3840ab886fda238034cfa276168584ec10186 --- /dev/null +++ b/wiki/src/news/celebrating_10_years/mafe.tr.po @@ -0,0 +1,159 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: tr\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=\"Mafé\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Western African dish based on sweet potatoes. Ingredients for 12 people! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Yof ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 bunch of parsley" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 big onion" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cloves of garlic" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cubes dehydrated vegetable broth" +msgstr "" + +#. type: Bullet: '* ' +msgid "2 teaspoons of chili powder (or fresh)" +msgstr "" + +#. type: Bullet: '* ' +msgid "Salt" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Main ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 big onions" +msgstr "" + +#. type: Bullet: '* ' +msgid "2.5 kg sweet potatoes 🍠 (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgstr "" + +#. type: Bullet: '* ' +msgid "800 g. crushed tomatoes (canned is fine)" +msgstr "" + +#. type: Bullet: '* ' +msgid "400 g. smooth peanut butter" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." +msgstr "" + +#. type: Bullet: '* ' +msgid "4 table spoons sunflower oil" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"decoration" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [but not used during the 2017 summit]): more chili for a more " +"authentic/traditional experience! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Steps" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Prepare the yof by mixing (preferably with an electrical mixer) all " +"ingredients into a paste." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Peel and chop both onions and sweet potatoes into big pieces." +msgstr "" + +#. type: Bullet: '3. ' +msgid "" +"Heat the sunflower oil in a pot (will need a lid later!) for the main dish." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Add the yof and stir for 2 minutes on medium heat." +msgstr "" + +#. type: Bullet: '5. ' +msgid "Add onions." +msgstr "" + +#. type: Bullet: '6. ' +msgid "Stir for 4 minutes." +msgstr "" + +#. type: Bullet: '7. ' +msgid "" +"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." +msgstr "" + +#. type: Bullet: '8. ' +msgid "" +"Increase to high heat, cover the pot with a lid and let it boil until the " +"sweet potatoes are cooked. Stir regularly! This should take about 25 minutes " +"(but it depends on the size of the potato pieces)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"9. Add peanut butter and the rest of the broth, and stir it evenly in\n" +" the mixture.\n" +"10. Decrease to low heat and stir regularly for another 20 minutes.\n" +"11. Season with salt (and optionally more chili), and serve with rice!\n" +msgstr "" + +#. type: Plain text +msgid "" +"As mentioned in the main ingredients, if the result is too thick, it can be " +"made thinner by adding any extra broth." +msgstr "" diff --git a/wiki/src/news/celebrating_10_years/mafe.zh.po b/wiki/src/news/celebrating_10_years/mafe.zh.po new file mode 100644 index 0000000000000000000000000000000000000000..32365e6aaa7125cc0da4ca6a761b26e328554b9d --- /dev/null +++ b/wiki/src/news/celebrating_10_years/mafe.zh.po @@ -0,0 +1,159 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: zh\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=\"Mafé\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Western African dish based on sweet potatoes. Ingredients for 12 people! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Yof ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 bunch of parsley" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 big onion" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cloves of garlic" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cubes dehydrated vegetable broth" +msgstr "" + +#. type: Bullet: '* ' +msgid "2 teaspoons of chili powder (or fresh)" +msgstr "" + +#. type: Bullet: '* ' +msgid "Salt" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Main ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 big onions" +msgstr "" + +#. type: Bullet: '* ' +msgid "2.5 kg sweet potatoes 🍠 (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgstr "" + +#. type: Bullet: '* ' +msgid "800 g. crushed tomatoes (canned is fine)" +msgstr "" + +#. type: Bullet: '* ' +msgid "400 g. smooth peanut butter" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." +msgstr "" + +#. type: Bullet: '* ' +msgid "4 table spoons sunflower oil" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"decoration" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [but not used during the 2017 summit]): more chili for a more " +"authentic/traditional experience! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Steps" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Prepare the yof by mixing (preferably with an electrical mixer) all " +"ingredients into a paste." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Peel and chop both onions and sweet potatoes into big pieces." +msgstr "" + +#. type: Bullet: '3. ' +msgid "" +"Heat the sunflower oil in a pot (will need a lid later!) for the main dish." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Add the yof and stir for 2 minutes on medium heat." +msgstr "" + +#. type: Bullet: '5. ' +msgid "Add onions." +msgstr "" + +#. type: Bullet: '6. ' +msgid "Stir for 4 minutes." +msgstr "" + +#. type: Bullet: '7. ' +msgid "" +"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." +msgstr "" + +#. type: Bullet: '8. ' +msgid "" +"Increase to high heat, cover the pot with a lid and let it boil until the " +"sweet potatoes are cooked. Stir regularly! This should take about 25 minutes " +"(but it depends on the size of the potato pieces)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"9. Add peanut butter and the rest of the broth, and stir it evenly in\n" +" the mixture.\n" +"10. Decrease to low heat and stir regularly for another 20 minutes.\n" +"11. Season with salt (and optionally more chili), and serve with rice!\n" +msgstr "" + +#. type: Plain text +msgid "" +"As mentioned in the main ingredients, if the result is too thick, it can be " +"made thinner by adding any extra broth." +msgstr "" diff --git a/wiki/src/news/celebrating_10_years/mafe.zh_TW.po b/wiki/src/news/celebrating_10_years/mafe.zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..db0f4f4e6485b6412e6a61865043d240fa928a2e --- /dev/null +++ b/wiki/src/news/celebrating_10_years/mafe.zh_TW.po @@ -0,0 +1,159 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: zh_TW\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=\"Mafé\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"Western African dish based on sweet potatoes. Ingredients for 12 people! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Yof ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 bunch of parsley" +msgstr "" + +#. type: Bullet: '* ' +msgid "1 big onion" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cloves of garlic" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 cubes dehydrated vegetable broth" +msgstr "" + +#. type: Bullet: '* ' +msgid "2 teaspoons of chili powder (or fresh)" +msgstr "" + +#. type: Bullet: '* ' +msgid "Salt" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Main ingredients" +msgstr "" + +#. type: Bullet: '* ' +msgid "3 big onions" +msgstr "" + +#. type: Bullet: '* ' +msgid "2.5 kg sweet potatoes 🍠 (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgstr "" + +#. type: Bullet: '* ' +msgid "800 g. crushed tomatoes (canned is fine)" +msgstr "" + +#. type: Bullet: '* ' +msgid "400 g. smooth peanut butter" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." +msgstr "" + +#. type: Bullet: '* ' +msgid "4 table spoons sunflower oil" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"decoration" +msgstr "" + +#. type: Bullet: '* ' +msgid "" +"(Optional [but not used during the 2017 summit]): more chili for a more " +"authentic/traditional experience! :)" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Steps" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Prepare the yof by mixing (preferably with an electrical mixer) all " +"ingredients into a paste." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Peel and chop both onions and sweet potatoes into big pieces." +msgstr "" + +#. type: Bullet: '3. ' +msgid "" +"Heat the sunflower oil in a pot (will need a lid later!) for the main dish." +msgstr "" + +#. type: Bullet: '4. ' +msgid "Add the yof and stir for 2 minutes on medium heat." +msgstr "" + +#. type: Bullet: '5. ' +msgid "Add onions." +msgstr "" + +#. type: Bullet: '6. ' +msgid "Stir for 4 minutes." +msgstr "" + +#. type: Bullet: '7. ' +msgid "" +"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." +msgstr "" + +#. type: Bullet: '8. ' +msgid "" +"Increase to high heat, cover the pot with a lid and let it boil until the " +"sweet potatoes are cooked. Stir regularly! This should take about 25 minutes " +"(but it depends on the size of the potato pieces)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"9. Add peanut butter and the rest of the broth, and stir it evenly in\n" +" the mixture.\n" +"10. Decrease to low heat and stir regularly for another 20 minutes.\n" +"11. Season with salt (and optionally more chili), and serve with rice!\n" +msgstr "" + +#. type: Plain text +msgid "" +"As mentioned in the main ingredients, if the result is too thick, it can be " +"made thinner by adding any extra broth." +msgstr "" diff --git a/wiki/src/news/celebrating_10_years/nsa.png b/wiki/src/news/celebrating_10_years/nsa.png new file mode 100644 index 0000000000000000000000000000000000000000..ecf57fb9af74b91d30db8b9558110c79163b7261 Binary files /dev/null and b/wiki/src/news/celebrating_10_years/nsa.png differ diff --git a/wiki/src/news/celebrating_10_years/snowden-1.jpg b/wiki/src/news/celebrating_10_years/snowden-1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..722167057d1f0cadfa88252086525d7829ab0a64 Binary files /dev/null and b/wiki/src/news/celebrating_10_years/snowden-1.jpg differ diff --git a/wiki/src/news/celebrating_10_years/snowden-2.jpg b/wiki/src/news/celebrating_10_years/snowden-2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80245d5e885ad369c07162b7f7625848eb2bc22b Binary files /dev/null and b/wiki/src/news/celebrating_10_years/snowden-2.jpg differ diff --git a/wiki/src/news/celebrating_10_years/tails-1.0.png b/wiki/src/news/celebrating_10_years/tails-1.0.png new file mode 100644 index 0000000000000000000000000000000000000000..0a29ed5a16808d129ac0c1692e9365d2196a5412 Binary files /dev/null and b/wiki/src/news/celebrating_10_years/tails-1.0.png differ diff --git a/wiki/src/news/celebrating_10_years/users-budget.svg b/wiki/src/news/celebrating_10_years/users-budget.svg new file mode 100644 index 0000000000000000000000000000000000000000..284a94e1f8f110665b29559fe537be15d41ca6e6 --- /dev/null +++ b/wiki/src/news/celebrating_10_years/users-budget.svg @@ -0,0 +1,729 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + viewBox="0 0 899.99999 284.73763" + height="284.73761" + width="900" + xml:space="preserve" + id="svg8302" + version="1.1"><metadata + id="metadata8308"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs8306"><clipPath + id="clipPath8318" + clipPathUnits="userSpaceOnUse"><path + style="clip-rule:evenodd" + id="path8316" + d="M 0,0.028 H 1190.522 V 841.889 H 0 Z" /></clipPath><clipPath + id="clipPath8326" + clipPathUnits="userSpaceOnUse"><path + style="clip-rule:evenodd" + id="path8324" + d="m 56.7,771.089 h 1077.099 v 14.099 H 56.7 Z" /></clipPath><clipPath + id="clipPath8344" + clipPathUnits="userSpaceOnUse"><path + style="clip-rule:evenodd" + id="path8342" + d="M 56.7,56.789 H 1133.799 V 70.888 H 56.7 Z" /></clipPath><clipPath + id="clipPath8816" + clipPathUnits="userSpaceOnUse"><path + style="clip-rule:evenodd" + id="path8814" + d="M 56.692,354.387 H 1080.679 V 763.964 H 56.692 Z" /></clipPath></defs><g + transform="matrix(1.3333333,0,0,-1.3333333,-121.66266,751.23759)" + id="g8310"><g + transform="matrix(0.71956252,0,0,0.71956252,25.589078,102.32463)" + id="g8328" /><g + transform="matrix(0.71956252,0,0,0.71956252,25.589078,102.32463)" + id="g8336" /><g + transform="matrix(0.71956252,0,0,0.71956252,25.589078,102.32463)" + id="g8346" /><g + transform="matrix(0.71956252,0,0,0.71956252,25.589078,102.32463)" + id="g8360" /><g + transform="matrix(0.71956252,0,0,0.71956252,25.589078,102.32463)" + id="g9032" /><g + transform="matrix(0.71956252,0,0,0.71956252,25.589078,102.32463)" + id="g10991"><path + d="M 802.573,364.875 H 575.802 v 255.09 h 453.515 v -255.09 z" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path8818" /><g + id="g8820"><path + d="M 821.849,388.317 H 633.997 v 189.865 h 375.704 V 388.317 Z" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8822" /></g><g + id="g8824"><path + d="M 1009.701,388.346 H 633.997" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8826" /></g><g + id="g8828"><path + d="M 1009.701,420.009 H 633.997" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8830" /></g><g + id="g8832"><path + d="M 1009.701,451.643 H 633.997" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8834" /></g><g + id="g8836"><path + d="M 1009.701,483.306 H 633.997" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8838" /></g><g + id="g8840"><path + d="M 1009.701,514.941 H 633.997" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8842" /></g><g + id="g8844"><path + d="M 1009.701,546.576 H 633.997" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8846" /></g><g + id="g8848"><path + d="M 1009.701,578.239 H 633.997" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8850" /></g><g + id="g8852"><path + d="m 633.997,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8854" /></g><g + id="g8856"><path + d="m 633.997,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8858" /></g><g + id="g8860"><path + d="m 687.657,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8862" /></g><g + id="g8864"><path + d="m 687.657,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8866" /></g><g + id="g8868"><path + d="m 741.345,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8870" /></g><g + id="g8872"><path + d="m 741.345,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8874" /></g><g + id="g8876"><path + d="m 795.005,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8878" /></g><g + id="g8880"><path + d="m 795.005,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8882" /></g><g + id="g8884"><path + d="m 848.665,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8886" /></g><g + id="g8888"><path + d="m 848.665,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8890" /></g><g + id="g8892"><path + d="m 902.324,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8894" /></g><g + id="g8896"><path + d="m 902.324,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8898" /></g><g + id="g8900"><path + d="m 956.013,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8902" /></g><g + id="g8904"><path + d="m 956.013,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8906" /></g><g + id="g8908"><path + d="m 1009.701,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8910" /></g><g + id="g8912"><path + d="m 1009.701,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8914" /></g><g + id="g8916"><path + d="m 633.997,388.346 h 375.704" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8918" /></g><g + id="g8920"><path + d="m 629.745,388.346 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8922" /></g><g + id="g8924"><path + d="m 629.745,388.346 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8926" /></g><g + id="g8928"><path + d="m 629.745,420.009 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8930" /></g><g + id="g8932"><path + d="m 629.745,420.009 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8934" /></g><g + id="g8936"><path + d="m 629.745,451.643 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8938" /></g><g + id="g8940"><path + d="m 629.745,451.643 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8942" /></g><g + id="g8944"><path + d="m 629.745,483.306 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8946" /></g><g + id="g8948"><path + d="m 629.745,483.306 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8950" /></g><g + id="g8952"><path + d="m 629.745,514.913 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8954" /></g><g + id="g8956"><path + d="m 629.745,514.913 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8958" /></g><g + id="g8960"><path + d="m 629.745,546.576 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8962" /></g><g + id="g8964"><path + d="m 629.745,546.576 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8966" /></g><g + id="g8968"><path + d="m 629.745,578.239 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8970" /></g><g + id="g8972"><path + d="m 629.745,578.239 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8974" /></g><g + id="g8976"><path + d="M 633.997,388.346 V 578.239" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8978" /></g><g + id="g8980"><path + d="m 633.997,393.221 53.66,21.544 53.688,34.299 53.66,54.794 53.66,18.651 53.659,-21.344 53.689,6.604 53.688,27.553" + style="fill:none;stroke:#004586;stroke-width:2.26752996;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path8982" /></g><g + id="g8984"><text + transform="matrix(1,0,0,-1,623.509,372.302)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text8988"><tspan + x="0 5.2031202 10.5063 15.70942" + y="0" + id="tspan8986">2012</tspan></text> +</g><g + id="g8990"><text + transform="matrix(1,0,0,-1,677.112,372.302)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text8994"><tspan + x="0 5.3031802 10.5063 15.80948" + y="0" + id="tspan8992">2013</tspan></text> +</g><g + id="g8996"><text + transform="matrix(1,0,0,-1,730.8,372.302)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9000"><tspan + x="0 5.3031802 10.5063 15.80948" + y="0" + id="tspan8998">2014</tspan></text> +</g><g + id="g9002"><text + transform="matrix(1,0,0,-1,784.488,372.302)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9006"><tspan + x="0 5.2031202 10.5063 15.80948" + y="0" + id="tspan9004">2015</tspan></text> +</g><g + id="g9008"><text + transform="matrix(1,0,0,-1,838.205,372.302)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9012"><tspan + x="0 5.2031202 10.5063 15.70942" + y="0" + id="tspan9010">2016</tspan></text> +</g><g + id="g9014"><text + transform="matrix(1,0,0,-1,891.808,372.302)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9018"><tspan + x="0 5.3031802 10.5063 15.80948" + y="0" + id="tspan9016">2017</tspan></text> +</g><g + id="g9020"><text + transform="matrix(1,0,0,-1,945.496,372.302)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9024"><tspan + x="0 5.3031802 10.5063 15.80948" + y="0" + id="tspan9022">2018</tspan></text> +</g><g + id="g9026"><text + transform="matrix(1,0,0,-1,999.213,372.302)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9030"><tspan + x="0 5.3031802 10.5063 15.80948" + y="0" + id="tspan9028">2019</tspan></text> +</g><g + id="g9034"><text + transform="matrix(1,0,0,-1,613.389,384.887)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9038"><tspan + x="0 5.3031802 8.2949743" + y="0" + id="tspan9036">0 €</tspan></text> +</g><g + id="g9040"><text + transform="matrix(1,0,0,-1,590.202,416.579)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9044"><tspan + x="0 5.2031202" + y="0" + id="tspan9042">50</tspan></text> +<text + transform="matrix(1,0,0,-1,602.901,416.579)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9048"><tspan + x="0 5.3031802 10.5063 15.80948 18.801273" + y="0" + id="tspan9046">000 €</tspan></text> +</g><g + id="g9050"><text + transform="matrix(1,0,0,-1,584.901,448.185)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9054"><tspan + x="0 5.3031802 10.5063" + y="0" + id="tspan9052">100</tspan></text> +<text + transform="matrix(1,0,0,-1,602.901,448.185)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9058"><tspan + x="0 5.3031802 10.5063 15.80948 18.701214" + y="0" + id="tspan9056">000 €</tspan></text> +</g><g + id="g9060"><text + transform="matrix(1,0,0,-1,584.901,479.876)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9064"><tspan + x="0 5.3031802 10.5063" + y="0" + id="tspan9062">150</tspan></text> +<text + transform="matrix(1,0,0,-1,602.901,479.876)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9068"><tspan + x="0 5.3031802 10.5063 15.80948 18.701214" + y="0" + id="tspan9066">000 €</tspan></text> +</g><g + id="g9070"><text + transform="matrix(1,0,0,-1,584.901,511.483)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9074"><tspan + x="0 5.3031802 10.5063" + y="0" + id="tspan9072">200</tspan></text> +<text + transform="matrix(1,0,0,-1,602.901,511.483)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9078"><tspan + x="0 5.3031802 10.5063 15.80948 18.701214" + y="0" + id="tspan9076">000 €</tspan></text> +</g><g + id="g9080"><text + transform="matrix(1,0,0,-1,584.901,543.202)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9084"><tspan + x="0 5.3031802 10.5063" + y="0" + id="tspan9082">250</tspan></text> +<text + transform="matrix(1,0,0,-1,602.901,543.202)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9088"><tspan + x="0 5.3031802 10.5063 15.80948 18.701214" + y="0" + id="tspan9086">000 €</tspan></text> +</g><g + id="g9090"><text + transform="matrix(1,0,0,-1,584.901,574.78)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9094"><tspan + x="0 5.3031802 10.5063" + y="0" + id="tspan9092">300</tspan></text> +<text + transform="matrix(1,0,0,-1,602.901,574.78)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9098"><tspan + x="0 5.3031802 10.5063 15.80948 18.701214" + y="0" + id="tspan9096">000 €</tspan></text> +</g><g + id="g9100"><text + transform="matrix(1,0,0,-1,763.909,595.898)" + style="font-variant:normal;font-weight:normal;font-size:13.01099968px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9104"><tspan + x="0 8.3010178 15.001683 21.806437 26.295231 29.287762 35.975414 39.761616 46.46228 53.267033 60.071789 66.772453 73.473114" + y="0" + id="tspan9102">Yearly budget</tspan></text> +</g></g><g + transform="matrix(0.71956252,0,0,0.71956252,25.589078,102.32463)" + id="g9320" /><g + transform="matrix(0.71956252,0,0,0.71956252,25.589078,102.32463)" + id="g10846"><path + d="M 318.019,364.875 H 91.247 v 255.09 h 453.515 v -255.09 z" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path9106" /><g + id="g9108"><path + d="M 330.52,388.317 H 135.921 V 578.182 H 525.146 V 388.317 Z" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9110" /></g><g + id="g9112"><path + d="M 525.146,388.346 H 135.921" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9114" /></g><g + id="g9116"><path + d="M 525.146,420.009 H 135.921" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9118" /></g><g + id="g9120"><path + d="M 525.146,451.643 H 135.921" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9122" /></g><g + id="g9124"><path + d="M 525.146,483.306 H 135.921" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9126" /></g><g + id="g9128"><path + d="M 525.146,514.913 H 135.921" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9130" /></g><g + id="g9132"><path + d="M 525.146,546.576 H 135.921" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9134" /></g><g + id="g9136"><path + d="M 525.146,578.21 H 135.921" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9138" /></g><g + id="g9140"><path + d="m 135.921,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9142" /></g><g + id="g9144"><path + d="m 135.921,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9146" /></g><g + id="g9148"><path + d="m 191.509,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9150" /></g><g + id="g9152"><path + d="m 191.509,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9154" /></g><g + id="g9156"><path + d="m 247.124,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9158" /></g><g + id="g9160"><path + d="m 247.124,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9162" /></g><g + id="g9164"><path + d="m 302.74,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9166" /></g><g + id="g9168"><path + d="m 302.74,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9170" /></g><g + id="g9172"><path + d="m 358.299,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9174" /></g><g + id="g9176"><path + d="m 358.299,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9178" /></g><g + id="g9180"><path + d="m 413.915,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9182" /></g><g + id="g9184"><path + d="m 413.915,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9186" /></g><g + id="g9188"><path + d="m 469.531,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9190" /></g><g + id="g9192"><path + d="m 469.531,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9194" /></g><g + id="g9196"><path + d="m 525.146,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9198" /></g><g + id="g9200"><path + d="m 525.146,384.094 v 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9202" /></g><g + id="g9204"><path + d="M 135.921,388.346 H 525.146" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9206" /></g><g + id="g9208"><path + d="m 131.669,388.346 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9210" /></g><g + id="g9212"><path + d="m 131.669,388.346 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9214" /></g><g + id="g9216"><path + d="m 131.669,420.009 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9218" /></g><g + id="g9220"><path + d="m 131.669,420.009 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9222" /></g><g + id="g9224"><path + d="m 131.669,451.643 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9226" /></g><g + id="g9228"><path + d="m 131.669,451.643 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9230" /></g><g + id="g9232"><path + d="m 131.669,483.306 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9234" /></g><g + id="g9236"><path + d="m 131.669,483.306 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9238" /></g><g + id="g9240"><path + d="m 131.669,514.941 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9242" /></g><g + id="g9244"><path + d="m 131.669,514.941 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9246" /></g><g + id="g9248"><path + d="m 131.669,546.576 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9250" /></g><g + id="g9252"><path + d="m 131.669,546.576 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9254" /></g><g + id="g9256"><path + d="m 131.669,578.21 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9258" /></g><g + id="g9260"><path + d="m 131.669,578.21 h 4.252" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9262" /></g><g + id="g9264"><path + d="M 135.921,388.346 V 578.21" + style="fill:none;stroke:#b3b3b3;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9266" /></g><g + id="g9268"><path + d="m 135.921,403.88 55.588,16.327 55.615,32.797 55.616,26.957 55.559,27.128 55.616,20.211 55.616,2.268 55.615,17.064" + style="fill:none;stroke:#ff420e;stroke-width:2.26752996;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + id="path9270" /></g><g + id="g9272"><text + transform="matrix(1,0,0,-1,125.405,372.302)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9276"><tspan + x="0 5.3031802 10.5063 15.80948" + y="0" + id="tspan9274">2012</tspan></text> +</g><g + id="g9278"><text + transform="matrix(1,0,0,-1,180.992,372.302)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9282"><tspan + x="0 5.2031202 10.5063 15.80948" + y="0" + id="tspan9280">2013</tspan></text> +</g><g + id="g9284"><text + transform="matrix(1,0,0,-1,236.608,372.302)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9288"><tspan + x="0 5.3031802 10.5063 15.80948" + y="0" + id="tspan9286">2014</tspan></text> +</g><g + id="g9290"><text + transform="matrix(1,0,0,-1,292.195,372.302)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9294"><tspan + x="0 5.3031802 10.5063 15.80948" + y="0" + id="tspan9292">2015</tspan></text> +</g><g + id="g9296"><text + transform="matrix(1,0,0,-1,347.811,372.302)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9300"><tspan + x="0 5.3031802 10.5063 15.80948" + y="0" + id="tspan9298">2016</tspan></text> +</g><g + id="g9302"><text + transform="matrix(1,0,0,-1,403.398,372.302)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9306"><tspan + x="0 5.3031802 10.5063 15.80948" + y="0" + id="tspan9304">2017</tspan></text> +</g><g + id="g9308"><text + transform="matrix(1,0,0,-1,459.014,372.302)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9312"><tspan + x="0 5.3031802 10.5063 15.80948" + y="0" + id="tspan9310">2018</tspan></text> +</g><g + id="g9314"><text + transform="matrix(1,0,0,-1,514.687,372.302)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9318"><tspan + x="0 5.2031202 10.5063 15.70942" + y="0" + id="tspan9316">2019</tspan></text> +</g><g + id="g9322"><text + transform="matrix(1,0,0,-1,123.591,384.887)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9326"><tspan + x="0" + y="0" + id="tspan9324">0</tspan></text> +</g><g + id="g9328"><text + transform="matrix(1,0,0,-1,105.591,416.579)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9332"><tspan + x="0" + y="0" + id="tspan9330">5</tspan></text> +<text + transform="matrix(1,0,0,-1,113.102,416.579)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9336"><tspan + x="0 5.3031802 10.5063" + y="0" + id="tspan9334">000</tspan></text> +</g><g + id="g9338"><text + transform="matrix(1,0,0,-1,100.29,448.185)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9342"><tspan + x="0 5.2031202" + y="0" + id="tspan9340">10</tspan></text> +<text + transform="matrix(1,0,0,-1,112.989,448.185)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9346"><tspan + x="0 5.3031802 10.5063" + y="0" + id="tspan9344">000</tspan></text> +</g><g + id="g9348"><text + transform="matrix(1,0,0,-1,100.29,479.876)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9352"><tspan + x="0 5.2031202" + y="0" + id="tspan9350">15</tspan></text> +<text + transform="matrix(1,0,0,-1,112.989,479.876)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9356"><tspan + x="0 5.3031802 10.5063" + y="0" + id="tspan9354">000</tspan></text> +</g><g + id="g9358"><text + transform="matrix(1,0,0,-1,100.29,511.596)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9362"><tspan + x="0 5.2031202" + y="0" + id="tspan9360">20</tspan></text> +<text + transform="matrix(1,0,0,-1,112.989,511.596)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9366"><tspan + x="0 5.3031802 10.5063" + y="0" + id="tspan9364">000</tspan></text> +</g><g + id="g9368"><text + transform="matrix(1,0,0,-1,100.29,543.202)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9372"><tspan + x="0 5.2031202" + y="0" + id="tspan9370">25</tspan></text> +<text + transform="matrix(1,0,0,-1,112.989,543.202)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9376"><tspan + x="0 5.3031802 10.5063" + y="0" + id="tspan9374">000</tspan></text> +</g><g + id="g9378"><text + transform="matrix(1,0,0,-1,100.29,574.78)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9382"><tspan + x="0 5.2031202" + y="0" + id="tspan9380">30</tspan></text> +<text + transform="matrix(1,0,0,-1,112.989,574.78)" + style="font-variant:normal;font-weight:normal;font-size:10.00599957px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9386"><tspan + x="0 5.3031802 10.5063" + y="0" + id="tspan9384">000</tspan></text> +</g><g + id="g9388"><text + transform="matrix(1,0,0,-1,286.101,595.898)" + style="font-variant:normal;font-weight:normal;font-size:13.01099968px;font-family:'Liberation Sans';-inkscape-font-specification:LiberationSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="text9392"><tspan + x="0 9.1077003 15.808365 18.800896 21.793425 28.481079 32.267281 38.967945 45.759686 52.460354 56.949146" + y="0" + id="tspan9390">Daily users</tspan></text> +</g></g></g></svg> \ No newline at end of file diff --git a/wiki/src/news/closing_tails-support.id.po b/wiki/src/news/closing_tails-support.id.po index 18baba87206bfedde4c558019cdc05dc365d849f..a21c894939cd74d1622c662d9dedfae91fefa85b 100644 --- a/wiki/src/news/closing_tails-support.id.po +++ b/wiki/src/news/closing_tails-support.id.po @@ -6,14 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -28,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text msgid "" diff --git a/wiki/src/news/duckduckgo_challenge.id.po b/wiki/src/news/duckduckgo_challenge.id.po index b3f9eaa5770e919ed5c4b934b02f9d74ca73f2fc..b99df3baa69dc6ef9bfc0730fa1f87c477046d25 100644 --- a/wiki/src/news/duckduckgo_challenge.id.po +++ b/wiki/src/news/duckduckgo_challenge.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-09-29 19:58+0000\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/fpf_campaign.id.po b/wiki/src/news/fpf_campaign.id.po index fbf542e26d3a2fafdfe7f12d7d45005e040d04c0..366a79c393764b61781b449bf670d4c01762a0ff 100644 --- a/wiki/src/news/fpf_campaign.id.po +++ b/wiki/src/news/fpf_campaign.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:45+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/improve_the_infrastructure_behind_Tails.id.po b/wiki/src/news/improve_the_infrastructure_behind_Tails.id.po index 5e93430d9bf466d801ed9cce4c73f1b7ff1d9fcd..ccd46e294e9982d37edaa6b393b90a8126bc224c 100644 --- a/wiki/src/news/improve_the_infrastructure_behind_Tails.id.po +++ b/wiki/src/news/improve_the_infrastructure_behind_Tails.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-10-24 10:32+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text msgid "" @@ -121,7 +121,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text msgid "" diff --git a/wiki/src/news/job_illustrations_how_tails_work.id.po b/wiki/src/news/job_illustrations_how_tails_work.id.po index 5b4d88525e58bb0f2428bb70cd507dab80ed4e05..a3cb8f84225f12d5d07a836f7c7036303d1a36db 100644 --- a/wiki/src/news/job_illustrations_how_tails_work.id.po +++ b/wiki/src/news/job_illustrations_how_tails_work.id.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-09-29 06:52+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -29,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/logo_contest.id.po b/wiki/src/news/logo_contest.id.po index 03e2ff3fef77120b1217fdb629a1c3b8b15773a9..ce0c0bbca1aeeaf9a26a8e06e59724eb4066ebfc 100644 --- a/wiki/src/news/logo_contest.id.po +++ b/wiki/src/news/logo_contest.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:45+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -64,7 +64,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/news/many_hands_make_tails.id.po b/wiki/src/news/many_hands_make_tails.id.po index b66910599a8351b76845c416219335bac8ecb9c2..672085efdd1473ce91806338abf4bafbe301de97 100644 --- a/wiki/src/news/many_hands_make_tails.id.po +++ b/wiki/src/news/many_hands_make_tails.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/mediapart.id.po b/wiki/src/news/mediapart.id.po index af29aa28141727ba7132cea9b635128bdb8e8c3a..7319c1e60e0bc7873197aacbbe4cd0fa1fb5cdc3 100644 --- a/wiki/src/news/mediapart.id.po +++ b/wiki/src/news/mediapart.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:45+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/new_SSL_certificate.de.po b/wiki/src/news/new_SSL_certificate.de.po index 9487eb0dd7e0ec9918a83b051df4ea878731b8d0..117a99661babbbc15b850e63685507d88e6c7c67 100644 --- a/wiki/src/news/new_SSL_certificate.de.po +++ b/wiki/src/news/new_SSL_certificate.de.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-07-16 07:50+0000\n" +"PO-Revision-Date: 2020-01-15 21:29+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: de\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -41,7 +41,7 @@ msgstr "[[!tag announce]]\n" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Plain text msgid "" diff --git a/wiki/src/news/new_SSL_certificate.id.po b/wiki/src/news/new_SSL_certificate.id.po index 667a7ad1ab92a92c16f952c60d4db510078bfee8..fa8537b7ba1abfa56818ba6e7b1ef71a4b2d2aae 100644 --- a/wiki/src/news/new_SSL_certificate.id.po +++ b/wiki/src/news/new_SSL_certificate.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:45+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -41,7 +41,7 @@ msgstr "[[!tag announce]]\n" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Plain text msgid "" diff --git a/wiki/src/news/new_SSL_certificate.pt.po b/wiki/src/news/new_SSL_certificate.pt.po index 750c778ccaba0cbd8f5a831049cc6729d520c0bb..9fb613ebeafee4e1cc2aee3cd95ea382af84851b 100644 --- a/wiki/src/news/new_SSL_certificate.pt.po +++ b/wiki/src/news/new_SSL_certificate.pt.po @@ -6,9 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2018-02-08 19:46+0000\n" -"Last-Translator: Tails translators <amnesia@boum.org\n" +"PO-Revision-Date: 2019-12-22 21:04+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" "new_ssl_certificate/pt/>\n" "Language: pt\n" @@ -16,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/new_cryptocurrencies.de.po b/wiki/src/news/new_cryptocurrencies.de.po index 297fe904927ea219e33b1a40a625ef8aaab2b6a4..e5017ab876e13a5cb7224ba9944d4bf68e028595 100644 --- a/wiki/src/news/new_cryptocurrencies.de.po +++ b/wiki/src/news/new_cryptocurrencies.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-12-18 09:52+0000\n" -"PO-Revision-Date: 2019-08-18 08:46+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" "Language: de\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -101,7 +101,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "**MJ1fqVucBt8YpfPiQTuwBtmLJtzhizx6pz**\n" -msgstr "" +msgstr "**MJ1fqVucBt8YpfPiQTuwBtmLJtzhizx6pz**\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/new_cryptocurrencies.es.po b/wiki/src/news/new_cryptocurrencies.es.po index a3491a9d0da9641f8ce3f3893677531471f6bb3f..c3a6d09641970f2b9907c3ab4908e28696d5aff4 100644 --- a/wiki/src/news/new_cryptocurrencies.es.po +++ b/wiki/src/news/new_cryptocurrencies.es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-12-18 09:52+0000\n" -"PO-Revision-Date: 2019-07-13 12:58+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" "Language: es\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -101,7 +101,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "**MJ1fqVucBt8YpfPiQTuwBtmLJtzhizx6pz**\n" -msgstr "" +msgstr "**MJ1fqVucBt8YpfPiQTuwBtmLJtzhizx6pz**\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/new_cryptocurrencies.fa.po b/wiki/src/news/new_cryptocurrencies.fa.po index ccf4f6acd436197456d61d2c633025aa957f8291..484e5ab1e62f4b3392f0237f93a1b3d5c4e0781c 100644 --- a/wiki/src/news/new_cryptocurrencies.fa.po +++ b/wiki/src/news/new_cryptocurrencies.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-12-18 09:52+0000\n" -"PO-Revision-Date: 2019-10-22 08:13+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" "Language: fa\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -101,7 +101,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "**MJ1fqVucBt8YpfPiQTuwBtmLJtzhizx6pz**\n" -msgstr "" +msgstr "**MJ1fqVucBt8YpfPiQTuwBtmLJtzhizx6pz**\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/new_cryptocurrencies.id.po b/wiki/src/news/new_cryptocurrencies.id.po index ff11d38cf7836ba13901b166d84a9cc487da3c57..789ee40b67b00d68439cc8a73ccf400ecec6ec2b 100644 --- a/wiki/src/news/new_cryptocurrencies.id.po +++ b/wiki/src/news/new_cryptocurrencies.id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-12-18 09:52+0000\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -30,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/new_cryptocurrencies.it.po b/wiki/src/news/new_cryptocurrencies.it.po index 25a744a0c670f86f85841b5194b87f6d834d9450..c3852497f682bf62c9b4bf6aa8cabc3e3a24ce59 100644 --- a/wiki/src/news/new_cryptocurrencies.it.po +++ b/wiki/src/news/new_cryptocurrencies.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-12-18 09:52+0000\n" -"PO-Revision-Date: 2019-07-13 13:45+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" "Language: it\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -96,12 +96,12 @@ msgstr "" #. type: Title ### #, no-wrap msgid "Litecoin" -msgstr "" +msgstr "Litecoin" #. type: Plain text #, no-wrap msgid "**MJ1fqVucBt8YpfPiQTuwBtmLJtzhizx6pz**\n" -msgstr "" +msgstr "**MJ1fqVucBt8YpfPiQTuwBtmLJtzhizx6pz**\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/new_project_name.id.po b/wiki/src/news/new_project_name.id.po index d82632ab2d7ceea92fd1775b570c7092844b1692..628d93b88fb967eabe5ee25817ff735d08add49c 100644 --- a/wiki/src/news/new_project_name.id.po +++ b/wiki/src/news/new_project_name.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:45+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/our_plans_for_2017.id.po b/wiki/src/news/our_plans_for_2017.id.po index 8415b930a8d3fb856f56dc994b7136deda710d3e..16030a92d2069fbda061bca95740e6447fbc8b14 100644 --- a/wiki/src/news/our_plans_for_2017.id.po +++ b/wiki/src/news/our_plans_for_2017.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/our_plans_for_2018.id.po b/wiki/src/news/our_plans_for_2018.id.po index ebc8d67ce92824dcf56cef3ffe13b00fd9d88690..e44280d27a5a280ce1046efb50504a13fb0313f5 100644 --- a/wiki/src/news/our_plans_for_2018.id.po +++ b/wiki/src/news/our_plans_for_2018.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/plans_for_2019.id.po b/wiki/src/news/plans_for_2019.id.po index 44ec1d54a78e92df69c8a29eaa7fc5502b5cd245..90df856c8b53fc368b5e1f8a2e1dbbd284d15066 100644 --- a/wiki/src/news/plans_for_2019.id.po +++ b/wiki/src/news/plans_for_2019.id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-12-22 18:55+0000\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -30,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/plans_for_2020.ar.po b/wiki/src/news/plans_for_2020.ar.po index 0cb44025c6d82fc1b02e46eabe7abc839162ed00..08439e09a5b4a3b0d8d8effce0d985135f0acc01 100644 --- a/wiki/src/news/plans_for_2020.ar.po +++ b/wiki/src/news/plans_for_2020.ar.po @@ -3,22 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-02 19:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2019-12-09 07:54+0000\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Mon, 2 Dec 2019 19:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Mon, 9 Dec 2019 19:00:00 +0000\"]]\n" msgstr "" #. type: Plain text @@ -29,12 +31,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap msgid "[[!tag announce]]\n" -msgstr "" +msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" diff --git a/wiki/src/news/plans_for_2020.ca.po b/wiki/src/news/plans_for_2020.ca.po index 46146121eb6e9717d9c8336ecad5c7366b08b3ad..e727625b1f72f3d0073e2eca6b86f578f023eefa 100644 --- a/wiki/src/news/plans_for_2020.ca.po +++ b/wiki/src/news/plans_for_2020.ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-02 19:17+0000\n" +"POT-Creation-Date: 2019-12-09 07:54+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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Mon, 2 Dec 2019 19:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Mon, 9 Dec 2019 19:00:00 +0000\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/plans_for_2020.de.po b/wiki/src/news/plans_for_2020.de.po index 8244c729081f4e368dbcdb4adec58072f195be24..25cf9d827c4574fcee8c1d065ef367e762b73031 100644 --- a/wiki/src/news/plans_for_2020.de.po +++ b/wiki/src/news/plans_for_2020.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-02 19:17+0000\n" +"POT-Creation-Date: 2019-12-09 07:54+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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Mon, 2 Dec 2019 19:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Mon, 9 Dec 2019 19:00:00 +0000\"]]\n" msgstr "" #. type: Plain text @@ -48,8 +48,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"But first, we are pleased that the donation campaign has been pretty " -"successful so far. We received\n" +"But first, we are pleased that the donation campaign has been pretty successful so far. We received\n" "around 50 000 € already, which is 69% more than last year.\n" "Still, these good results are due to some large donations and\n" "fewer people have been donating so far, 16% less than in 2018.\n" @@ -126,11 +125,11 @@ msgstr "" #. type: Plain text msgid "" -"To make sure that the new explanation of Tails makes sense to less " -"tech-savvy users, we will use " -"[user-centered](https://simplysecure.org/blog/formative-testing) [design " -"techniques](https://simplysecure.org/blog/branding-tails) and work with " -"[[professional graphic designers|jobs/illustrations_how_tails_work]]." +"To make sure that the new explanation of Tails makes sense to less tech-" +"savvy users, we will use [user-centered](https://simplysecure.org/blog/" +"formative-testing) [design techniques](https://simplysecure.org/blog/" +"branding-tails) and work with [[professional graphic designers|jobs/" +"illustrations_how_tails_work]]." msgstr "" #. type: Plain text @@ -194,7 +193,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate/?r=plans2020\">Donate</a></div>\n" +msgid "<div class=\"donate-button\"><a href=\"https://tails.boum.org/donate/?r=plans2020\">Donate</a></div>\n" msgstr "" diff --git a/wiki/src/news/plans_for_2020.es.po b/wiki/src/news/plans_for_2020.es.po index 8244c729081f4e368dbcdb4adec58072f195be24..c5353e478f78f35de7a3fc05ed719953504631d8 100644 --- a/wiki/src/news/plans_for_2020.es.po +++ b/wiki/src/news/plans_for_2020.es.po @@ -3,22 +3,23 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-02 19:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2019-12-09 07:54+0000\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" -"Language: \n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Mon, 2 Dec 2019 19:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Mon, 9 Dec 2019 19:00:00 +0000\"]]\n" msgstr "" #. type: Plain text @@ -29,12 +30,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap msgid "[[!tag announce]]\n" -msgstr "" +msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" @@ -48,8 +49,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"But first, we are pleased that the donation campaign has been pretty " -"successful so far. We received\n" +"But first, we are pleased that the donation campaign has been pretty successful so far. We received\n" "around 50 000 € already, which is 69% more than last year.\n" "Still, these good results are due to some large donations and\n" "fewer people have been donating so far, 16% less than in 2018.\n" @@ -126,11 +126,11 @@ msgstr "" #. type: Plain text msgid "" -"To make sure that the new explanation of Tails makes sense to less " -"tech-savvy users, we will use " -"[user-centered](https://simplysecure.org/blog/formative-testing) [design " -"techniques](https://simplysecure.org/blog/branding-tails) and work with " -"[[professional graphic designers|jobs/illustrations_how_tails_work]]." +"To make sure that the new explanation of Tails makes sense to less tech-" +"savvy users, we will use [user-centered](https://simplysecure.org/blog/" +"formative-testing) [design techniques](https://simplysecure.org/blog/" +"branding-tails) and work with [[professional graphic designers|jobs/" +"illustrations_how_tails_work]]." msgstr "" #. type: Plain text @@ -194,7 +194,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate/?r=plans2020\">Donate</a></div>\n" +msgid "<div class=\"donate-button\"><a href=\"https://tails.boum.org/donate/?r=plans2020\">Donate</a></div>\n" msgstr "" diff --git a/wiki/src/news/plans_for_2020.fa.po b/wiki/src/news/plans_for_2020.fa.po index 8244c729081f4e368dbcdb4adec58072f195be24..802d511496c698806c0ce1ced77b4d050494daaf 100644 --- a/wiki/src/news/plans_for_2020.fa.po +++ b/wiki/src/news/plans_for_2020.fa.po @@ -3,22 +3,23 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-02 19:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2019-12-09 07:54+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" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Mon, 2 Dec 2019 19:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Mon, 9 Dec 2019 19:00:00 +0000\"]]\n" msgstr "" #. type: Plain text @@ -34,7 +35,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!tag announce]]\n" -msgstr "" +msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" @@ -48,8 +49,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"But first, we are pleased that the donation campaign has been pretty " -"successful so far. We received\n" +"But first, we are pleased that the donation campaign has been pretty successful so far. We received\n" "around 50 000 € already, which is 69% more than last year.\n" "Still, these good results are due to some large donations and\n" "fewer people have been donating so far, 16% less than in 2018.\n" @@ -60,7 +60,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc level=1]]\n" -msgstr "" +msgstr "[[!toc level=1]]\n" #. type: Title = #, no-wrap @@ -126,11 +126,11 @@ msgstr "" #. type: Plain text msgid "" -"To make sure that the new explanation of Tails makes sense to less " -"tech-savvy users, we will use " -"[user-centered](https://simplysecure.org/blog/formative-testing) [design " -"techniques](https://simplysecure.org/blog/branding-tails) and work with " -"[[professional graphic designers|jobs/illustrations_how_tails_work]]." +"To make sure that the new explanation of Tails makes sense to less tech-" +"savvy users, we will use [user-centered](https://simplysecure.org/blog/" +"formative-testing) [design techniques](https://simplysecure.org/blog/" +"branding-tails) and work with [[professional graphic designers|jobs/" +"illustrations_how_tails_work]]." msgstr "" #. type: Plain text @@ -194,7 +194,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate/?r=plans2020\">Donate</a></div>\n" +msgid "<div class=\"donate-button\"><a href=\"https://tails.boum.org/donate/?r=plans2020\">Donate</a></div>\n" msgstr "" diff --git a/wiki/src/news/plans_for_2020.fr.po b/wiki/src/news/plans_for_2020.fr.po index 8244c729081f4e368dbcdb4adec58072f195be24..0e473d531200907e4c6a912f8468f8008ddf6147 100644 --- a/wiki/src/news/plans_for_2020.fr.po +++ b/wiki/src/news/plans_for_2020.fr.po @@ -3,38 +3,39 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-02 19:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2019-12-09 07:54+0000\n" +"PO-Revision-Date: 2020-01-14 00:25+0000\n" +"Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Mon, 2 Dec 2019 19:00:00 +0000\"]]\n" -msgstr "" +msgid "[[!meta date=\"Mon, 9 Dec 2019 19:00:00 +0000\"]]\n" +msgstr "[[!meta date=\"Mon, 9 Dec 2019 19:00:00 +0000\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Our plans for 2020\"]]\n" -msgstr "" +msgstr "[[!meta title=\"Nos projets pour 2020\"]]\n" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap msgid "[[!tag announce]]\n" -msgstr "" +msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" @@ -44,28 +45,42 @@ msgid "" "adopt by new users|news/achievements_in_2019]]. Today we pass on to you our " "plans for 2020." msgstr "" +"Le 7 octobre 2019, nous avons lancé notre campagne de dons en expliquant [[" +"pourquoi soutenir Tails est plus important que jamais|news/2019-fundraiser]]" +". Le 31 octobre, nous avons récapitulé [[ce que nous avons fait en 2019 pour " +"rendre plus facile l'adoption de Tails pour les nouvelles personnes qui " +"l'utilise|news/achievements_in_2019]]. Aujourd'hui, nous vous présentons nos " +"projets pour 2020." #. type: Plain text #, no-wrap msgid "" -"But first, we are pleased that the donation campaign has been pretty " -"successful so far. We received\n" +"But first, we are pleased that the donation campaign has been pretty successful so far. We received\n" "around 50 000 € already, which is 69% more than last year.\n" "Still, these good results are due to some large donations and\n" "fewer people have been donating so far, 16% less than in 2018.\n" "We hope that after reading this post many of you will consider <a\n" "href=\"https://tails.boum.org/donate/?r=plans2020\">donating to Tails</a>.\n" msgstr "" +"Tout d'abord, nous avons la satisfaction que la campagne de dons a été " +"plutôt réussie jusqu'à présent. Nous avons déjà\n" +"reçu environ 50 1000 €, ce qui est 69% de plus que l'an passé.\n" +"Une nouvelle fois, ces résultats sont dus à quelques dons importants et\n" +"moins de personnes ont fait des dons, 16% de moins qu'en 2018.\n" +"Nous espérons qu'après avoir lu ce billet, plusieurs d'entre vous envisagent " +"de <a\n" +"href=\"https://tails.boum.org/donate/?r=plans2020\">faire un don à Tails</a>." +"\n" #. type: Plain text #, no-wrap msgid "[[!toc level=1]]\n" -msgstr "" +msgstr "[[!toc level=1]]\n" #. type: Title = #, no-wrap msgid "Less manual upgrades (January 2020)\n" -msgstr "" +msgstr "Moins de mises à jour manuelles (janvier 2020)\n" #. type: Plain text msgid "" @@ -73,6 +88,9 @@ msgid "" "only works for a limited amount of upgrades, after which a [[\"manual\" " "upgrade|doc/upgrade#manual]] is needed." msgstr "" +"Tails fournit un mécanisme de mise à jour automatique depuis 2013. Mais ce " +"mécanisme fonctionne seulement un nombre limité de fois, après quoi une [[" +"mise à jour « manuelle »|doc/upgrade#manual]] est nécessaire." #. type: Plain text msgid "" @@ -80,6 +98,9 @@ msgid "" "think their Tails is \"broken\" when automatic upgrades are not possible " "anymore." msgstr "" +"Ces mises à jour manuelles sont un point de difficulté majeur et nous savons " +"que les personnes qui utilisent Tails pensent souvent que leur Tails est « " +"cassé » lorsque les mises à jour automatiques ne sont plus possibles." #. type: Plain text msgid "" @@ -87,11 +108,15 @@ msgid "" "automatic upgrades are also often too painful we will research ways to make " "them lighter and more robust." msgstr "" +"En 2020, nous allons supprimer la nécessité de la plupart des mises à jours " +"manuelles. Et comme ces mises à jour automatiques sont aussi souvent " +"difficiles, nous allons rechercher des moyens de les faire plus légères et " +"plus fiables." #. type: Title = #, no-wrap msgid "New homepage and outreach material (April 2020)\n" -msgstr "" +msgstr "Nouvelle page d'accueil et matériel de sensibilisation (avril 2020)\n" #. type: Plain text msgid "" @@ -99,6 +124,10 @@ msgid "" "easier to install and use, in 2020, we will explain better what Tails is and " "why people should use it." msgstr "" +"En tirant parti de tout le travail que nous avons accompli au cours des " +"dernières années pour rendre Tails plus facile à installer et à utiliser, en " +"2020 nous allons mieux expliquer ce qu'est Tails et pourquoi les personnes " +"devraient l'utiliser." #. type: Plain text msgid "" @@ -108,6 +137,12 @@ msgid "" "people using Tails has been multiplied by 16. Tails is no longer an " "experimental project for privacy experts but a well-established reference." msgstr "" +"Le texte de nos pages d'accueil et à propos n'ont pas été significativement " +"modifiées depuis 2011. Elles sont trop verbeuses, trop techniques pour les " +"plupart des personnes et pas suffisamment attrayantes visuellement. Depuis, " +"Tails a parcouru beaucoup de chemin : le nombre de personnes qui l'utilise a " +"été multiplié par 16. Tails n'est plus un projet expérimental pour des " +"personnes expertes de la vie privée mais une référence bien établie." #. type: Plain text msgid "" @@ -115,23 +150,35 @@ msgid "" "object like nothing they have used before. Some of the core concepts of " "Tails are particularly innovative and hard to understand before using it:" msgstr "" +"Pour la part la moins technique de notre audience, Tails est un objet " +"technologique qui ne ressemble à rien de ce qu'elle a utilisé auparavant. La " +"plupart des concepts au cœur de Tails sont particulièrement innovants et " +"difficiles à comprendre tant qu'on ne les a pas utilisés :" #. type: Plain text msgid "- Tails is a full operating system that is started from a USB stick." msgstr "" +"- Tails est un système d'exploitation complet qui est lancé à partir d'une " +"clé USB." #. type: Plain text msgid "- Tails forgets everything by default." -msgstr "" +msgstr "- Tails oublie tout par défaut." #. type: Plain text msgid "" -"To make sure that the new explanation of Tails makes sense to less " -"tech-savvy users, we will use " -"[user-centered](https://simplysecure.org/blog/formative-testing) [design " -"techniques](https://simplysecure.org/blog/branding-tails) and work with " -"[[professional graphic designers|jobs/illustrations_how_tails_work]]." +"To make sure that the new explanation of Tails makes sense to less tech-" +"savvy users, we will use [user-centered](https://simplysecure.org/blog/" +"formative-testing) [design techniques](https://simplysecure.org/blog/" +"branding-tails) and work with [[professional graphic designers|jobs/" +"illustrations_how_tails_work]]." msgstr "" +"Pour s'assurer que les nouvelles explications de Tails soient " +"compréhensibles pour les personnes les moins techniques, nous allons " +"utiliser des [techniques de conceptions](https://simplysecure.org/blog/" +"branding-tails) [centrées sur les personnes](https://simplysecure.org/blog/" +"formative-testing) et travailler avec des [[personnes conceptrices " +"graphiques professionnelles|jobs/illustrations_how_tails_work]]." #. type: Plain text msgid "" @@ -140,6 +187,11 @@ msgid "" "explanation, make it available in 4 languages, and send it to partner " "organizations worldwide." msgstr "" +"Pour sensibiliser les communautés de personnes exposées et les personnes " +"formant à la sécurité informatique dans le monde, nous allons aussi imprimer " +"du matériel de sensibilisation basé sur ces nouvelles explications, " +"disponible dans quatre langues, et les envoyer à des organisations " +"partenaires partout dans le monde." #. type: Plain text #, no-wrap @@ -149,17 +201,26 @@ msgid "" "Tails in 2020, please <a href=\"mailto:sajolida@pimienta.org\">get in\n" "touch with us</a>.\n" msgstr "" +"Si votre organisation travaille avec des journalistes, des activistes, ou\n" +"défend les droits humains et est intéressée pour recevoir des dépliants sur\n" +"Tails en 2020, merci d'écrire à <a href=\"mailto:sajolida@pimienta.org\"> " +"pour\n" +"rester en contact avec nous</a>.\n" #. type: Title = #, no-wrap msgid "Secure Boot for better hardware support (July 2020)\n" msgstr "" +"Démarrage sécurisé (« secure boot ») pour une meilleur compatibilité " +"matérielle (juillet 2020)\n" #. type: Plain text msgid "" "In 2019, we worked on making it much easier for users to start Tails on Mac " "and as a consequence, their numbers more than doubled." msgstr "" +"En 2019, nous avons travaillé pour rendre plus facile le démarrage de Tails " +"pour les personnes utilisant un Mac et par conséquence, leur nombre a doublé." #. type: Plain text msgid "" @@ -176,12 +237,23 @@ msgid "" "Windows computers, for example [[!tails_ticket 15016#note-19\n" "desc=\"*BitLocker* asking you for a recovery key\"]].\n" msgstr "" +"Actuellement, beaucoup de personnes ont appris comment désactiver le " +"démarrage sécurisé sur leur\n" +"ordinateur. Ce processus est légèrement différent d'un ordinateur à l'autre, " +"il est très\n" +"compliqué à apprendre par soi-même et peut générer des problèmes effrayants " +"sur\n" +"les ordinateurs Windows, par exemple [[!tails_ticket 15016#note-19\n" +"desc=\"*BitLocker* vous demande une clé de récupération\"]].\n" #. type: Plain text msgid "" "Next year, we will add support for Secure Boot to Tails, making it easier to " "start on PC, for which 90% of people download Tails." msgstr "" +"L'an prochain, nous allons ajouter le support du démarrage sécurisé à Tails, " +"ce qui rendra le démarrage sur PC plus facile, ce qui représente plus de 90% " +"des personnes téléchargeant Tails." #. type: Plain text #, no-wrap @@ -191,10 +263,15 @@ msgid "" "need of digital security. If you also think that this is important,\n" "please take a moment to donate to Tails.</strong>\n" msgstr "" +"<strong>En 2020, nous allons garder le cap sur l'amélioration de " +"l'utilisabilité de Tails\n" +"et atteindre les personnes qui ont le plus\n" +"besoin de sécurité informatique. Si vous aussi pensez que c'est important,\n" +"merci de prendre un moment pour faire un don à Tails.</strong>\n" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate/?r=plans2020\">Donate</a></div>\n" +msgid "<div class=\"donate-button\"><a href=\"https://tails.boum.org/donate/?r=plans2020\">Donate</a></div>\n" msgstr "" +"<div class=\"donate-button\"><a href=\"https://tails.boum.org/donate/?r=" +"plans2020\">Faire un don</a></div>\n" diff --git a/wiki/src/news/plans_for_2020.id.po b/wiki/src/news/plans_for_2020.id.po index baebb35e86b3a56d8dfeb3d847a90ec9544844c2..03635d30647f75a222da0f89664cafe871489c35 100644 --- a/wiki/src/news/plans_for_2020.id.po +++ b/wiki/src/news/plans_for_2020.id.po @@ -3,22 +3,23 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-02 19:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2019-12-09 07:54+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Mon, 2 Dec 2019 19:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Mon, 9 Dec 2019 19:00:00 +0000\"]]\n" msgstr "" #. type: Plain text @@ -29,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/plans_for_2020.it.po b/wiki/src/news/plans_for_2020.it.po index 8244c729081f4e368dbcdb4adec58072f195be24..f9b4da464e94db3fff34dee37848f0040fec3bef 100644 --- a/wiki/src/news/plans_for_2020.it.po +++ b/wiki/src/news/plans_for_2020.it.po @@ -3,22 +3,23 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-02 19:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2019-12-09 07:54+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" -"Language: \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Mon, 2 Dec 2019 19:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Mon, 9 Dec 2019 19:00:00 +0000\"]]\n" msgstr "" #. type: Plain text @@ -29,12 +30,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap msgid "[[!tag announce]]\n" -msgstr "" +msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" @@ -48,8 +49,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"But first, we are pleased that the donation campaign has been pretty " -"successful so far. We received\n" +"But first, we are pleased that the donation campaign has been pretty successful so far. We received\n" "around 50 000 € already, which is 69% more than last year.\n" "Still, these good results are due to some large donations and\n" "fewer people have been donating so far, 16% less than in 2018.\n" @@ -126,11 +126,11 @@ msgstr "" #. type: Plain text msgid "" -"To make sure that the new explanation of Tails makes sense to less " -"tech-savvy users, we will use " -"[user-centered](https://simplysecure.org/blog/formative-testing) [design " -"techniques](https://simplysecure.org/blog/branding-tails) and work with " -"[[professional graphic designers|jobs/illustrations_how_tails_work]]." +"To make sure that the new explanation of Tails makes sense to less tech-" +"savvy users, we will use [user-centered](https://simplysecure.org/blog/" +"formative-testing) [design techniques](https://simplysecure.org/blog/" +"branding-tails) and work with [[professional graphic designers|jobs/" +"illustrations_how_tails_work]]." msgstr "" #. type: Plain text @@ -194,7 +194,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate/?r=plans2020\">Donate</a></div>\n" +msgid "<div class=\"donate-button\"><a href=\"https://tails.boum.org/donate/?r=plans2020\">Donate</a></div>\n" msgstr "" diff --git a/wiki/src/news/plans_for_2020.mdwn b/wiki/src/news/plans_for_2020.mdwn index debedd30dd90012334f6a674c05509c0942f7046..321c88435b029edb62ae4ccee160bb62a88c59ec 100644 --- a/wiki/src/news/plans_for_2020.mdwn +++ b/wiki/src/news/plans_for_2020.mdwn @@ -1,4 +1,4 @@ -[[!meta date="Mon, 2 Dec 2019 19:00:00 +0000"]] +[[!meta date="Mon, 9 Dec 2019 19:00:00 +0000"]] [[!meta title="Our plans for 2020"]] [[!pagetemplate template="news.tmpl"]] [[!tag announce]] diff --git a/wiki/src/news/plans_for_2020.pl.po b/wiki/src/news/plans_for_2020.pl.po index 59cfff3eb1b9d13b524fb27e214fdebfab15eb3d..8bf6cd1b62f1e97bcd8fffc20da2faa8a7065086 100644 --- a/wiki/src/news/plans_for_2020.pl.po +++ b/wiki/src/news/plans_for_2020.pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-02 19:17+0000\n" +"POT-Creation-Date: 2019-12-09 07:54+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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Mon, 2 Dec 2019 19:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Mon, 9 Dec 2019 19:00:00 +0000\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/plans_for_2020.pt.po b/wiki/src/news/plans_for_2020.pt.po index 8244c729081f4e368dbcdb4adec58072f195be24..cafd037c241350173210ac074da5673359ad4d20 100644 --- a/wiki/src/news/plans_for_2020.pt.po +++ b/wiki/src/news/plans_for_2020.pt.po @@ -3,22 +3,23 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-02 19:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2019-12-09 07:54+0000\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" -"Language: \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Mon, 2 Dec 2019 19:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Mon, 9 Dec 2019 19:00:00 +0000\"]]\n" msgstr "" #. type: Plain text @@ -34,7 +35,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!tag announce]]\n" -msgstr "" +msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" @@ -48,8 +49,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"But first, we are pleased that the donation campaign has been pretty " -"successful so far. We received\n" +"But first, we are pleased that the donation campaign has been pretty successful so far. We received\n" "around 50 000 € already, which is 69% more than last year.\n" "Still, these good results are due to some large donations and\n" "fewer people have been donating so far, 16% less than in 2018.\n" @@ -126,11 +126,11 @@ msgstr "" #. type: Plain text msgid "" -"To make sure that the new explanation of Tails makes sense to less " -"tech-savvy users, we will use " -"[user-centered](https://simplysecure.org/blog/formative-testing) [design " -"techniques](https://simplysecure.org/blog/branding-tails) and work with " -"[[professional graphic designers|jobs/illustrations_how_tails_work]]." +"To make sure that the new explanation of Tails makes sense to less tech-" +"savvy users, we will use [user-centered](https://simplysecure.org/blog/" +"formative-testing) [design techniques](https://simplysecure.org/blog/" +"branding-tails) and work with [[professional graphic designers|jobs/" +"illustrations_how_tails_work]]." msgstr "" #. type: Plain text @@ -194,7 +194,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate/?r=plans2020\">Donate</a></div>\n" +msgid "<div class=\"donate-button\"><a href=\"https://tails.boum.org/donate/?r=plans2020\">Donate</a></div>\n" msgstr "" diff --git a/wiki/src/news/plans_for_2020.ru.po b/wiki/src/news/plans_for_2020.ru.po index 423b3586c04615d7abdacf11f9d20b31b4dce10e..5b39381827c589c369e336455cb2b4df9b141a04 100644 --- a/wiki/src/news/plans_for_2020.ru.po +++ b/wiki/src/news/plans_for_2020.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-02 19:17+0000\n" +"POT-Creation-Date: 2019-12-09 07:54+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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Mon, 2 Dec 2019 19:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Mon, 9 Dec 2019 19:00:00 +0000\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/plans_for_2020.sr_Latn.po b/wiki/src/news/plans_for_2020.sr_Latn.po index 26d588381e25417704e583ba249d7482feebf7fa..c5e58b77a683f6ef3009230dc36e69a01d11fb95 100644 --- a/wiki/src/news/plans_for_2020.sr_Latn.po +++ b/wiki/src/news/plans_for_2020.sr_Latn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-02 19:17+0000\n" +"POT-Creation-Date: 2019-12-09 07:54+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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Mon, 2 Dec 2019 19:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Mon, 9 Dec 2019 19:00:00 +0000\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/plans_for_2020.tr.po b/wiki/src/news/plans_for_2020.tr.po index fec4fe4d5115f2b8d4cdd83659b1fc4e90801be8..40e942a9caaa4e4518e1b1ee9d0b2f5b8f35c6fd 100644 --- a/wiki/src/news/plans_for_2020.tr.po +++ b/wiki/src/news/plans_for_2020.tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-02 19:17+0000\n" +"POT-Creation-Date: 2019-12-09 07:54+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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Mon, 2 Dec 2019 19:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Mon, 9 Dec 2019 19:00:00 +0000\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/plans_for_2020.zh.po b/wiki/src/news/plans_for_2020.zh.po index cd487334b36e2d5476d663fcbbaeae3a5d48768e..c3081129e8feaf4bcf4a1f5e86c7c10ce9468f62 100644 --- a/wiki/src/news/plans_for_2020.zh.po +++ b/wiki/src/news/plans_for_2020.zh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-02 19:17+0000\n" +"POT-Creation-Date: 2019-12-09 07:54+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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Mon, 2 Dec 2019 19:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Mon, 9 Dec 2019 19:00:00 +0000\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/plans_for_2020.zh_TW.po b/wiki/src/news/plans_for_2020.zh_TW.po index 5a5ddf9932a65906bf9c360ef870890b2ddede11..3417e9f5b10060b363c54d37a50ea7dbbdfb3354 100644 --- a/wiki/src/news/plans_for_2020.zh_TW.po +++ b/wiki/src/news/plans_for_2020.zh_TW.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-02 19:17+0000\n" +"POT-Creation-Date: 2019-12-09 07:54+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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Mon, 2 Dec 2019 19:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Mon, 9 Dec 2019 19:00:00 +0000\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/report_2019_03.mdwn b/wiki/src/news/report_2019_03.mdwn index 3fb95149dd81fa1c130c913e014385473acf8ec0..f627e8e2b3b075889dc172fc8fa8a84f43ad55ae 100644 --- a/wiki/src/news/report_2019_03.mdwn +++ b/wiki/src/news/report_2019_03.mdwn @@ -70,8 +70,8 @@ User experience =============== - We drafted how to explain Tails in a new - [[homepage|blueprint/explain_tails/homepage]] and [[about - page|blueprint/explain_tails/about]] and tested it with 5 people with + homepage and about + page and tested it with 5 people with the help from [Simply Secure](https://simplysecure.org/). ([[!tails_ticket 16536]]) diff --git a/wiki/src/blueprint/monthly_report/report_2019_11.mdwn b/wiki/src/news/report_2019_11.mdwn similarity index 73% rename from wiki/src/blueprint/monthly_report/report_2019_11.mdwn rename to wiki/src/news/report_2019_11.mdwn index dd0abd27c9b23b38b07da2093e64d17741942051..dba67eafc62926041c2290eb8b917558ff8f0f3a 100644 --- a/wiki/src/blueprint/monthly_report/report_2019_11.mdwn +++ b/wiki/src/news/report_2019_11.mdwn @@ -1,33 +1,28 @@ [[!meta title="Tails report for November, 2019"]] -[[!meta date="Tue, 15 Dec 2019 12:34:56 +0000"]] +[[!meta date="Tue, 14 Dec 2019 12:34:56 +0000"]] [[!pagetemplate template="news.tmpl"]] -[[!toc ]] - -Code -==== - -XXX: If you feel like it and developers, foundation team, and RMs don't do it themselves, - list important code work that is not covered already by the - Release section (for example, the changes being worked on for - the next version). +[[!toc]] Documentation and website ========================= -- Improve our explanation of the [[enhanced +- We improved our explanation of the [[enhanced privacy|doc/anonymous_internet/thunderbird#torbirdy]] of *Thunderbird* in Tails. ([[!tails_ticket 17270]]) -- Instruct people facing [[recurring errors from Tails - Upgrader|doc/upgrade/error/check]] to do a manual upgrade. ([[!tails_ticket 12492]]) +- We instructed people facing [[recurring errors when + upgrading|doc/upgrade/error/check]] to do a manual upgrade. + ([[!tails_ticket 12492]]) -- Improved the layout of the [[manual upgrade documentation|doc/upgrade/#manual]]. ([[!tails_ticket 12492]]) +- We improved the layout of the [[manual upgrade + documentation|doc/upgrade/#manual]]. ([[!tails_ticket 12492]]) User experience =============== -- Finished processing the feedback on our [[mission and values|contribute/mission]]. ([[!tails_ticket 16540]]) +- We finished processing the feedback on our [[mission and + values|contribute/mission]]. ([[!tails_ticket 16540]]) Our work on this document was explained in [Open source & branding – a contradiction?](https://simplysecure.org/blog/branding-tails), by Simply @@ -38,18 +33,19 @@ User experience Hot topics on our help desk =========================== -1. Multiple users reported having trouble [[importing keys in Seahorse|https://redmine.tails.boum.org/code/issues/17183]] - -1. We also had some reports about [[issues with Nvidia|https://redmine.tails.boum.org/code/issues/17184]] [[graphics cards|https://redmine.tails.boum.org/code/issues/17155]] +1. Multiple users reported having trouble [[!tails_ticket 17183 desc="importing keys in Seahorse"]]. -1. And MacOS users were affected by a [[bug in Etcher|https://redmine.tails.boum.org/code/issues/17185]] +1. We also had some reports about [[!tails_ticket 17184 desc="issues + with Nvidia"]] [[!tails_ticket 17155 desc="graphics cards"]]. +1. macOS users were affected by a [[!tails_ticket 17185 desc="bug in + Etcher"]]. Infrastructure ============== - We finished updating the list of members in our [[signing key - revocation mechanism|doc/about/openpgp_keys/signing_key_revocation]]. ([[!tails_ticket #16665]]) + revocation mechanism|doc/about/openpgp_keys/signing_key_revocation]]. ([[!tails_ticket 16665]]) We lost 5 members and added 8 new members. So the resiliency of the scheme was increased overall. Thanks again to all the new members :) @@ -91,16 +87,13 @@ Outreach Past events ----------- -- Guatemala - -Upcoming events ---------------- +- [Damaris Mendoza](https://twitter.com/damriv) presented Tails to 20 + digital security trainers at the Encuentro Centroamericano de + Seguridad Digital in Guatemala City. On-going discussions ==================== -XXX: Link to the thread on <https://lists.autistici.org/list/tails-XXX.html>. - - Technical writers sent a proposal to improve and simplify the terminology around "Persistence": diff --git a/wiki/src/news/report_2019_12.mdwn b/wiki/src/news/report_2019_12.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..7d0668aadf1df5ff87d37d67d1434feed721be22 --- /dev/null +++ b/wiki/src/news/report_2019_12.mdwn @@ -0,0 +1,212 @@ +[[!meta title="Tails report for December, 2019"]] +[[!meta date="Tue, 21 Jan 2020 15:18:49 +0000"]] +[[!pagetemplate template="news.tmpl"]] + +[[!toc ]] + +Releases +======== + +* [[Tails 4.1 was released on December 3|news/version_4.1]]. + +* Tails 4.3 is [[scheduled for February 4|contribute/calendar]]. + +The following changes were introduced in Tails 4.1: + +- Use <https://keys.openpgp.org/>, also available on + <https://zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, + as the default OpenPGP keyserver. + +- Replace the [[*TorBirdy* + extension|doc/anonymous_internet/thunderbird#torbirdy]] with custom + settings and patches in *Thunderbird* that provide equivalent privacy. + +- Add back the **Show Passphrase** check box in *Tails Greeter*. + ([[!tails_ticket 17177]]) + +- Fix the display of the troubleshooting error when GDM fails to start. + ([[!tails_ticket 17200]]) + +- Add back the option to **Open in Terminal** when doing right-click (on + Mac, click with two fingers) in a folder in the *Files* browser. + ([[!tails_ticket 17186]]) + +- Make the installation of additional software more reliable. ([[!tails_ticket 17203]]) + +Code +==== + +* We [published a first + alpha](https://lists.autistici.org/message/20191221.150827.105ba267.en.html) + with Secure Boot support, which will remove a major blocker for less + tech-savvy users to adopt Tails. + +* We finalized the implementation of our slightly [[!tails_ticket 15281 + desc="redesigned upgrade system"]]. + +Documentation and website +========================= + +* Blogged about [[our plans for 2020|news/plans_for_2020]]. + +* Blogged to [[celebrate 10 years of Tails|news/celebrating_10_years]]. + +* Wrote some documentation on how to [[update your OpenPGP keyserver + configuration|doc/encryption_and_privacy/openpgp_keyserver]] and switch your + Persistence to using <https://keys.openpgp.org>. + +User experience +=============== + +* Published an interview with [[Roberto|contribute/how/user_experience/interviews/roberto]], + an investigative journalist working on a GlobaLeaks platform in Latin + America, called *Leaks* in the interview. + +* Hired [Andrés Fernández Cordón](https://anhdr.es/) to [[illustrate + what is Tails and how it works|jobs/illustrations_how_tails_work]]. + + Welcome Andrés and thanks again to the 40+ other people who applied for this + job! + +* Hired [Odile Carabantes](https://studiomoare.com/) to layout flyers + explaining what is Tails and why use it. + +* Did a cognitive walk-through of automatic upgrades ([[!tails_ticket 16991]]) + and reported 3 new UX bugs: + + - [[!tails_ticket 17310 desc="Add a button to cancel the upgrade while it's downloading"]] + - [[!tails_ticket 17312 desc="Prevent users from closing Tails Upgrader while an upgrade is being applied"]] + - [[!tails_ticket 17313 desc="Tails doesn't restart after applying an automatic upgrade"]] + +* Did some design work for small UX debts tickets: ([[!tails_ticket 14544]]) + + - Ask for confirmation when starting without unlocking the persistent storage + ([[!tails_ticket 15573#note-10]]) + + - Force restarting after creating persistent storage + ([[!tails_ticket 16384#note-12]]) + + - Improve UX when Wi-Fi is not working + ([[!tails_ticket 14534#note-26]]) + + - Customize "Proxy is refusing connections" error messages in + Tor Browser and remove the "Tor is not ready" popup + ([[!tails_ticket 8061#note-33]]) + + - Update our list of "Favorites" applications + ([[!tails_ticket 16990#note-6]]) + + - Merge "Delete persistent volume" and "Configure persistent + volume" + ([[!tails_ticket 17331]]) + +* Created 2 tickets for UX improvements related to Wi-Fi in GNOME: + + - [[!gnome_gitlab network-manager-applet/issues/83 desc="Display an empty Wi-Fi icon when the Wi-Fi is not connected"]] + - [[!gnome_gitlab network-manager-applet/issues/84 desc="Simplify the process of connecting to a Wi-Fi network"]] + +Hot topics on our help desk +=========================== + +1. Users reported various issues related to GPU [[!tails_ticket 17155 +desc="nvidia"]] and [[!tails_ticket 17379 desc="radeon"]]. + +2. Seahorse still cannot import GPG keys ([[!tails_ticket 17183]]) as +well as other issues like [[!tails_ticket 17372 desc="encrypts file +using most recent key only"]] and [[!tails_ticket 17371 desc="connect to +keyserver"]]. + +3. Mac - [[!tails_ticket 17320 desc="kernel panic"]] (fixed, caused an +emergency release), [[!tails_ticket 17380 desc="graphical distorsions"]] +(there's a workaround), and [[!tails_ticket 17049 desc="no boot"]]. + +Infrastructure +============== + +* We discussed our needs and desires regarding our upcoming GitLab instance and + eventually decided to hosting it at [immerda.ch](https://www.immerda.ch/). + + Thanks _immerda.ch_ for your support since so many years! + +* We taught our CI to [[!tails_ticket 15287 desc="reproducibly build automatic + upgrades"]]. + +Funding +======= + +* Wrote to the press and all past funders about our blog post on "[[Celebrating + 10 years of Tails|news/celebrating_10_years]]". We sent close to 100 emails in + total. + +Outreach +======== + +Past events +----------- + +* intrigeri attended the [Reproducible Builds + summit](https://reproducible-builds.org/events/Marrakesh2019/) in Marrakesh. + +* Some of us attended the [36th Chaos Communication Congress + (36C3)](https://events.ccc.de/congress/2019/wiki/index.php/Main_Page) + in Leipzig, Germany. + +On-going discussions +==================== + +* Our Release Managers have been discussing how to adapt to the Firefox + 4-weeks release cycle. + +Press and testimonials +====================== + +* 2019-12-18: [Pourquoi je préfère la BD sur Snowden à son + autobiographie (& vive Tails aussi <3)](https://www.lemonde.fr/blog/bugbrother/2019/12/18/pourquoi-je-prefere-la-bd-sur-snowden-a-son-autobiographie-vive-tails-aussi-3/) + by Jean-Marc Manach in Le Monde. + +* 2019-12-17: [Sa clé USB qui permet d'aller sur le dark web](https://www.youtube.com/watch?v=GFgWl_-sIdE) + by Guillaume Pley in Le QG. + +* Our blog post on "[[Celebrating 10 years of + Tails|news/celebrating_10_years]]" received some press coverage: + + - 2019-12-15: [L’outil préféré d’Edward Snowden ne laisse aucune trace + depuis dix ans](https://www.lalibre.be/economie/digital/l-outil-prefere-d-edward-snowden-ne-laisse-aucune-trace-depuis-dix-ans-5df65c7bf20d5a0c4604c152) + by Christophe Lamfalussy in La Libre Belgique. + + - 2019-12-16: [Happy 10th birthday, TAILS -- the real Paranoid + Linux!](https://boingboing.net/2019/12/16/paranoid-linux-for-real.html) + by Cory Doctorow in Boing Boing. + +Translations +============ + +## All the website + + - fr: 88% (5418) strings translated, 1% strings fuzzy, 86% words translated + - es: 51% (3137) strings translated, 4% strings fuzzy, 42% words translated + - de: 46% (2832) strings translated, 7% strings fuzzy, 41% words translated + - fa: 32% (1982) strings translated, 10% strings fuzzy, 33% words translated + - it: 32% (1969) strings translated, 5% strings fuzzy, 28% words translated + - pt: 25% (1553) strings translated, 7% strings fuzzy, 21% words translated + +Total original words: 65286 + +## [[Core pages of the website|contribute/l10n_tricks/core_po_files.txt]] + + - fr: 96% (1705) strings translated, 1% strings fuzzy, 96% words translated + - es: 80% (1417) strings translated, 9% strings fuzzy, 82% words translated + - de: 71% (1252) strings translated, 12% strings fuzzy, 74% words translated + - it: 63% (1112) strings translated, 17% strings fuzzy, 65% words translated + - pt: 45% (798) strings translated, 13% strings fuzzy, 48% words translated + - fa: 34% (615) strings translated, 13% strings fuzzy, 33% words translated + +Total original words: 16439 + +Metrics +======= + +* Tails has been started more than 819 136 times this month. This + makes 26 424 boots a day on average. + +[[How do we know this?|support/faq#boot_statistics]] diff --git a/wiki/src/news/reproducible_Tails.id.po b/wiki/src/news/reproducible_Tails.id.po index 2a31fdbebda2a66a786d1462227155e7871c6399..f22de62c8fcdb0d72bf57d3f033b4fe437622cee 100644 --- a/wiki/src/news/reproducible_Tails.id.po +++ b/wiki/src/news/reproducible_Tails.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/rescue_3.0.1.id.po b/wiki/src/news/rescue_3.0.1.id.po index 76b5438f013b653abe9fff59669289c64b1aa954..07986825bdf2075b1aefdbbe38d65aa5e4a35033 100644 --- a/wiki/src/news/rescue_3.0.1.id.po +++ b/wiki/src/news/rescue_3.0.1.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/signing_key_transition.id.po b/wiki/src/news/signing_key_transition.id.po index 5b93a8a7e52f29ab79104f086c752351d331018b..accd5ceacf8cc730c49fcf8d25d86ae4a88d9645 100644 --- a/wiki/src/news/signing_key_transition.id.po +++ b/wiki/src/news/signing_key_transition.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-10-24 10:32+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -59,7 +59,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap @@ -83,7 +83,7 @@ msgstr "</div>\n" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/social_contract.id.po b/wiki/src/news/social_contract.id.po index 1bade726cd18265f66b3a3cac99cc6ac6e74c378..e91fae475ce88339fedc08571407ebe156d209b2 100644 --- a/wiki/src/news/social_contract.id.po +++ b/wiki/src/news/social_contract.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/spoof-mac.de.po b/wiki/src/news/spoof-mac.de.po index 162e0c0f45dc52a81aadce4442fd8c3846721503..a9af6b6e186e316edfb202850716733cb4061960 100644 --- a/wiki/src/news/spoof-mac.de.po +++ b/wiki/src/news/spoof-mac.de.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-07-16 07:52+0000\n" +"PO-Revision-Date: 2020-01-15 21:29+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: de\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -51,7 +51,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/spoof-mac.id.po b/wiki/src/news/spoof-mac.id.po index 8e3ff9a203306920aef408da85089ab786e38066..b8b958f3a08a788ce64986432051f47ffc920323 100644 --- a/wiki/src/news/spoof-mac.id.po +++ b/wiki/src/news/spoof-mac.id.po @@ -6,16 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-16 00:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -30,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text msgid "" @@ -50,7 +51,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/spoof-mac.pt.po b/wiki/src/news/spoof-mac.pt.po index 05d626348cb819fbdf7d63cf99662fbc3c3687cb..4d45bc7f205e30f48cbd534b052d71147317e005 100644 --- a/wiki/src/news/spoof-mac.pt.po +++ b/wiki/src/news/spoof-mac.pt.po @@ -6,9 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2018-03-20 14:11+0000\n" -"Last-Translator: Tails translators <amnesia@boum.org\n" +"PO-Revision-Date: 2019-12-22 21:04+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" "spoof-mac/pt/>\n" "Language: pt\n" @@ -16,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/summit_2013.id.po b/wiki/src/news/summit_2013.id.po index b5771f9efecec0293051d9e46bfdbbffd54352d6..a3e9d10839297951a1b9ce30d928b87967116eda 100644 --- a/wiki/src/news/summit_2013.id.po +++ b/wiki/src/news/summit_2013.id.po @@ -6,14 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -28,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text msgid "" diff --git a/wiki/src/news/tails-support.id.po b/wiki/src/news/tails-support.id.po index 01fecf4a6bf46b7653282ffa172b55a7b8495c32..e1766159e07e1b437108e8c0fcef305af3b00e35 100644 --- a/wiki/src/news/tails-support.id.po +++ b/wiki/src/news/tails-support.id.po @@ -6,14 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -28,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text msgid "" diff --git a/wiki/src/news/tails-testers.id.po b/wiki/src/news/tails-testers.id.po index cea5b93c26682aceb9a40206572b62cebcd1adc4..965ba3a7839223f17563059f6e7c8568a74a3d47 100644 --- a/wiki/src/news/tails-testers.id.po +++ b/wiki/src/news/tails-testers.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/thedaywefightback.id.po b/wiki/src/news/thedaywefightback.id.po index a6311a8187310ecdd302676c6471740a6decf390..4c56e1c6662b110f31ea60af0a7658e619ec0f1a 100644 --- a/wiki/src/news/thedaywefightback.id.po +++ b/wiki/src/news/thedaywefightback.id.po @@ -6,14 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -23,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/veracrypt_ux_design.fr.po b/wiki/src/news/veracrypt_ux_design.fr.po index f6455c9faae797f0cb59bb3a29bcea5d6cb9c97c..34b72e10327420b31f0608a9c5eccf7e57e58b37 100644 --- a/wiki/src/news/veracrypt_ux_design.fr.po +++ b/wiki/src/news/veracrypt_ux_design.fr.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-09-24 13:20+0000\n" -"Last-Translator: xin <xin@riseup.net>\n" +"PO-Revision-Date: 2020-01-11 13:25+0000\n" +"Last-Translator: takt <ffr43366@eveav.com>\n" "Language-Team: French <amnesia@boum.org>\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -63,7 +63,7 @@ msgstr "" #. type: Plain text msgid "We will give you a Tails T-shirt as a token of our thanks." -msgstr "" +msgstr "Nous vous donnerons un T-shirt Tails en remerciement." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/veracrypt_ux_design.id.po b/wiki/src/news/veracrypt_ux_design.id.po index 51c89fe229ddd0cc917b7cd6b2f4a832d8ce8a69..0aa8e5e2288b5c696588f02cd776b7ddf671f842 100644 --- a/wiki/src/news/veracrypt_ux_design.id.po +++ b/wiki/src/news/veracrypt_ux_design.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.0.1.fr.po b/wiki/src/news/version_3.0.1.fr.po index 73f80709acdcab7e133fb1124e6fe3545cc2844d..2e3edb15443e3f8104a15fadc1103cf5488b7c54 100644 --- a/wiki/src/news/version_3.0.1.fr.po +++ b/wiki/src/news/version_3.0.1.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-07-27 17:15+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -107,8 +107,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -159,8 +159,8 @@ msgstr "Tails 3.1 est [[prévu|contribute/calendar]] pour le 8 août." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.0.1.id.po b/wiki/src/news/version_3.0.1.id.po index 036c0866b783d35c259e9eba385201eb7dc57208..87fdff3ed197063c27d554dcb3c5aa8ccc2a8bae 100644 --- a/wiki/src/news/version_3.0.1.id.po +++ b/wiki/src/news/version_3.0.1.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -48,7 +48,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.0.ar.po b/wiki/src/news/version_3.0.ar.po index 274179984593de85c67d72e34c53087521b61eab..59eb8395334eb405d9086e192153d336fe595988 100644 --- a/wiki/src/news/version_3.0.ar.po +++ b/wiki/src/news/version_3.0.ar.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-09-18 06:11+0200\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2018-10-25 10:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -89,6 +89,11 @@ msgstr "" msgid "New features" msgstr "" +#. type: Plain text +#, fuzzy, no-wrap +msgid "<a id=\"greeter\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New startup and shutdown experience" diff --git a/wiki/src/news/version_3.0.ca.po b/wiki/src/news/version_3.0.ca.po index 1a3942f4c03a2e5bcadfab0f4b74366be424a9e3..d9ace46f253ecf54abf15c9530123a87769b7ccf 100644 --- a/wiki/src/news/version_3.0.ca.po +++ b/wiki/src/news/version_3.0.ca.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-09-18 06:11+0200\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2018-06-27 22:55+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -88,6 +88,11 @@ msgstr "Canvis" msgid "New features" msgstr "" +#. type: Plain text +#, no-wrap +msgid "<a id=\"greeter\"></a>\n" +msgstr "" + #. type: Title ### #, no-wrap msgid "New startup and shutdown experience" diff --git a/wiki/src/news/version_3.0.de.po b/wiki/src/news/version_3.0.de.po index 4210f50c06913b07009c19b614fffaca613234ad..57afc6b0b61e894e801b37ead35a3f1ed1ae571e 100644 --- a/wiki/src/news/version_3.0.de.po +++ b/wiki/src/news/version_3.0.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-09-18 06:11+0200\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2018-04-08 13:54+0000\n" "Last-Translator: Tails translators <amnesia@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -87,6 +87,12 @@ msgstr "Änderungen" msgid "New features" msgstr "Neue Funktionen" +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "<a id=\"known-issues\"></a>\n" +msgid "<a id=\"greeter\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New startup and shutdown experience" @@ -437,7 +443,8 @@ msgstr "" "- Befolgen Sie zum Installieren unsere [[Installationsanweisungen|install]]." #. type: Plain text -msgid "- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." +msgid "" +"- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." 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 0c72b489054f0945a56c0955083af9014c73f053..018bc098a76771f14efe954bf8342d0731b3fdb7 100644 --- a/wiki/src/news/version_3.0.es.po +++ b/wiki/src/news/version_3.0.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-09-18 06:11+0200\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2019-08-18 23:34+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -88,6 +88,12 @@ msgstr "Cambios" msgid "New features" msgstr "Nuevas funcionalidades" +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "<a id=\"known-issues\"></a>\n" +msgid "<a id=\"greeter\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New startup and shutdown experience" @@ -436,7 +442,8 @@ msgstr "" "- Para instalarlo, sigue nuestras [[instrucciones de instalación|install]]." #. type: Plain text -msgid "- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." +msgid "" +"- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." 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 e6e77c02f176f5cba77c900baffb12deb87bccb6..5909344d5957f883a6df45790837aa78e98124cd 100644 --- a/wiki/src/news/version_3.0.fa.po +++ b/wiki/src/news/version_3.0.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-09-18 06:11+0200\n" +"POT-Creation-Date: 2019-12-10 18:44+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" @@ -85,6 +85,12 @@ msgstr "" msgid "New features" msgstr "" +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "<a id=\"known-issues\"></a>\n" +msgid "<a id=\"greeter\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New startup and shutdown experience" @@ -430,7 +436,8 @@ msgid "- To install, follow our [[installation instructions|install]]." msgstr "" #. type: Plain text -msgid "- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." +msgid "" +"- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." 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 3dd578647f733661e47d73d8f5644d231ed16df8..63e657d7e36af693b13598db65242547fa29b254 100644 --- a/wiki/src/news/version_3.0.fr.po +++ b/wiki/src/news/version_3.0.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: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-07-27 17:15+0000\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: 2020-01-11 13:25+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -108,6 +108,12 @@ msgstr "Changements" msgid "New features" msgstr "Nouvelles fonctionnalités" +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "<a id=\"known-issues\"></a>\n" +msgid "<a id=\"greeter\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New startup and shutdown experience" @@ -446,8 +452,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -569,7 +575,8 @@ msgstr "" "- Pour l'installer, suivez nos [[instructions d'installation|install]]." #. type: Plain text -msgid "- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." +msgid "" +"- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." msgstr "" "- Pour mettre à jour, tout le monde doit faire une [[mise à jour manuelle|" "upgrade]]." @@ -590,8 +597,8 @@ msgstr "Tails 3.1 est [[prévu|contribute/calendar]] pour le 8 août." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. 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 8d3409cb1a151438e588da14ca4a5f9bdfa43394..20c99a4cb78c636a826e5a15a8dd04b194780178 100644 --- a/wiki/src/news/version_3.0.id.po +++ b/wiki/src/news/version_3.0.id.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -76,7 +76,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap @@ -88,6 +88,11 @@ msgstr "" msgid "New features" msgstr "" +#. type: Plain text +#, no-wrap +msgid "<a id=\"greeter\"></a>\n" +msgstr "" + #. type: Title ### #, no-wrap msgid "New startup and shutdown experience" @@ -433,7 +438,8 @@ msgid "- To install, follow our [[installation instructions|install]]." msgstr "" #. type: Plain text -msgid "- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." +msgid "" +"- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." 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 9a6e71f3634a66059daddb8483199d34cbd9ced7..7fb6abc38446a8bdafc722d62d08eee1a7d3c86a 100644 --- a/wiki/src/news/version_3.0.it.po +++ b/wiki/src/news/version_3.0.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-09-18 06:11+0200\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2019-11-24 08:40+0000\n" "Last-Translator: anonymous <amnesia@boum.org>\n" "Language-Team: \n" @@ -117,6 +117,12 @@ msgstr "Cambi" msgid "New features" msgstr "Nuove funzionalità" +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "<a id=\"known-issues\"></a>\n" +msgid "<a id=\"greeter\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New startup and shutdown experience" @@ -148,10 +154,8 @@ msgid "" " designs!\n" msgstr "" "Questo è stato un lungo processo, iniziato tre anni fa con il gruppo UX di\n" -"[NUMA Paris](https://paris.numa.co/) e guidato solo da volontari. Unisciti a " -"noi\n" -"[[tails-ux@boum.org|about/contact#tails-ux]] per partecipare alle " -"discussioni di design\n" +"[NUMA Paris](https://paris.numa.co/) e guidato solo da volontari. Unisciti a noi\n" +"[[tails-ux@boum.org|about/contact#tails-ux]] per partecipare alle discussioni di design\n" "future!\n" #. type: Plain text @@ -580,7 +584,8 @@ msgstr "" "- Per installare, segui le nostre [[istruzioni per l'installazione|install]]." #. type: Plain text -msgid "- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." +msgid "" +"- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." msgstr "" "- Per l'aggiornamento, tutti gli utenti devono fare l'[[avanzamento manuale|" "upgrade]]." diff --git a/wiki/src/news/version_3.0.mdwn b/wiki/src/news/version_3.0.mdwn index ad879b9e288859292c11ec4cd37bdfde1194448d..4622c14837c549970f7d339360e2a453377c9a57 100644 --- a/wiki/src/news/version_3.0.mdwn +++ b/wiki/src/news/version_3.0.mdwn @@ -30,6 +30,8 @@ upgrade as soon as possible. ## New features +<a id="greeter"></a> + ### New startup and shutdown experience - *Tails Greeter*, the application to configure Tails at startup, has diff --git a/wiki/src/news/version_3.0.pl.po b/wiki/src/news/version_3.0.pl.po index efeecac4f889b3ea02b1e3bfc6f85786ef31e7f1..59fb799416113abb7c2f71325aa7e5121eabbbbe 100644 --- a/wiki/src/news/version_3.0.pl.po +++ b/wiki/src/news/version_3.0.pl.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-09-18 06:11+0200\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2018-10-26 11:00+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -89,6 +89,11 @@ msgstr "" msgid "New features" msgstr "" +#. type: Plain text +#, fuzzy, no-wrap +msgid "<a id=\"greeter\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New startup and shutdown experience" @@ -434,7 +439,8 @@ msgid "- To install, follow our [[installation instructions|install]]." msgstr "" #. type: Plain text -msgid "- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." +msgid "" +"- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." 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 10675235d63a35a8d42558bc0f7aa0b43ef7f7f6..d38b7830e18fca5f39cd346acee9fd5438e2fc32 100644 --- a/wiki/src/news/version_3.0.pt.po +++ b/wiki/src/news/version_3.0.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-09-18 06:11+0200\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2018-03-20 14:18+0000\n" "Last-Translator: Tails translators <amnesia@boum.org\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" @@ -88,6 +88,12 @@ msgstr "Mudanças" msgid "New features" msgstr "Novos recursos" +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "<a id=\"known-issues\"></a>\n" +msgid "<a id=\"greeter\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New startup and shutdown experience" @@ -435,7 +441,8 @@ msgid "- To install, follow our [[installation instructions|install]]." msgstr "- Para instalar, siga nossas [[instruções de instalação|install]]." #. type: Plain text -msgid "- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." +msgid "" +"- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." 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 25670b9f795e8bc69df8c9ba2cda55ff67a03254..1b544e327f8bde71f6cfb5f52401e45e077016f3 100644 --- a/wiki/src/news/version_3.0.ru.po +++ b/wiki/src/news/version_3.0.ru.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-09-18 06:11+0200\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2018-10-25 10:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -89,6 +89,11 @@ msgstr "" msgid "New features" msgstr "" +#. type: Plain text +#, fuzzy, no-wrap +msgid "<a id=\"greeter\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New startup and shutdown experience" @@ -434,7 +439,8 @@ msgid "- To install, follow our [[installation instructions|install]]." msgstr "" #. type: Plain text -msgid "- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." +msgid "" +"- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." 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 8a6ba1e61adde5cdddc141e0649d9bb5b91251cb..538f143bda5ac8da62f05bb6c75907779cf87fe8 100644 --- a/wiki/src/news/version_3.0.sr_Latn.po +++ b/wiki/src/news/version_3.0.sr_Latn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-09-18 06:11+0200\n" +"POT-Creation-Date: 2019-12-10 18:44+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" @@ -86,6 +86,11 @@ msgstr "" msgid "New features" msgstr "" +#. type: Plain text +#, no-wrap +msgid "<a id=\"greeter\"></a>\n" +msgstr "" + #. type: Title ### #, no-wrap msgid "New startup and shutdown experience" @@ -431,7 +436,8 @@ msgid "- To install, follow our [[installation instructions|install]]." msgstr "" #. type: Plain text -msgid "- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." +msgid "" +"- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." 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 5ff22a43782166185f0ba58afcc8e7dd2ab7fd1b..f223872003a37c570c500297a3860c5ee27f1e5f 100644 --- a/wiki/src/news/version_3.0.tr.po +++ b/wiki/src/news/version_3.0.tr.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-09-18 06:11+0200\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2018-07-02 06:44+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -88,6 +88,11 @@ msgstr "" msgid "New features" msgstr "" +#. type: Plain text +#, no-wrap +msgid "<a id=\"greeter\"></a>\n" +msgstr "" + #. type: Title ### #, no-wrap msgid "New startup and shutdown experience" @@ -433,7 +438,8 @@ msgid "- To install, follow our [[installation instructions|install]]." msgstr "" #. type: Plain text -msgid "- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." +msgid "" +"- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." 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 1aa3422fb601a74e37f41496b5a7c7b787851728..56e2e883fb04750e38ea756c79cacd874eb5ee73 100644 --- a/wiki/src/news/version_3.0.zh.po +++ b/wiki/src/news/version_3.0.zh.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-09-18 06:11+0200\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2018-10-25 10:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -88,6 +88,11 @@ msgstr "" msgid "New features" msgstr "" +#. type: Plain text +#, no-wrap +msgid "<a id=\"greeter\"></a>\n" +msgstr "" + #. type: Title ### #, no-wrap msgid "New startup and shutdown experience" @@ -433,7 +438,8 @@ msgid "- To install, follow our [[installation instructions|install]]." msgstr "" #. type: Plain text -msgid "- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." +msgid "" +"- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." 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 6b3c975cbc763df2f6128f81241925f09eb32d9f..96dca08fd8803d68ac0315ae5637d9bf8922163d 100644 --- a/wiki/src/news/version_3.0.zh_TW.po +++ b/wiki/src/news/version_3.0.zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails l10n\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-09-18 06:11+0200\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2018-11-02 17:13+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: Tails Chinese translators <jxt@twngo.xyz>\n" @@ -87,6 +87,11 @@ msgstr "" msgid "New features" msgstr "新功能" +#. type: Plain text +#, no-wrap +msgid "<a id=\"greeter\"></a>\n" +msgstr "" + #. type: Title ### #, no-wrap msgid "New startup and shutdown experience" @@ -432,7 +437,8 @@ msgid "- To install, follow our [[installation instructions|install]]." msgstr "" #. type: Plain text -msgid "- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." +msgid "" +"- To upgrade, all users have to do a [[manual upgrade|doc/upgrade#manual]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_3.1.fr.po b/wiki/src/news/version_3.1.fr.po index 831e45058710d5f8c65d7a8a587011586379e988..c06aa160d424cb3da7d843995a79843f8ffa12bd 100644 --- a/wiki/src/news/version_3.1.fr.po +++ b/wiki/src/news/version_3.1.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-07-27 17:15+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -97,8 +97,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -159,8 +159,8 @@ msgstr "Tails 3.2 est [[prévu|contribute/calendar]] pour le 3 octobre." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.1.id.po b/wiki/src/news/version_3.1.id.po index b589fb0658bce6c3b26f2d28bc56a4399e2414ea..9b319be9802cc19fd8dc07306875e2810d5c9840 100644 --- a/wiki/src/news/version_3.1.id.po +++ b/wiki/src/news/version_3.1.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -48,7 +48,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.10.1.fr.po b/wiki/src/news/version_3.10.1.fr.po index 2e36b84a81e16d810e3a46cc18b3f9999a4df44b..911287ffc693429a93a8361fe5fe1ef7c64e6412 100644 --- a/wiki/src/news/version_3.10.1.fr.po +++ b/wiki/src/news/version_3.10.1.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-11-02 15:34+0100\n" -"PO-Revision-Date: 2019-08-21 16:45+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -150,8 +150,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -213,8 +213,8 @@ msgstr "Tails 3.11 est [[prévu|contribute/calendar]] pour le 11 décembre." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.10.1.id.po b/wiki/src/news/version_3.10.1.id.po index c19bfc32cbffc61ff1050e52d24639d5b820e7a6..c0f3ea7dce0182c510dfa66ab6fd290327b8fff6 100644 --- a/wiki/src/news/version_3.10.1.id.po +++ b/wiki/src/news/version_3.10.1.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-11-02 15:34+0100\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -51,7 +51,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.11.fa.po b/wiki/src/news/version_3.11.fa.po index 0ac8c816f3a4e0a802ad15f59031d39a9ad214fd..b7525f4502c7d92722d2ec02794f986961f10186 100644 --- a/wiki/src/news/version_3.11.fa.po +++ b/wiki/src/news/version_3.11.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-12-21 07:29+0000\n" -"PO-Revision-Date: 2019-10-23 08:15+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" "Language: fa\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -142,7 +142,7 @@ msgstr "<a id=\"known-issues\"></a>\n" #. type: Title # #, no-wrap msgid "Known issues" -msgstr "" +msgstr "مشکلات شناساییشده" #. type: Bullet: '- ' msgid "" diff --git a/wiki/src/news/version_3.11.fr.po b/wiki/src/news/version_3.11.fr.po index 895f1f0bc499f85d9dd8efe4aeef37f0d67e2b00..28aae678b2cc330f38af896ea8fcf581b14a9127 100644 --- a/wiki/src/news/version_3.11.fr.po +++ b/wiki/src/news/version_3.11.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2019-01-18 14:46+0100\n" -"PO-Revision-Date: 2019-09-06 21:50+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -150,8 +150,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -260,8 +260,8 @@ msgstr "Tails 3.12 est [[prévu|contribute/calendar]] pour le 29 janvier." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. 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 6184f87b31fb4f73cd21abdd8a0220cf27d454f0..f6dbe93d767b80ed62b7ce933a1a53a3d520cc2e 100644 --- a/wiki/src/news/version_3.11.id.po +++ b/wiki/src/news/version_3.11.id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-12-21 07:29+0000\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -30,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -50,7 +50,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.12.1.fr.po b/wiki/src/news/version_3.12.1.fr.po index b417c20cb0ff53b35837f9f1a963009d71e590a0..8dc188e904c7aab62e38d37da96e28cbd4bb5ff0 100644 --- a/wiki/src/news/version_3.12.1.fr.po +++ b/wiki/src/news/version_3.12.1.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-02-13 14:04+0100\n" -"PO-Revision-Date: 2019-11-16 15:50+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -242,7 +242,8 @@ msgstr "Tails 3.13 est [[prévu|contribute/calendar]] pour le 19 mars." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.12.1.id.po b/wiki/src/news/version_3.12.1.id.po index 3bc03262b48eac67f5d0c38758571db784e96c21..71be87bb5968c9a79273e5818f948cc4c3481bf6 100644 --- a/wiki/src/news/version_3.12.1.id.po +++ b/wiki/src/news/version_3.12.1.id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-02-13 14:04+0100\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -30,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -52,7 +52,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.12.ar.po b/wiki/src/news/version_3.12.ar.po index 6cdbdfb18f9b19863b0e6896331ab19c230fa3c4..03be32177e4cada6b8b667819ed2904da7640ff1 100644 --- a/wiki/src/news/version_3.12.ar.po +++ b/wiki/src/news/version_3.12.ar.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-01-29 18:12+0100\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2019-03-04 03:04+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -59,6 +59,11 @@ msgstr "" msgid "New features" msgstr "" +#. type: Plain text +#, fuzzy, no-wrap +msgid "<a id=\"usb-images\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New installation methods" diff --git a/wiki/src/news/version_3.12.ca.po b/wiki/src/news/version_3.12.ca.po index 9b756758302c3ed90daccb18b3e3d00e5ab5e943..a218a03a36794777b66fb5a937fb03d7e08811d7 100644 --- a/wiki/src/news/version_3.12.ca.po +++ b/wiki/src/news/version_3.12.ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-01-29 18:12+0100\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2019-02-28 03:07+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -58,6 +58,11 @@ msgstr "Canvis" msgid "New features" msgstr "" +#. type: Plain text +#, no-wrap +msgid "<a id=\"usb-images\"></a>\n" +msgstr "" + #. type: Title ### #, no-wrap msgid "New installation methods" diff --git a/wiki/src/news/version_3.12.de.po b/wiki/src/news/version_3.12.de.po index 9d34723640a0dc3cee95ba80b886646e2ff59661..eca7ae5af8e74edad1a585dc1fed1a881f9a5bcc 100644 --- a/wiki/src/news/version_3.12.de.po +++ b/wiki/src/news/version_3.12.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-01-29 18:12+0100\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2019-08-18 08:46+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 "" -"This release fixes [[many security " -"vulnerabilities|security/Numerous_security_holes_in_3.11]]. You should " -"upgrade as soon as possible." +"This release fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_3.11]]. You should upgrade as soon as possible." msgstr "" #. type: Plain text @@ -59,6 +58,12 @@ msgstr "Änderungen" msgid "New features" msgstr "Neue Funktionen" +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "<a id=\"known-issues\"></a>\n" +msgid "<a id=\"usb-images\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New installation methods" @@ -106,7 +111,8 @@ msgid "" msgstr "" #. type: Plain text -msgid "We are still providing ISO images for people using DVDs or virtual machines." +msgid "" +"We are still providing ISO images for people using DVDs or virtual machines." msgstr "" #. type: Plain text @@ -138,8 +144,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Update Linux to 4.19. Update Intel and AMD microcodes and most firmware " -"packages. This should improve the support for newer hardware (graphics, " -"Wi-Fi, etc.)." +"packages. This should improve the support for newer hardware (graphics, Wi-" +"Fi, etc.)." msgstr "" #. type: Plain text @@ -152,8 +158,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Update *Thunderbird* to " -"[60.4.0](https://www.thunderbird.net/en-US/thunderbird/60.4.0/releasenotes/)." +"Update *Thunderbird* to [60.4.0](https://www.thunderbird.net/en-US/" +"thunderbird/60.4.0/releasenotes/)." msgstr "" #. type: Title ## @@ -163,17 +169,17 @@ msgstr "Behobene Probleme" #. type: Bullet: '- ' msgid "" -"Fix the black screen when starting Tails with some Intel graphics " -"cards. ([[!tails_ticket 16224]])" +"Fix the black screen when starting Tails with some Intel graphics cards. ([[!" +"tails_ticket 16224]])" msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"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 #, no-wrap @@ -191,9 +197,7 @@ msgstr "" #. type: Title ### #, no-wrap -msgid "" -"Tails fails to start a second time on some computers ([[!tails_ticket " -"16389]])" +msgid "Tails fails to start a second time on some computers ([[!tails_ticket 16389]])" msgstr "" #. type: Plain text @@ -209,8 +213,7 @@ msgid "" "We are still investigating the issue, so if it happens to you, please\n" "report your findings by email to <tails-testers@boum.org>. Mention the\n" "model of the computer and the USB stick. This mailing\n" -"list is [archived " -"publicly](https://lists.autistici.org/list/tails-testers.html).\n" +"list is [archived publicly](https://lists.autistici.org/list/tails-testers.html).\n" msgstr "" #. type: Plain text @@ -223,17 +226,16 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Start Tails for the first time and [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"Start Tails for the first time and [[set up an administration password|doc/" +"first_steps/startup_options/administration_password]]." msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose <span class=\"menuchoice\"> <span " -"class=\"guimenu\">Applications</span> ▸ <span " -"class=\"guisubmenu\">System Tools</span> ▸ <span " -"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span " -"class=\"application\">Root Terminal</span>." +"Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" +"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class=" +"\"application\">Root Terminal</span>." msgstr "" #. type: Bullet: '1. ' @@ -251,8 +253,9 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[Download the *.img* file from our development " -"server](https://nightly.tails.boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/build-artifacts/)." +"[Download the *.img* file from our development server](https://nightly.tails." +"boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/" +"build-artifacts/)." msgstr "" #. type: Bullet: '1. ' @@ -285,14 +288,11 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" If you cannot do an automatic upgrade or if Tails fails to start after " -"an\n" +" If you cannot do an automatic upgrade or if Tails fails to start after an\n" " automatic upgrade, please try to do a [[manual upgrade|doc/upgrade#manual]].\n" msgstr "" -" Falls Sie keine automatische Aktualisierung durchführen können oder das " -"Starten\n" -" nach einer automatischen Aktualisierung fehlschlägt, versuchen Sie bitte " -"eine\n" +" Falls Sie keine automatische Aktualisierung durchführen können oder das Starten\n" +" nach einer automatischen Aktualisierung fehlschlägt, versuchen Sie bitte eine\n" " [[manuelle Aktualisierung|doc/upgrade#manual]].\n" #. type: Plain text @@ -326,7 +326,6 @@ msgstr "" #, no-wrap msgid "" "We need your help and there are many ways to [[contribute to\n" -"Tails|contribute]] (<a " -"href=\"https://tails.boum.org/donate/?r=3.12\">donating</a> is only one of\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=3.12\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" diff --git a/wiki/src/news/version_3.12.es.po b/wiki/src/news/version_3.12.es.po index bcb4c1db139c07367b1010ec20baf38151c183fd..45cb4b7724ee99ce3af53f61b1717afba4488af7 100644 --- a/wiki/src/news/version_3.12.es.po +++ b/wiki/src/news/version_3.12.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-01-29 18:12+0100\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2019-10-23 08: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 "" -"This release fixes [[many security " -"vulnerabilities|security/Numerous_security_holes_in_3.11]]. You should " -"upgrade as soon as possible." +"This release fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_3.11]]. You should upgrade as soon as possible." msgstr "" #. type: Plain text @@ -59,6 +58,12 @@ msgstr "Cambios" msgid "New features" msgstr "Nuevas funcionalidades" +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "<a id=\"known-issues\"></a>\n" +msgid "<a id=\"usb-images\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New installation methods" @@ -106,7 +111,8 @@ msgid "" msgstr "" #. type: Plain text -msgid "We are still providing ISO images for people using DVDs or virtual machines." +msgid "" +"We are still providing ISO images for people using DVDs or virtual machines." msgstr "" #. type: Plain text @@ -138,8 +144,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Update Linux to 4.19. Update Intel and AMD microcodes and most firmware " -"packages. This should improve the support for newer hardware (graphics, " -"Wi-Fi, etc.)." +"packages. This should improve the support for newer hardware (graphics, Wi-" +"Fi, etc.)." msgstr "" #. type: Plain text @@ -152,8 +158,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Update *Thunderbird* to " -"[60.4.0](https://www.thunderbird.net/en-US/thunderbird/60.4.0/releasenotes/)." +"Update *Thunderbird* to [60.4.0](https://www.thunderbird.net/en-US/" +"thunderbird/60.4.0/releasenotes/)." msgstr "" #. type: Title ## @@ -163,17 +169,17 @@ msgstr "Problemas arreglados" #. type: Bullet: '- ' msgid "" -"Fix the black screen when starting Tails with some Intel graphics " -"cards. ([[!tails_ticket 16224]])" +"Fix the black screen when starting Tails with some Intel graphics cards. ([[!" +"tails_ticket 16224]])" msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"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 #, no-wrap @@ -191,9 +197,7 @@ msgstr "" #. type: Title ### #, no-wrap -msgid "" -"Tails fails to start a second time on some computers ([[!tails_ticket " -"16389]])" +msgid "Tails fails to start a second time on some computers ([[!tails_ticket 16389]])" msgstr "" #. type: Plain text @@ -209,8 +213,7 @@ msgid "" "We are still investigating the issue, so if it happens to you, please\n" "report your findings by email to <tails-testers@boum.org>. Mention the\n" "model of the computer and the USB stick. This mailing\n" -"list is [archived " -"publicly](https://lists.autistici.org/list/tails-testers.html).\n" +"list is [archived publicly](https://lists.autistici.org/list/tails-testers.html).\n" msgstr "" #. type: Plain text @@ -223,17 +226,16 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Start Tails for the first time and [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"Start Tails for the first time and [[set up an administration password|doc/" +"first_steps/startup_options/administration_password]]." msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose <span class=\"menuchoice\"> <span " -"class=\"guimenu\">Applications</span> ▸ <span " -"class=\"guisubmenu\">System Tools</span> ▸ <span " -"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span " -"class=\"application\">Root Terminal</span>." +"Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" +"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class=" +"\"application\">Root Terminal</span>." msgstr "" #. type: Bullet: '1. ' @@ -251,8 +253,9 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[Download the *.img* file from our development " -"server](https://nightly.tails.boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/build-artifacts/)." +"[Download the *.img* file from our development server](https://nightly.tails." +"boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/" +"build-artifacts/)." msgstr "" #. type: Bullet: '1. ' @@ -285,14 +288,11 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" If you cannot do an automatic upgrade or if Tails fails to start after " -"an\n" +" If you cannot do an automatic upgrade or if Tails fails to start after an\n" " automatic upgrade, please try to do a [[manual upgrade|doc/upgrade#manual]].\n" msgstr "" -" Si no puedes hacer una actualizar automática o si Tails falla al iniciar " -"despues de una\n" -" actualización automática, por favor intenta hacer una [[actualización " -"manual|doc/upgrade#manual]].\n" +" Si no puedes hacer una actualizar automática o si Tails falla al iniciar despues de una\n" +" actualización automática, por favor intenta hacer una [[actualización manual|doc/upgrade#manual]].\n" #. type: Plain text msgid "- Download Tails 3.12:" @@ -325,7 +325,6 @@ msgstr "" #, no-wrap msgid "" "We need your help and there are many ways to [[contribute to\n" -"Tails|contribute]] (<a " -"href=\"https://tails.boum.org/donate/?r=3.12\">donating</a> is only one of\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=3.12\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" diff --git a/wiki/src/news/version_3.12.fa.po b/wiki/src/news/version_3.12.fa.po index 510deac280453cf8b54a0c171e272a615d1329ab..9fb7130c385b3b421ffe92efc3fc68901b05cbf9 100644 --- a/wiki/src/news/version_3.12.fa.po +++ b/wiki/src/news/version_3.12.fa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-01-29 18:12+0100\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2019-03-04 03:04+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 "" -"This release fixes [[many security " -"vulnerabilities|security/Numerous_security_holes_in_3.11]]. You should " -"upgrade as soon as possible." +"This release fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_3.11]]. You should upgrade as soon as possible." msgstr "" #. type: Plain text @@ -59,6 +58,12 @@ msgstr "" msgid "New features" msgstr "" +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "<a id=\"known-issues\"></a>\n" +msgid "<a id=\"usb-images\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New installation methods" @@ -106,7 +111,8 @@ msgid "" msgstr "" #. type: Plain text -msgid "We are still providing ISO images for people using DVDs or virtual machines." +msgid "" +"We are still providing ISO images for people using DVDs or virtual machines." msgstr "" #. type: Plain text @@ -138,8 +144,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Update Linux to 4.19. Update Intel and AMD microcodes and most firmware " -"packages. This should improve the support for newer hardware (graphics, " -"Wi-Fi, etc.)." +"packages. This should improve the support for newer hardware (graphics, Wi-" +"Fi, etc.)." msgstr "" #. type: Plain text @@ -152,8 +158,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Update *Thunderbird* to " -"[60.4.0](https://www.thunderbird.net/en-US/thunderbird/60.4.0/releasenotes/)." +"Update *Thunderbird* to [60.4.0](https://www.thunderbird.net/en-US/" +"thunderbird/60.4.0/releasenotes/)." msgstr "" #. type: Title ## @@ -163,14 +169,14 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Fix the black screen when starting Tails with some Intel graphics " -"cards. ([[!tails_ticket 16224]])" +"Fix the black screen when starting Tails with some Intel graphics cards. ([[!" +"tails_ticket 16224]])" msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" #. type: Plain text @@ -189,9 +195,7 @@ msgstr "" #. type: Title ### #, no-wrap -msgid "" -"Tails fails to start a second time on some computers ([[!tails_ticket " -"16389]])" +msgid "Tails fails to start a second time on some computers ([[!tails_ticket 16389]])" msgstr "" #. type: Plain text @@ -207,8 +211,7 @@ msgid "" "We are still investigating the issue, so if it happens to you, please\n" "report your findings by email to <tails-testers@boum.org>. Mention the\n" "model of the computer and the USB stick. This mailing\n" -"list is [archived " -"publicly](https://lists.autistici.org/list/tails-testers.html).\n" +"list is [archived publicly](https://lists.autistici.org/list/tails-testers.html).\n" msgstr "" #. type: Plain text @@ -221,17 +224,16 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Start Tails for the first time and [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"Start Tails for the first time and [[set up an administration password|doc/" +"first_steps/startup_options/administration_password]]." msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose <span class=\"menuchoice\"> <span " -"class=\"guimenu\">Applications</span> ▸ <span " -"class=\"guisubmenu\">System Tools</span> ▸ <span " -"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span " -"class=\"application\">Root Terminal</span>." +"Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" +"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class=" +"\"application\">Root Terminal</span>." msgstr "" #. type: Bullet: '1. ' @@ -249,8 +251,9 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[Download the *.img* file from our development " -"server](https://nightly.tails.boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/build-artifacts/)." +"[Download the *.img* file from our development server](https://nightly.tails." +"boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/" +"build-artifacts/)." msgstr "" #. type: Bullet: '1. ' @@ -282,8 +285,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" If you cannot do an automatic upgrade or if Tails fails to start after " -"an\n" +" If you cannot do an automatic upgrade or if Tails fails to start after an\n" " automatic upgrade, please try to do a [[manual upgrade|doc/upgrade#manual]].\n" msgstr "" @@ -316,7 +318,6 @@ msgstr "" #, no-wrap msgid "" "We need your help and there are many ways to [[contribute to\n" -"Tails|contribute]] (<a " -"href=\"https://tails.boum.org/donate/?r=3.12\">donating</a> is only one of\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=3.12\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" diff --git a/wiki/src/news/version_3.12.fr.po b/wiki/src/news/version_3.12.fr.po index 1899a68ff69d7fe4b4a4df6ae8e5581cfe5e539c..0a2aefa4e2ab7eec00deed3d333cfb3f97ef8059 100644 --- a/wiki/src/news/version_3.12.fr.po +++ b/wiki/src/news/version_3.12.fr.po @@ -6,16 +6,16 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-02-01 16:09+0000\n" -"PO-Revision-Date: 2019-11-16 15:50+0000\n" -"Last-Translator: xin <xin@riseup.net>\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: 2020-01-10 17:26+0000\n" +"Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -39,11 +39,12 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"This release fixes [[many security vulnerabilities|security/Numerous_security_holes_in_3.11]]. You " -"should upgrade as soon as possible." +"This release fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_3.11]]. You should upgrade as soon as possible." msgstr "" -"Cette version corrige [[plusieurs failles de sécurité|security/Numerous_security_holes_in_3.11]]. Vous " -"devriez mettre à jour dès que possible." +"Cette version corrige [[plusieurs failles de sécurité|security/" +"Numerous_security_holes_in_3.11]]. Vous devriez mettre à jour dès que " +"possible." #. type: Plain text #, no-wrap @@ -60,65 +61,81 @@ msgstr "Changements" msgid "New features" msgstr "Nouvelles fonctionnalités" +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "<a id=\"known-issues\"></a>\n" +msgid "<a id=\"usb-images\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New installation methods" msgstr "Nouvelles méthodes d'installation" #. type: Plain text -msgid "The biggest news for 3.12 is that we completely changed the installation methods for Tails." +msgid "" +"The biggest news for 3.12 is that we completely changed the installation " +"methods for Tails." msgstr "" -"La grande nouveauté de la version 3.12 c'est que nous avons complètement changé les méthodes " -"d'installation de Tails." +"La grande nouveauté de la version 3.12 c'est que nous avons complètement " +"changé les méthodes d'installation de Tails." #. type: Plain text msgid "" -"In short, instead of downloading an ISO image (a format originally designed for CDs), you now download " -"Tails as a **USB image**: an image of the data as it needs to be written to the USB stick." +"In short, instead of downloading an ISO image (a format originally designed " +"for CDs), you now download Tails as a **USB image**: an image of the data as " +"it needs to be written to the USB stick." msgstr "" -"En résumé, au lieu de télécharger une image ISO (un format initialement conçu pour les CD), vous " -"téléchargez désormais une **image USB** Tails : une image des données telles quelles ont besoin d'être " -"écrites sur la clé USB." +"En résumé, au lieu de télécharger une image ISO (un format initialement " +"conçu pour les CD), vous téléchargez désormais une **image USB** Tails : une " +"image des données telles quelles ont besoin d'être écrites sur la clé USB." #. type: Bullet: '- ' msgid "" -"[[For macOS|install/mac/usb-overview]], the new method is much simpler as it uses a graphical tool " -"([*Etcher*](https://www.balena.io/etcher/)) instead of the command line." +"[[For macOS|install/mac/usb-overview]], the new method is much simpler as it " +"uses a graphical tool ([*Etcher*](https://www.balena.io/etcher/)) instead of " +"the command line." msgstr "" -"[[Pour macOS|install/mac/usb-overview]], la nouvelle méthode est plus simple car elle utilise un outil " -"graphique ([*Etcher*](https://www.balena.io/etcher/)) au lieu de la ligne de commande." +"[[Pour macOS|install/mac/usb-overview]], la nouvelle méthode est plus simple " +"car elle utilise un outil graphique ([*Etcher*](https://www.balena.io/" +"etcher/)) au lieu de la ligne de commande." #. type: Bullet: '- ' msgid "" -"[[For Windows|install/win/usb-overview]], the new method is much faster as it doesn't require 2 USB " -"sticks and an intermediary Tails anymore. The resulting USB stick also works better on newer computers " -"with UEFI." +"[[For Windows|install/win/usb-overview]], the new method is much faster as " +"it doesn't require 2 USB sticks and an intermediary Tails anymore. The " +"resulting USB stick also works better on newer computers with UEFI." msgstr "" -"[[Pour Windows|install/win/usb-overview]], la nouvelle méthode est plus rapide car elle ne nécessite " -"plus 2 clés USB et un Tails intermédiaire. La clé USB résultante marche mieux sur des ordinateurs " -"récents avec UEFI." +"[[Pour Windows|install/win/usb-overview]], la nouvelle méthode est plus " +"rapide car elle ne nécessite plus 2 clés USB et un Tails intermédiaire. La " +"clé USB résultante marche mieux sur des ordinateurs récents avec UEFI." #. type: Bullet: '- ' msgid "" -"[[For Debian and Ubuntu|install/linux/usb-overview]], the new method uses a native application (*GNOME " -"Disks*) and you don't have to install *Tails Installer* anymore." +"[[For Debian and Ubuntu|install/linux/usb-overview]], the new method uses a " +"native application (*GNOME Disks*) and you don't have to install *Tails " +"Installer* anymore." msgstr "" -"[[Pour Debian et Ubuntu|install/linux/usb-overview]], la nouvelle méthode utilise une application " -"native (*GNOME Disques*) et vous n'avez plus besoin d'installer l'*installeur de Tails*." +"[[Pour Debian et Ubuntu|install/linux/usb-overview]], la nouvelle méthode " +"utilise une application native (*GNOME Disques*) et vous n'avez plus besoin " +"d'installer l'*installeur de Tails*." #. type: Bullet: '- ' msgid "" -"[[For other Linux distributions|install/linux/usb-overview]], the new method is faster as it doesn't " -"require 2 USB sticks and an intermediary Tails anymore." +"[[For other Linux distributions|install/linux/usb-overview]], the new method " +"is faster as it doesn't require 2 USB sticks and an intermediary Tails " +"anymore." msgstr "" -"[[Pour les autres distributions Linux|install/linux/usb-overview]], la nouvelle méthode est plus rapide " -"car elle ne nécessite plus 2 clés USB et un Tails intermédiaire." +"[[Pour les autres distributions Linux|install/linux/usb-overview]], la " +"nouvelle méthode est plus rapide car elle ne nécessite plus 2 clés USB et un " +"Tails intermédiaire." #. type: Plain text -msgid "We are still providing ISO images for people using DVDs or virtual machines." +msgid "" +"We are still providing ISO images for people using DVDs or virtual machines." msgstr "" -"Nous continuons de fournir des images ISO pour les personnes utilisant des DVD ou des machines " -"virtuelles." +"Nous continuons de fournir des images ISO pour les personnes utilisant des " +"DVD ou des machines virtuelles." #. type: Plain text msgid "The methods for upgrading Tails remain the same." @@ -130,18 +147,21 @@ msgid "Upgrades and changes" msgstr "Mises à jour et changements" #. type: Bullet: '- ' -msgid "Starting Tails should be a bit faster on most machines. ([[!tails_ticket 15915]])" -msgstr "" -"Le démarrage de Tails devrait être un peu plus rapide sur la plupart des machines. ([[!tails_ticket " +msgid "" +"Starting Tails should be a bit faster on most machines. ([[!tails_ticket " "15915]])" +msgstr "" +"Le démarrage de Tails devrait être un peu plus rapide sur la plupart des " +"machines. ([[!tails_ticket 15915]])" #. type: Bullet: '- ' msgid "" -"Tell users to use <span class=\"command\">sudo</span> when they try to use <span class=\"command\">su</" -"span> on the command line." +"Tell users to use <span class=\"command\">sudo</span> when they try to use " +"<span class=\"command\">su</span> on the command line." msgstr "" -"Information aux personnes essayant d'utiliser <span class=\"command\">su</span> en ligne de commande " -"qu'elles devraient utiliser <span class=\"command\">sudo</span>." +"Information aux personnes essayant d'utiliser <span class=\"command\">su</" +"span> en ligne de commande qu'elles devraient utiliser <span class=\"command" +"\">sudo</span>." #. type: Title ### #, no-wrap @@ -150,16 +170,19 @@ msgstr "Logiciels inclus" #. type: Bullet: '- ' msgid "" -"Update Linux to 4.19. Update Intel and AMD microcodes and most firmware packages. This should improve " -"the support for newer hardware (graphics, Wi-Fi, etc.)." -msgstr "" -"Mise à jour de Linux vers la version 4.19. Mise à jour des microcodes Intel et AMD et de la plupart des " -"paquets de micrologiciels. Cela devrait améliorer le support du nouveau matériel (cartes graphiques, Wi-" +"Update Linux to 4.19. Update Intel and AMD microcodes and most firmware " +"packages. This should improve the support for newer hardware (graphics, Wi-" "Fi, etc.)." +msgstr "" +"Mise à jour de Linux vers la version 4.19. Mise à jour des microcodes Intel " +"et AMD et de la plupart des paquets de micrologiciels. Cela devrait " +"améliorer le support du nouveau matériel (cartes graphiques, Wi-Fi, etc.)." #. type: Plain text msgid "- Remove *Liferea*, as announced in [[Tails 3.9|news/version_3.9]]." -msgstr "- Suppression de *Liferea*, comme annoncé dans [[Tails 3.9|news/version_3.9]]." +msgstr "" +"- Suppression de *Liferea*, comme annoncé dans [[Tails 3.9|news/" +"version_3.9]]." #. type: Plain text msgid "- Update *Tor Browser* to 8.0.5." @@ -167,10 +190,11 @@ msgstr "- Mise à jour du *navigateur Tor* vers la version 8.0.5." #. type: Bullet: '- ' msgid "" -"Update *Thunderbird* to [60.4.0](https://www.thunderbird.net/en-US/thunderbird/60.4.0/releasenotes/)." -msgstr "" -"Mise à jour de *Thunderbird* vers la version [60.4.0](https://www.thunderbird.net/en-US/" +"Update *Thunderbird* to [60.4.0](https://www.thunderbird.net/en-US/" "thunderbird/60.4.0/releasenotes/)." +msgstr "" +"Mise à jour de *Thunderbird* vers la version [60.4.0](https://www." +"thunderbird.net/en-US/thunderbird/60.4.0/releasenotes/)." #. type: Title ## #, no-wrap @@ -178,15 +202,20 @@ msgid "Fixed problems" msgstr "Problèmes résolus" #. type: Bullet: '- ' -msgid "Fix the black screen when starting Tails with some Intel graphics cards. ([[!tails_ticket 16224]])" -msgstr "" -"Corrige l'écran noir lors du démarrage de Tails avec certaines cartes graphiques Intel. ([[!" +msgid "" +"Fix the black screen when starting Tails with some Intel graphics cards. ([[!" "tails_ticket 16224]])" +msgstr "" +"Corrige l'écran noir lors du démarrage de Tails avec certaines cartes " +"graphiques Intel. ([[!tails_ticket 16224]])" #. type: Plain text -msgid "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog\"]]." +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -200,7 +229,9 @@ msgstr "Problèmes connus" #. type: Plain text msgid "See also the list of [[long-standing issues|support/known_issues]]." -msgstr "Voir également la liste de nos [[problèmes connus de longue date|support/known_issues]]." +msgstr "" +"Voir également la liste de nos [[problèmes connus de longue date|support/" +"known_issues]]." #. type: Title ### #, no-wrap @@ -209,13 +240,14 @@ msgstr "Tails n'arrive pas à démarrer une seconde fois sur certains ordinateur #. type: Plain text msgid "" -"On some computers, after installing Tails to a USB stick, Tails starts a first time but fails to start " -"a second time. In some cases, only BIOS (Legacy) was affected and the USB stick was not listed in the " -"Boot Menu." +"On some computers, after installing Tails to a USB stick, Tails starts a " +"first time but fails to start a second time. In some cases, only BIOS " +"(Legacy) was affected and the USB stick was not listed in the Boot Menu." msgstr "" -"Sur certains ordinateurs, après l'installation de Tails sur une clé USB, Tails démarre une première " -"fois mais n'arrive pas à démarrer une deuxième fois. Dans certains cas, seul le BIOS (Legacy) est " -"affecté et la clé USB n'est pas listée dans le menu de démarrage." +"Sur certains ordinateurs, après l'installation de Tails sur une clé USB, " +"Tails démarre une première fois mais n'arrive pas à démarrer une deuxième " +"fois. Dans certains cas, seul le BIOS (Legacy) est affecté et la clé USB " +"n'est pas listée dans le menu de démarrage." #. type: Plain text #, no-wrap @@ -240,23 +272,23 @@ 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]]." +"Start Tails for the first time and [[set up an administration password|doc/" +"first_steps/startup_options/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émarrez Tails une première fois et [[définissez un mot de passe " +"d'administration|doc/first_steps/startup_options/administration_password]]." #. type: Bullet: '1. ' msgid "" -"Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</span> ▸ <span class=" -"\"guisubmenu\">System Tools</span> ▸ <span class=\"guimenuitem\">Root Terminal</span> </span> to " -"open a <span class=\"application\">Root Terminal</span>." +"Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" +"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class=" +"\"application\">Root Terminal</span>." msgstr "" -"Choisissez <span class=\"menuchoice\"> <span class=\"guimenu\"" -">Applications</span> ▸ <span class=\"guisubmenu\">Outils " -"système</span> ▸ <span class=\"guimenuitem\">Terminal " -"superutilisateur</span> </span> pour ouvrir un <span class=\"application\">" -"Terminal superutilisateur</span>." +"Choisissez <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" +"span> ▸ <span class=\"guisubmenu\">Outils système</span> ▸ <span " +"class=\"guimenuitem\">Terminal superutilisateur</span> </span> pour ouvrir " +"un <span class=\"application\">Terminal superutilisateur</span>." #. type: Bullet: '1. ' msgid "Execute the following command:" @@ -273,11 +305,13 @@ msgstr "Vous pouvez également tester une image expérimentale :" #. type: Bullet: '1. ' msgid "" -"[Download the *.img* file from our development server](https://nightly.tails.boum.org/" -"build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/build-artifacts/)." +"[Download the *.img* file from our development server](https://nightly.tails." +"boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/" +"build-artifacts/)." msgstr "" -"[Téléchargez le fichier *.img* depuis notre serveur de développement](https://nightly.tails.boum.org/" -"build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/build-artifacts/)." +"[Téléchargez le fichier *.img* depuis notre serveur de développement]" +"(https://nightly.tails.boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/" +"lastSuccessful/archive/build-artifacts/)." #. type: Bullet: '1. ' msgid "Install it using the same installation methods." @@ -299,13 +333,16 @@ msgstr "Obtenir Tails 3.12" #. type: Plain text msgid "- To install, follow our [[installation instructions|install]]." -msgstr "- Pour l'installer, suivez nos [[instructions d'installation|install]]." +msgstr "" +"- Pour l'installer, suivez nos [[instructions d'installation|install]]." #. type: Plain text -msgid "- To upgrade, automatic upgrades are available from 3.10, 3.10.1, 3.11, and 3.12~rc1 to 3.12." +msgid "" +"- To upgrade, automatic upgrades are available from 3.10, 3.10.1, 3.11, and " +"3.12~rc1 to 3.12." msgstr "" -"- Pour mettre à jour, des mises à jour automatiques sont disponibles depuis les versions 3.10, 3.10.1, " -"3.11 et 3.12~rc1 vers la version 3.12." +"- Pour mettre à jour, des mises à jour automatiques sont disponibles depuis " +"les versions 3.10, 3.10.1, 3.11 et 3.12~rc1 vers la version 3.12." #. type: Plain text #, no-wrap @@ -340,7 +377,8 @@ msgstr "Tails 3.13 est [[prévu|contribute/calendar]] pour le 19 mars." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.12.id.po b/wiki/src/news/version_3.12.id.po index 16f875f615827530967227ff837583ff9c5634e9..9142c788ecc6ce69f500280daab6a82a2ebfc1a4 100644 --- a/wiki/src/news/version_3.12.id.po +++ b/wiki/src/news/version_3.12.id.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-01-29 18:12+0100\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -30,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -46,7 +46,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap @@ -58,6 +58,11 @@ msgstr "" msgid "New features" msgstr "" +#. type: Plain text +#, no-wrap +msgid "<a id=\"usb-images\"></a>\n" +msgstr "" + #. type: Title ### #, no-wrap msgid "New installation methods" diff --git a/wiki/src/news/version_3.12.it.po b/wiki/src/news/version_3.12.it.po index c3c74719df8832c2bd002dd4ca9acc30c55d06aa..8cc778169dcef35bfd5b7b1d4ab58555e0cc7cba 100644 --- a/wiki/src/news/version_3.12.it.po +++ b/wiki/src/news/version_3.12.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-01-29 18:12+0100\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2019-03-04 03:04+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 "" -"This release fixes [[many security " -"vulnerabilities|security/Numerous_security_holes_in_3.11]]. You should " -"upgrade as soon as possible." +"This release fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_3.11]]. You should upgrade as soon as possible." msgstr "" #. type: Plain text @@ -59,6 +58,12 @@ msgstr "Cambi" msgid "New features" msgstr "Nuove funzionalità" +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "<a id=\"known-issues\"></a>\n" +msgid "<a id=\"usb-images\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New installation methods" @@ -106,7 +111,8 @@ msgid "" msgstr "" #. type: Plain text -msgid "We are still providing ISO images for people using DVDs or virtual machines." +msgid "" +"We are still providing ISO images for people using DVDs or virtual machines." msgstr "" #. type: Plain text @@ -138,8 +144,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Update Linux to 4.19. Update Intel and AMD microcodes and most firmware " -"packages. This should improve the support for newer hardware (graphics, " -"Wi-Fi, etc.)." +"packages. This should improve the support for newer hardware (graphics, Wi-" +"Fi, etc.)." msgstr "" #. type: Plain text @@ -152,8 +158,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Update *Thunderbird* to " -"[60.4.0](https://www.thunderbird.net/en-US/thunderbird/60.4.0/releasenotes/)." +"Update *Thunderbird* to [60.4.0](https://www.thunderbird.net/en-US/" +"thunderbird/60.4.0/releasenotes/)." msgstr "" #. type: Title ## @@ -163,14 +169,14 @@ msgstr "Problemi risolti" #. type: Bullet: '- ' msgid "" -"Fix the black screen when starting Tails with some Intel graphics " -"cards. ([[!tails_ticket 16224]])" +"Fix the black screen when starting Tails with some Intel graphics cards. ([[!" +"tails_ticket 16224]])" msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" "Per maggiori dettagli, leggi il nostro [[!tails_gitweb debian/changelog desc=" "\"changelog\"]]." @@ -191,9 +197,7 @@ msgstr "" #. type: Title ### #, no-wrap -msgid "" -"Tails fails to start a second time on some computers ([[!tails_ticket " -"16389]])" +msgid "Tails fails to start a second time on some computers ([[!tails_ticket 16389]])" msgstr "" #. type: Plain text @@ -209,8 +213,7 @@ msgid "" "We are still investigating the issue, so if it happens to you, please\n" "report your findings by email to <tails-testers@boum.org>. Mention the\n" "model of the computer and the USB stick. This mailing\n" -"list is [archived " -"publicly](https://lists.autistici.org/list/tails-testers.html).\n" +"list is [archived publicly](https://lists.autistici.org/list/tails-testers.html).\n" msgstr "" #. type: Plain text @@ -223,17 +226,16 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Start Tails for the first time and [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"Start Tails for the first time and [[set up an administration password|doc/" +"first_steps/startup_options/administration_password]]." msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose <span class=\"menuchoice\"> <span " -"class=\"guimenu\">Applications</span> ▸ <span " -"class=\"guisubmenu\">System Tools</span> ▸ <span " -"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span " -"class=\"application\">Root Terminal</span>." +"Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" +"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class=" +"\"application\">Root Terminal</span>." msgstr "" #. type: Bullet: '1. ' @@ -251,8 +253,9 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[Download the *.img* file from our development " -"server](https://nightly.tails.boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/build-artifacts/)." +"[Download the *.img* file from our development server](https://nightly.tails." +"boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/" +"build-artifacts/)." msgstr "" #. type: Bullet: '1. ' @@ -285,14 +288,11 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" If you cannot do an automatic upgrade or if Tails fails to start after " -"an\n" +" If you cannot do an automatic upgrade or if Tails fails to start after an\n" " automatic upgrade, please try to do a [[manual upgrade|doc/upgrade#manual]].\n" msgstr "" -" Se non potete fare un aggiornamento automatico o se Tails non viene " -"avviato dopo un\n" -" aggiornamento automatico, provate a fare un [[aggiornamento " -"manuale|doc/upgrade#manual]].\n" +" Se non potete fare un aggiornamento automatico o se Tails non viene avviato dopo un\n" +" aggiornamento automatico, provate a fare un [[aggiornamento manuale|doc/upgrade#manual]].\n" #. type: Plain text msgid "- Download Tails 3.12:" @@ -323,7 +323,6 @@ msgstr "Dai uno sguardo alla [[!tails_roadmap]] per sapere a cosa puntiamo." #, no-wrap msgid "" "We need your help and there are many ways to [[contribute to\n" -"Tails|contribute]] (<a " -"href=\"https://tails.boum.org/donate/?r=3.12\">donating</a> is only one of\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=3.12\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" diff --git a/wiki/src/news/version_3.12.mdwn b/wiki/src/news/version_3.12.mdwn index 0ead1356508a5f8bb48bf5b4c790d0502d730c18..d5e3febc71d9493dc237614ac1427d2d379f513d 100644 --- a/wiki/src/news/version_3.12.mdwn +++ b/wiki/src/news/version_3.12.mdwn @@ -12,6 +12,8 @@ vulnerabilities|security/Numerous_security_holes_in_3.11]]. You should upgrade a ## New features +<a id="usb-images"></a> + ### New installation methods The biggest news for 3.12 is that we completely changed the installation diff --git a/wiki/src/news/version_3.12.pl.po b/wiki/src/news/version_3.12.pl.po index d51fe6f41d03ac1eff18b27a20677034a99ad7e4..535e4851b2521fccfffe051e1e229a5d79f602e9 100644 --- a/wiki/src/news/version_3.12.pl.po +++ b/wiki/src/news/version_3.12.pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-01-29 18:12+0100\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2019-03-04 03:04+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -59,6 +59,11 @@ msgstr "" msgid "New features" msgstr "" +#. type: Plain text +#, fuzzy, no-wrap +msgid "<a id=\"usb-images\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New installation methods" diff --git a/wiki/src/news/version_3.12.pt.po b/wiki/src/news/version_3.12.pt.po index 1037261a9b79f4ab535c05bc1fd72850b0bee863..cc5e9ac597e1a9b25f5ee39265c76807ea496e8a 100644 --- a/wiki/src/news/version_3.12.pt.po +++ b/wiki/src/news/version_3.12.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-01-29 18:12+0100\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2019-03-04 03:04+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 "" -"This release fixes [[many security " -"vulnerabilities|security/Numerous_security_holes_in_3.11]]. You should " -"upgrade as soon as possible." +"This release fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_3.11]]. You should upgrade as soon as possible." msgstr "" #. type: Plain text @@ -59,6 +58,12 @@ msgstr "Mudanças" msgid "New features" msgstr "Novos recursos" +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "<a id=\"known-issues\"></a>\n" +msgid "<a id=\"usb-images\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New installation methods" @@ -106,7 +111,8 @@ msgid "" msgstr "" #. type: Plain text -msgid "We are still providing ISO images for people using DVDs or virtual machines." +msgid "" +"We are still providing ISO images for people using DVDs or virtual machines." msgstr "" #. type: Plain text @@ -138,8 +144,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Update Linux to 4.19. Update Intel and AMD microcodes and most firmware " -"packages. This should improve the support for newer hardware (graphics, " -"Wi-Fi, etc.)." +"packages. This should improve the support for newer hardware (graphics, Wi-" +"Fi, etc.)." msgstr "" #. type: Plain text @@ -152,8 +158,8 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Update *Thunderbird* to " -"[60.4.0](https://www.thunderbird.net/en-US/thunderbird/60.4.0/releasenotes/)." +"Update *Thunderbird* to [60.4.0](https://www.thunderbird.net/en-US/" +"thunderbird/60.4.0/releasenotes/)." msgstr "" #. type: Title ## @@ -163,17 +169,17 @@ msgstr "Problemas resolvidos" #. type: Bullet: '- ' msgid "" -"Fix the black screen when starting Tails with some Intel graphics " -"cards. ([[!tails_ticket 16224]])" +"Fix the black screen when starting Tails with some Intel graphics cards. ([[!" +"tails_ticket 16224]])" msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"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 #, no-wrap @@ -191,9 +197,7 @@ msgstr "" #. type: Title ### #, no-wrap -msgid "" -"Tails fails to start a second time on some computers ([[!tails_ticket " -"16389]])" +msgid "Tails fails to start a second time on some computers ([[!tails_ticket 16389]])" msgstr "" #. type: Plain text @@ -209,8 +213,7 @@ msgid "" "We are still investigating the issue, so if it happens to you, please\n" "report your findings by email to <tails-testers@boum.org>. Mention the\n" "model of the computer and the USB stick. This mailing\n" -"list is [archived " -"publicly](https://lists.autistici.org/list/tails-testers.html).\n" +"list is [archived publicly](https://lists.autistici.org/list/tails-testers.html).\n" msgstr "" #. type: Plain text @@ -223,17 +226,16 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Start Tails for the first time and [[set up an administration " -"password|doc/first_steps/startup_options/administration_password]]." +"Start Tails for the first time and [[set up an administration password|doc/" +"first_steps/startup_options/administration_password]]." msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose <span class=\"menuchoice\"> <span " -"class=\"guimenu\">Applications</span> ▸ <span " -"class=\"guisubmenu\">System Tools</span> ▸ <span " -"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span " -"class=\"application\">Root Terminal</span>." +"Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" +"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class=" +"\"application\">Root Terminal</span>." msgstr "" #. type: Bullet: '1. ' @@ -251,8 +253,9 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"[Download the *.img* file from our development " -"server](https://nightly.tails.boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/build-artifacts/)." +"[Download the *.img* file from our development server](https://nightly.tails." +"boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/" +"build-artifacts/)." msgstr "" #. type: Bullet: '1. ' @@ -284,8 +287,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" If you cannot do an automatic upgrade or if Tails fails to start after " -"an\n" +" If you cannot do an automatic upgrade or if Tails fails to start after an\n" " automatic upgrade, please try to do a [[manual upgrade|doc/upgrade#manual]].\n" msgstr "" @@ -318,7 +320,6 @@ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." #, no-wrap msgid "" "We need your help and there are many ways to [[contribute to\n" -"Tails|contribute]] (<a " -"href=\"https://tails.boum.org/donate/?r=3.12\">donating</a> is only one of\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=3.12\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" diff --git a/wiki/src/news/version_3.12.ru.po b/wiki/src/news/version_3.12.ru.po index fa44e6fc6db11c2812064785b509728eb0795cc8..90d0134891da2cc8523c3b61d96b14e22b40493c 100644 --- a/wiki/src/news/version_3.12.ru.po +++ b/wiki/src/news/version_3.12.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-01-29 18:12+0100\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2019-03-04 03:04+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 2.19.1\n" #. type: Plain text @@ -59,6 +59,11 @@ msgstr "" msgid "New features" msgstr "" +#. type: Plain text +#, fuzzy, no-wrap +msgid "<a id=\"usb-images\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + #. type: Title ### #, no-wrap msgid "New installation methods" diff --git a/wiki/src/news/version_3.12.sr_Latn.po b/wiki/src/news/version_3.12.sr_Latn.po index b250a059a38cc8ebe53b91e7febbc0cebd51cdf4..dac9311d89fe6c5d7279e97963bf695a4f65a967 100644 --- a/wiki/src/news/version_3.12.sr_Latn.po +++ b/wiki/src/news/version_3.12.sr_Latn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-01-29 18:12+0100\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -57,6 +57,11 @@ msgstr "" msgid "New features" msgstr "" +#. type: Plain text +#, no-wrap +msgid "<a id=\"usb-images\"></a>\n" +msgstr "" + #. type: Title ### #, no-wrap msgid "New installation methods" diff --git a/wiki/src/news/version_3.12.tr.po b/wiki/src/news/version_3.12.tr.po index 666c5bce3a8621b037a5a005460afdfb50d4bd75..1d2d1c9b64b43cdb4fd545f220c6875e95539855 100644 --- a/wiki/src/news/version_3.12.tr.po +++ b/wiki/src/news/version_3.12.tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-01-29 18:12+0100\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2019-03-04 03:04+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -58,6 +58,11 @@ msgstr "" msgid "New features" msgstr "" +#. type: Plain text +#, no-wrap +msgid "<a id=\"usb-images\"></a>\n" +msgstr "" + #. type: Title ### #, no-wrap msgid "New installation methods" diff --git a/wiki/src/news/version_3.12.zh.po b/wiki/src/news/version_3.12.zh.po index 6850e5f95ba2365e32c0aa5865b3e79f8a1319ab..99b50258fcff1218e05a03a25420922af1c390f0 100644 --- a/wiki/src/news/version_3.12.zh.po +++ b/wiki/src/news/version_3.12.zh.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-01-29 18:12+0100\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2019-03-04 03:04+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -58,6 +58,11 @@ msgstr "" msgid "New features" msgstr "" +#. type: Plain text +#, no-wrap +msgid "<a id=\"usb-images\"></a>\n" +msgstr "" + #. type: Title ### #, no-wrap msgid "New installation methods" diff --git a/wiki/src/news/version_3.12.zh_TW.po b/wiki/src/news/version_3.12.zh_TW.po index d5fe64410559d4f45ff4d76152d141c3a618f746..5b6b9d1e45dc0574c18769b0897c0e00a62a5d1e 100644 --- a/wiki/src/news/version_3.12.zh_TW.po +++ b/wiki/src/news/version_3.12.zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-01-29 18:12+0100\n" +"POT-Creation-Date: 2019-12-10 18:44+0000\n" "PO-Revision-Date: 2019-03-04 03:04+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -58,6 +58,11 @@ msgstr "" msgid "New features" msgstr "新功能" +#. type: Plain text +#, no-wrap +msgid "<a id=\"usb-images\"></a>\n" +msgstr "" + #. type: Title ### #, no-wrap msgid "New installation methods" diff --git a/wiki/src/news/version_3.13.1.fa.po b/wiki/src/news/version_3.13.1.fa.po index afe399c3ace3140b0ba9625be724d14bd663976b..bce4d6bf9c24ea0dfdbb322bd80e2dfd37be63c1 100644 --- a/wiki/src/news/version_3.13.1.fa.po +++ b/wiki/src/news/version_3.13.1.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-03-23 09:03+0100\n" -"PO-Revision-Date: 2019-10-23 08:15+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" "Language: fa\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -88,7 +88,7 @@ msgstr "<a id=\"known-issues\"></a>\n" #. type: Title # #, no-wrap msgid "Known issues" -msgstr "" +msgstr "مشکلات شناساییشده" #. type: Title ### #, no-wrap diff --git a/wiki/src/news/version_3.13.1.fr.po b/wiki/src/news/version_3.13.1.fr.po index 0d4768978322c985e009d563a5a4cbcda38b592b..09ec734352c533136f39b1b0ede95d1ce457c375 100644 --- a/wiki/src/news/version_3.13.1.fr.po +++ b/wiki/src/news/version_3.13.1.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2019-05-18 09:54+0200\n" -"PO-Revision-Date: 2019-11-16 15:50+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -83,8 +83,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -291,8 +291,8 @@ msgstr "Tails 3.14 est [[prévu|contribute/calendar]] pour le 14 mai." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.13.1.id.po b/wiki/src/news/version_3.13.1.id.po index 5a1a43b6e228d3584ee3009e5a8cea5f67485055..c27f6685d43b9fbded952c5668acd999cc2a1331 100644 --- a/wiki/src/news/version_3.13.1.id.po +++ b/wiki/src/news/version_3.13.1.id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-03-23 09:03+0100\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -30,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -52,7 +52,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.13.2.fa.po b/wiki/src/news/version_3.13.2.fa.po index f1519d3d5c0ba50ef0a1363cbd2a0dac933a39f3..1b758becceffb70d54ba253bb3bcbe1f3dd27881 100644 --- a/wiki/src/news/version_3.13.2.fa.po +++ b/wiki/src/news/version_3.13.2.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-05-14 15:34+0000\n" -"PO-Revision-Date: 2019-10-23 08:15+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" "Language: fa\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -62,7 +62,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"noscript\"></a>\n" -msgstr "" +msgstr "<a id=\"noscript\"></a>\n" #. type: Title ## #, no-wrap @@ -96,7 +96,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"caution\">\n" -msgstr "" +msgstr "<div class=\"caution\">\n" #. type: Plain text #, no-wrap @@ -424,7 +424,7 @@ msgstr "<a id=\"known-issues\"></a>\n" #. type: Title # #, no-wrap msgid "Known issues" -msgstr "" +msgstr "مشکلات شناساییشده" #. type: Title ### #, no-wrap diff --git a/wiki/src/news/version_3.13.2.fr.po b/wiki/src/news/version_3.13.2.fr.po index 7ac7ba972007c021d602a230b8ef43108fa270cd..0cc85106e65e6ed2f87e44436866e9f46ea669e6 100644 --- a/wiki/src/news/version_3.13.2.fr.po +++ b/wiki/src/news/version_3.13.2.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-05-14 15:34+0000\n" -"PO-Revision-Date: 2019-11-16 15:50+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -475,8 +475,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -697,8 +697,8 @@ msgstr "Tails 3.14 est [[prévu|contribute/calendar]] pour le 14 mai." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.13.2.id.po b/wiki/src/news/version_3.13.2.id.po index 4500750c928fa5adacfbca83863f289d0c7150d6..a99c18ff6d09ea02302d92ff3d41d6d1758ba21a 100644 --- a/wiki/src/news/version_3.13.2.id.po +++ b/wiki/src/news/version_3.13.2.id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-05-14 15:34+0000\n" -"PO-Revision-Date: 2019-10-24 10:32+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -30,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -52,7 +52,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.13.2.zh.po b/wiki/src/news/version_3.13.2.zh.po index 1892b66de00f1411c757855acb83553a2604a41e..6a30c59d793f22d59f6ba4442151812fa8934162 100644 --- a/wiki/src/news/version_3.13.2.zh.po +++ b/wiki/src/news/version_3.13.2.zh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-05-14 15:34+0000\n" -"PO-Revision-Date: 2019-11-21 13:23+0000\n" +"PO-Revision-Date: 2020-01-22 16:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -118,7 +118,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "</div>\n" -msgstr "" +msgstr "</div>\n" #. type: Title ### #, no-wrap diff --git a/wiki/src/news/version_3.13.de.po b/wiki/src/news/version_3.13.de.po index 2f630cd7363f101b414c1bc5672170a7f238fbc8..aa149b8c0db1c5ff3b0a10024f85596ae21db300 100644 --- a/wiki/src/news/version_3.13.de.po +++ b/wiki/src/news/version_3.13.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-03-19 18:48+0000\n" -"PO-Revision-Date: 2019-10-24 10:20+0000\n" +"PO-Revision-Date: 2020-01-11 10:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: de\n" @@ -15,12 +15,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta date=\"Tue, 19 Mar 2019 12:34:56 +0000\"]]\n" -msgstr "" +msgstr "[[!meta date=\"Tue, 19 Mar 2019 12:34:56 +0000\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.13.fa.po b/wiki/src/news/version_3.13.fa.po index d2f3295778faefe4bd333758b6a1dd674c51b655..c1f6c1a6b5c1a8f300ff785790bf4f8c786400b6 100644 --- a/wiki/src/news/version_3.13.fa.po +++ b/wiki/src/news/version_3.13.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-03-19 18:48+0000\n" -"PO-Revision-Date: 2019-10-23 08:15+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" "Language: fa\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -157,7 +157,7 @@ msgstr "<a id=\"known-issues\"></a>\n" #. type: Title # #, no-wrap msgid "Known issues" -msgstr "" +msgstr "مشکلات شناساییشده" #. type: Title ### #, no-wrap diff --git a/wiki/src/news/version_3.13.fr.po b/wiki/src/news/version_3.13.fr.po index e4cad4cc8c1fef7ae2f1c9f3a9d977f9ac22f6bc..25fceb058c04916a1224cebc9d54affb4996fa52 100644 --- a/wiki/src/news/version_3.13.fr.po +++ b/wiki/src/news/version_3.13.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-03-19 18:48+0000\n" -"PO-Revision-Date: 2019-11-16 15:50+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -171,8 +171,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -379,7 +379,7 @@ msgstr "Tails 3.14 est [[prévu|contribute/calendar]] pour le 14 mai." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour savoir ce " +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " "que nous avons en tête." #. type: Plain text diff --git a/wiki/src/news/version_3.13.id.po b/wiki/src/news/version_3.13.id.po index 466c81f267355e35c24056e45689ce1d7f6d040c..8691e06b8a54d4bd67445825e4a9013246ce515b 100644 --- a/wiki/src/news/version_3.13.id.po +++ b/wiki/src/news/version_3.13.id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-03-19 18:48+0000\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -30,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -46,7 +46,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.14.1.fa.po b/wiki/src/news/version_3.14.1.fa.po index 4670a6e24417d8f0753aea3dd225cc18943475d8..8eb152208c058c8773330ae07bd275ff1dbbab4e 100644 --- a/wiki/src/news/version_3.14.1.fa.po +++ b/wiki/src/news/version_3.14.1.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-06-24 16:10+0200\n" -"PO-Revision-Date: 2019-10-23 08:15+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" "Language: fa\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -121,7 +121,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"caution\">\n" -msgstr "" +msgstr "<div class=\"caution\">\n" #. type: Plain text #, no-wrap @@ -186,7 +186,7 @@ msgstr "<a id=\"known-issues\"></a>\n" #. type: Title # #, no-wrap msgid "Known issues" -msgstr "" +msgstr "مشکلات شناساییشده" #. type: Title ## #, no-wrap diff --git a/wiki/src/news/version_3.14.1.fr.po b/wiki/src/news/version_3.14.1.fr.po index 4798dcdcf1fabaadcab1a33a40cc5b48402e29b6..0842b5d10923088bbcf71f180fed26be1ca73af8 100644 --- a/wiki/src/news/version_3.14.1.fr.po +++ b/wiki/src/news/version_3.14.1.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-06-24 16:10+0200\n" -"PO-Revision-Date: 2019-11-16 15:50+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -206,8 +206,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -405,8 +405,8 @@ msgstr "Tails 3.15 est [[prévu|contribute/calendar]] pour le 9 juillet." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour savoir " -"ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.14.1.id.po b/wiki/src/news/version_3.14.1.id.po index 9a63f84db1e7947e474689e80d06a14ed882358d..b1c066d42c888fb88b44a2d57eac6a862ea160d9 100644 --- a/wiki/src/news/version_3.14.1.id.po +++ b/wiki/src/news/version_3.14.1.id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-06-24 16:10+0200\n" -"PO-Revision-Date: 2019-10-24 10:32+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -30,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -52,7 +52,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.14.1.zh.po b/wiki/src/news/version_3.14.1.zh.po index 31b72aa7600a9633941c0faf29735178febefd6a..7338429bed599e5d78fb499e9cdda06d094c787e 100644 --- a/wiki/src/news/version_3.14.1.zh.po +++ b/wiki/src/news/version_3.14.1.zh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-06-24 16:10+0200\n" -"PO-Revision-Date: 2019-11-21 13:22+0000\n" +"PO-Revision-Date: 2020-01-22 16:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -138,7 +138,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "</div>\n" -msgstr "" +msgstr "</div>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.14.2.ar.po b/wiki/src/news/version_3.14.2.ar.po index e503cc06a7acfb9a6838cd9c792dcc74b3e41e22..66ac3f7ef97bea0dcca0961cb129c2c47c1cd30e 100644 --- a/wiki/src/news/version_3.14.2.ar.po +++ b/wiki/src/news/version_3.14.2.ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-06-24 16:10+0200\n" -"PO-Revision-Date: 2019-10-22 11:31+0000\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ar\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -51,7 +51,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap @@ -80,7 +80,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"known-issues\"></a>\n" -msgstr "" +msgstr "<a id=\"known-issues\"></a>\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.14.2.fa.po b/wiki/src/news/version_3.14.2.fa.po index afb894c55f56e925e98e2c910943a9300596a89e..9e86a47bc9ed9e99c97e58db8a6a0eb0a08464aa 100644 --- a/wiki/src/news/version_3.14.2.fa.po +++ b/wiki/src/news/version_3.14.2.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-06-24 16:10+0200\n" -"PO-Revision-Date: 2019-10-23 08:16+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" "Language: fa\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -85,7 +85,7 @@ msgstr "<a id=\"known-issues\"></a>\n" #. type: Title # #, no-wrap msgid "Known issues" -msgstr "" +msgstr "مشکلات شناساییشده" #. type: Title ## #, no-wrap diff --git a/wiki/src/news/version_3.14.2.fr.po b/wiki/src/news/version_3.14.2.fr.po index 05549e9f335cfc2344b5ec2fb51da22551655b67..4b480bd73e029e3a5b532d7a9ea42bccbec20809 100644 --- a/wiki/src/news/version_3.14.2.fr.po +++ b/wiki/src/news/version_3.14.2.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-06-24 16:10+0200\n" -"PO-Revision-Date: 2019-11-16 15:50+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -82,8 +82,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog " "desc=\"changelog\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -283,8 +283,8 @@ msgstr "Tails 3.15 est [[prévu|contribute/calendar]] pour le 9 juillet." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.14.2.id.po b/wiki/src/news/version_3.14.2.id.po index cff0dec8cb2de5530f1c743e8745b726ae7e99fd..437622513f76b713b743d2ab604aed009fd939c6 100644 --- a/wiki/src/news/version_3.14.2.id.po +++ b/wiki/src/news/version_3.14.2.id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-06-24 16:10+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -30,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -50,7 +50,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.14.fa.po b/wiki/src/news/version_3.14.fa.po index 22b63b374495ffb5872582cd08dc8643c1bd5923..0bc3955a6d294268fea75624644fd588bb35e610 100644 --- a/wiki/src/news/version_3.14.fa.po +++ b/wiki/src/news/version_3.14.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-06-02 18:13+0000\n" -"PO-Revision-Date: 2019-10-23 08:15+0000\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fa\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -122,7 +122,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"noscript\"></a>\n" -msgstr "" +msgstr "<a id=\"noscript\"></a>\n" #. type: Title ## #, no-wrap @@ -180,7 +180,7 @@ msgstr "<a id=\"known-issues\"></a>\n" #. type: Title # #, no-wrap msgid "Known issues" -msgstr "" +msgstr "مشکلات شناساییشده" #. type: Title ### #, no-wrap diff --git a/wiki/src/news/version_3.14.fr.po b/wiki/src/news/version_3.14.fr.po index d1c53442a78cf2c6afafcd0a3f1f8950a87794be..a6f88da41e8de6d217784e715edd2af6b8f31840 100644 --- a/wiki/src/news/version_3.14.fr.po +++ b/wiki/src/news/version_3.14.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-06-02 18:13+0000\n" -"PO-Revision-Date: 2019-11-16 15:50+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -212,8 +212,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -411,8 +411,8 @@ msgstr "Tails 3.15 est [[prévu|contribute/calendar]] pour le 9 juillet." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.14.id.po b/wiki/src/news/version_3.14.id.po index b93dc8f654d07d025d5d9053d1a77bd470b3836a..ea88242a0ef3dc48dff5fcd5997a0125db780625 100644 --- a/wiki/src/news/version_3.14.id.po +++ b/wiki/src/news/version_3.14.id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-06-02 18:13+0000\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -30,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -46,7 +46,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.14.it.po b/wiki/src/news/version_3.14.it.po index 0b635d01c31da142ff422e2906f70e8416f6fd70..598929fb1b29618c8d11783d31a632937d1a653b 100644 --- a/wiki/src/news/version_3.14.it.po +++ b/wiki/src/news/version_3.14.it.po @@ -7,25 +7,25 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-06-02 18:13+0000\n" -"PO-Revision-Date: 2019-07-11 11:22+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" +"Last-Translator: Davide <davidesantoro@mail.ru>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta date=\"Tue, 21 May 2019 12:34:56 +0000\"]]\n" -msgstr "" +msgstr "[[!meta date=\"Tue, 21 May 2019 12:34:56 +0000\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Tails 3.14 is out\"]]\n" -msgstr "" +msgstr "[[!meta title=\"E' uscito Tails 3.14]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.15.fr.po b/wiki/src/news/version_3.15.fr.po index 2921d8eec18c151eb2c4d3d79ef38a183b82dea1..7e2350ff4dc659406c8dcda952701121b007a352 100644 --- a/wiki/src/news/version_3.15.fr.po +++ b/wiki/src/news/version_3.15.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-07-09 19:55+0200\n" -"PO-Revision-Date: 2019-07-27 17:25+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -104,8 +104,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -215,8 +215,8 @@ msgstr "Tails 3.16 est [[prévu|contribute/calendar]] pour le 3 septembre." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.15.id.po b/wiki/src/news/version_3.15.id.po index a0114c8e530a435af9e0a6eb4b4054ee7b97a77b..61ea84c39949428214edb3de8d8de8933fbfbe28 100644 --- a/wiki/src/news/version_3.15.id.po +++ b/wiki/src/news/version_3.15.id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-07-09 19:55+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -30,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -46,7 +46,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.16.fr.po b/wiki/src/news/version_3.16.fr.po index 85e2694080c2fa0e14879b25e572a54a20075ba8..674c772e72a5516072bfb76c6376f1ffde0085af 100644 --- a/wiki/src/news/version_3.16.fr.po +++ b/wiki/src/news/version_3.16.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-09-04 23:27+0200\n" -"PO-Revision-Date: 2019-09-19 11:45+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -132,8 +132,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog " "desc=\"changelog\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -245,8 +245,8 @@ msgstr "Tails 4.0 est [[prévu|contribute/calendar]] pour le 22 octobre." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.16.id.po b/wiki/src/news/version_3.16.id.po index 770e1fd4cee955f242557259b2fa9001e8dbe4c1..9a8cfa7ed4a991bad9271f74861a6d94d73a2e74 100644 --- a/wiki/src/news/version_3.16.id.po +++ b/wiki/src/news/version_3.16.id.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-09-04 23:27+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -29,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -45,7 +46,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.2.fr.po b/wiki/src/news/version_3.2.fr.po index 8e0028ff6ffa13b9db689ef3ca2604ee0fcc6e46..896d540eaf1fadcaf0bac2a9e3ead8b3795c0d40 100644 --- a/wiki/src/news/version_3.2.fr.po +++ b/wiki/src/news/version_3.2.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-07-23 17:11+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -230,8 +230,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -296,8 +296,8 @@ msgstr "Tails 3.3 est [[prévu|contribute/calendar]] pour le 14 novembre." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.2.id.po b/wiki/src/news/version_3.2.id.po index 589abd5ed98e04810eb9777fb16af9855ed299f3..426437118170a0460398f9be272222aa9722ac74 100644 --- a/wiki/src/news/version_3.2.id.po +++ b/wiki/src/news/version_3.2.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,17 +16,17 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta date=\"Tue, 26 Sep 2017 12:34:56 +0000\"]]\n" -msgstr "" +msgstr "[[!meta date=\"Tue, 26 Sep 2017 12:34:56 +0000\"]]\n" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -48,7 +48,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap @@ -81,7 +81,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[!img bookletimposer.png link=\"no\"]]\n" -msgstr "" +msgstr " [[!img bookletimposer.png link=\"no\"]]\n" #. type: Bullet: '- ' msgid "" @@ -98,7 +98,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[!img screen_keyboard.png link=\"no\"]]\n" -msgstr "" +msgstr " [[!img screen_keyboard.png link=\"no\"]]\n" #. type: Title ## #, no-wrap @@ -165,7 +165,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[!tails_ticket 11840]]\n" -msgstr "" +msgstr " [[!tails_ticket 11840]]\n" #. type: Bullet: '- ' msgid "" diff --git a/wiki/src/news/version_3.3.fr.po b/wiki/src/news/version_3.3.fr.po index 54eede733c9f8cb14539c60cc3b4fb2963274d4e..80a20d2c255e9206965eceab21968148640676a9 100644 --- a/wiki/src/news/version_3.3.fr.po +++ b/wiki/src/news/version_3.3.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-07-23 17:11+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -137,8 +137,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -217,8 +217,8 @@ msgstr "Tails 3.5 est [[prévu|contribute/calendar]] pour le 16 janvier." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.3.id.po b/wiki/src/news/version_3.3.id.po index 02da388bfa183b9b8a43d8e7131c6a5d3496f233..ae35c9af6e120893f5802a12fac2fe9858628d04 100644 --- a/wiki/src/news/version_3.3.id.po +++ b/wiki/src/news/version_3.3.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -48,7 +48,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.4.fr.po b/wiki/src/news/version_3.4.fr.po index a0b6fc9736d9b0a268a9a444fffab3545e33cea9..de57ed44141f7f8a2c56a9b07e931d6c0dcc20de 100644 --- a/wiki/src/news/version_3.4.fr.po +++ b/wiki/src/news/version_3.4.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-07-23 17:11+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -130,8 +130,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -218,8 +218,8 @@ msgstr "Tails 3.5 est [[prévu|contribute/calendar]] pour le 23 janvier." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.4.id.po b/wiki/src/news/version_3.4.id.po index 4b6190349f2039c9d4e6e72dedcd7678ebc03076..31069c050a97b880d1bc1493742803fe96298a77 100644 --- a/wiki/src/news/version_3.4.id.po +++ b/wiki/src/news/version_3.4.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -55,7 +55,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.5.fr.po b/wiki/src/news/version_3.5.fr.po index f56f461b86c61e196bd5572a9f6ef202558b5ea3..45145d46351a8e5f94f91db5dbfca8d349eccdb1 100644 --- a/wiki/src/news/version_3.5.fr.po +++ b/wiki/src/news/version_3.5.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-07-23 17:11+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -148,8 +148,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -252,8 +252,8 @@ msgstr "Tails 3.6 est [[prévu|contribute/calendar]] pour le 13 mars." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. 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 645de516935a5323db05a361a969b8f587804cf4..36896507dc2e973599e2e48af750502550b66d20 100644 --- a/wiki/src/news/version_3.5.id.po +++ b/wiki/src/news/version_3.5.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -48,7 +48,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.6.1.fr.po b/wiki/src/news/version_3.6.1.fr.po index 49db5383c80a1d8ac9b3f43a3249853e3b48ba52..befe43bb09b58e6e2cefc839bb590b1d6bd12e76 100644 --- a/wiki/src/news/version_3.6.1.fr.po +++ b/wiki/src/news/version_3.6.1.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-09-06 21:50+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -96,8 +96,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -203,8 +203,8 @@ msgstr "Tails 3.7 est [[prévu|contribute/calendar]] pour le 8 mai." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.6.1.id.po b/wiki/src/news/version_3.6.1.id.po index 32648960b7f6afcc86e0e9f84d6887ad7b863dab..0ba5898c2c7bcae633e097873843b09a0859cca8 100644 --- a/wiki/src/news/version_3.6.1.id.po +++ b/wiki/src/news/version_3.6.1.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -48,7 +48,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.6.2.fr.po b/wiki/src/news/version_3.6.2.fr.po index 2060d30a0890d6f176b334fac791eede616ee6a5..a1b11058e7e171f9dfddf8a2f867ec599a2b2bcc 100644 --- a/wiki/src/news/version_3.6.2.fr.po +++ b/wiki/src/news/version_3.6.2.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-09-06 21:50+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -108,8 +108,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -204,8 +204,8 @@ msgstr "Tails 3.7 est [[prévu|contribute/calendar]] pour le 8 mai." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.6.2.id.po b/wiki/src/news/version_3.6.2.id.po index 57dc62693527e6b7f86b7881e0f77a1953d299fd..2d732c23e807c64605f5470a5ee7475da2a8595b 100644 --- a/wiki/src/news/version_3.6.2.id.po +++ b/wiki/src/news/version_3.6.2.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:47+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -48,7 +48,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.6.fr.po b/wiki/src/news/version_3.6.fr.po index 6321a320977760603bea9eaf171fe55d162424ac..ef6eaeed9988b737596e1094b921a7b02ea7490b 100644 --- a/wiki/src/news/version_3.6.fr.po +++ b/wiki/src/news/version_3.6.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-09-06 21:50+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -249,8 +249,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -379,8 +379,8 @@ msgstr "Tails 3.7 est [[prévu|contribute/calendar]] pour le 8 mai." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.6.id.po b/wiki/src/news/version_3.6.id.po index fb8c4ffc03a40e8c62ac00404605442cd28f5872..859461df5a348690b6851465569c6bd5fc584bb3 100644 --- a/wiki/src/news/version_3.6.id.po +++ b/wiki/src/news/version_3.6.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:46+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -48,7 +48,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.7.1.fr.po b/wiki/src/news/version_3.7.1.fr.po index 120a55e1205827e8176161a0fcee0a80eda94b0b..5e633691bf38fd441d02019eb0ccd97172f58a78 100644 --- a/wiki/src/news/version_3.7.1.fr.po +++ b/wiki/src/news/version_3.7.1.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-21 16:46+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -117,8 +117,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -184,8 +184,8 @@ msgstr "Tails 3.8 est [[prévu|contribute/calendar]] pour le 26 juin." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.7.1.id.po b/wiki/src/news/version_3.7.1.id.po index 38152049799a777c57ebcacd6ab134dbd281874d..b31dff9fedb3babe36f88bc438f8049c9c728b69 100644 --- a/wiki/src/news/version_3.7.1.id.po +++ b/wiki/src/news/version_3.7.1.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:47+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -48,7 +48,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.7.fr.po b/wiki/src/news/version_3.7.fr.po index c887763e100c9abcbeac6f278be1db28b897e36e..e7f85f2e3db6a9941e4c627a0341d951879d4a97 100644 --- a/wiki/src/news/version_3.7.fr.po +++ b/wiki/src/news/version_3.7.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-09-06 21:50+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -96,8 +96,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -200,8 +200,8 @@ msgstr "Tails 3.8 est [[prévu|contribute/calendar]] pour le 26 juin." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.7.id.po b/wiki/src/news/version_3.7.id.po index d85581371342b023db7f19f916f91f01768e01b3..a84a2437e6e519ddcaeb0445b76313435316e4f8 100644 --- a/wiki/src/news/version_3.7.id.po +++ b/wiki/src/news/version_3.7.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:47+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -48,7 +48,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.8.fr.po b/wiki/src/news/version_3.8.fr.po index edc72280d61561c55f88451b504e46aba3f94495..89521b08d75826e51f1974cb622c8f88e682423c 100644 --- a/wiki/src/news/version_3.8.fr.po +++ b/wiki/src/news/version_3.8.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-21 16:46+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -99,8 +99,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -203,8 +203,8 @@ msgstr "Tails 3.9 est [[prévu|contribute/calendar]] pour le 5 septembre." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.8.id.po b/wiki/src/news/version_3.8.id.po index f903d3777d9d45184ac844b92878032ad6de85f2..face6464a37d54d4413b22019f4dbdc89fa77ba7 100644 --- a/wiki/src/news/version_3.8.id.po +++ b/wiki/src/news/version_3.8.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:47+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -48,7 +48,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.9.1.fr.po b/wiki/src/news/version_3.9.1.fr.po index 500adae4625c24b02665ac4ec98725fb0f5bb94d..68faa783e83770adb3342f99468d34cd2c7e244c 100644 --- a/wiki/src/news/version_3.9.1.fr.po +++ b/wiki/src/news/version_3.9.1.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-10-22 23:14+0200\n" -"PO-Revision-Date: 2019-08-21 16:46+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -126,8 +126,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -191,8 +191,8 @@ msgstr "Tails 3.10 est [[prévu|contribute/calendar]] pour le 23 octobre." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.9.1.id.po b/wiki/src/news/version_3.9.1.id.po index 628a922b4ca696c57158c38ed84fc59b77fae21a..10dab71c29885bd8d7b4c635e906db81ad7c65f5 100644 --- a/wiki/src/news/version_3.9.1.id.po +++ b/wiki/src/news/version_3.9.1.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-10-08 14:01+0200\n" -"PO-Revision-Date: 2019-08-19 12:47+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -52,7 +52,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_3.9.es.po b/wiki/src/news/version_3.9.es.po index 4cb75dab1b3d471697c278dc167b675516665384..33a3b039d6904103818c012d9b4493dfbe00b378 100644 --- a/wiki/src/news/version_3.9.es.po +++ b/wiki/src/news/version_3.9.es.po @@ -6,16 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-10-09 19:47+0200\n" -"PO-Revision-Date: 2018-10-23 14:24+0000\n" -"Last-Translator: Weblate Admin <admin@example.com>\n" +"PO-Revision-Date: 2020-01-21 18:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -80,7 +81,7 @@ msgstr "Nuevas funcionalidades" #. type: Title ### #, no-wrap msgid "Additional Software" -msgstr "" +msgstr "Software Adicional" #. type: Plain text msgid "" diff --git a/wiki/src/news/version_3.9.fr.po b/wiki/src/news/version_3.9.fr.po index bc4e2fc504adaa57ac14553249df1b6383fe62d3..1f1a040267cae612d128021685e3e092590c6c8b 100644 --- a/wiki/src/news/version_3.9.fr.po +++ b/wiki/src/news/version_3.9.fr.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-10-22 23:14+0200\n" -"PO-Revision-Date: 2019-09-29 09:45+0000\n" -"Last-Translator: Chre <tor@renaudineau.org>\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" +"Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -372,8 +372,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 #, no-wrap @@ -442,8 +442,8 @@ msgstr "Tails 3.10 est [[prévu|contribute/calendar]] pour le 23 octobre." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_3.9.id.po b/wiki/src/news/version_3.9.id.po index a2a08c5a9064ed1bf9389e5aec98ce91a96dcda4..c29f9db8648d5be37d702068c64d16ff18ac7951 100644 --- a/wiki/src/news/version_3.9.id.po +++ b/wiki/src/news/version_3.9.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-10-09 19:47+0200\n" -"PO-Revision-Date: 2019-10-24 10:32+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -66,7 +66,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_4.0.ar.po b/wiki/src/news/version_4.0.ar.po index 1b20ae41c87532f33349af9585dc1d50dbd81ff2..25de2c8b822f24893f6179e0c8f00042ff9e4830 100644 --- a/wiki/src/news/version_4.0.ar.po +++ b/wiki/src/news/version_4.0.ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-31 13:06+0000\n" -"PO-Revision-Date: 2019-11-22 08:50+0000\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ar\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -36,7 +36,7 @@ msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap msgid "[[!tag announce]]\n" -msgstr "" +msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" @@ -55,7 +55,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap @@ -391,7 +391,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"known-issues\"></a>\n" -msgstr "" +msgstr "<a id=\"known-issues\"></a>\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_4.0.fa.po b/wiki/src/news/version_4.0.fa.po index eaf7bfbb2cb76e21300ea7d0cf18addf30efe0d0..95e114a135b2454b916f7c300863e936e5f19f8e 100644 --- a/wiki/src/news/version_4.0.fa.po +++ b/wiki/src/news/version_4.0.fa.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-31 13:06+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -34,7 +35,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!tag announce]]\n" -msgstr "" +msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" @@ -53,7 +54,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap @@ -389,17 +390,17 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"known-issues\"></a>\n" -msgstr "" +msgstr "<a id=\"known-issues\"></a>\n" #. type: Title # #, no-wrap msgid "Known issues" -msgstr "" +msgstr "مشکلات شناساییشده" #. type: Plain text #, no-wrap msgid "<!--\n" -msgstr "" +msgstr "<!--\n" #. type: Plain text msgid "" @@ -410,7 +411,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "-->\n" -msgstr "" +msgstr "-->\n" #. type: Plain text msgid "None specific to this release." diff --git a/wiki/src/news/version_4.0.fr.po b/wiki/src/news/version_4.0.fr.po index bede0eeb38cc236870ca3de5426011d5bdde297b..818713c687cc8f8d3c012f4a4baf875ffa0870e0 100644 --- a/wiki/src/news/version_4.0.fr.po +++ b/wiki/src/news/version_4.0.fr.po @@ -7,20 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-31 13:06+0000\n" -"PO-Revision-Date: 2019-11-02 14:00+0000\n" -"Last-Translator: xin <xin@riseup.net>\n" +"PO-Revision-Date: 2020-01-12 13:34+0000\n" +"Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Tails 4.0 is out\"]]\n" -msgstr "" +msgstr "[[!meta title=\"Tails 4.0 est sorti\"]]\n" #. type: Plain text #, no-wrap @@ -44,12 +44,20 @@ msgid "" "included in Tails and some important usability and performance improvements. " "Tails 4.0 introduces more changes than any other version since years." msgstr "" +"Nous avons la fierté de vous présenter Tails 4.0, la première version de " +"Tails basée sur Debian 10 (Buster). Elle apporte de nouvelles versions de la " +"plupart des logiciels inclus dans Tails et des améliorations importantes " +"d'utilisabilité et de performance. Tails 4.0 introduit plus de changements " +"que n'importe quelle autre version depuis des années." #. type: Plain text msgid "" "This release also fixes [[many security issues|security/" "Numerous_security_holes_in_3.16]]. You should upgrade as soon as possible." msgstr "" +"Cette version corrige également [[plusieurs failles de sécurité|security/" +"Numerous_security_holes_in_3.16]]. Vous devriez mettre à jour dès que " +"possible." #. type: Plain text #, no-wrap @@ -64,13 +72,15 @@ msgstr "Mises à jour et changements" #. type: Title ## #, no-wrap msgid "Major changes to included software" -msgstr "" +msgstr "Changements majeurs dans les logiciels inclus" #. type: Bullet: '- ' msgid "" "Replace *KeePassX* with [*KeePassXC*](https://keepassxc.org/), which is more " "actively developed." msgstr "" +"Remplacement de *KeePassX* par [*KeePassXC*](https://keepassxc.org/) qui est " +"développé plus activement." #. type: Plain text #, no-wrap @@ -82,6 +92,8 @@ msgid "" "Update *OnionShare* from 0.9.2 to 1.3.2, which includes a lot of usability " "improvements." msgstr "" +"Mise à jour de *OnionShare* de la version 0.9.2 à la version 1.3.2 qui " +"inclue un grand nombre d'améliorations d'utilisabilité." #. type: Plain text #, no-wrap @@ -95,7 +107,7 @@ msgstr "<a id=\"tor-browser\"></a>\n" #. type: Plain text msgid "- Update *Tor Browser* to 9.0:" -msgstr "" +msgstr "- Mise à jour du *Navigateur Tor* vers la version 9.0 :" #. type: Bullet: ' - ' msgid "" @@ -115,6 +127,11 @@ 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" +" était affiché jusqu'à présent lorsque le Navigateur Tor était maximisé.\n" #. type: Bullet: ' - ' msgid "The onion icon has been removed from the top bar." @@ -299,13 +316,15 @@ msgstr "" #. type: Plain text msgid "- Tails 4.0 requires about 250 MB less of RAM." -msgstr "" +msgstr "- Tails 4.0 nécessite autour de 250 Mo de mémoire vive en moins." #. type: Bullet: '- ' msgid "" "Tails 4.0 is 47 MB smaller to download than Tails 3.16, despite all these " "changes." msgstr "" +"Le téléchargement de Tails 4.0 est plus petit de 47 Mo par rapport à Tails " +"3.16, malgré tous ces changements." #. type: Plain text msgid "- Add support for *Thunderbolt* devices." @@ -376,8 +395,8 @@ msgid "" "For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" "\"]]." msgstr "" -"Pour plus d'informations, 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 "" @@ -501,8 +520,8 @@ msgstr "" #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" -"Jetez un œil à notre [[!tails_roadmap desc=\"feuille de route\"]] pour " -"savoir ce que nous avons en tête." +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. type: Plain text #, no-wrap diff --git a/wiki/src/news/version_4.0.id.po b/wiki/src/news/version_4.0.id.po index 09300eaebeae8685cb6251cc3bd5d395d4e7339f..6a041bf83f54d8ad6597d1d85476bba00adbe082 100644 --- a/wiki/src/news/version_4.0.id.po +++ b/wiki/src/news/version_4.0.id.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-31 13:06+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -29,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -53,7 +54,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_4.1.1.ar.po b/wiki/src/news/version_4.1.1.ar.po new file mode 100644 index 0000000000000000000000000000000000000000..c4bb42a35135fb108e935492fd94b1773fde37b7 --- /dev/null +++ b/wiki/src/news/version_4.1.1.ar.po @@ -0,0 +1,170 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-17 01:01+0100\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.1.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 17 Dec 2019 12:34:56 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "[[!tag announce]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Plain text +msgid "" +"This release fixes a problem when starting Tails 4.1 on some Mac computers." +msgstr "" + +#. type: Plain text +msgid "" +"If Tails 4.1 starts successfully on your computer, you do not have to " +"upgrade to Tails 4.1.1." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. 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.1.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0 and 4.1 to 4.1.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual upgrade|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 directly " +"download Tails 4.1.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." +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.1.1\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_4.1.1.ca.po b/wiki/src/news/version_4.1.1.ca.po new file mode 100644 index 0000000000000000000000000000000000000000..9e2c15fd292fb44d33ad62338aa89241280963a7 --- /dev/null +++ b/wiki/src/news/version_4.1.1.ca.po @@ -0,0 +1,168 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-17 01:01+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" +"Language: ca\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.1.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 17 Dec 2019 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 +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Plain text +msgid "" +"This release fixes a problem when starting Tails 4.1 on some Mac computers." +msgstr "" + +#. type: Plain text +msgid "" +"If Tails 4.1 starts successfully on your computer, you do not have to " +"upgrade to Tails 4.1.1." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.1.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0 and 4.1 to 4.1.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual upgrade|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 directly " +"download Tails 4.1.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." +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.1.1\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_4.1.1.de.po b/wiki/src/news/version_4.1.1.de.po new file mode 100644 index 0000000000000000000000000000000000000000..147f35b17145d3b5473fe0337f6a0fe89bb8d267 --- /dev/null +++ b/wiki/src/news/version_4.1.1.de.po @@ -0,0 +1,172 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-17 01:01+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" +"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.1.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 17 Dec 2019 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 +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Plain text +msgid "This release fixes a problem when starting Tails 4.1 on some Mac computers." +msgstr "" + +#. type: Plain text +msgid "" +"If Tails 4.1 starts successfully on your computer, you do not have to " +"upgrade to Tails 4.1.1." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog " +"desc=\"changelog\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.1.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0 and 4.1 to 4.1.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual " +"upgrade|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 directly " +"download Tails 4.1.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." +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.1.1\">donating</a> is only one " +"of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_4.1.1.es.po b/wiki/src/news/version_4.1.1.es.po new file mode 100644 index 0000000000000000000000000000000000000000..e0fc63d7420328312ef06a18398246d108e4afae --- /dev/null +++ b/wiki/src/news/version_4.1.1.es.po @@ -0,0 +1,177 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-17 01:01+0100\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" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.1.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 17 Dec 2019 12:34:56 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "[[!tag announce]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "Problemas arreglados" + +#. type: Plain text +msgid "This release fixes a problem when starting Tails 4.1 on some Mac computers." +msgstr "" + +#. type: Plain text +msgid "" +"If Tails 4.1 starts successfully on your computer, you do not have to " +"upgrade to Tails 4.1.1." +msgstr "" + +#. type: Plain text +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\"]]." + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "Problemas conocidos" + +#. type: Plain text +msgid "None specific to this release." +msgstr "Nada concreto para esta versión." + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "Mira la lista de [[problemas duraderos|support/known_issues]]." + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.1.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "Para actualizar Tails y mantener tu almacenamiento persistente" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0 and 4.1 to 4.1.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual " +"upgrade|doc/upgrade/#manual]]." +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To install Tails on a new USB stick" +msgstr "Para instalar Tails en una nueva memoria USB" + +#. type: Plain text +msgid "Follow our installation instructions:" +msgstr "Sigue nuestras instrucciones de instalación:" + +#. type: Bullet: ' - ' +msgid "[[Install from Windows|install/win]]" +msgstr "[[Instalar desde Windows|install/win]]" + +#. type: Bullet: ' - ' +msgid "[[Install from macOS|install/mac]]" +msgstr "[[Instalar desde macOS|install/mac]]" + +#. type: Bullet: ' - ' +msgid "[[Install from Linux|install/linux]]" +msgstr "[[Instalar desde Linux|install/linux]]" + +#. type: Plain text +#, no-wrap +msgid "" +"<div class=\"caution\"><p>All the data on this USB stick will be " +"lost.</p></div>\n" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To download only" +msgstr "" + +#. type: Plain text +msgid "" +"If you don't need installation or upgrade instructions, you can directly " +"download Tails 4.1.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "[[Para memorias USB (imagen USB)|install/download]]" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "¿Qué novedades hay?" + +#. type: Plain text +msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" +"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +"dirigimos." + +#. 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.1.1\">donating</a> is only one " +"of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_4.1.1.fa.po b/wiki/src/news/version_4.1.1.fa.po new file mode 100644 index 0000000000000000000000000000000000000000..9986cd4eed8b2b4e067c4f5a71e9e0ca3c25dfec --- /dev/null +++ b/wiki/src/news/version_4.1.1.fa.po @@ -0,0 +1,173 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-17 01:01+0100\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" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.1.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 17 Dec 2019 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 "[[!tag announce]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Plain text +msgid "This release fixes a problem when starting Tails 4.1 on some Mac computers." +msgstr "" + +#. type: Plain text +msgid "" +"If Tails 4.1 starts successfully on your computer, you do not have to " +"upgrade to Tails 4.1.1." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog " +"desc=\"changelog\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. 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.1.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0 and 4.1 to 4.1.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual " +"upgrade|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 directly " +"download Tails 4.1.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." +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.1.1\">donating</a> is only one " +"of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_4.1.1.fr.po b/wiki/src/news/version_4.1.1.fr.po new file mode 100644 index 0000000000000000000000000000000000000000..1b021e2f50baa440074f30eb7b78ff103bfb2d79 --- /dev/null +++ b/wiki/src/news/version_4.1.1.fr.po @@ -0,0 +1,196 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-17 01:01+0100\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" +"Last-Translator: xin <xin@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.1.1 is out\"]]\n" +msgstr "[[!meta title=\"Tails 4.1.1 est sorti\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 17 Dec 2019 12:34:56 +0000\"]]\n" +msgstr "[[!meta date=\"Tue, 17 Dec 2019 12:34:56 +0000\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "[[!tag announce]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "Problèmes résolus" + +#. type: Plain text +msgid "This release fixes a problem when starting Tails 4.1 on some Mac computers." +msgstr "" +"Cette version corrige un problème lors du démarrage de Tails 4.1 sur " +"certains ordinateurs Mac." + +#. type: Plain text +msgid "" +"If Tails 4.1 starts successfully on your computer, you do not have to " +"upgrade to Tails 4.1.1." +msgstr "" +"Si Tails 4.1 démarre correctement sur votre ordinateur, vous n'avez pas " +"besoin de mettre à jour vers Tails 4.1.1." + +#. type: Plain text +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\"]]." + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "Problèmes connus" + +#. type: Plain text +msgid "None specific to this release." +msgstr "Aucun spécifique à cette version." + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" +"Voir la liste des [[problèmes connus de longue date|support/known_issues]]." + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.1.1" +msgstr "Obtenir Tails 4.1.1" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" +"Pour mettre à jour votre clé USB Tails et conserver votre stockage persistant" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0 and 4.1 to 4.1.1." +msgstr "" +"- Des mises à jour automatiques sont disponibles depuis les versions 4.0 et " +"4.1 vers la version 4.1.1." + +#. 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 "" +"Si vous ne pouvez pas faire une mise à jour automatique ou si le démarrage " +"de Tails échoue après une mise à jour automatique, merci d'essayer de faire " +"une [[mise à jour manuelle|doc/upgrade/#manual]]." + +#. type: Title ## +#, no-wrap +msgid "To install Tails on a new USB stick" +msgstr "Pour installer Tails sur une nouvelle clé USB" + +#. type: Plain text +msgid "Follow our installation instructions:" +msgstr "Suivez nos instructions d'installation :" + +#. type: Bullet: ' - ' +msgid "[[Install from Windows|install/win]]" +msgstr "[[Installer depuis Windows|install/win]]" + +#. type: Bullet: ' - ' +msgid "[[Install from macOS|install/mac]]" +msgstr "[[Installer depuis macOS|install/mac]]" + +#. type: Bullet: ' - ' +msgid "[[Install from Linux|install/linux]]" +msgstr "[[Installer depuis Linux|install/linux]]" + +#. type: Plain text +#, no-wrap +msgid "" +"<div class=\"caution\"><p>All the data on this USB stick will be " +"lost.</p></div>\n" +msgstr "" +"<div class=\"caution\"><p>Toutes les données sur cette clé USB seront " +"perdues.</p></div>\n" + +#. type: Title ## +#, no-wrap +msgid "To download only" +msgstr "Pour seulement télécharger" + +#. type: Plain text +msgid "" +"If you don't need installation or upgrade instructions, you can directly " +"download Tails 4.1.1:" +msgstr "" +"Si vous n'avez pas besoin d'instructions d'installation ou de mise à jour, " +"vous pouvez télécharger directement Tails 4.1.1 :" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "[[Pour clés USB (image USB)|install/download]]" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "[[Pour DVD et machines virtuelles (image ISO)|install/download-iso]]" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "Et ensuite ?" + +#. type: Plain text +msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." +msgstr "Tails 4.2 est [[prévu|contribute/calendar]] pour le 7 janvier." + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." + +#. 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.1.1\">donating</a> is only one " +"of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" +"Nous avons besoin de votre aide et il y a de nombreuses manières de [[" +"contribuer à Tails|contribute]] (<a href=\"https://tails.boum.org/donate/" +"?r=4.1.1\">faire un don</a> est seulement l'une d'entre elles). Venez [[" +"discuter avec nous|about/contact#tails-dev]] !\n" diff --git a/wiki/src/news/version_4.1.1.id.po b/wiki/src/news/version_4.1.1.id.po new file mode 100644 index 0000000000000000000000000000000000000000..122ac06fe3651c3e600d3dde0d9dfc9519e57159 --- /dev/null +++ b/wiki/src/news/version_4.1.1.id.po @@ -0,0 +1,169 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-17 01:01+0100\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.1.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 17 Dec 2019 12:34:56 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Plain text +msgid "" +"This release fixes a problem when starting Tails 4.1 on some Mac computers." +msgstr "" + +#. type: Plain text +msgid "" +"If Tails 4.1 starts successfully on your computer, you do not have to " +"upgrade to Tails 4.1.1." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.1.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0 and 4.1 to 4.1.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual upgrade|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 directly " +"download Tails 4.1.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." +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.1.1\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_4.1.1.it.po b/wiki/src/news/version_4.1.1.it.po new file mode 100644 index 0000000000000000000000000000000000000000..f52cbd32ae936e282b1e50c04ee4b28f90544a24 --- /dev/null +++ b/wiki/src/news/version_4.1.1.it.po @@ -0,0 +1,175 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-17 01:01+0100\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.1.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 17 Dec 2019 12:34:56 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "[[!tag announce]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "Problemi risolti" + +#. type: Plain text +msgid "This release fixes a problem when starting Tails 4.1 on some Mac computers." +msgstr "" + +#. type: Plain text +msgid "" +"If Tails 4.1 starts successfully on your computer, you do not have to " +"upgrade to Tails 4.1.1." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog " +"desc=\"changelog\"]]." +msgstr "" +"Per maggiori dettagli, leggi il nostro [[!tails_gitweb debian/changelog desc=" +"\"changelog\"]]." + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "Problemi noti" + +#. type: Plain text +msgid "None specific to this release." +msgstr "Niente riguardo a questo rilascio." + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "Vedi la lista dei [[problemi noti da tempo|support/known_issues]]." + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.1.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0 and 4.1 to 4.1.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual " +"upgrade|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 directly " +"download Tails 4.1.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "Cosa arriverà nelle prossime versioni?" + +#. type: Plain text +msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "Dai uno sguardo alla [[!tails_roadmap]] per sapere a cosa puntiamo." + +#. 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.1.1\">donating</a> is only one " +"of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_4.1.1.mdwn b/wiki/src/news/version_4.1.1.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..099d05ab7166b8dfdfc4ae04ff7f8741975a34e7 --- /dev/null +++ b/wiki/src/news/version_4.1.1.mdwn @@ -0,0 +1,60 @@ +[[!meta title="Tails 4.1.1 is out"]] +[[!meta date="Tue, 17 Dec 2019 12:34:56 +0000"]] +[[!pagetemplate template="news.tmpl"]] +[[!tag announce]] + +[[!toc levels=1]] + +# Fixed problems + +This release fixes a problem when starting Tails 4.1 on some Mac computers. + +If Tails 4.1 starts successfully on your computer, you do not have to upgrade +to Tails 4.1.1. + +For more details, read our [[!tails_gitweb debian/changelog desc="changelog"]]. + +<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.1.1 + +## To upgrade your Tails USB stick and keep your persistent storage + +- Automatic upgrades are available from 4.0 and 4.1 to 4.1.1. + +- If you cannot do an automatic upgrade or if Tails fails to start after an + automatic upgrade, please try to do a [[manual upgrade|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 directly download +Tails 4.1.1: + + - [[For USB sticks (USB image)|install/download]] + - [[For DVDs and virtual machines (ISO image)|install/download-iso]] + +# What's coming up? + +Tails 4.2 is [[scheduled|contribute/calendar]] for January 7. + +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.1.1">donating</a> is only one of +them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/version_4.1.1.pl.po b/wiki/src/news/version_4.1.1.pl.po new file mode 100644 index 0000000000000000000000000000000000000000..4afaa475ba706f22a65ac4276b73fe8c437a90e0 --- /dev/null +++ b/wiki/src/news/version_4.1.1.pl.po @@ -0,0 +1,168 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-17 01:01+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" +"Language: pl\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.1.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 17 Dec 2019 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 +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Plain text +msgid "" +"This release fixes a problem when starting Tails 4.1 on some Mac computers." +msgstr "" + +#. type: Plain text +msgid "" +"If Tails 4.1 starts successfully on your computer, you do not have to " +"upgrade to Tails 4.1.1." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.1.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0 and 4.1 to 4.1.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual upgrade|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 directly " +"download Tails 4.1.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." +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.1.1\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_4.1.1.pt.po b/wiki/src/news/version_4.1.1.pt.po new file mode 100644 index 0000000000000000000000000000000000000000..a5fc17b442368898948e4c7af03cbb85445ac6e6 --- /dev/null +++ b/wiki/src/news/version_4.1.1.pt.po @@ -0,0 +1,175 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-17 01:01+0100\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" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.1.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 17 Dec 2019 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 "[[!tag announce]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "Problemas resolvidos" + +#. type: Plain text +msgid "This release fixes a problem when starting Tails 4.1 on some Mac computers." +msgstr "" + +#. type: Plain text +msgid "" +"If Tails 4.1 starts successfully on your computer, you do not have to " +"upgrade to Tails 4.1.1." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog " +"desc=\"changelog\"]]." +msgstr "" +"Para mais detalhes, leia nosso [[!tails_gitweb debian/changelog desc=\"" +"changelog\"]]." + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "Problemas conhecidos" + +#. 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 "Veja a lista de [[problemas de longa data|support/known_issues]]." + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.1.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0 and 4.1 to 4.1.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual " +"upgrade|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 directly " +"download Tails 4.1.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "O que vem por aí?" + +#. type: Plain text +msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." + +#. 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.1.1\">donating</a> is only one " +"of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_4.1.1.ru.po b/wiki/src/news/version_4.1.1.ru.po new file mode 100644 index 0000000000000000000000000000000000000000..4dbb3ff363c099cac97aff921186a3c130365b93 --- /dev/null +++ b/wiki/src/news/version_4.1.1.ru.po @@ -0,0 +1,168 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-17 01:01+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" +"Language: ru\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.1.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 17 Dec 2019 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 +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Plain text +msgid "" +"This release fixes a problem when starting Tails 4.1 on some Mac computers." +msgstr "" + +#. type: Plain text +msgid "" +"If Tails 4.1 starts successfully on your computer, you do not have to " +"upgrade to Tails 4.1.1." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.1.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0 and 4.1 to 4.1.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual upgrade|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 directly " +"download Tails 4.1.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." +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.1.1\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_4.1.1.sr_Latn.po b/wiki/src/news/version_4.1.1.sr_Latn.po new file mode 100644 index 0000000000000000000000000000000000000000..21f9285b4b3ee06821fc7bf8d7183411023b4ecd --- /dev/null +++ b/wiki/src/news/version_4.1.1.sr_Latn.po @@ -0,0 +1,168 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-17 01:01+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" +"Language: sr_Latn\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.1.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 17 Dec 2019 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 +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Plain text +msgid "" +"This release fixes a problem when starting Tails 4.1 on some Mac computers." +msgstr "" + +#. type: Plain text +msgid "" +"If Tails 4.1 starts successfully on your computer, you do not have to " +"upgrade to Tails 4.1.1." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.1.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0 and 4.1 to 4.1.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual upgrade|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 directly " +"download Tails 4.1.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." +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.1.1\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_4.1.1.tr.po b/wiki/src/news/version_4.1.1.tr.po new file mode 100644 index 0000000000000000000000000000000000000000..2cf5b58e55680cbca582746cd43e56d22d965bc7 --- /dev/null +++ b/wiki/src/news/version_4.1.1.tr.po @@ -0,0 +1,168 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-17 01:01+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" +"Language: tr\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.1.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 17 Dec 2019 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 +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Plain text +msgid "" +"This release fixes a problem when starting Tails 4.1 on some Mac computers." +msgstr "" + +#. type: Plain text +msgid "" +"If Tails 4.1 starts successfully on your computer, you do not have to " +"upgrade to Tails 4.1.1." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.1.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0 and 4.1 to 4.1.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual upgrade|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 directly " +"download Tails 4.1.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." +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.1.1\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_4.1.1.zh.po b/wiki/src/news/version_4.1.1.zh.po new file mode 100644 index 0000000000000000000000000000000000000000..fe2b75b7aa92d65e551987ca55143c10b5be13f0 --- /dev/null +++ b/wiki/src/news/version_4.1.1.zh.po @@ -0,0 +1,168 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-17 01:01+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" +"Language: zh\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.1.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 17 Dec 2019 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 +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Plain text +msgid "" +"This release fixes a problem when starting Tails 4.1 on some Mac computers." +msgstr "" + +#. type: Plain text +msgid "" +"If Tails 4.1 starts successfully on your computer, you do not have to " +"upgrade to Tails 4.1.1." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.1.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0 and 4.1 to 4.1.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual upgrade|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 directly " +"download Tails 4.1.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." +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.1.1\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_4.1.1.zh_TW.po b/wiki/src/news/version_4.1.1.zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..1181b8a9babdee2324f7c703aa2048a6f4cf730b --- /dev/null +++ b/wiki/src/news/version_4.1.1.zh_TW.po @@ -0,0 +1,168 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-12-17 01:01+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" +"Language: zh_TW\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.1.1 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 17 Dec 2019 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 +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Plain text +msgid "" +"This release fixes a problem when starting Tails 4.1 on some Mac computers." +msgstr "" + +#. type: Plain text +msgid "" +"If Tails 4.1 starts successfully on your computer, you do not have to " +"upgrade to Tails 4.1.1." +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.1.1" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0 and 4.1 to 4.1.1." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual upgrade|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 directly " +"download Tails 4.1.1:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "" + +#. type: Plain text +msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." +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.1.1\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/version_4.1.ar.po b/wiki/src/news/version_4.1.ar.po index bfdb3736ae2ea99670ac7d97f458fd2fc763291e..623b39361b4ff7f95e110aea322f57fec4a28161 100644 --- a/wiki/src/news/version_4.1.ar.po +++ b/wiki/src/news/version_4.1.ar.po @@ -3,18 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -29,12 +31,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap msgid "[[!tag announce]]\n" -msgstr "" +msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" @@ -45,7 +47,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap @@ -56,36 +58,26 @@ msgstr "" msgid "" "Use <https://keys.openpgp.org/>, also available on <https://" "zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " -"default OpenPGP key server." +"default OpenPGP keyserver." msgstr "" -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org is more trustworthy than other OpenPGP public key servers " -"because it only references an OpenPGP public key after sending a " -"confirmation email to the email addresses listed in the key." -msgstr "" - -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org does not distribute third-party signatures, which are the " -"signatures on a key that were made by some other key. Third-party " -"signatures are the signatures used to create the OpenPGP Web of Trust." -msgstr "" +#. type: Plain text +#, no-wrap +msgid " <div class=\"caution\">\n" +msgstr " <div class=\"caution\">\n" -#. type: Bullet: ' - ' +#. type: Plain text +#, no-wrap msgid "" -"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." -"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " -"your OpenPGP keyring unusable and crash your computer." +" <p>If you have GnuPG keys stored in Persistence since before Tails\n" +" 4.1, you should [[update your OpenPGP keyserver\n" +" configuration|doc/encryption_and_privacy/openpgp_keyserver]] and adapt\n" +" your Tails to this change.</p>\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" To learn more about keys.openpgp.org, read their\n" -" [About](https://keys.openpgp.org/about) and\n" -" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgid " </div>\n" msgstr "" #. type: Plain text @@ -165,7 +157,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"known-issues\"></a>\n" -msgstr "" +msgstr "<a id=\"known-issues\"></a>\n" #. type: Title # #, no-wrap diff --git a/wiki/src/news/version_4.1.ca.po b/wiki/src/news/version_4.1.ca.po index b4aee9d21744e36728ba68e7604d162f84194b1f..e83d091b43ba2bdbad3a67cbb792c6749ac8029d 100644 --- a/wiki/src/news/version_4.1.ca.po +++ b/wiki/src/news/version_4.1.ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -56,36 +56,26 @@ msgstr "" msgid "" "Use <https://keys.openpgp.org/>, also available on <https://" "zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " -"default OpenPGP key server." +"default OpenPGP keyserver." msgstr "" -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org is more trustworthy than other OpenPGP public key servers " -"because it only references an OpenPGP public key after sending a " -"confirmation email to the email addresses listed in the key." -msgstr "" - -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org does not distribute third-party signatures, which are the " -"signatures on a key that were made by some other key. Third-party " -"signatures are the signatures used to create the OpenPGP Web of Trust." +#. type: Plain text +#, no-wrap +msgid " <div class=\"caution\">\n" msgstr "" -#. type: Bullet: ' - ' +#. type: Plain text +#, no-wrap msgid "" -"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." -"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " -"your OpenPGP keyring unusable and crash your computer." +" <p>If you have GnuPG keys stored in Persistence since before Tails\n" +" 4.1, you should [[update your OpenPGP keyserver\n" +" configuration|doc/encryption_and_privacy/openpgp_keyserver]] and adapt\n" +" your Tails to this change.</p>\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" To learn more about keys.openpgp.org, read their\n" -" [About](https://keys.openpgp.org/about) and\n" -" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgid " </div>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_4.1.de.po b/wiki/src/news/version_4.1.de.po index b8c07f77a43c0ebc35c3695a1c0726b193002db3..510653052fcc74d0b5250353f08ff4c7cba7e70e 100644 --- a/wiki/src/news/version_4.1.de.po +++ b/wiki/src/news/version_4.1.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+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" @@ -38,9 +38,8 @@ msgstr "" #. type: Plain text msgid "" -"This release fixes [[many security " -"vulnerabilities|security/Numerous_security_holes_in_4.0]]. You should " -"upgrade as soon as possible." +"This release fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_4.0]]. You should upgrade as soon as possible." msgstr "" #. type: Plain text @@ -55,38 +54,28 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Use <https://keys.openpgp.org/>, also available on " -"<https://zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, " -"as the default OpenPGP key server." +"Use <https://keys.openpgp.org/>, also available on <https://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." msgstr "" -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org is more trustworthy than other OpenPGP public key servers " -"because it only references an OpenPGP public key after sending a " -"confirmation email to the email addresses listed in the key." -msgstr "" - -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org does not distribute third-party signatures, which are the " -"signatures on a key that were made by some other key. Third-party " -"signatures are the signatures used to create the OpenPGP Web of Trust." +#. type: Plain text +#, no-wrap +msgid " <div class=\"caution\">\n" msgstr "" -#. type: Bullet: ' - ' +#. type: Plain text +#, no-wrap msgid "" -"keys.openpgp.org prevents [OpenPGP certificate flooding " -"attacks](https://dkg.fifthhorseman.net/blog/openpgp-certificate-flooding.html), " -"which can make your OpenPGP keyring unusable and crash your computer." +" <p>If you have GnuPG keys stored in Persistence since before Tails\n" +" 4.1, you should [[update your OpenPGP keyserver\n" +" configuration|doc/encryption_and_privacy/openpgp_keyserver]] and adapt\n" +" your Tails to this change.</p>\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" To learn more about keys.openpgp.org, read their\n" -" [About](https://keys.openpgp.org/about) and\n" -" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgid " </div>\n" msgstr "" #. type: Plain text @@ -99,17 +88,16 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Replace the [[*TorBirdy* " -"extension|doc/anonymous_internet/thunderbird#torbirdy]] with custom settings " -"and patches in *Thunderbird* that provide equivalent privacy." +"Replace the [[*TorBirdy* extension|doc/anonymous_internet/" +"thunderbird#torbirdy]] with custom settings and patches in *Thunderbird* " +"that provide equivalent privacy." msgstr "" #. type: Bullet: '- ' msgid "" -"Update *Enigmail* to " -"[2.1.3](https://enigmail.net/index.php/en/download/changelog), which has a " -"simplified setup wizard that automatically creates an OpenPGP key for new " -"email accounts." +"Update *Enigmail* to [2.1.3](https://enigmail.net/index.php/en/download/" +"changelog), which has a simplified setup wizard that automatically creates " +"an OpenPGP key for new email accounts." msgstr "" #. type: Bullet: '- ' @@ -125,21 +113,19 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Add back the **Show Passphrase** check box in *Tails Greeter*. " -"([[!tails_ticket 17177]])" +"Add back the **Show Passphrase** check box in *Tails Greeter*. ([[!" +"tails_ticket 17177]])" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/startup_options/persistence.png link=\"no\" " -"alt=\"\"]]\n" +msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' msgid "" -"Fix the display of the troubleshooting error when GDM fails to start. " -"([[!tails_ticket 17200]])" +"Fix the display of the troubleshooting error when GDM fails to start. ([[!" +"tails_ticket 17200]])" msgstr "" #. type: Plain text @@ -150,20 +136,20 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Add back the option to **Open in Terminal** when doing right-click (on Mac, " -"click with two fingers) in a folder in the *Files* browser. " -"([[!tails_ticket 17186]])" +"click with two fingers) in a folder in the *Files* browser. ([[!" +"tails_ticket 17186]])" msgstr "" #. type: Plain text msgid "" -"- Make the installation of additional software more " -"reliable. ([[!tails_ticket 17203]])" +"- Make the installation of additional software more reliable. ([[!" +"tails_ticket 17203]])" msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" #. type: Plain text @@ -201,8 +187,7 @@ 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]]." +"automatic upgrade, please try to do a [[manual upgrade|doc/upgrade/#manual]]." msgstr "" #. type: Title ## @@ -228,9 +213,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"caution\"><p>All the data on this USB stick will be " -"lost.</p></div>\n" +msgid "<div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n" msgstr "" #. type: Title ## @@ -269,7 +252,6 @@ msgstr "" #, 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.1\">donating</a> is only one of\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=4.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" diff --git a/wiki/src/news/version_4.1.es.po b/wiki/src/news/version_4.1.es.po index b8c07f77a43c0ebc35c3695a1c0726b193002db3..5501c5bac4dd3947a869168a6f43fc08a1fe4f8b 100644 --- a/wiki/src/news/version_4.1.es.po +++ b/wiki/src/news/version_4.1.es.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\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" -"Language: \n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -29,65 +30,54 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap msgid "[[!tag announce]]\n" -msgstr "" +msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"This release fixes [[many security " -"vulnerabilities|security/Numerous_security_holes_in_4.0]]. You should " -"upgrade as soon as possible." +"This release fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_4.0]]. You should upgrade as soon as possible." msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap msgid "Changes and upgrades" -msgstr "" +msgstr "Cambios y actualizaciones" #. type: Bullet: '- ' msgid "" -"Use <https://keys.openpgp.org/>, also available on " -"<https://zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, " -"as the default OpenPGP key server." -msgstr "" - -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org is more trustworthy than other OpenPGP public key servers " -"because it only references an OpenPGP public key after sending a " -"confirmation email to the email addresses listed in the key." +"Use <https://keys.openpgp.org/>, also available on <https://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." msgstr "" -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org does not distribute third-party signatures, which are the " -"signatures on a key that were made by some other key. Third-party " -"signatures are the signatures used to create the OpenPGP Web of Trust." +#. type: Plain text +#, no-wrap +msgid " <div class=\"caution\">\n" msgstr "" -#. type: Bullet: ' - ' +#. type: Plain text +#, no-wrap msgid "" -"keys.openpgp.org prevents [OpenPGP certificate flooding " -"attacks](https://dkg.fifthhorseman.net/blog/openpgp-certificate-flooding.html), " -"which can make your OpenPGP keyring unusable and crash your computer." +" <p>If you have GnuPG keys stored in Persistence since before Tails\n" +" 4.1, you should [[update your OpenPGP keyserver\n" +" configuration|doc/encryption_and_privacy/openpgp_keyserver]] and adapt\n" +" your Tails to this change.</p>\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" To learn more about keys.openpgp.org, read their\n" -" [About](https://keys.openpgp.org/about) and\n" -" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" -msgstr "" +msgid " </div>\n" +msgstr " </div>\n" #. type: Plain text msgid "- Update *Tor Browser* to 9.0.2." @@ -99,17 +89,16 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Replace the [[*TorBirdy* " -"extension|doc/anonymous_internet/thunderbird#torbirdy]] with custom settings " -"and patches in *Thunderbird* that provide equivalent privacy." +"Replace the [[*TorBirdy* extension|doc/anonymous_internet/" +"thunderbird#torbirdy]] with custom settings and patches in *Thunderbird* " +"that provide equivalent privacy." msgstr "" #. type: Bullet: '- ' msgid "" -"Update *Enigmail* to " -"[2.1.3](https://enigmail.net/index.php/en/download/changelog), which has a " -"simplified setup wizard that automatically creates an OpenPGP key for new " -"email accounts." +"Update *Enigmail* to [2.1.3](https://enigmail.net/index.php/en/download/" +"changelog), which has a simplified setup wizard that automatically creates " +"an OpenPGP key for new email accounts." msgstr "" #. type: Bullet: '- ' @@ -121,25 +110,23 @@ msgstr "" #. type: Title # #, no-wrap msgid "Fixed problems" -msgstr "" +msgstr "Problemas arreglados" #. type: Bullet: '- ' msgid "" -"Add back the **Show Passphrase** check box in *Tails Greeter*. " -"([[!tails_ticket 17177]])" +"Add back the **Show Passphrase** check box in *Tails Greeter*. ([[!" +"tails_ticket 17177]])" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/startup_options/persistence.png link=\"no\" " -"alt=\"\"]]\n" +msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' msgid "" -"Fix the display of the troubleshooting error when GDM fails to start. " -"([[!tails_ticket 17200]])" +"Fix the display of the troubleshooting error when GDM fails to start. ([[!" +"tails_ticket 17200]])" msgstr "" #. type: Plain text @@ -150,39 +137,41 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Add back the option to **Open in Terminal** when doing right-click (on Mac, " -"click with two fingers) in a folder in the *Files* browser. " -"([[!tails_ticket 17186]])" +"click with two fingers) in a folder in the *Files* browser. ([[!" +"tails_ticket 17186]])" msgstr "" #. type: Plain text msgid "" -"- Make the installation of additional software more " -"reliable. ([[!tails_ticket 17203]])" +"- Make the installation of additional software more reliable. ([[!" +"tails_ticket 17203]])" msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" +"Para más detalles, lee nuestro [[!tails_gitweb debian/changelog desc=\"" +"changelog\"]]." #. type: Plain text #, no-wrap msgid "<a id=\"known-issues\"></a>\n" -msgstr "" +msgstr "<a id=\"known-issues\"></a>\n" #. type: Title # #, no-wrap msgid "Known issues" -msgstr "" +msgstr "Problemas conocidos" #. type: Plain text msgid "None specific to this release." -msgstr "" +msgstr "Nada concreto para esta versión." #. type: Plain text msgid "See the list of [[long-standing issues|support/known_issues]]." -msgstr "" +msgstr "Mira la lista de [[problemas duraderos|support/known_issues]]." #. type: Title # #, no-wrap @@ -192,7 +181,7 @@ msgstr "" #. type: Title ## #, no-wrap msgid "To upgrade your Tails USB stick and keep your persistent storage" -msgstr "" +msgstr "Para actualizar Tails y mantener tu almacenamiento persistente" #. type: Plain text msgid "- Automatic upgrades are available from 4.0 to 4.1." @@ -201,36 +190,33 @@ 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]]." +"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 "" +msgstr "Para instalar Tails en una nueva memoria USB" #. type: Plain text msgid "Follow our installation instructions:" -msgstr "" +msgstr "Sigue nuestras instrucciones de instalación:" #. type: Bullet: ' - ' msgid "[[Install from Windows|install/win]]" -msgstr "" +msgstr "[[Instalar desde Windows|install/win]]" #. type: Bullet: ' - ' msgid "[[Install from macOS|install/mac]]" -msgstr "" +msgstr "[[Instalar desde macOS|install/mac]]" #. type: Bullet: ' - ' msgid "[[Install from Linux|install/linux]]" -msgstr "" +msgstr "[[Instalar desde Linux|install/linux]]" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"caution\"><p>All the data on this USB stick will be " -"lost.</p></div>\n" +msgid "<div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n" msgstr "" #. type: Title ## @@ -246,7 +232,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "[[For USB sticks (USB image)|install/download]]" -msgstr "" +msgstr "[[Para memorias USB (imagen USB)|install/download]]" #. type: Bullet: ' - ' msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" @@ -255,7 +241,7 @@ msgstr "" #. type: Title # #, no-wrap msgid "What's coming up?" -msgstr "" +msgstr "¿Qué novedades hay?" #. type: Plain text msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." @@ -264,12 +250,13 @@ msgstr "" #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" +"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +"dirigimos." #. 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.1\">donating</a> is only one of\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=4.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" diff --git a/wiki/src/news/version_4.1.fa.po b/wiki/src/news/version_4.1.fa.po index b8c07f77a43c0ebc35c3695a1c0726b193002db3..9996ed9874a41973f85a61296c0420ea33a30d24 100644 --- a/wiki/src/news/version_4.1.fa.po +++ b/wiki/src/news/version_4.1.fa.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: 2020-01-22 16:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -34,19 +35,18 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!tag announce]]\n" -msgstr "" +msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"This release fixes [[many security " -"vulnerabilities|security/Numerous_security_holes_in_4.0]]. You should " -"upgrade as soon as possible." +"This release fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_4.0]]. You should upgrade as soon as possible." msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap @@ -55,38 +55,28 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Use <https://keys.openpgp.org/>, also available on " -"<https://zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, " -"as the default OpenPGP key server." -msgstr "" - -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org is more trustworthy than other OpenPGP public key servers " -"because it only references an OpenPGP public key after sending a " -"confirmation email to the email addresses listed in the key." +"Use <https://keys.openpgp.org/>, also available on <https://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." msgstr "" -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org does not distribute third-party signatures, which are the " -"signatures on a key that were made by some other key. Third-party " -"signatures are the signatures used to create the OpenPGP Web of Trust." -msgstr "" +#. type: Plain text +#, no-wrap +msgid " <div class=\"caution\">\n" +msgstr " <div class=\"caution\">\n" -#. type: Bullet: ' - ' +#. type: Plain text +#, no-wrap msgid "" -"keys.openpgp.org prevents [OpenPGP certificate flooding " -"attacks](https://dkg.fifthhorseman.net/blog/openpgp-certificate-flooding.html), " -"which can make your OpenPGP keyring unusable and crash your computer." +" <p>If you have GnuPG keys stored in Persistence since before Tails\n" +" 4.1, you should [[update your OpenPGP keyserver\n" +" configuration|doc/encryption_and_privacy/openpgp_keyserver]] and adapt\n" +" your Tails to this change.</p>\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" To learn more about keys.openpgp.org, read their\n" -" [About](https://keys.openpgp.org/about) and\n" -" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgid " </div>\n" msgstr "" #. type: Plain text @@ -99,17 +89,16 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Replace the [[*TorBirdy* " -"extension|doc/anonymous_internet/thunderbird#torbirdy]] with custom settings " -"and patches in *Thunderbird* that provide equivalent privacy." +"Replace the [[*TorBirdy* extension|doc/anonymous_internet/" +"thunderbird#torbirdy]] with custom settings and patches in *Thunderbird* " +"that provide equivalent privacy." msgstr "" #. type: Bullet: '- ' msgid "" -"Update *Enigmail* to " -"[2.1.3](https://enigmail.net/index.php/en/download/changelog), which has a " -"simplified setup wizard that automatically creates an OpenPGP key for new " -"email accounts." +"Update *Enigmail* to [2.1.3](https://enigmail.net/index.php/en/download/" +"changelog), which has a simplified setup wizard that automatically creates " +"an OpenPGP key for new email accounts." msgstr "" #. type: Bullet: '- ' @@ -125,21 +114,19 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Add back the **Show Passphrase** check box in *Tails Greeter*. " -"([[!tails_ticket 17177]])" +"Add back the **Show Passphrase** check box in *Tails Greeter*. ([[!" +"tails_ticket 17177]])" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/startup_options/persistence.png link=\"no\" " -"alt=\"\"]]\n" +msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' msgid "" -"Fix the display of the troubleshooting error when GDM fails to start. " -"([[!tails_ticket 17200]])" +"Fix the display of the troubleshooting error when GDM fails to start. ([[!" +"tails_ticket 17200]])" msgstr "" #. type: Plain text @@ -150,31 +137,31 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Add back the option to **Open in Terminal** when doing right-click (on Mac, " -"click with two fingers) in a folder in the *Files* browser. " -"([[!tails_ticket 17186]])" +"click with two fingers) in a folder in the *Files* browser. ([[!" +"tails_ticket 17186]])" msgstr "" #. type: Plain text msgid "" -"- Make the installation of additional software more " -"reliable. ([[!tails_ticket 17203]])" +"- Make the installation of additional software more reliable. ([[!" +"tails_ticket 17203]])" msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"known-issues\"></a>\n" -msgstr "" +msgstr "<a id=\"known-issues\"></a>\n" #. type: Title # #, no-wrap msgid "Known issues" -msgstr "" +msgstr "مشکلات شناساییشده" #. type: Plain text msgid "None specific to this release." @@ -201,8 +188,7 @@ 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]]." +"automatic upgrade, please try to do a [[manual upgrade|doc/upgrade/#manual]]." msgstr "" #. type: Title ## @@ -228,9 +214,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"caution\"><p>All the data on this USB stick will be " -"lost.</p></div>\n" +msgid "<div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n" msgstr "" #. type: Title ## @@ -269,7 +253,6 @@ msgstr "" #, 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.1\">donating</a> is only one of\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=4.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" diff --git a/wiki/src/news/version_4.1.fr.po b/wiki/src/news/version_4.1.fr.po index b8c07f77a43c0ebc35c3695a1c0726b193002db3..452c433a0eb0936fb14396a3a7ea69d8995d4529 100644 --- a/wiki/src/news/version_4.1.fr.po +++ b/wiki/src/news/version_4.1.fr.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" +"Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -24,70 +25,59 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!meta date=\"Tue, 03 Dec 2019 12:34:56 +0000\"]]\n" -msgstr "" +msgstr "[[!meta date=\"Tue, 03 Dec 2019 12:34:56 +0000\"]]\n" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap msgid "[[!tag announce]]\n" -msgstr "" +msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"This release fixes [[many security " -"vulnerabilities|security/Numerous_security_holes_in_4.0]]. You should " -"upgrade as soon as possible." +"This release fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_4.0]]. You should upgrade as soon as possible." msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap msgid "Changes and upgrades" -msgstr "" +msgstr "Mises à jour et changements" #. type: Bullet: '- ' msgid "" -"Use <https://keys.openpgp.org/>, also available on " -"<https://zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, " -"as the default OpenPGP key server." -msgstr "" - -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org is more trustworthy than other OpenPGP public key servers " -"because it only references an OpenPGP public key after sending a " -"confirmation email to the email addresses listed in the key." +"Use <https://keys.openpgp.org/>, also available on <https://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." msgstr "" -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org does not distribute third-party signatures, which are the " -"signatures on a key that were made by some other key. Third-party " -"signatures are the signatures used to create the OpenPGP Web of Trust." -msgstr "" +#. type: Plain text +#, no-wrap +msgid " <div class=\"caution\">\n" +msgstr " <div class=\"caution\">\n" -#. type: Bullet: ' - ' +#. type: Plain text +#, no-wrap msgid "" -"keys.openpgp.org prevents [OpenPGP certificate flooding " -"attacks](https://dkg.fifthhorseman.net/blog/openpgp-certificate-flooding.html), " -"which can make your OpenPGP keyring unusable and crash your computer." +" <p>If you have GnuPG keys stored in Persistence since before Tails\n" +" 4.1, you should [[update your OpenPGP keyserver\n" +" configuration|doc/encryption_and_privacy/openpgp_keyserver]] and adapt\n" +" your Tails to this change.</p>\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" To learn more about keys.openpgp.org, read their\n" -" [About](https://keys.openpgp.org/about) and\n" -" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" -msgstr "" +msgid " </div>\n" +msgstr " </div>\n" #. type: Plain text msgid "- Update *Tor Browser* to 9.0.2." @@ -99,17 +89,16 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Replace the [[*TorBirdy* " -"extension|doc/anonymous_internet/thunderbird#torbirdy]] with custom settings " -"and patches in *Thunderbird* that provide equivalent privacy." +"Replace the [[*TorBirdy* extension|doc/anonymous_internet/" +"thunderbird#torbirdy]] with custom settings and patches in *Thunderbird* " +"that provide equivalent privacy." msgstr "" #. type: Bullet: '- ' msgid "" -"Update *Enigmail* to " -"[2.1.3](https://enigmail.net/index.php/en/download/changelog), which has a " -"simplified setup wizard that automatically creates an OpenPGP key for new " -"email accounts." +"Update *Enigmail* to [2.1.3](https://enigmail.net/index.php/en/download/" +"changelog), which has a simplified setup wizard that automatically creates " +"an OpenPGP key for new email accounts." msgstr "" #. type: Bullet: '- ' @@ -121,68 +110,72 @@ msgstr "" #. type: Title # #, no-wrap msgid "Fixed problems" -msgstr "" +msgstr "Problèmes résolus" #. type: Bullet: '- ' msgid "" -"Add back the **Show Passphrase** check box in *Tails Greeter*. " -"([[!tails_ticket 17177]])" +"Add back the **Show Passphrase** check box in *Tails Greeter*. ([[!" +"tails_ticket 17177]])" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/startup_options/persistence.png link=\"no\" " -"alt=\"\"]]\n" +msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" +" [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"" +"]]\n" #. type: Bullet: '- ' msgid "" -"Fix the display of the troubleshooting error when GDM fails to start. " -"([[!tails_ticket 17200]])" +"Fix the display of the troubleshooting error when GDM fails to start. ([[!" +"tails_ticket 17200]])" msgstr "" #. type: Plain text #, no-wrap msgid " [[!img support/known_issues/graphics/error.png link=\"no\" alt=\"\"]]\n" msgstr "" +" [[!img support/known_issues/graphics/error.png link=\"no\" alt=\"\"]]\n" #. type: Bullet: '- ' msgid "" "Add back the option to **Open in Terminal** when doing right-click (on Mac, " -"click with two fingers) in a folder in the *Files* browser. " -"([[!tails_ticket 17186]])" +"click with two fingers) in a folder in the *Files* browser. ([[!" +"tails_ticket 17186]])" msgstr "" #. type: Plain text msgid "" -"- Make the installation of additional software more " -"reliable. ([[!tails_ticket 17203]])" +"- Make the installation of additional software more reliable. ([[!" +"tails_ticket 17203]])" msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"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\"]]." #. type: Plain text #, no-wrap msgid "<a id=\"known-issues\"></a>\n" -msgstr "" +msgstr "<a id=\"known-issues\"></a>\n" #. type: Title # #, no-wrap msgid "Known issues" -msgstr "" +msgstr "Problèmes connus" #. type: Plain text msgid "None specific to this release." -msgstr "" +msgstr "Aucun spécifique à cette version." #. type: Plain text msgid "See the list of [[long-standing issues|support/known_issues]]." msgstr "" +"Voir la liste des [[problèmes connus de longue date|support/known_issues]]." #. type: Title # #, no-wrap @@ -193,6 +186,7 @@ msgstr "" #, no-wrap msgid "To upgrade your Tails USB stick and keep your persistent storage" msgstr "" +"Pour mettre à jour votre clé USB Tails et conserver votre stockage persistant" #. type: Plain text msgid "- Automatic upgrades are available from 4.0 to 4.1." @@ -201,42 +195,44 @@ 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]]." +"automatic upgrade, please try to do a [[manual upgrade|doc/upgrade/#manual]]." msgstr "" +"Si vous ne pouvez pas faire une mise à jour automatique ou si le démarrage " +"de Tails échoue après une mise à jour automatique, merci d'essayer de faire " +"une [[mise à jour manuelle|doc/upgrade/#manual]]." #. type: Title ## #, no-wrap msgid "To install Tails on a new USB stick" -msgstr "" +msgstr "Pour installer Tails sur une nouvelle clé USB" #. type: Plain text msgid "Follow our installation instructions:" -msgstr "" +msgstr "Suivez nos instructions d'installation :" #. type: Bullet: ' - ' msgid "[[Install from Windows|install/win]]" -msgstr "" +msgstr "[[Installer depuis Windows|install/win]]" #. type: Bullet: ' - ' msgid "[[Install from macOS|install/mac]]" -msgstr "" +msgstr "[[Installer depuis macOS|install/mac]]" #. type: Bullet: ' - ' msgid "[[Install from Linux|install/linux]]" -msgstr "" +msgstr "[[Installer depuis Linux|install/linux]]" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"caution\"><p>All the data on this USB stick will be " -"lost.</p></div>\n" +msgid "<div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n" msgstr "" +"<div class=\"caution\"><p>Toutes les données sur cette clé USB seront " +"perdues.</p></div>\n" #. type: Title ## #, no-wrap msgid "To download only" -msgstr "" +msgstr "Pour seulement télécharger" #. type: Plain text msgid "" @@ -246,30 +242,31 @@ msgstr "" #. type: Bullet: ' - ' msgid "[[For USB sticks (USB image)|install/download]]" -msgstr "" +msgstr "[[Pour clés USB (image USB)|install/download]]" #. type: Bullet: ' - ' msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" -msgstr "" +msgstr "[[Pour DVD et machines virtuelles (image ISO)|install/download-iso]]" #. type: Title # #, no-wrap msgid "What's coming up?" -msgstr "" +msgstr "Et ensuite ?" #. type: Plain text msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." -msgstr "" +msgstr "Tails 4.2 est [[prévu|contribute/calendar]] pour le 7 janvier." #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." msgstr "" +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." #. 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.1\">donating</a> is only one of\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=4.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" diff --git a/wiki/src/news/version_4.1.id.po b/wiki/src/news/version_4.1.id.po index 891c88d6499c3064e877933356ed6537d4950870..46fa9a2a1be0e8a399b30a3699577036c33709af 100644 --- a/wiki/src/news/version_4.1.id.po +++ b/wiki/src/news/version_4.1.id.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -29,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -45,7 +46,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap @@ -56,36 +57,26 @@ msgstr "" msgid "" "Use <https://keys.openpgp.org/>, also available on <https://" "zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " -"default OpenPGP key server." +"default OpenPGP keyserver." msgstr "" -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org is more trustworthy than other OpenPGP public key servers " -"because it only references an OpenPGP public key after sending a " -"confirmation email to the email addresses listed in the key." -msgstr "" - -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org does not distribute third-party signatures, which are the " -"signatures on a key that were made by some other key. Third-party " -"signatures are the signatures used to create the OpenPGP Web of Trust." +#. type: Plain text +#, no-wrap +msgid " <div class=\"caution\">\n" msgstr "" -#. type: Bullet: ' - ' +#. type: Plain text +#, no-wrap msgid "" -"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." -"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " -"your OpenPGP keyring unusable and crash your computer." +" <p>If you have GnuPG keys stored in Persistence since before Tails\n" +" 4.1, you should [[update your OpenPGP keyserver\n" +" configuration|doc/encryption_and_privacy/openpgp_keyserver]] and adapt\n" +" your Tails to this change.</p>\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" To learn more about keys.openpgp.org, read their\n" -" [About](https://keys.openpgp.org/about) and\n" -" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgid " </div>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_4.1.it.po b/wiki/src/news/version_4.1.it.po index b8c07f77a43c0ebc35c3695a1c0726b193002db3..2ac29be3dca44d0ff625779fefa636242667431b 100644 --- a/wiki/src/news/version_4.1.it.po +++ b/wiki/src/news/version_4.1.it.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -29,24 +30,23 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap msgid "[[!tag announce]]\n" -msgstr "" +msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"This release fixes [[many security " -"vulnerabilities|security/Numerous_security_holes_in_4.0]]. You should " -"upgrade as soon as possible." +"This release fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_4.0]]. You should upgrade as soon as possible." msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap @@ -55,39 +55,29 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Use <https://keys.openpgp.org/>, also available on " -"<https://zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, " -"as the default OpenPGP key server." -msgstr "" - -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org is more trustworthy than other OpenPGP public key servers " -"because it only references an OpenPGP public key after sending a " -"confirmation email to the email addresses listed in the key." +"Use <https://keys.openpgp.org/>, also available on <https://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." msgstr "" -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org does not distribute third-party signatures, which are the " -"signatures on a key that were made by some other key. Third-party " -"signatures are the signatures used to create the OpenPGP Web of Trust." +#. type: Plain text +#, no-wrap +msgid " <div class=\"caution\">\n" msgstr "" -#. type: Bullet: ' - ' +#. type: Plain text +#, no-wrap msgid "" -"keys.openpgp.org prevents [OpenPGP certificate flooding " -"attacks](https://dkg.fifthhorseman.net/blog/openpgp-certificate-flooding.html), " -"which can make your OpenPGP keyring unusable and crash your computer." +" <p>If you have GnuPG keys stored in Persistence since before Tails\n" +" 4.1, you should [[update your OpenPGP keyserver\n" +" configuration|doc/encryption_and_privacy/openpgp_keyserver]] and adapt\n" +" your Tails to this change.</p>\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" To learn more about keys.openpgp.org, read their\n" -" [About](https://keys.openpgp.org/about) and\n" -" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" -msgstr "" +msgid " </div>\n" +msgstr " </div>\n" #. type: Plain text msgid "- Update *Tor Browser* to 9.0.2." @@ -99,17 +89,16 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Replace the [[*TorBirdy* " -"extension|doc/anonymous_internet/thunderbird#torbirdy]] with custom settings " -"and patches in *Thunderbird* that provide equivalent privacy." +"Replace the [[*TorBirdy* extension|doc/anonymous_internet/" +"thunderbird#torbirdy]] with custom settings and patches in *Thunderbird* " +"that provide equivalent privacy." msgstr "" #. type: Bullet: '- ' msgid "" -"Update *Enigmail* to " -"[2.1.3](https://enigmail.net/index.php/en/download/changelog), which has a " -"simplified setup wizard that automatically creates an OpenPGP key for new " -"email accounts." +"Update *Enigmail* to [2.1.3](https://enigmail.net/index.php/en/download/" +"changelog), which has a simplified setup wizard that automatically creates " +"an OpenPGP key for new email accounts." msgstr "" #. type: Bullet: '- ' @@ -121,25 +110,23 @@ msgstr "" #. type: Title # #, no-wrap msgid "Fixed problems" -msgstr "" +msgstr "Problemi risolti" #. type: Bullet: '- ' msgid "" -"Add back the **Show Passphrase** check box in *Tails Greeter*. " -"([[!tails_ticket 17177]])" +"Add back the **Show Passphrase** check box in *Tails Greeter*. ([[!" +"tails_ticket 17177]])" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/startup_options/persistence.png link=\"no\" " -"alt=\"\"]]\n" +msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' msgid "" -"Fix the display of the troubleshooting error when GDM fails to start. " -"([[!tails_ticket 17200]])" +"Fix the display of the troubleshooting error when GDM fails to start. ([[!" +"tails_ticket 17200]])" msgstr "" #. type: Plain text @@ -150,39 +137,41 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Add back the option to **Open in Terminal** when doing right-click (on Mac, " -"click with two fingers) in a folder in the *Files* browser. " -"([[!tails_ticket 17186]])" +"click with two fingers) in a folder in the *Files* browser. ([[!" +"tails_ticket 17186]])" msgstr "" #. type: Plain text msgid "" -"- Make the installation of additional software more " -"reliable. ([[!tails_ticket 17203]])" +"- Make the installation of additional software more reliable. ([[!" +"tails_ticket 17203]])" msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" +"Per maggiori dettagli, leggi il nostro [[!tails_gitweb debian/changelog desc=" +"\"changelog\"]]." #. type: Plain text #, no-wrap msgid "<a id=\"known-issues\"></a>\n" -msgstr "" +msgstr "<a id=\"known-issues\"></a>\n" #. type: Title # #, no-wrap msgid "Known issues" -msgstr "" +msgstr "Problemi noti" #. type: Plain text msgid "None specific to this release." -msgstr "" +msgstr "Niente riguardo a questo rilascio." #. type: Plain text msgid "See the list of [[long-standing issues|support/known_issues]]." -msgstr "" +msgstr "Vedi la lista dei [[problemi noti da tempo|support/known_issues]]." #. type: Title # #, no-wrap @@ -201,8 +190,7 @@ 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]]." +"automatic upgrade, please try to do a [[manual upgrade|doc/upgrade/#manual]]." msgstr "" #. type: Title ## @@ -228,9 +216,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"caution\"><p>All the data on this USB stick will be " -"lost.</p></div>\n" +msgid "<div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n" msgstr "" #. type: Title ## @@ -255,7 +241,7 @@ msgstr "" #. type: Title # #, no-wrap msgid "What's coming up?" -msgstr "" +msgstr "Cosa arriverà nelle prossime versioni?" #. type: Plain text msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." @@ -263,13 +249,12 @@ msgstr "" #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" +msgstr "Dai uno sguardo alla [[!tails_roadmap]] per sapere a cosa puntiamo." #. 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.1\">donating</a> is only one of\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=4.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" diff --git a/wiki/src/news/version_4.1.mdwn b/wiki/src/news/version_4.1.mdwn index 1cd4b1726686a4d2bb3ba0a078cee22ad1e34b74..b635431ebe8680cc6262020223bcfad00eacf10f 100644 --- a/wiki/src/news/version_4.1.mdwn +++ b/wiki/src/news/version_4.1.mdwn @@ -12,26 +12,16 @@ vulnerabilities|security/Numerous_security_holes_in_4.0]]. You should upgrade as - Use <https://keys.openpgp.org/>, also available on <https://zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, - as the default OpenPGP key server. - - - keys.openpgp.org is more trustworthy than other OpenPGP public key - servers because it only references an OpenPGP public key after - sending a confirmation email to the email addresses listed in the - key. - - - keys.openpgp.org does not distribute third-party signatures, which - are the signatures on a key that were made by some other key. - Third-party signatures are the signatures used to create the OpenPGP - Web of Trust. - - - keys.openpgp.org prevents [OpenPGP certificate - flooding attacks](https://dkg.fifthhorseman.net/blog/openpgp-certificate-flooding.html), - which can make your OpenPGP keyring unusable and crash your - computer. - - To learn more about keys.openpgp.org, read their - [About](https://keys.openpgp.org/about) and - [FAQ](https://keys.openpgp.org/about/faq) pages. + as the default OpenPGP keyserver. + + <div class="caution"> + + <p>If you have GnuPG keys stored in Persistence since before Tails + 4.1, you should [[update your OpenPGP keyserver + configuration|doc/encryption_and_privacy/openpgp_keyserver]] and adapt + your Tails to this change.</p> + + </div> - Update *Tor Browser* to 9.0.2. diff --git a/wiki/src/news/version_4.1.pl.po b/wiki/src/news/version_4.1.pl.po index 402440300fcee2354e4012b4a93511be7eb5cb95..47c6c0248d2109f93c515d776f41a4a50003161d 100644 --- a/wiki/src/news/version_4.1.pl.po +++ b/wiki/src/news/version_4.1.pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -56,36 +56,26 @@ msgstr "" msgid "" "Use <https://keys.openpgp.org/>, also available on <https://" "zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " -"default OpenPGP key server." +"default OpenPGP keyserver." msgstr "" -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org is more trustworthy than other OpenPGP public key servers " -"because it only references an OpenPGP public key after sending a " -"confirmation email to the email addresses listed in the key." -msgstr "" - -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org does not distribute third-party signatures, which are the " -"signatures on a key that were made by some other key. Third-party " -"signatures are the signatures used to create the OpenPGP Web of Trust." +#. type: Plain text +#, no-wrap +msgid " <div class=\"caution\">\n" msgstr "" -#. type: Bullet: ' - ' +#. type: Plain text +#, no-wrap msgid "" -"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." -"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " -"your OpenPGP keyring unusable and crash your computer." +" <p>If you have GnuPG keys stored in Persistence since before Tails\n" +" 4.1, you should [[update your OpenPGP keyserver\n" +" configuration|doc/encryption_and_privacy/openpgp_keyserver]] and adapt\n" +" your Tails to this change.</p>\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" To learn more about keys.openpgp.org, read their\n" -" [About](https://keys.openpgp.org/about) and\n" -" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgid " </div>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_4.1.pt.po b/wiki/src/news/version_4.1.pt.po index b8c07f77a43c0ebc35c3695a1c0726b193002db3..7b41ad139c7767b505a1d75b58b294ef13a6cf4a 100644 --- a/wiki/src/news/version_4.1.pt.po +++ b/wiki/src/news/version_4.1.pt.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\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" -"Language: \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -34,19 +35,18 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!tag announce]]\n" -msgstr "" +msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"This release fixes [[many security " -"vulnerabilities|security/Numerous_security_holes_in_4.0]]. You should " -"upgrade as soon as possible." +"This release fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_4.0]]. You should upgrade as soon as possible." msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title # #, no-wrap @@ -55,39 +55,29 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Use <https://keys.openpgp.org/>, also available on " -"<https://zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, " -"as the default OpenPGP key server." -msgstr "" - -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org is more trustworthy than other OpenPGP public key servers " -"because it only references an OpenPGP public key after sending a " -"confirmation email to the email addresses listed in the key." +"Use <https://keys.openpgp.org/>, also available on <https://" +"zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " +"default OpenPGP keyserver." msgstr "" -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org does not distribute third-party signatures, which are the " -"signatures on a key that were made by some other key. Third-party " -"signatures are the signatures used to create the OpenPGP Web of Trust." +#. type: Plain text +#, no-wrap +msgid " <div class=\"caution\">\n" msgstr "" -#. type: Bullet: ' - ' +#. type: Plain text +#, no-wrap msgid "" -"keys.openpgp.org prevents [OpenPGP certificate flooding " -"attacks](https://dkg.fifthhorseman.net/blog/openpgp-certificate-flooding.html), " -"which can make your OpenPGP keyring unusable and crash your computer." +" <p>If you have GnuPG keys stored in Persistence since before Tails\n" +" 4.1, you should [[update your OpenPGP keyserver\n" +" configuration|doc/encryption_and_privacy/openpgp_keyserver]] and adapt\n" +" your Tails to this change.</p>\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" To learn more about keys.openpgp.org, read their\n" -" [About](https://keys.openpgp.org/about) and\n" -" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" -msgstr "" +msgid " </div>\n" +msgstr " </div>\n" #. type: Plain text msgid "- Update *Tor Browser* to 9.0.2." @@ -99,17 +89,16 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"Replace the [[*TorBirdy* " -"extension|doc/anonymous_internet/thunderbird#torbirdy]] with custom settings " -"and patches in *Thunderbird* that provide equivalent privacy." +"Replace the [[*TorBirdy* extension|doc/anonymous_internet/" +"thunderbird#torbirdy]] with custom settings and patches in *Thunderbird* " +"that provide equivalent privacy." msgstr "" #. type: Bullet: '- ' msgid "" -"Update *Enigmail* to " -"[2.1.3](https://enigmail.net/index.php/en/download/changelog), which has a " -"simplified setup wizard that automatically creates an OpenPGP key for new " -"email accounts." +"Update *Enigmail* to [2.1.3](https://enigmail.net/index.php/en/download/" +"changelog), which has a simplified setup wizard that automatically creates " +"an OpenPGP key for new email accounts." msgstr "" #. type: Bullet: '- ' @@ -121,25 +110,23 @@ msgstr "" #. type: Title # #, no-wrap msgid "Fixed problems" -msgstr "" +msgstr "Problemas resolvidos" #. type: Bullet: '- ' msgid "" -"Add back the **Show Passphrase** check box in *Tails Greeter*. " -"([[!tails_ticket 17177]])" +"Add back the **Show Passphrase** check box in *Tails Greeter*. ([[!" +"tails_ticket 17177]])" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/startup_options/persistence.png link=\"no\" " -"alt=\"\"]]\n" +msgid " [[!img doc/first_steps/startup_options/persistence.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' msgid "" -"Fix the display of the troubleshooting error when GDM fails to start. " -"([[!tails_ticket 17200]])" +"Fix the display of the troubleshooting error when GDM fails to start. ([[!" +"tails_ticket 17200]])" msgstr "" #. type: Plain text @@ -150,31 +137,33 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Add back the option to **Open in Terminal** when doing right-click (on Mac, " -"click with two fingers) in a folder in the *Files* browser. " -"([[!tails_ticket 17186]])" +"click with two fingers) in a folder in the *Files* browser. ([[!" +"tails_ticket 17186]])" msgstr "" #. type: Plain text msgid "" -"- Make the installation of additional software more " -"reliable. ([[!tails_ticket 17203]])" +"- Make the installation of additional software more reliable. ([[!" +"tails_ticket 17203]])" msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" +"Para mais detalhes, leia nosso [[!tails_gitweb debian/changelog desc=\"" +"changelog\"]]." #. type: Plain text #, no-wrap msgid "<a id=\"known-issues\"></a>\n" -msgstr "" +msgstr "<a id=\"known-issues\"></a>\n" #. type: Title # #, no-wrap msgid "Known issues" -msgstr "" +msgstr "Problemas conhecidos" #. type: Plain text msgid "None specific to this release." @@ -182,7 +171,7 @@ msgstr "" #. type: Plain text msgid "See the list of [[long-standing issues|support/known_issues]]." -msgstr "" +msgstr "Veja a lista de [[problemas de longa data|support/known_issues]]." #. type: Title # #, no-wrap @@ -201,8 +190,7 @@ 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]]." +"automatic upgrade, please try to do a [[manual upgrade|doc/upgrade/#manual]]." msgstr "" #. type: Title ## @@ -228,9 +216,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div class=\"caution\"><p>All the data on this USB stick will be " -"lost.</p></div>\n" +msgid "<div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n" msgstr "" #. type: Title ## @@ -255,7 +241,7 @@ msgstr "" #. type: Title # #, no-wrap msgid "What's coming up?" -msgstr "" +msgstr "O que vem por aí?" #. type: Plain text msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." @@ -263,13 +249,12 @@ msgstr "" #. type: Plain text msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" +msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." #. 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.1\">donating</a> is only one of\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=4.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" diff --git a/wiki/src/news/version_4.1.ru.po b/wiki/src/news/version_4.1.ru.po index b7fdc3e7d4572cd510e39e714a8e182730fc0726..ae6c6b246834607860298c2b5c805737c09ec3b7 100644 --- a/wiki/src/news/version_4.1.ru.po +++ b/wiki/src/news/version_4.1.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -56,36 +56,26 @@ msgstr "" msgid "" "Use <https://keys.openpgp.org/>, also available on <https://" "zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " -"default OpenPGP key server." +"default OpenPGP keyserver." msgstr "" -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org is more trustworthy than other OpenPGP public key servers " -"because it only references an OpenPGP public key after sending a " -"confirmation email to the email addresses listed in the key." -msgstr "" - -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org does not distribute third-party signatures, which are the " -"signatures on a key that were made by some other key. Third-party " -"signatures are the signatures used to create the OpenPGP Web of Trust." +#. type: Plain text +#, no-wrap +msgid " <div class=\"caution\">\n" msgstr "" -#. type: Bullet: ' - ' +#. type: Plain text +#, no-wrap msgid "" -"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." -"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " -"your OpenPGP keyring unusable and crash your computer." +" <p>If you have GnuPG keys stored in Persistence since before Tails\n" +" 4.1, you should [[update your OpenPGP keyserver\n" +" configuration|doc/encryption_and_privacy/openpgp_keyserver]] and adapt\n" +" your Tails to this change.</p>\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" To learn more about keys.openpgp.org, read their\n" -" [About](https://keys.openpgp.org/about) and\n" -" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgid " </div>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_4.1.sr_Latn.po b/wiki/src/news/version_4.1.sr_Latn.po index 3fdf2ec5d624c5ac05d30af45d2caacd79c4717a..d88e0000a3e1b83e291f83a4efb284c5acdc6127 100644 --- a/wiki/src/news/version_4.1.sr_Latn.po +++ b/wiki/src/news/version_4.1.sr_Latn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -56,36 +56,26 @@ msgstr "" msgid "" "Use <https://keys.openpgp.org/>, also available on <https://" "zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " -"default OpenPGP key server." +"default OpenPGP keyserver." msgstr "" -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org is more trustworthy than other OpenPGP public key servers " -"because it only references an OpenPGP public key after sending a " -"confirmation email to the email addresses listed in the key." -msgstr "" - -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org does not distribute third-party signatures, which are the " -"signatures on a key that were made by some other key. Third-party " -"signatures are the signatures used to create the OpenPGP Web of Trust." +#. type: Plain text +#, no-wrap +msgid " <div class=\"caution\">\n" msgstr "" -#. type: Bullet: ' - ' +#. type: Plain text +#, no-wrap msgid "" -"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." -"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " -"your OpenPGP keyring unusable and crash your computer." +" <p>If you have GnuPG keys stored in Persistence since before Tails\n" +" 4.1, you should [[update your OpenPGP keyserver\n" +" configuration|doc/encryption_and_privacy/openpgp_keyserver]] and adapt\n" +" your Tails to this change.</p>\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" To learn more about keys.openpgp.org, read their\n" -" [About](https://keys.openpgp.org/about) and\n" -" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgid " </div>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_4.1.tr.po b/wiki/src/news/version_4.1.tr.po index c675e0f2429d13dcd98044e27b8be958dda155ed..7bde4dc747b7188d8beee5d0b9cd0632dd06526b 100644 --- a/wiki/src/news/version_4.1.tr.po +++ b/wiki/src/news/version_4.1.tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -56,36 +56,26 @@ msgstr "" msgid "" "Use <https://keys.openpgp.org/>, also available on <https://" "zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " -"default OpenPGP key server." +"default OpenPGP keyserver." msgstr "" -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org is more trustworthy than other OpenPGP public key servers " -"because it only references an OpenPGP public key after sending a " -"confirmation email to the email addresses listed in the key." -msgstr "" - -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org does not distribute third-party signatures, which are the " -"signatures on a key that were made by some other key. Third-party " -"signatures are the signatures used to create the OpenPGP Web of Trust." +#. type: Plain text +#, no-wrap +msgid " <div class=\"caution\">\n" msgstr "" -#. type: Bullet: ' - ' +#. type: Plain text +#, no-wrap msgid "" -"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." -"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " -"your OpenPGP keyring unusable and crash your computer." +" <p>If you have GnuPG keys stored in Persistence since before Tails\n" +" 4.1, you should [[update your OpenPGP keyserver\n" +" configuration|doc/encryption_and_privacy/openpgp_keyserver]] and adapt\n" +" your Tails to this change.</p>\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" To learn more about keys.openpgp.org, read their\n" -" [About](https://keys.openpgp.org/about) and\n" -" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgid " </div>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_4.1.zh.po b/wiki/src/news/version_4.1.zh.po index 7c9c1466e858b5555e28becdb2de9adb1b3a7a72..fba9423076566d9c14831f5508e0f433166e9fc4 100644 --- a/wiki/src/news/version_4.1.zh.po +++ b/wiki/src/news/version_4.1.zh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -56,36 +56,26 @@ msgstr "" msgid "" "Use <https://keys.openpgp.org/>, also available on <https://" "zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " -"default OpenPGP key server." +"default OpenPGP keyserver." msgstr "" -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org is more trustworthy than other OpenPGP public key servers " -"because it only references an OpenPGP public key after sending a " -"confirmation email to the email addresses listed in the key." -msgstr "" - -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org does not distribute third-party signatures, which are the " -"signatures on a key that were made by some other key. Third-party " -"signatures are the signatures used to create the OpenPGP Web of Trust." +#. type: Plain text +#, no-wrap +msgid " <div class=\"caution\">\n" msgstr "" -#. type: Bullet: ' - ' +#. type: Plain text +#, no-wrap msgid "" -"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." -"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " -"your OpenPGP keyring unusable and crash your computer." +" <p>If you have GnuPG keys stored in Persistence since before Tails\n" +" 4.1, you should [[update your OpenPGP keyserver\n" +" configuration|doc/encryption_and_privacy/openpgp_keyserver]] and adapt\n" +" your Tails to this change.</p>\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" To learn more about keys.openpgp.org, read their\n" -" [About](https://keys.openpgp.org/about) and\n" -" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgid " </div>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_4.1.zh_TW.po b/wiki/src/news/version_4.1.zh_TW.po index cd9b6091bbf62cb461dd62cb42cb637b6a13f1f5..2ee0889185cc79e330eec7ea6a32e4aedeff29d1 100644 --- a/wiki/src/news/version_4.1.zh_TW.po +++ b/wiki/src/news/version_4.1.zh_TW.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-16 15:52+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -56,36 +56,26 @@ msgstr "" msgid "" "Use <https://keys.openpgp.org/>, also available on <https://" "zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion/>, as the " -"default OpenPGP key server." +"default OpenPGP keyserver." msgstr "" -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org is more trustworthy than other OpenPGP public key servers " -"because it only references an OpenPGP public key after sending a " -"confirmation email to the email addresses listed in the key." -msgstr "" - -#. type: Bullet: ' - ' -msgid "" -"keys.openpgp.org does not distribute third-party signatures, which are the " -"signatures on a key that were made by some other key. Third-party " -"signatures are the signatures used to create the OpenPGP Web of Trust." +#. type: Plain text +#, no-wrap +msgid " <div class=\"caution\">\n" msgstr "" -#. type: Bullet: ' - ' +#. type: Plain text +#, no-wrap msgid "" -"keys.openpgp.org prevents [OpenPGP certificate flooding attacks](https://dkg." -"fifthhorseman.net/blog/openpgp-certificate-flooding.html), which can make " -"your OpenPGP keyring unusable and crash your computer." +" <p>If you have GnuPG keys stored in Persistence since before Tails\n" +" 4.1, you should [[update your OpenPGP keyserver\n" +" configuration|doc/encryption_and_privacy/openpgp_keyserver]] and adapt\n" +" your Tails to this change.</p>\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" To learn more about keys.openpgp.org, read their\n" -" [About](https://keys.openpgp.org/about) and\n" -" [FAQ](https://keys.openpgp.org/about/faq) pages.\n" +msgid " </div>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_4.2.2.ar.po b/wiki/src/news/version_4.2.2.ar.po new file mode 100644 index 0000000000000000000000000000000000000000..32f780dafc4e5dd3e93563b0fb071c86a8816411 --- /dev/null +++ b/wiki/src/news/version_4.2.2.ar.po @@ -0,0 +1,211 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-15 02:03+0100\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.2.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"This release is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Updates" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [9.0.4](https://blog.torproject.org/new-release-tor-" +"browser-904)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This fixes a [[!mfsa 2020-03 desc=\"critical vulnerability\"]]\n" +" in the JavaScript JIT compiler of *Firefox* and *Tor Browser*.\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 "" +" This vulnerability only affects the *standard* [[security\n" +" level|doc/anonymous_internet/Tor_Browser#security_level]] of *Tor\n" +" Browser*. The *safer* and *safest* security levels are not affected.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Avoid a 2-minutes delay when restarting after doing an automatic upgrade. " +"([[!tails_ticket 17026]])" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. 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.2.2" +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 4.2 to 4.2.2." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Users of Tails 4.0, 4.1, and 4.1.1 have to upgrade to 4.2 first and\n" +" then to 4.2.2.\n" +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 directly " +"download Tails 4.2.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2.2\">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.2.2.ca.po b/wiki/src/news/version_4.2.2.ca.po new file mode 100644 index 0000000000000000000000000000000000000000..6f10fbad71fb70d026767649230e9c015d4a9333 --- /dev/null +++ b/wiki/src/news/version_4.2.2.ca.po @@ -0,0 +1,209 @@ +# 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-01-15 02:03+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" +"Language: ca\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.2.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +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 is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updates" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [9.0.4](https://blog.torproject.org/new-release-tor-" +"browser-904)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This fixes a [[!mfsa 2020-03 desc=\"critical vulnerability\"]]\n" +" in the JavaScript JIT compiler of *Firefox* and *Tor Browser*.\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 "" +" This vulnerability only affects the *standard* [[security\n" +" level|doc/anonymous_internet/Tor_Browser#security_level]] of *Tor\n" +" Browser*. The *safer* and *safest* security levels are not affected.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Avoid a 2-minutes delay when restarting after doing an automatic upgrade. " +"([[!tails_ticket 17026]])" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2.2" +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 4.2 to 4.2.2." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Users of Tails 4.0, 4.1, and 4.1.1 have to upgrade to 4.2 first and\n" +" then to 4.2.2.\n" +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 directly " +"download Tails 4.2.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2.2\">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.2.2.de.po b/wiki/src/news/version_4.2.2.de.po new file mode 100644 index 0000000000000000000000000000000000000000..3ced3be838884b61fdb0e0669acc5b027f24c7a6 --- /dev/null +++ b/wiki/src/news/version_4.2.2.de.po @@ -0,0 +1,209 @@ +# 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-01-15 02:03+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" +"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.2.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +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 is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updates" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [9.0.4](https://blog.torproject.org/new-release-tor-" +"browser-904)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This fixes a [[!mfsa 2020-03 desc=\"critical vulnerability\"]]\n" +" in the JavaScript JIT compiler of *Firefox* and *Tor Browser*.\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 "" +" This vulnerability only affects the *standard* [[security\n" +" level|doc/anonymous_internet/Tor_Browser#security_level]] of *Tor\n" +" Browser*. The *safer* and *safest* security levels are not affected.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Avoid a 2-minutes delay when restarting after doing an automatic upgrade. " +"([[!tails_ticket 17026]])" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2.2" +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 4.2 to 4.2.2." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Users of Tails 4.0, 4.1, and 4.1.1 have to upgrade to 4.2 first and\n" +" then to 4.2.2.\n" +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 directly " +"download Tails 4.2.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2.2\">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.2.2.es.po b/wiki/src/news/version_4.2.2.es.po new file mode 100644 index 0000000000000000000000000000000000000000..7365cbfc2af9b007e388e619cca1979a3c33748b --- /dev/null +++ b/wiki/src/news/version_4.2.2.es.po @@ -0,0 +1,214 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-15 02:03+0100\n" +"PO-Revision-Date: 2020-01-15 08:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.2.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"This release is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Updates" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [9.0.4](https://blog.torproject.org/new-release-tor-" +"browser-904)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This fixes a [[!mfsa 2020-03 desc=\"critical vulnerability\"]]\n" +" in the JavaScript JIT compiler of *Firefox* and *Tor Browser*.\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 "" +" This vulnerability only affects the *standard* [[security\n" +" level|doc/anonymous_internet/Tor_Browser#security_level]] of *Tor\n" +" Browser*. The *safer* and *safest* security levels are not affected.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "Problemas arreglados" + +#. type: Bullet: '- ' +msgid "" +"Avoid a 2-minutes delay when restarting after doing an automatic upgrade. " +"([[!tails_ticket 17026]])" +msgstr "" + +#. type: Plain text +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\"]]." + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "Problemas conocidos" + +#. type: Plain text +msgid "None specific to this release." +msgstr "Nada concreto para esta versión." + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "Mira la lista de [[problemas duraderos|support/known_issues]]." + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.2.2" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "Para actualizar Tails y mantener tu almacenamiento persistente" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.2 to 4.2.2." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Users of Tails 4.0, 4.1, and 4.1.1 have to upgrade to 4.2 first and\n" +" then to 4.2.2.\n" +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 "Para instalar Tails en una nueva memoria USB" + +#. type: Plain text +msgid "Follow our installation instructions:" +msgstr "Sigue nuestras instrucciones de instalación:" + +#. type: Bullet: ' - ' +msgid "[[Install from Windows|install/win]]" +msgstr "[[Instalar desde Windows|install/win]]" + +#. type: Bullet: ' - ' +msgid "[[Install from macOS|install/mac]]" +msgstr "[[Instalar desde macOS|install/mac]]" + +#. type: Bullet: ' - ' +msgid "[[Install from Linux|install/linux]]" +msgstr "[[Instalar desde Linux|install/linux]]" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To download only" +msgstr "" + +#. type: Plain text +msgid "" +"If you don't need installation or upgrade instructions, you can directly " +"download Tails 4.2.2:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "[[Para memorias USB (imagen USB)|install/download]]" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "¿Qué novedades hay?" + +#. type: Plain text +msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" +"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +"dirigimos." + +#. 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.2.2\">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.2.2.fa.po b/wiki/src/news/version_4.2.2.fa.po new file mode 100644 index 0000000000000000000000000000000000000000..2d2e8da9f27dc8b4afc89e92c28f7161edaadd50 --- /dev/null +++ b/wiki/src/news/version_4.2.2.fa.po @@ -0,0 +1,210 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-15 02:03+0100\n" +"PO-Revision-Date: 2020-01-22 14:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.2.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +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 "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"This release is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Updates" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [9.0.4](https://blog.torproject.org/new-release-tor-" +"browser-904)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This fixes a [[!mfsa 2020-03 desc=\"critical vulnerability\"]]\n" +" in the JavaScript JIT compiler of *Firefox* and *Tor Browser*.\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 "" +" This vulnerability only affects the *standard* [[security\n" +" level|doc/anonymous_internet/Tor_Browser#security_level]] of *Tor\n" +" Browser*. The *safer* and *safest* security levels are not affected.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Avoid a 2-minutes delay when restarting after doing an automatic upgrade. " +"([[!tails_ticket 17026]])" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. 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.2.2" +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 4.2 to 4.2.2." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Users of Tails 4.0, 4.1, and 4.1.1 have to upgrade to 4.2 first and\n" +" then to 4.2.2.\n" +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 directly " +"download Tails 4.2.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2.2\">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.2.2.fr.po b/wiki/src/news/version_4.2.2.fr.po new file mode 100644 index 0000000000000000000000000000000000000000..e4e1bc475d22a5e65c04de3b39d9b3ce16342cc5 --- /dev/null +++ b/wiki/src/news/version_4.2.2.fr.po @@ -0,0 +1,248 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-15 02:03+0100\n" +"PO-Revision-Date: 2020-01-15 21:31+0000\n" +"Last-Translator: Chre <tor@renaudineau.org>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.2.2 is out\"]]\n" +msgstr "[[!meta title=\"Tails 4.2.2 est sorti\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +0000\"]]\n" +msgstr "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +0000\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"This release is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" +"Cette version est une sortie d'urgence pour corriger une faille de sécurité " +"critique dans le *Navigateur Tor*." + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Updates" +msgstr "Mises à jour" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [9.0.4](https://blog.torproject.org/new-release-tor-" +"browser-904)." +msgstr "" +"Mise à jour du *Navigateur Tor* vers la version " +"[9.0.4](https://blog.torproject.org/new-release-tor-browser-904)." + +#. type: Plain text +#, no-wrap +msgid "" +" This fixes a [[!mfsa 2020-03 desc=\"critical vulnerability\"]]\n" +" in the JavaScript JIT compiler of *Firefox* and *Tor Browser*.\n" +msgstr "" +" Cela corrige une [[!mfsa 2020-03 desc=\"faille critique\"]]\n" +" dans le compilateur JavaScript JIT de *Firefox* et du *Navigateur Tor*.\n" + +#. type: Plain text +#, no-wrap +msgid "" +" Mozilla is aware of targeted attacks in the wild abusing this\n" +" vulnerability.\n" +msgstr "" +" Mozilla a connaissance d'attaques ciblées qui sont dans la nature et " +"abusent de cette\n" +" faille.\n" + +#. type: Plain text +#, no-wrap +msgid "" +" This vulnerability only affects the *standard* [[security\n" +" level|doc/anonymous_internet/Tor_Browser#security_level]] of *Tor\n" +" Browser*. The *safer* and *safest* security levels are not affected.\n" +msgstr "" +" Cette faille concerne uniquement le [[niveau de sécurité\n" +" |doc/anonymous_internet/Tor_Browser#security_level]] *normal* du\n" +" *Navigateur Tor*. Les niveaux de sécurité *Plus sûr* et *Le plus sûr* ne " +"sont pas concernés.\n" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "Problèmes résolus" + +#. type: Bullet: '- ' +msgid "" +"Avoid a 2-minutes delay when restarting after doing an automatic upgrade. " +"([[!tails_ticket 17026]])" +msgstr "" +"Éviter un délai de deux minutes lors du redémarrage après une mise à jour " +"automatique. ([[!tails_ticket 17026]])" + +#. type: Plain text +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\"]]." + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "Problèmes connus" + +#. type: Plain text +msgid "None specific to this release." +msgstr "Aucun spécifique à cette version." + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" +"Voir la liste des [[problèmes connus de longue date|support/known_issues]]." + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.2.2" +msgstr "Obtenir Tails 4.2.2" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" +"Pour mettre à jour votre clé USB Tails et conserver votre stockage persistant" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.2 to 4.2.2." +msgstr "" +"- Des mises à jour automatiques sont disponibles depuis la version 4.2 vers " +"la version 4.2.2." + +#. type: Plain text +#, no-wrap +msgid "" +" Users of Tails 4.0, 4.1, and 4.1.1 have to upgrade to 4.2 first and\n" +" then to 4.2.2.\n" +msgstr "" +" Les personnes utilisant Tails 4.0, 4.1 et 4.1.1 doivent d'abord faire une " +"mise à jour vers la version 4.2 puis\n" +" vers la version 4.2.2.\n" + +#. 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 "" +"Si vous ne pouvez pas faire une mise à jour automatique ou si le démarrage " +"de Tails échoue après une mise à jour automatique, merci d'essayer de faire " +"une [[mise à jour manuelle|doc/upgrade/#manual]]." + +#. type: Title ## +#, no-wrap +msgid "To install Tails on a new USB stick" +msgstr "Pour installer Tails sur une nouvelle clé USB" + +#. type: Plain text +msgid "Follow our installation instructions:" +msgstr "Suivez nos instructions d'installation :" + +#. type: Bullet: ' - ' +msgid "[[Install from Windows|install/win]]" +msgstr "[[Installer depuis Windows|install/win]]" + +#. type: Bullet: ' - ' +msgid "[[Install from macOS|install/mac]]" +msgstr "[[Installer depuis macOS|install/mac]]" + +#. type: Bullet: ' - ' +msgid "[[Install from Linux|install/linux]]" +msgstr "[[Installer depuis Linux|install/linux]]" + +#. type: Plain text +#, no-wrap +msgid "<div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n" +msgstr "" +"<div class=\"caution\"><p>Toutes les données sur cette clé USB seront " +"perdues.</p></div>\n" + +#. type: Title ## +#, no-wrap +msgid "To download only" +msgstr "Pour seulement télécharger" + +#. type: Plain text +msgid "" +"If you don't need installation or upgrade instructions, you can directly " +"download Tails 4.2.2:" +msgstr "" +"Si vous n'avez pas besoin d'instructions d'installation ou de mise à jour, " +"vous pouvez télécharger directement Tails 4.2.2 :" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "[[Pour clés USB (image USB)|install/download]]" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "[[Pour DVD et machines virtuelles (image ISO)|install/download-iso]]" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "Et ensuite ?" + +#. type: Plain text +msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." +msgstr "Tails 4.3 est [[prévu|contribute/calendar]] pour le 11 février." + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." + +#. 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.2.2\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" +"Nous avons besoin de votre aide et il y a de nombreuses manières de [[" +"contribuer à\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=4.2.2\">faire " +"un don</a> est seulement l'une\n" +"d'entre elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" diff --git a/wiki/src/news/version_4.2.2.id.po b/wiki/src/news/version_4.2.2.id.po new file mode 100644 index 0000000000000000000000000000000000000000..637b53a08dbff996d5234ac814fc3bde9a500671 --- /dev/null +++ b/wiki/src/news/version_4.2.2.id.po @@ -0,0 +1,210 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-15 02:03+0100\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.2.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"This release is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Updates" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [9.0.4](https://blog.torproject.org/new-release-tor-" +"browser-904)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This fixes a [[!mfsa 2020-03 desc=\"critical vulnerability\"]]\n" +" in the JavaScript JIT compiler of *Firefox* and *Tor Browser*.\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 "" +" This vulnerability only affects the *standard* [[security\n" +" level|doc/anonymous_internet/Tor_Browser#security_level]] of *Tor\n" +" Browser*. The *safer* and *safest* security levels are not affected.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Avoid a 2-minutes delay when restarting after doing an automatic upgrade. " +"([[!tails_ticket 17026]])" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2.2" +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 4.2 to 4.2.2." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Users of Tails 4.0, 4.1, and 4.1.1 have to upgrade to 4.2 first and\n" +" then to 4.2.2.\n" +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 directly " +"download Tails 4.2.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2.2\">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.2.2.it.po b/wiki/src/news/version_4.2.2.it.po new file mode 100644 index 0000000000000000000000000000000000000000..2ad25d16069f0344489270e1ad120ad21581b769 --- /dev/null +++ b/wiki/src/news/version_4.2.2.it.po @@ -0,0 +1,210 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-15 02:03+0100\n" +"PO-Revision-Date: 2020-01-17 08:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.2.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +0000\"]]\n" +msgstr "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +0000\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"This release is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updates" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [9.0.4](https://blog.torproject.org/new-release-tor-" +"browser-904)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This fixes a [[!mfsa 2020-03 desc=\"critical vulnerability\"]]\n" +" in the JavaScript JIT compiler of *Firefox* and *Tor Browser*.\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 "" +" This vulnerability only affects the *standard* [[security\n" +" level|doc/anonymous_internet/Tor_Browser#security_level]] of *Tor\n" +" Browser*. The *safer* and *safest* security levels are not affected.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Avoid a 2-minutes delay when restarting after doing an automatic upgrade. " +"([[!tails_ticket 17026]])" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2.2" +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 4.2 to 4.2.2." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Users of Tails 4.0, 4.1, and 4.1.1 have to upgrade to 4.2 first and\n" +" then to 4.2.2.\n" +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 directly " +"download Tails 4.2.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2.2\">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.2.2.mdwn b/wiki/src/news/version_4.2.2.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..22f0a6fa2f95ce671a3858355c8d39943cc8b990 --- /dev/null +++ b/wiki/src/news/version_4.2.2.mdwn @@ -0,0 +1,79 @@ +[[!meta title="Tails 4.2.2 is out"]] +[[!meta date="Thu, 14 Jan 2020 11:00:00 +0000"]] +[[!pagetemplate template="news.tmpl"]] +[[!tag announce]] + +This release is an emergency release to fix a critical security +vulnerability in *Tor Browser*. + +[[!toc levels=1]] + +# Updates + +- Update *Tor Browser* to + [9.0.4](https://blog.torproject.org/new-release-tor-browser-904). + + This fixes a [[!mfsa 2020-03 desc="critical vulnerability"]] + in the JavaScript JIT compiler of *Firefox* and *Tor Browser*. + + Mozilla is aware of targeted attacks in the wild abusing this + vulnerability. + + This vulnerability only affects the *standard* [[security + level|doc/anonymous_internet/Tor_Browser#security_level]] of *Tor + Browser*. The *safer* and *safest* security levels are not affected. + +# Fixed problems + +- Avoid a 2-minutes delay when restarting after doing an automatic + upgrade. ([[!tails_ticket 17026]]) + +For more details, read our [[!tails_gitweb debian/changelog desc="changelog"]]. + +<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.2.2 + +## To upgrade your Tails USB stick and keep your persistent storage + +- Automatic upgrades are available from 4.2 to 4.2.2. + + Users of Tails 4.0, 4.1, and 4.1.1 have to upgrade to 4.2 first and + then to 4.2.2. + +- 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 directly download +Tails 4.2.2: + + - [[For USB sticks (USB image)|install/download]] + - [[For DVDs and virtual machines (ISO image)|install/download-iso]] + +# What's coming up? + +Tails 4.3 is [[scheduled|contribute/calendar]] for February 11. + +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.2.2">donating</a> is only one of +them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/version_4.2.2.pl.po b/wiki/src/news/version_4.2.2.pl.po new file mode 100644 index 0000000000000000000000000000000000000000..af5bee03983d5ada1c2ae6d3976709a6b9b26523 --- /dev/null +++ b/wiki/src/news/version_4.2.2.pl.po @@ -0,0 +1,209 @@ +# 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-01-15 02:03+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" +"Language: pl\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.2.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +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 is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updates" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [9.0.4](https://blog.torproject.org/new-release-tor-" +"browser-904)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This fixes a [[!mfsa 2020-03 desc=\"critical vulnerability\"]]\n" +" in the JavaScript JIT compiler of *Firefox* and *Tor Browser*.\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 "" +" This vulnerability only affects the *standard* [[security\n" +" level|doc/anonymous_internet/Tor_Browser#security_level]] of *Tor\n" +" Browser*. The *safer* and *safest* security levels are not affected.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Avoid a 2-minutes delay when restarting after doing an automatic upgrade. " +"([[!tails_ticket 17026]])" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2.2" +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 4.2 to 4.2.2." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Users of Tails 4.0, 4.1, and 4.1.1 have to upgrade to 4.2 first and\n" +" then to 4.2.2.\n" +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 directly " +"download Tails 4.2.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2.2\">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.2.2.pt.po b/wiki/src/news/version_4.2.2.pt.po new file mode 100644 index 0000000000000000000000000000000000000000..04531124d3d89b62d8ea9d557ea16587341df63e --- /dev/null +++ b/wiki/src/news/version_4.2.2.pt.po @@ -0,0 +1,212 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-15 02:03+0100\n" +"PO-Revision-Date: 2020-01-15 08:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.2.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +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 "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"This release is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Updates" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [9.0.4](https://blog.torproject.org/new-release-tor-" +"browser-904)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This fixes a [[!mfsa 2020-03 desc=\"critical vulnerability\"]]\n" +" in the JavaScript JIT compiler of *Firefox* and *Tor Browser*.\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 "" +" This vulnerability only affects the *standard* [[security\n" +" level|doc/anonymous_internet/Tor_Browser#security_level]] of *Tor\n" +" Browser*. The *safer* and *safest* security levels are not affected.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "Problemas resolvidos" + +#. type: Bullet: '- ' +msgid "" +"Avoid a 2-minutes delay when restarting after doing an automatic upgrade. " +"([[!tails_ticket 17026]])" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" +"Para mais detalhes, leia nosso [[!tails_gitweb debian/changelog desc=\"" +"changelog\"]]." + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "Problemas conhecidos" + +#. 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 "Veja a lista de [[problemas de longa data|support/known_issues]]." + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.2.2" +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 4.2 to 4.2.2." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Users of Tails 4.0, 4.1, and 4.1.1 have to upgrade to 4.2 first and\n" +" then to 4.2.2.\n" +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 directly " +"download Tails 4.2.2:" +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 "O que vem por aí?" + +#. type: Plain text +msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." + +#. 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.2.2\">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.2.2.ru.po b/wiki/src/news/version_4.2.2.ru.po new file mode 100644 index 0000000000000000000000000000000000000000..0d0ac9727cf7357afcf3beeae7f0db04fb5254f6 --- /dev/null +++ b/wiki/src/news/version_4.2.2.ru.po @@ -0,0 +1,209 @@ +# 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-01-15 02:03+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" +"Language: ru\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.2.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +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 is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updates" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [9.0.4](https://blog.torproject.org/new-release-tor-" +"browser-904)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This fixes a [[!mfsa 2020-03 desc=\"critical vulnerability\"]]\n" +" in the JavaScript JIT compiler of *Firefox* and *Tor Browser*.\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 "" +" This vulnerability only affects the *standard* [[security\n" +" level|doc/anonymous_internet/Tor_Browser#security_level]] of *Tor\n" +" Browser*. The *safer* and *safest* security levels are not affected.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Avoid a 2-minutes delay when restarting after doing an automatic upgrade. " +"([[!tails_ticket 17026]])" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2.2" +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 4.2 to 4.2.2." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Users of Tails 4.0, 4.1, and 4.1.1 have to upgrade to 4.2 first and\n" +" then to 4.2.2.\n" +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 directly " +"download Tails 4.2.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2.2\">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.2.2.sr_Latn.po b/wiki/src/news/version_4.2.2.sr_Latn.po new file mode 100644 index 0000000000000000000000000000000000000000..fb9c39768ba4246b0c937ada69d6a3334aee5a3d --- /dev/null +++ b/wiki/src/news/version_4.2.2.sr_Latn.po @@ -0,0 +1,209 @@ +# 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-01-15 02:03+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" +"Language: sr_Latn\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.2.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +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 is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updates" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [9.0.4](https://blog.torproject.org/new-release-tor-" +"browser-904)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This fixes a [[!mfsa 2020-03 desc=\"critical vulnerability\"]]\n" +" in the JavaScript JIT compiler of *Firefox* and *Tor Browser*.\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 "" +" This vulnerability only affects the *standard* [[security\n" +" level|doc/anonymous_internet/Tor_Browser#security_level]] of *Tor\n" +" Browser*. The *safer* and *safest* security levels are not affected.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Avoid a 2-minutes delay when restarting after doing an automatic upgrade. " +"([[!tails_ticket 17026]])" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2.2" +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 4.2 to 4.2.2." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Users of Tails 4.0, 4.1, and 4.1.1 have to upgrade to 4.2 first and\n" +" then to 4.2.2.\n" +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 directly " +"download Tails 4.2.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2.2\">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.2.2.tr.po b/wiki/src/news/version_4.2.2.tr.po new file mode 100644 index 0000000000000000000000000000000000000000..1444e912807b6032dfe72e338ab5a9c32b6bc54d --- /dev/null +++ b/wiki/src/news/version_4.2.2.tr.po @@ -0,0 +1,209 @@ +# 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-01-15 02:03+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" +"Language: tr\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.2.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +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 is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updates" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [9.0.4](https://blog.torproject.org/new-release-tor-" +"browser-904)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This fixes a [[!mfsa 2020-03 desc=\"critical vulnerability\"]]\n" +" in the JavaScript JIT compiler of *Firefox* and *Tor Browser*.\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 "" +" This vulnerability only affects the *standard* [[security\n" +" level|doc/anonymous_internet/Tor_Browser#security_level]] of *Tor\n" +" Browser*. The *safer* and *safest* security levels are not affected.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Avoid a 2-minutes delay when restarting after doing an automatic upgrade. " +"([[!tails_ticket 17026]])" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2.2" +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 4.2 to 4.2.2." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Users of Tails 4.0, 4.1, and 4.1.1 have to upgrade to 4.2 first and\n" +" then to 4.2.2.\n" +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 directly " +"download Tails 4.2.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2.2\">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.2.2.zh.po b/wiki/src/news/version_4.2.2.zh.po new file mode 100644 index 0000000000000000000000000000000000000000..615c5b46fdd4c1b472e647cafc3174e7d43ff16a --- /dev/null +++ b/wiki/src/news/version_4.2.2.zh.po @@ -0,0 +1,209 @@ +# 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-01-15 02:03+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" +"Language: zh\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.2.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +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 is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updates" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [9.0.4](https://blog.torproject.org/new-release-tor-" +"browser-904)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This fixes a [[!mfsa 2020-03 desc=\"critical vulnerability\"]]\n" +" in the JavaScript JIT compiler of *Firefox* and *Tor Browser*.\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 "" +" This vulnerability only affects the *standard* [[security\n" +" level|doc/anonymous_internet/Tor_Browser#security_level]] of *Tor\n" +" Browser*. The *safer* and *safest* security levels are not affected.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Avoid a 2-minutes delay when restarting after doing an automatic upgrade. " +"([[!tails_ticket 17026]])" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2.2" +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 4.2 to 4.2.2." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Users of Tails 4.0, 4.1, and 4.1.1 have to upgrade to 4.2 first and\n" +" then to 4.2.2.\n" +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 directly " +"download Tails 4.2.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2.2\">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.2.2.zh_TW.po b/wiki/src/news/version_4.2.2.zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..279316480a656f2f232fed7c06d4f2d661658fad --- /dev/null +++ b/wiki/src/news/version_4.2.2.zh_TW.po @@ -0,0 +1,209 @@ +# 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-01-15 02:03+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" +"Language: zh_TW\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.2.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Thu, 14 Jan 2020 11:00:00 +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 is an emergency release to fix a critical security " +"vulnerability in *Tor Browser*." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Updates" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Update *Tor Browser* to [9.0.4](https://blog.torproject.org/new-release-tor-" +"browser-904)." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" This fixes a [[!mfsa 2020-03 desc=\"critical vulnerability\"]]\n" +" in the JavaScript JIT compiler of *Firefox* and *Tor Browser*.\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 "" +" This vulnerability only affects the *standard* [[security\n" +" level|doc/anonymous_internet/Tor_Browser#security_level]] of *Tor\n" +" Browser*. The *safer* and *safest* security levels are not affected.\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Avoid a 2-minutes delay when restarting after doing an automatic upgrade. " +"([[!tails_ticket 17026]])" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2.2" +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 4.2 to 4.2.2." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Users of Tails 4.0, 4.1, and 4.1.1 have to upgrade to 4.2 first and\n" +" then to 4.2.2.\n" +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 directly " +"download Tails 4.2.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2.2\">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.2.ar.po b/wiki/src/news/version_4.2.ar.po new file mode 100644 index 0000000000000000000000000000000000000000..0fd4b7cfc8c0b0824f5e75412045c7b4f74b2ba2 --- /dev/null +++ b/wiki/src/news/version_4.2.ar.po @@ -0,0 +1,273 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Jan 2020 17:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"This release fixes [[many security vulnerabilities|security/" +"Numerous_security_holes_in_4.1.1]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Improvements to automatic upgrades" +msgstr "" + +#. type: Plain text +msgid "" +"We worked on important improvements to the automatic upgrade feature, which " +"is still one of your major pain points when using Tails:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, if your version of Tails was several months old, you sometimes " +"had to do 2 or more automatic upgrades in a row. For example, to upgrade " +"from Tails 3.12 to Tails 3.16, you first had to upgrade to Tails 3.14." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, direct automatic upgrades will be available from\n" +" all prior versions to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, you could only do a limited number of automatic upgrades, after " +"which you had to do a much more complicated [[\"manual\" upgrade|doc/" +"upgrade#manual]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, you will only have to do a manual upgrade between\n" +" major versions, for example to upgrade to Tails 5.0 in 2021.\n" +msgstr "" + +#. type: Plain text +msgid "- We made automatic upgrades use less memory." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We optimized a bit the size of the download when doing automatic upgrades." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We included several command line tools used by [*SecureDrop*](https://" +"securedrop.org/) users to analyze the metadata of leaked documents on " +"computers that cannot use the *[[Additional Software|doc/first_steps/" +"additional_software]]* feature:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[*FFmpeg*](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and upgrades" +msgstr "" + +#. type: Plain text +msgid "- Update *Tor Browser* to 9.0.3." +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Thunderbird* to [68.3.0](https://www.mozilla.org/en-US/" +"thunderbird/68.3.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "- Update *Linux* to 5.3.15." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Open *~/Persistent/keepassx.kdbx* by default when starting *KeePassX*. If " +"this database does not exist yet, stop pointing to it in the list of recent " +"databases." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. 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.2" +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 4.0, 4.1, and 4.1.1 to 4.2." +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 directly " +"download Tails 4.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2\">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.2.ca.po b/wiki/src/news/version_4.2.ca.po new file mode 100644 index 0000000000000000000000000000000000000000..21b40edc25724fe79be5ff2ee672ab2f79a8af93 --- /dev/null +++ b/wiki/src/news/version_4.2.ca.po @@ -0,0 +1,271 @@ +# 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-01-07 17:53+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" +"Language: ca\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.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Jan 2020 17:00:00 +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.1.1]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Improvements to automatic upgrades" +msgstr "" + +#. type: Plain text +msgid "" +"We worked on important improvements to the automatic upgrade feature, which " +"is still one of your major pain points when using Tails:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, if your version of Tails was several months old, you sometimes " +"had to do 2 or more automatic upgrades in a row. For example, to upgrade " +"from Tails 3.12 to Tails 3.16, you first had to upgrade to Tails 3.14." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, direct automatic upgrades will be available from\n" +" all prior versions to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, you could only do a limited number of automatic upgrades, after " +"which you had to do a much more complicated [[\"manual\" upgrade|doc/" +"upgrade#manual]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, you will only have to do a manual upgrade between\n" +" major versions, for example to upgrade to Tails 5.0 in 2021.\n" +msgstr "" + +#. type: Plain text +msgid "- We made automatic upgrades use less memory." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We optimized a bit the size of the download when doing automatic upgrades." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We included several command line tools used by [*SecureDrop*](https://" +"securedrop.org/) users to analyze the metadata of leaked documents on " +"computers that cannot use the *[[Additional Software|doc/first_steps/" +"additional_software]]* feature:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[*FFmpeg*](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and upgrades" +msgstr "" + +#. type: Plain text +msgid "- Update *Tor Browser* to 9.0.3." +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Thunderbird* to [68.3.0](https://www.mozilla.org/en-US/" +"thunderbird/68.3.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "- Update *Linux* to 5.3.15." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Open *~/Persistent/keepassx.kdbx* by default when starting *KeePassX*. If " +"this database does not exist yet, stop pointing to it in the list of recent " +"databases." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2" +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 4.0, 4.1, and 4.1.1 to 4.2." +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 directly " +"download Tails 4.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2\">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.2.de.po b/wiki/src/news/version_4.2.de.po new file mode 100644 index 0000000000000000000000000000000000000000..c06a2e3f029f7525c59446bf70c2ce17a962f9cd --- /dev/null +++ b/wiki/src/news/version_4.2.de.po @@ -0,0 +1,275 @@ +# 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-01-07 17:53+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" +"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.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Jan 2020 17:00:00 +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.1.1]]. You should " +"upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Improvements to automatic upgrades" +msgstr "" + +#. type: Plain text +msgid "" +"We worked on important improvements to the automatic upgrade feature, which " +"is still one of your major pain points when using Tails:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, if your version of Tails was several months old, you sometimes " +"had to do 2 or more automatic upgrades in a row. For example, to upgrade " +"from Tails 3.12 to Tails 3.16, you first had to upgrade to Tails 3.14." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, direct automatic upgrades will be available from\n" +" all prior versions to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, you could only do a limited number of automatic upgrades, after " +"which you had to do a much more complicated [[\"manual\" " +"upgrade|doc/upgrade#manual]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, you will only have to do a manual upgrade between\n" +" major versions, for example to upgrade to Tails 5.0 in 2021.\n" +msgstr "" + +#. type: Plain text +msgid "- We made automatic upgrades use less memory." +msgstr "" + +#. type: Bullet: '- ' +msgid "We optimized a bit the size of the download when doing automatic upgrades." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We included several command line tools used by " +"[*SecureDrop*](https://securedrop.org/) users to analyze the metadata of " +"leaked documents on computers that cannot use the *[[Additional " +"Software|doc/first_steps/additional_software]]* feature:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[*FFmpeg*](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and upgrades" +msgstr "" + +#. type: Plain text +msgid "- Update *Tor Browser* to 9.0.3." +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Thunderbird* to " +"[68.3.0](https://www.mozilla.org/en-US/thunderbird/68.3.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "- Update *Linux* to 5.3.15." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Open *~/Persistent/keepassx.kdbx* by default when starting *KeePassX*. If " +"this database does not exist yet, stop pointing to it in the list of recent " +"databases." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog " +"desc=\"changelog\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2" +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 4.0, 4.1, and 4.1.1 to 4.2." +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 directly " +"download Tails 4.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2\">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.2.es.po b/wiki/src/news/version_4.2.es.po new file mode 100644 index 0000000000000000000000000000000000000000..069222570c4faa478a778450fc6157b5689a035a --- /dev/null +++ b/wiki/src/news/version_4.2.es.po @@ -0,0 +1,280 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Jan 2020 17:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"This release fixes [[many security " +"vulnerabilities|security/Numerous_security_holes_in_4.1.1]]. You should " +"upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Improvements to automatic upgrades" +msgstr "" + +#. type: Plain text +msgid "" +"We worked on important improvements to the automatic upgrade feature, which " +"is still one of your major pain points when using Tails:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, if your version of Tails was several months old, you sometimes " +"had to do 2 or more automatic upgrades in a row. For example, to upgrade " +"from Tails 3.12 to Tails 3.16, you first had to upgrade to Tails 3.14." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, direct automatic upgrades will be available from\n" +" all prior versions to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, you could only do a limited number of automatic upgrades, after " +"which you had to do a much more complicated [[\"manual\" " +"upgrade|doc/upgrade#manual]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, you will only have to do a manual upgrade between\n" +" major versions, for example to upgrade to Tails 5.0 in 2021.\n" +msgstr "" + +#. type: Plain text +msgid "- We made automatic upgrades use less memory." +msgstr "" + +#. type: Bullet: '- ' +msgid "We optimized a bit the size of the download when doing automatic upgrades." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "Nuevas funcionalidades" + +#. type: Bullet: '- ' +msgid "" +"We included several command line tools used by " +"[*SecureDrop*](https://securedrop.org/) users to analyze the metadata of " +"leaked documents on computers that cannot use the *[[Additional " +"Software|doc/first_steps/additional_software]]* feature:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[*FFmpeg*](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and upgrades" +msgstr "Cambios y actualizaciones" + +#. type: Plain text +msgid "- Update *Tor Browser* to 9.0.3." +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Thunderbird* to " +"[68.3.0](https://www.mozilla.org/en-US/thunderbird/68.3.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "- Update *Linux* to 5.3.15." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "Problemas arreglados" + +#. type: Bullet: '- ' +msgid "" +"Open *~/Persistent/keepassx.kdbx* by default when starting *KeePassX*. If " +"this database does not exist yet, stop pointing to it in the list of recent " +"databases." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" +msgstr " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" + +#. type: Plain text +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\"]]." + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "Problemas conocidos" + +#. type: Plain text +msgid "None specific to this release." +msgstr "Nada concreto para esta versión." + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "Mira la lista de [[problemas duraderos|support/known_issues]]." + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.2" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "Para actualizar Tails y mantener tu almacenamiento persistente" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0, 4.1, and 4.1.1 to 4.2." +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 "Para instalar Tails en una nueva memoria USB" + +#. type: Plain text +msgid "Follow our installation instructions:" +msgstr "Sigue nuestras instrucciones de instalación:" + +#. type: Bullet: ' - ' +msgid "[[Install from Windows|install/win]]" +msgstr "[[Instalar desde Windows|install/win]]" + +#. type: Bullet: ' - ' +msgid "[[Install from macOS|install/mac]]" +msgstr "[[Instalar desde macOS|install/mac]]" + +#. type: Bullet: ' - ' +msgid "[[Install from Linux|install/linux]]" +msgstr "[[Instalar desde Linux|install/linux]]" + +#. type: Plain text +#, no-wrap +msgid "" +"<div class=\"caution\"><p>All the data on this USB stick will be " +"lost.</p></div>\n" +msgstr "" + +#. type: Title ## +#, no-wrap +msgid "To download only" +msgstr "" + +#. type: Plain text +msgid "" +"If you don't need installation or upgrade instructions, you can directly " +"download Tails 4.2:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "[[Para memorias USB (imagen USB)|install/download]]" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "¿Qué novedades hay?" + +#. type: Plain text +msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" +"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +"dirigimos." + +#. 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.2\">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.2.fa.po b/wiki/src/news/version_4.2.fa.po new file mode 100644 index 0000000000000000000000000000000000000000..a4715261a12cd5234a5b2a90debd14ae349474c0 --- /dev/null +++ b/wiki/src/news/version_4.2.fa.po @@ -0,0 +1,276 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\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" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Jan 2020 17:00:00 +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 "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"This release fixes [[many security " +"vulnerabilities|security/Numerous_security_holes_in_4.1.1]]. You should " +"upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Improvements to automatic upgrades" +msgstr "" + +#. type: Plain text +msgid "" +"We worked on important improvements to the automatic upgrade feature, which " +"is still one of your major pain points when using Tails:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, if your version of Tails was several months old, you sometimes " +"had to do 2 or more automatic upgrades in a row. For example, to upgrade " +"from Tails 3.12 to Tails 3.16, you first had to upgrade to Tails 3.14." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, direct automatic upgrades will be available from\n" +" all prior versions to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, you could only do a limited number of automatic upgrades, after " +"which you had to do a much more complicated [[\"manual\" " +"upgrade|doc/upgrade#manual]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, you will only have to do a manual upgrade between\n" +" major versions, for example to upgrade to Tails 5.0 in 2021.\n" +msgstr "" + +#. type: Plain text +msgid "- We made automatic upgrades use less memory." +msgstr "" + +#. type: Bullet: '- ' +msgid "We optimized a bit the size of the download when doing automatic upgrades." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We included several command line tools used by " +"[*SecureDrop*](https://securedrop.org/) users to analyze the metadata of " +"leaked documents on computers that cannot use the *[[Additional " +"Software|doc/first_steps/additional_software]]* feature:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[*FFmpeg*](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and upgrades" +msgstr "" + +#. type: Plain text +msgid "- Update *Tor Browser* to 9.0.3." +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Thunderbird* to " +"[68.3.0](https://www.mozilla.org/en-US/thunderbird/68.3.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "- Update *Linux* to 5.3.15." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Open *~/Persistent/keepassx.kdbx* by default when starting *KeePassX*. If " +"this database does not exist yet, stop pointing to it in the list of recent " +"databases." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog " +"desc=\"changelog\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. 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.2" +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 4.0, 4.1, and 4.1.1 to 4.2." +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 directly " +"download Tails 4.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2\">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.2.fr.po b/wiki/src/news/version_4.2.fr.po new file mode 100644 index 0000000000000000000000000000000000000000..6716229dd354f53e3c84be82ff35acfe3889fb57 --- /dev/null +++ b/wiki/src/news/version_4.2.fr.po @@ -0,0 +1,333 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" +"PO-Revision-Date: 2020-01-11 16:57+0000\n" +"Last-Translator: xin <xin@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.2 is out\"]]\n" +msgstr "[[!meta title=\"Tails 4.2 est sorti\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Jan 2020 17:00:00 +0000\"]]\n" +msgstr "[[!meta date=\"Tue, 07 Jan 2020 17:00:00 +0000\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"This release fixes [[many security " +"vulnerabilities|security/Numerous_security_holes_in_4.1.1]]. You should " +"upgrade as soon as possible." +msgstr "" +"Cette version corrige [[plusieurs failles de sécurité|security/" +"Numerous_security_holes_in_4.1.1]]. Vous devriez mettre à jour dès que " +"possible." + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Improvements to automatic upgrades" +msgstr "Améliorations pour les mises à jour automatiques" + +#. type: Plain text +msgid "" +"We worked on important improvements to the automatic upgrade feature, which " +"is still one of your major pain points when using Tails:" +msgstr "" +"Nous avons travaillé à d'importantes améliorations pour la fonctionnalité de " +"mise à jour automatique, qui reste l'un des points qui vous cause le plus de " +"soucis sur Tails :" + +#. type: Bullet: '- ' +msgid "" +"Until now, if your version of Tails was several months old, you sometimes " +"had to do 2 or more automatic upgrades in a row. For example, to upgrade " +"from Tails 3.12 to Tails 3.16, you first had to upgrade to Tails 3.14." +msgstr "" +"Jusqu'à maintenant, si votre version de Tails était vieille de plusieurs " +"mois, vous aviez parfois à faire deux mises à jour automatiques d'affilé ou " +"plus. Par exemple, pour mettre à jour de Tails 3.12 à Tails 3.16, vous " +"deviez d'abord mettre à jour à Tails 3.14." + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, direct automatic upgrades will be available from\n" +" all prior versions to the latest version.\n" +msgstr "" +" À partir de la version 4.2, les mises à jour automatiques directes seront " +"disponibles depuis\n" +" toutes les versions précédentes, jusqu'à la dernière.\n" + +#. type: Bullet: '- ' +msgid "" +"Until now, you could only do a limited number of automatic upgrades, after " +"which you had to do a much more complicated [[\"manual\" " +"upgrade|doc/upgrade#manual]]." +msgstr "" +"Jusqu'à maintenant, vous ne pouviez faire qu'un nombre limité de mises à " +"jour automatiques, après quoi vous deviez faire une [[mise à jour « manuelle " +"»|doc/upgrade#manual]] bien plus complexe." + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, you will only have to do a manual upgrade between\n" +" major versions, for example to upgrade to Tails 5.0 in 2021.\n" +msgstr "" +" À partir de la version 4.2, vous aurez à faire une mise à jour manuelle " +"uniquement entre\n" +" les versions majeures, par exemple vers Tails 5.0 en 2021.\n" + +#. type: Plain text +msgid "- We made automatic upgrades use less memory." +msgstr "- Les mises à jour automatiques utilisent moins de mémoire." + +#. type: Bullet: '- ' +msgid "We optimized a bit the size of the download when doing automatic upgrades." +msgstr "" +"Nous avons optimisé un peu la taille du téléchargement lors des mises à jour " +"automatiques." + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "Nouvelles fonctionnalités" + +#. type: Bullet: '- ' +msgid "" +"We included several command line tools used by " +"[*SecureDrop*](https://securedrop.org/) users to analyze the metadata of " +"leaked documents on computers that cannot use the *[[Additional " +"Software|doc/first_steps/additional_software]]* feature:" +msgstr "" +"Nous avons inclus plusieurs outils en ligne de commande utiles pour les " +"personnes utilisant [*SecureDrop*](https://securedrop.org/) pour analyser " +"les métadonnées de documents fuités sur des ordinateurs qui ne peuvent " +"utiliser la fonctionnalité de *[[logiciels additionnels|doc/first_steps/" +"additional_software]]* :" + +#. type: Bullet: ' - ' +msgid "" +"[*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" +"[*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) " +"pour éditer et enlever les métadonnées de documents textes avant publication" + +#. type: Bullet: ' - ' +msgid "" +"[*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" +"[*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) pour convertir " +"des images contenant du texte en document texte" + +#. type: Bullet: ' - ' +msgid "[*FFmpeg*](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" +"[*FFmpeg*](https://ffmpeg.org/) pour enregistrer et convertir de l'audio et " +"de la vidéo" + +#. type: Title # +#, no-wrap +msgid "Changes and upgrades" +msgstr "Mises à jour et changements" + +#. type: Plain text +msgid "- Update *Tor Browser* to 9.0.3." +msgstr "- Mise à jour du *Navigateur Tor* vers la version 9.0.3." + +#. type: Plain text +msgid "" +"- Update *Thunderbird* to " +"[68.3.0](https://www.mozilla.org/en-US/thunderbird/68.3.0/releasenotes/)." +msgstr "" +"- Mise à jour de *Thunderbird* vers la version [68.3.0](https://www.mozilla." +"org/en-US/thunderbird/68.3.0/releasenotes/)." + +#. type: Plain text +msgid "- Update *Linux* to 5.3.15." +msgstr "- Mise à jour du noyau *Linux* vers la version 5.3.15." + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "Problèmes résolus" + +#. type: Bullet: '- ' +msgid "" +"Open *~/Persistent/keepassx.kdbx* by default when starting *KeePassX*. If " +"this database does not exist yet, stop pointing to it in the list of recent " +"databases." +msgstr "" +"Ouverture de *~/Persistent/keepassx.kdbx* par défaut au démarrage de " +"*KeePassX*. Si cette base de données n'existe pas encore, le logiciel arrête " +"de pointer sur elle dans la liste des bases de données récentes." + +#. type: Plain text +#, no-wrap +msgid " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" +msgstr " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" + +#. type: Plain text +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\"]]." + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "Problèmes connus" + +#. type: Plain text +msgid "None specific to this release." +msgstr "Aucun spécifique à cette version." + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" +"Voir la liste des [[problèmes connus de longue date|support/known_issues]]." + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.2" +msgstr "Obtenir Tails 4.2" + +#. type: Title ## +#, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" +"Pour mettre à jour votre clé USB Tails et conserver votre stockage persistant" + +#. type: Plain text +msgid "- Automatic upgrades are available from 4.0, 4.1, and 4.1.1 to 4.2." +msgstr "" +"- Des mises à jour automatiques sont disponibles depuis les versions 4.0, " +"4.1, et 4.1.1 vers la version 4.2." + +#. 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 "" +"Si vous ne pouvez pas faire une mise à jour automatique ou si le démarrage " +"de Tails échoue après une mise à jour automatique, merci d'essayer de faire " +"une [[mise à jour manuelle|doc/upgrade/#manual]]." + +#. type: Title ## +#, no-wrap +msgid "To install Tails on a new USB stick" +msgstr "Pour installer Tails sur une nouvelle clé USB" + +#. type: Plain text +msgid "Follow our installation instructions:" +msgstr "Suivez nos instructions d'installation :" + +#. type: Bullet: ' - ' +msgid "[[Install from Windows|install/win]]" +msgstr "[[Installer depuis Windows|install/win]]" + +#. type: Bullet: ' - ' +msgid "[[Install from macOS|install/mac]]" +msgstr "[[Installer depuis macOS|install/mac]]" + +#. type: Bullet: ' - ' +msgid "[[Install from Linux|install/linux]]" +msgstr "[[Installer depuis Linux|install/linux]]" + +#. type: Plain text +#, no-wrap +msgid "" +"<div class=\"caution\"><p>All the data on this USB stick will be " +"lost.</p></div>\n" +msgstr "" +"<div class=\"caution\"><p>Toutes les données sur cette clé USB seront " +"perdues.</p></div>\n" + +#. type: Title ## +#, no-wrap +msgid "To download only" +msgstr "Pour seulement télécharger" + +#. type: Plain text +msgid "" +"If you don't need installation or upgrade instructions, you can directly " +"download Tails 4.2:" +msgstr "" +"Si vous n'avez pas besoin d'instructions d'installation ou de mise à jour, " +"vous pouvez télécharger directement Tails 4.2 :" + +#. type: Bullet: ' - ' +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "[[Pour clés USB (image USB)|install/download]]" + +#. type: Bullet: ' - ' +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "[[Pour DVD et machines virtuelles (image ISO)|install/download-iso]]" + +#. type: Title # +#, no-wrap +msgid "What's coming up?" +msgstr "Et ensuite ?" + +#. type: Plain text +msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." +msgstr "Tails 4.3 est [[prévu|contribute/calendar]] pour le 11 février." + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "" +"Jetez un œil à notre [[feuille de route|contribute/roadmap]] pour savoir ce " +"que nous avons en tête." + +#. 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.2\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" +"Nous avons besoin de votre aide et il y a de nombreuses manières de [[" +"contribuer à\n" +"Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=4.2\">faire " +"un don</a> est seulement l'une d'entre\n" +"elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" diff --git a/wiki/src/news/version_4.2.id.po b/wiki/src/news/version_4.2.id.po new file mode 100644 index 0000000000000000000000000000000000000000..5bbbb5818266783c6d68aa898ce5d0554376ff9f --- /dev/null +++ b/wiki/src/news/version_4.2.id.po @@ -0,0 +1,272 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Jan 2020 17:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. 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.1.1]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Improvements to automatic upgrades" +msgstr "" + +#. type: Plain text +msgid "" +"We worked on important improvements to the automatic upgrade feature, which " +"is still one of your major pain points when using Tails:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, if your version of Tails was several months old, you sometimes " +"had to do 2 or more automatic upgrades in a row. For example, to upgrade " +"from Tails 3.12 to Tails 3.16, you first had to upgrade to Tails 3.14." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, direct automatic upgrades will be available from\n" +" all prior versions to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, you could only do a limited number of automatic upgrades, after " +"which you had to do a much more complicated [[\"manual\" upgrade|doc/" +"upgrade#manual]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, you will only have to do a manual upgrade between\n" +" major versions, for example to upgrade to Tails 5.0 in 2021.\n" +msgstr "" + +#. type: Plain text +msgid "- We made automatic upgrades use less memory." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We optimized a bit the size of the download when doing automatic upgrades." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We included several command line tools used by [*SecureDrop*](https://" +"securedrop.org/) users to analyze the metadata of leaked documents on " +"computers that cannot use the *[[Additional Software|doc/first_steps/" +"additional_software]]* feature:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[*FFmpeg*](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and upgrades" +msgstr "" + +#. type: Plain text +msgid "- Update *Tor Browser* to 9.0.3." +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Thunderbird* to [68.3.0](https://www.mozilla.org/en-US/" +"thunderbird/68.3.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "- Update *Linux* to 5.3.15." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Open *~/Persistent/keepassx.kdbx* by default when starting *KeePassX*. If " +"this database does not exist yet, stop pointing to it in the list of recent " +"databases." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2" +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 4.0, 4.1, and 4.1.1 to 4.2." +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 directly " +"download Tails 4.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2\">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.2.it.po b/wiki/src/news/version_4.2.it.po new file mode 100644 index 0000000000000000000000000000000000000000..d636e7ce5e4149bddd320f3844b42b60d1e6864b --- /dev/null +++ b/wiki/src/news/version_4.2.it.po @@ -0,0 +1,278 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Jan 2020 17:00:00 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" + +#. type: Plain text +#, no-wrap +msgid "[[!tag announce]]\n" +msgstr "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"This release fixes [[many security " +"vulnerabilities|security/Numerous_security_holes_in_4.1.1]]. You should " +"upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Improvements to automatic upgrades" +msgstr "" + +#. type: Plain text +msgid "" +"We worked on important improvements to the automatic upgrade feature, which " +"is still one of your major pain points when using Tails:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, if your version of Tails was several months old, you sometimes " +"had to do 2 or more automatic upgrades in a row. For example, to upgrade " +"from Tails 3.12 to Tails 3.16, you first had to upgrade to Tails 3.14." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, direct automatic upgrades will be available from\n" +" all prior versions to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, you could only do a limited number of automatic upgrades, after " +"which you had to do a much more complicated [[\"manual\" " +"upgrade|doc/upgrade#manual]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, you will only have to do a manual upgrade between\n" +" major versions, for example to upgrade to Tails 5.0 in 2021.\n" +msgstr "" + +#. type: Plain text +msgid "- We made automatic upgrades use less memory." +msgstr "" + +#. type: Bullet: '- ' +msgid "We optimized a bit the size of the download when doing automatic upgrades." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "Nuove funzionalità" + +#. type: Bullet: '- ' +msgid "" +"We included several command line tools used by " +"[*SecureDrop*](https://securedrop.org/) users to analyze the metadata of " +"leaked documents on computers that cannot use the *[[Additional " +"Software|doc/first_steps/additional_software]]* feature:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[*FFmpeg*](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and upgrades" +msgstr "" + +#. type: Plain text +msgid "- Update *Tor Browser* to 9.0.3." +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Thunderbird* to " +"[68.3.0](https://www.mozilla.org/en-US/thunderbird/68.3.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "- Update *Linux* to 5.3.15." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "Problemi risolti" + +#. type: Bullet: '- ' +msgid "" +"Open *~/Persistent/keepassx.kdbx* by default when starting *KeePassX*. If " +"this database does not exist yet, stop pointing to it in the list of recent " +"databases." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog " +"desc=\"changelog\"]]." +msgstr "" +"Per maggiori dettagli, leggi il nostro [[!tails_gitweb debian/changelog desc=" +"\"changelog\"]]." + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "Problemi noti" + +#. type: Plain text +msgid "None specific to this release." +msgstr "Niente riguardo a questo rilascio." + +#. type: Plain text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "Vedi la lista dei [[problemi noti da tempo|support/known_issues]]." + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.2" +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 4.0, 4.1, and 4.1.1 to 4.2." +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 directly " +"download Tails 4.2:" +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 "Cosa arriverà nelle prossime versioni?" + +#. type: Plain text +msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "Dai uno sguardo alla [[!tails_roadmap]] per sapere a cosa puntiamo." + +#. 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.2\">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.2.mdwn b/wiki/src/news/version_4.2.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..92c6cd619e368089c3cb3b9fec77b1905d7d5561 --- /dev/null +++ b/wiki/src/news/version_4.2.mdwn @@ -0,0 +1,110 @@ +[[!meta title="Tails 4.2 is out"]] +[[!meta date="Tue, 07 Jan 2020 17:00:00 +0000"]] +[[!pagetemplate template="news.tmpl"]] +[[!tag announce]] + +This release fixes [[many security +vulnerabilities|security/Numerous_security_holes_in_4.1.1]]. You should upgrade as soon as possible. + +[[!toc levels=1]] + +# Improvements to automatic upgrades + +We worked on important improvements to the automatic upgrade feature, +which is still one of your major pain points when using Tails: + +- Until now, if your version of Tails was several months old, you + sometimes had to do 2 or more automatic upgrades in a row. For + example, to upgrade from Tails 3.12 to Tails 3.16, you first had to + upgrade to Tails 3.14. + + Starting with 4.2, direct automatic upgrades will be available from + all prior versions to the latest version. + +- Until now, you could only do a limited number of automatic upgrades, + after which you had to do a much more complicated [["manual" + upgrade|doc/upgrade#manual]]. + + Starting with 4.2, you will only have to do a manual upgrade between + major versions, for example to upgrade to Tails 5.0 in 2021. + +- We made automatic upgrades use less memory. + +- We optimized a bit the size of the download when doing automatic + upgrades. + +# New features + +- We included several command line tools used by + [*SecureDrop*](https://securedrop.org/) users to analyze the metadata + of leaked documents on computers that cannot use the *[[Additional + Software|doc/first_steps/additional_software]]* feature: + + - [*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) + to redact and strip metadata from text documents before publishing + - [*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) + to convert images containing text into a text document + - [*FFmpeg*](https://ffmpeg.org/) to record and convert audio and video + +# Changes and upgrades + +- Update *Tor Browser* to 9.0.3. + +- Update *Thunderbird* to [68.3.0](https://www.mozilla.org/en-US/thunderbird/68.3.0/releasenotes/). + +- Update *Linux* to 5.3.15. + +# Fixed problems + +- Open *~/Persistent/keepassx.kdbx* by default when starting *KeePassX*. + If this database does not exist yet, stop pointing to it in the list + of recent databases. + + [[!img version_4.0/keepassxc.png link="no" alt=""]] + +For more details, read our [[!tails_gitweb debian/changelog desc="changelog"]]. + +<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.2 + +## To upgrade your Tails USB stick and keep your persistent storage + +- Automatic upgrades are available from 4.0, 4.1, and 4.1.1 to 4.2. + +- 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 directly download +Tails 4.2: + + - [[For USB sticks (USB image)|install/download]] + - [[For DVDs and virtual machines (ISO image)|install/download-iso]] + +# What's coming up? + +Tails 4.3 is [[scheduled|contribute/calendar]] for February 11. + +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.2">donating</a> is only one of +them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/version_4.2.pl.po b/wiki/src/news/version_4.2.pl.po new file mode 100644 index 0000000000000000000000000000000000000000..fa34b2b2360580208543105fa201ee1b309c97eb --- /dev/null +++ b/wiki/src/news/version_4.2.pl.po @@ -0,0 +1,271 @@ +# 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-01-07 17:53+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" +"Language: pl\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.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Jan 2020 17:00:00 +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.1.1]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Improvements to automatic upgrades" +msgstr "" + +#. type: Plain text +msgid "" +"We worked on important improvements to the automatic upgrade feature, which " +"is still one of your major pain points when using Tails:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, if your version of Tails was several months old, you sometimes " +"had to do 2 or more automatic upgrades in a row. For example, to upgrade " +"from Tails 3.12 to Tails 3.16, you first had to upgrade to Tails 3.14." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, direct automatic upgrades will be available from\n" +" all prior versions to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, you could only do a limited number of automatic upgrades, after " +"which you had to do a much more complicated [[\"manual\" upgrade|doc/" +"upgrade#manual]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, you will only have to do a manual upgrade between\n" +" major versions, for example to upgrade to Tails 5.0 in 2021.\n" +msgstr "" + +#. type: Plain text +msgid "- We made automatic upgrades use less memory." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We optimized a bit the size of the download when doing automatic upgrades." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We included several command line tools used by [*SecureDrop*](https://" +"securedrop.org/) users to analyze the metadata of leaked documents on " +"computers that cannot use the *[[Additional Software|doc/first_steps/" +"additional_software]]* feature:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[*FFmpeg*](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and upgrades" +msgstr "" + +#. type: Plain text +msgid "- Update *Tor Browser* to 9.0.3." +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Thunderbird* to [68.3.0](https://www.mozilla.org/en-US/" +"thunderbird/68.3.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "- Update *Linux* to 5.3.15." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Open *~/Persistent/keepassx.kdbx* by default when starting *KeePassX*. If " +"this database does not exist yet, stop pointing to it in the list of recent " +"databases." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2" +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 4.0, 4.1, and 4.1.1 to 4.2." +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 directly " +"download Tails 4.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2\">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.2.pt.po b/wiki/src/news/version_4.2.pt.po new file mode 100644 index 0000000000000000000000000000000000000000..bec7b07718d1423d668dcc4542b79852e95a61ea --- /dev/null +++ b/wiki/src/news/version_4.2.pt.po @@ -0,0 +1,278 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2020-01-07 17:53+0100\n" +"PO-Revision-Date: 2020-01-15 08:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" + +#. type: Plain text +#, no-wrap +msgid "[[!meta title=\"Tails 4.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Jan 2020 17:00:00 +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 "[[!tag announce]]\n" + +#. type: Plain text +msgid "" +"This release fixes [[many security " +"vulnerabilities|security/Numerous_security_holes_in_4.1.1]]. You should " +"upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "[[!toc levels=1]]\n" + +#. type: Title # +#, no-wrap +msgid "Improvements to automatic upgrades" +msgstr "" + +#. type: Plain text +msgid "" +"We worked on important improvements to the automatic upgrade feature, which " +"is still one of your major pain points when using Tails:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, if your version of Tails was several months old, you sometimes " +"had to do 2 or more automatic upgrades in a row. For example, to upgrade " +"from Tails 3.12 to Tails 3.16, you first had to upgrade to Tails 3.14." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, direct automatic upgrades will be available from\n" +" all prior versions to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, you could only do a limited number of automatic upgrades, after " +"which you had to do a much more complicated [[\"manual\" " +"upgrade|doc/upgrade#manual]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, you will only have to do a manual upgrade between\n" +" major versions, for example to upgrade to Tails 5.0 in 2021.\n" +msgstr "" + +#. type: Plain text +msgid "- We made automatic upgrades use less memory." +msgstr "" + +#. type: Bullet: '- ' +msgid "We optimized a bit the size of the download when doing automatic upgrades." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "Novos recursos" + +#. type: Bullet: '- ' +msgid "" +"We included several command line tools used by " +"[*SecureDrop*](https://securedrop.org/) users to analyze the metadata of " +"leaked documents on computers that cannot use the *[[Additional " +"Software|doc/first_steps/additional_software]]* feature:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[*FFmpeg*](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and upgrades" +msgstr "" + +#. type: Plain text +msgid "- Update *Tor Browser* to 9.0.3." +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Thunderbird* to " +"[68.3.0](https://www.mozilla.org/en-US/thunderbird/68.3.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "- Update *Linux* to 5.3.15." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "Problemas resolvidos" + +#. type: Bullet: '- ' +msgid "" +"Open *~/Persistent/keepassx.kdbx* by default when starting *KeePassX*. If " +"this database does not exist yet, stop pointing to it in the list of recent " +"databases." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog " +"desc=\"changelog\"]]." +msgstr "" +"Para mais detalhes, leia nosso [[!tails_gitweb debian/changelog desc=\"" +"changelog\"]]." + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "<a id=\"known-issues\"></a>\n" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "Problemas conhecidos" + +#. 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 "Veja a lista de [[problemas de longa data|support/known_issues]]." + +#. type: Title # +#, no-wrap +msgid "Get Tails 4.2" +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 4.0, 4.1, and 4.1.1 to 4.2." +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 directly " +"download Tails 4.2:" +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 "O que vem por aí?" + +#. type: Plain text +msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." +msgstr "" + +#. type: Plain text +msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." +msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." + +#. 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.2\">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.2.ru.po b/wiki/src/news/version_4.2.ru.po new file mode 100644 index 0000000000000000000000000000000000000000..10b4c555b0756e0422c429604c364a503a4d0e5c --- /dev/null +++ b/wiki/src/news/version_4.2.ru.po @@ -0,0 +1,271 @@ +# 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-01-07 17:53+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" +"Language: ru\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.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Jan 2020 17:00:00 +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.1.1]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Improvements to automatic upgrades" +msgstr "" + +#. type: Plain text +msgid "" +"We worked on important improvements to the automatic upgrade feature, which " +"is still one of your major pain points when using Tails:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, if your version of Tails was several months old, you sometimes " +"had to do 2 or more automatic upgrades in a row. For example, to upgrade " +"from Tails 3.12 to Tails 3.16, you first had to upgrade to Tails 3.14." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, direct automatic upgrades will be available from\n" +" all prior versions to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, you could only do a limited number of automatic upgrades, after " +"which you had to do a much more complicated [[\"manual\" upgrade|doc/" +"upgrade#manual]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, you will only have to do a manual upgrade between\n" +" major versions, for example to upgrade to Tails 5.0 in 2021.\n" +msgstr "" + +#. type: Plain text +msgid "- We made automatic upgrades use less memory." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We optimized a bit the size of the download when doing automatic upgrades." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We included several command line tools used by [*SecureDrop*](https://" +"securedrop.org/) users to analyze the metadata of leaked documents on " +"computers that cannot use the *[[Additional Software|doc/first_steps/" +"additional_software]]* feature:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[*FFmpeg*](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and upgrades" +msgstr "" + +#. type: Plain text +msgid "- Update *Tor Browser* to 9.0.3." +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Thunderbird* to [68.3.0](https://www.mozilla.org/en-US/" +"thunderbird/68.3.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "- Update *Linux* to 5.3.15." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Open *~/Persistent/keepassx.kdbx* by default when starting *KeePassX*. If " +"this database does not exist yet, stop pointing to it in the list of recent " +"databases." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2" +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 4.0, 4.1, and 4.1.1 to 4.2." +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 directly " +"download Tails 4.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2\">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.2.sr_Latn.po b/wiki/src/news/version_4.2.sr_Latn.po new file mode 100644 index 0000000000000000000000000000000000000000..b2806faa811038cead0909c58f4c1f4a490385c9 --- /dev/null +++ b/wiki/src/news/version_4.2.sr_Latn.po @@ -0,0 +1,271 @@ +# 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-01-07 17:53+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" +"Language: sr_Latn\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.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Jan 2020 17:00:00 +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.1.1]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Improvements to automatic upgrades" +msgstr "" + +#. type: Plain text +msgid "" +"We worked on important improvements to the automatic upgrade feature, which " +"is still one of your major pain points when using Tails:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, if your version of Tails was several months old, you sometimes " +"had to do 2 or more automatic upgrades in a row. For example, to upgrade " +"from Tails 3.12 to Tails 3.16, you first had to upgrade to Tails 3.14." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, direct automatic upgrades will be available from\n" +" all prior versions to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, you could only do a limited number of automatic upgrades, after " +"which you had to do a much more complicated [[\"manual\" upgrade|doc/" +"upgrade#manual]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, you will only have to do a manual upgrade between\n" +" major versions, for example to upgrade to Tails 5.0 in 2021.\n" +msgstr "" + +#. type: Plain text +msgid "- We made automatic upgrades use less memory." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We optimized a bit the size of the download when doing automatic upgrades." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We included several command line tools used by [*SecureDrop*](https://" +"securedrop.org/) users to analyze the metadata of leaked documents on " +"computers that cannot use the *[[Additional Software|doc/first_steps/" +"additional_software]]* feature:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[*FFmpeg*](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and upgrades" +msgstr "" + +#. type: Plain text +msgid "- Update *Tor Browser* to 9.0.3." +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Thunderbird* to [68.3.0](https://www.mozilla.org/en-US/" +"thunderbird/68.3.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "- Update *Linux* to 5.3.15." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Open *~/Persistent/keepassx.kdbx* by default when starting *KeePassX*. If " +"this database does not exist yet, stop pointing to it in the list of recent " +"databases." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2" +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 4.0, 4.1, and 4.1.1 to 4.2." +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 directly " +"download Tails 4.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2\">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.2.tr.po b/wiki/src/news/version_4.2.tr.po new file mode 100644 index 0000000000000000000000000000000000000000..7efe6af89adbddb66d46ddc21e74ce8ca93a48d1 --- /dev/null +++ b/wiki/src/news/version_4.2.tr.po @@ -0,0 +1,271 @@ +# 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-01-07 17:53+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" +"Language: tr\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.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Jan 2020 17:00:00 +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.1.1]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Improvements to automatic upgrades" +msgstr "" + +#. type: Plain text +msgid "" +"We worked on important improvements to the automatic upgrade feature, which " +"is still one of your major pain points when using Tails:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, if your version of Tails was several months old, you sometimes " +"had to do 2 or more automatic upgrades in a row. For example, to upgrade " +"from Tails 3.12 to Tails 3.16, you first had to upgrade to Tails 3.14." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, direct automatic upgrades will be available from\n" +" all prior versions to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, you could only do a limited number of automatic upgrades, after " +"which you had to do a much more complicated [[\"manual\" upgrade|doc/" +"upgrade#manual]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, you will only have to do a manual upgrade between\n" +" major versions, for example to upgrade to Tails 5.0 in 2021.\n" +msgstr "" + +#. type: Plain text +msgid "- We made automatic upgrades use less memory." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We optimized a bit the size of the download when doing automatic upgrades." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We included several command line tools used by [*SecureDrop*](https://" +"securedrop.org/) users to analyze the metadata of leaked documents on " +"computers that cannot use the *[[Additional Software|doc/first_steps/" +"additional_software]]* feature:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[*FFmpeg*](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and upgrades" +msgstr "" + +#. type: Plain text +msgid "- Update *Tor Browser* to 9.0.3." +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Thunderbird* to [68.3.0](https://www.mozilla.org/en-US/" +"thunderbird/68.3.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "- Update *Linux* to 5.3.15." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Open *~/Persistent/keepassx.kdbx* by default when starting *KeePassX*. If " +"this database does not exist yet, stop pointing to it in the list of recent " +"databases." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2" +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 4.0, 4.1, and 4.1.1 to 4.2." +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 directly " +"download Tails 4.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2\">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.2.zh.po b/wiki/src/news/version_4.2.zh.po new file mode 100644 index 0000000000000000000000000000000000000000..8a22533b9777205861f3a06d7d2d92db0d8bedd6 --- /dev/null +++ b/wiki/src/news/version_4.2.zh.po @@ -0,0 +1,271 @@ +# 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-01-07 17:53+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" +"Language: zh\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.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Jan 2020 17:00:00 +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.1.1]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Improvements to automatic upgrades" +msgstr "" + +#. type: Plain text +msgid "" +"We worked on important improvements to the automatic upgrade feature, which " +"is still one of your major pain points when using Tails:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, if your version of Tails was several months old, you sometimes " +"had to do 2 or more automatic upgrades in a row. For example, to upgrade " +"from Tails 3.12 to Tails 3.16, you first had to upgrade to Tails 3.14." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, direct automatic upgrades will be available from\n" +" all prior versions to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, you could only do a limited number of automatic upgrades, after " +"which you had to do a much more complicated [[\"manual\" upgrade|doc/" +"upgrade#manual]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, you will only have to do a manual upgrade between\n" +" major versions, for example to upgrade to Tails 5.0 in 2021.\n" +msgstr "" + +#. type: Plain text +msgid "- We made automatic upgrades use less memory." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We optimized a bit the size of the download when doing automatic upgrades." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We included several command line tools used by [*SecureDrop*](https://" +"securedrop.org/) users to analyze the metadata of leaked documents on " +"computers that cannot use the *[[Additional Software|doc/first_steps/" +"additional_software]]* feature:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[*FFmpeg*](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and upgrades" +msgstr "" + +#. type: Plain text +msgid "- Update *Tor Browser* to 9.0.3." +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Thunderbird* to [68.3.0](https://www.mozilla.org/en-US/" +"thunderbird/68.3.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "- Update *Linux* to 5.3.15." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Open *~/Persistent/keepassx.kdbx* by default when starting *KeePassX*. If " +"this database does not exist yet, stop pointing to it in the list of recent " +"databases." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2" +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 4.0, 4.1, and 4.1.1 to 4.2." +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 directly " +"download Tails 4.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2\">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.2.zh_TW.po b/wiki/src/news/version_4.2.zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..9e4e09957930cefeffb938016a1d9d471671712d --- /dev/null +++ b/wiki/src/news/version_4.2.zh_TW.po @@ -0,0 +1,271 @@ +# 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-01-07 17:53+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" +"Language: zh_TW\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.2 is out\"]]\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!meta date=\"Tue, 07 Jan 2020 17:00:00 +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.1.1]]. You should upgrade as soon as possible." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "[[!toc levels=1]]\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Improvements to automatic upgrades" +msgstr "" + +#. type: Plain text +msgid "" +"We worked on important improvements to the automatic upgrade feature, which " +"is still one of your major pain points when using Tails:" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, if your version of Tails was several months old, you sometimes " +"had to do 2 or more automatic upgrades in a row. For example, to upgrade " +"from Tails 3.12 to Tails 3.16, you first had to upgrade to Tails 3.14." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, direct automatic upgrades will be available from\n" +" all prior versions to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Until now, you could only do a limited number of automatic upgrades, after " +"which you had to do a much more complicated [[\"manual\" upgrade|doc/" +"upgrade#manual]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +" Starting with 4.2, you will only have to do a manual upgrade between\n" +" major versions, for example to upgrade to Tails 5.0 in 2021.\n" +msgstr "" + +#. type: Plain text +msgid "- We made automatic upgrades use less memory." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We optimized a bit the size of the download when doing automatic upgrades." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "New features" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"We included several command line tools used by [*SecureDrop*](https://" +"securedrop.org/) users to analyze the metadata of leaked documents on " +"computers that cannot use the *[[Additional Software|doc/first_steps/" +"additional_software]]* feature:" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*PDF Redact Tools*](https://github.com/firstlookmedia/pdf-redact-tools) to " +"redact and strip metadata from text documents before publishing" +msgstr "" + +#. type: Bullet: ' - ' +msgid "" +"[*Tesseract OCR*](https://github.com/tesseract-ocr/tesseract) to convert " +"images containing text into a text document" +msgstr "" + +#. type: Bullet: ' - ' +msgid "[*FFmpeg*](https://ffmpeg.org/) to record and convert audio and video" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Changes and upgrades" +msgstr "" + +#. type: Plain text +msgid "- Update *Tor Browser* to 9.0.3." +msgstr "" + +#. type: Plain text +msgid "" +"- Update *Thunderbird* to [68.3.0](https://www.mozilla.org/en-US/" +"thunderbird/68.3.0/releasenotes/)." +msgstr "" + +#. type: Plain text +msgid "- Update *Linux* to 5.3.15." +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Fixed problems" +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Open *~/Persistent/keepassx.kdbx* by default when starting *KeePassX*. If " +"this database does not exist yet, stop pointing to it in the list of recent " +"databases." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " [[!img version_4.0/keepassxc.png link=\"no\" alt=\"\"]]\n" +msgstr "" + +#. type: Plain text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<a id=\"known-issues\"></a>\n" +msgstr "" + +#. type: Title # +#, no-wrap +msgid "Known issues" +msgstr "" + +#. type: 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.2" +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 4.0, 4.1, and 4.1.1 to 4.2." +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 directly " +"download Tails 4.2:" +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.3 is [[scheduled|contribute/calendar]] for February 11." +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.2\">donating</a> is only one of\n" +"them). Come [[talk to us|about/contact#tails-dev]]!\n" +msgstr "" diff --git a/wiki/src/news/what_we_accomplished_in_2017.id.po b/wiki/src/news/what_we_accomplished_in_2017.id.po index 1685b751a4752f58959e31d91445eae04790fab2..7723ace0a74ffaa54b0a659cf1890024c0e4623e 100644 --- a/wiki/src/news/what_we_accomplished_in_2017.id.po +++ b/wiki/src/news/what_we_accomplished_in_2017.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:47+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" "X-Poedit-Bookmarks: -1,14,-1,-1,-1,-1,-1,-1,-1,-1\n" #. type: Plain text @@ -27,7 +27,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/what_we_do_with_your_money.id.po b/wiki/src/news/what_we_do_with_your_money.id.po index ec0d93d1c1dd5c73bf47183643d4eeb6f912c9b2..7ebc4610a9dee16fa3bccc87d15c2836b739b21e 100644 --- a/wiki/src/news/what_we_do_with_your_money.id.po +++ b/wiki/src/news/what_we_do_with_your_money.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:47+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/who_are_you_helping.id.po b/wiki/src/news/who_are_you_helping.id.po index f5ee2b8ad8d585b438cb32fba39a6ede6bb01f64..63f0eca671ddbbd3d23c3befe05e9472cc4b93a3 100644 --- a/wiki/src/news/who_are_you_helping.id.po +++ b/wiki/src/news/who_are_you_helping.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-09-10 18:36+0000\n" -"PO-Revision-Date: 2019-08-19 12:47+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/why_we_need_donations.id.po b/wiki/src/news/why_we_need_donations.id.po index efba7167d3b55767d03a085bce5f47a07ecffa1b..1deb921a252ab9c6cce6239bfe2093b145fdb4ec 100644 --- a/wiki/src/news/why_we_need_donations.id.po +++ b/wiki/src/news/why_we_need_donations.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:47+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/windows_camouflage_jessie.id.po b/wiki/src/news/windows_camouflage_jessie.id.po index 41b877d50bb61132c93929cfa3bf31e960eb9e37..1cf3a68dc73d3936396551ae25549d0310bcb32b 100644 --- a/wiki/src/news/windows_camouflage_jessie.id.po +++ b/wiki/src/news/windows_camouflage_jessie.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:47+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -36,7 +36,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/news/zwiebelfreunde_raided.id.po b/wiki/src/news/zwiebelfreunde_raided.id.po index 5ee7e70a643a3e0c7005ad5a42d6623861dc2fb3..9603a57e3bd8cc02bf59f008b46987bee5152b95 100644 --- a/wiki/src/news/zwiebelfreunde_raided.id.po +++ b/wiki/src/news/zwiebelfreunde_raided.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-08-19 12:47+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/partners.ar.po b/wiki/src/partners.ar.po index 90541133cdb40d82eafbda47ea1657e93bfb3ea2..1b4a147c2c6cfabf6c7a5ae877dcd748cc214fa1 100644 --- a/wiki/src/partners.ar.po +++ b/wiki/src/partners.ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-20 12:40+0000\n" +"POT-Creation-Date: 2020-01-06 17:11+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" @@ -85,14 +85,6 @@ msgid "" "link=\"no\" alt=\"\"]]</a>" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 4.5 btc" -msgstr "" - -#. type: Content of: <div><p> -msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" -msgstr "" - #. type: Content of: <p> msgid "$1 000 – $9 999" msgstr "" @@ -101,20 +93,22 @@ msgstr "" msgid "An individual - 7 533€" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" +#. type: Content of: <div><p> +msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" +msgid "ThinkPenguin - $1 200" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" +#. type: Content of: <div><p> +msgid "" +"<a href=\"https://www.thinkpenguin.com/\" target=\"_blank\">[[!img " +"thinkpenguin.png link=\"no\" alt=\"\"]]</a>" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - $1 000" +msgid "A group of people - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -207,6 +201,10 @@ msgstr "" msgid "[[!img isc.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "Anonymous donation - 4.5 btc" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "Lush Digital Fund - 11 000€" msgstr "" @@ -223,6 +221,10 @@ msgstr "" msgid "[[!img fpf.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 2 000€" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "An individual - $2 000" msgstr "" @@ -255,6 +257,14 @@ msgstr "" msgid "[[!img i2p.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 1 000€" +msgstr "" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - $1 000" +msgstr "" + #. type: Content of: <div><p> msgid "[[!img tor.png link=\"no\" alt=\"\"]]" msgstr "" @@ -502,3 +512,47 @@ msgstr "" #. type: Attribute 'title' of: <div><p> msgid "Tor - 8 500€" msgstr "" + +#, fuzzy +#| msgid "[[!img gsoc.png link=\"no\"]]" +msgid "[[!img isc.png link=\"no\" alt=\"Counterpart International logo\"]]" +msgstr "[[!img gsoc.png link=\"no\"]]" + +#, fuzzy +#| msgid "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" +msgid "" +"<a href=\"https://deeponion.org/\" target=\"_blank\">[[!img deeponion.png " +"link=\"no\" alt=\"DeepOnion logo\"]]</a>" +msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "[[!img ndi.png link=\"no\"]]" +msgid "[[!img handshake.png link=\"no\"]]" +msgstr "[[!img ndi.png link=\"no\"]]" + +msgid "[[!toggle id=\"previous_partners\" text=\"Previous partners\"]]" +msgstr "[[!toggle id=\"previous_partners\" text=\"Frühere Partner\"]]" + +msgid "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" +msgstr "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" + +msgid "\"\"\"]]" +msgstr "\"\"\"]]" + +msgid "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" +msgstr "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "> $100.000" +msgid "> $100 000" +msgstr "> $100.000" diff --git a/wiki/src/partners.ca.po b/wiki/src/partners.ca.po index b2f6ac76d9bc1c00c1d5a13098431874dcaf5daa..9cf83bf23d48fe571c4f6854dae32b1a589bc6c4 100644 --- a/wiki/src/partners.ca.po +++ b/wiki/src/partners.ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-20 12:40+0000\n" +"POT-Creation-Date: 2020-01-06 17:11+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" @@ -85,14 +85,6 @@ msgid "" "link=\"no\" alt=\"\"]]</a>" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 4.5 btc" -msgstr "" - -#. type: Content of: <div><p> -msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" -msgstr "" - #. type: Content of: <p> msgid "$1 000 – $9 999" msgstr "" @@ -101,20 +93,22 @@ msgstr "" msgid "An individual - 7 533€" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" +#. type: Content of: <div><p> +msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" +msgid "ThinkPenguin - $1 200" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" +#. type: Content of: <div><p> +msgid "" +"<a href=\"https://www.thinkpenguin.com/\" target=\"_blank\">[[!img " +"thinkpenguin.png link=\"no\" alt=\"\"]]</a>" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - $1 000" +msgid "A group of people - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -207,6 +201,10 @@ msgstr "" msgid "[[!img isc.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "Anonymous donation - 4.5 btc" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "Lush Digital Fund - 11 000€" msgstr "" @@ -223,6 +221,10 @@ msgstr "" msgid "[[!img fpf.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 2 000€" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "An individual - $2 000" msgstr "" @@ -255,6 +257,14 @@ msgstr "" msgid "[[!img i2p.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 1 000€" +msgstr "" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - $1 000" +msgstr "" + #. type: Content of: <div><p> msgid "[[!img tor.png link=\"no\" alt=\"\"]]" msgstr "" @@ -502,3 +512,47 @@ msgstr "" #. type: Attribute 'title' of: <div><p> msgid "Tor - 8 500€" msgstr "" + +#, fuzzy +#| msgid "[[!img gsoc.png link=\"no\"]]" +msgid "[[!img isc.png link=\"no\" alt=\"Counterpart International logo\"]]" +msgstr "[[!img gsoc.png link=\"no\"]]" + +#, fuzzy +#| msgid "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" +msgid "" +"<a href=\"https://deeponion.org/\" target=\"_blank\">[[!img deeponion.png " +"link=\"no\" alt=\"DeepOnion logo\"]]</a>" +msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "[[!img ndi.png link=\"no\"]]" +msgid "[[!img handshake.png link=\"no\"]]" +msgstr "[[!img ndi.png link=\"no\"]]" + +msgid "[[!toggle id=\"previous_partners\" text=\"Previous partners\"]]" +msgstr "[[!toggle id=\"previous_partners\" text=\"Frühere Partner\"]]" + +msgid "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" +msgstr "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" + +msgid "\"\"\"]]" +msgstr "\"\"\"]]" + +msgid "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" +msgstr "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "> $100.000" +msgid "> $100 000" +msgstr "> $100.000" diff --git a/wiki/src/partners.de.po b/wiki/src/partners.de.po index b101ba1185b5e129ef62b6b9d01f9e1d5d0b8756..991c3b4035877c0a7e043b9726c942eae387e9c3 100644 --- a/wiki/src/partners.de.po +++ b/wiki/src/partners.de.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-11-20 12:40+0000\n" -"PO-Revision-Date: 2018-04-06 18:26+0200\n" -"Last-Translator: Tails translators <tails@boum.org>\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2020-01-06 17:11+0000\n" +"PO-Revision-Date: 2020-01-21 18:26+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.6\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: outside any tag (error?) msgid "[[!meta title=\"Partners\"]]" @@ -105,18 +107,6 @@ msgid "" "link=\"no\" alt=\"\"]]</a>" msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" -#. type: Attribute 'title' of: <div><p> -#, fuzzy -#| msgid "Anonymous donation - 2.902€" -msgid "Anonymous donation - 4.5 btc" -msgstr "Anonyme Spende - 2.902€" - -#. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img anonymous.png link=\"no\"]]" -msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" -msgstr "[[!img anonymous.png link=\"no\"]]" - #. type: Content of: <p> #, fuzzy #| msgid "$1.000 – $9.999" @@ -129,27 +119,27 @@ msgstr "$1.000 – $9.999" msgid "An individual - 7 533€" msgstr "Eine Einzelperson - 2.000€" -#. type: Attribute 'title' of: <div><p> +#. type: Content of: <div><p> #, fuzzy -#| msgid "An individual - 2.000€" -msgid "An individual - 2 000€" -msgstr "Eine Einzelperson - 2.000€" +#| msgid "[[!img anonymous.png link=\"no\"]]" +msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" +msgstr "[[!img anonymous.png link=\"no\"]]" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" +msgid "ThinkPenguin - $1 200" msgstr "" -#. type: Attribute 'title' of: <div><p> +#. type: Content of: <div><p> #, fuzzy -#| msgid "An individual - 2.000€" -msgid "An individual - 1 000€" -msgstr "Eine Einzelperson - 2.000€" +#| msgid "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" +msgid "" +"<a href=\"https://www.thinkpenguin.com/\" target=\"_blank\">[[!img " +"thinkpenguin.png link=\"no\" alt=\"\"]]</a>" +msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" #. type: Attribute 'title' of: <div><p> -#, fuzzy -#| msgid "An individual - $2.000" -msgid "An individual - $1 000" -msgstr "Eine Einzelperson - $2.000" +msgid "A group of people - 1 000€" +msgstr "" #. type: Attribute 'title' of: <div><p> #, fuzzy @@ -158,24 +148,24 @@ msgid "TOP10VPN - $1 000" msgstr "ExpressVPN - $1.000" #. type: Content of: <div><p> -#, fuzzy -#| msgid "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" msgid "" "<a href=\"https://www.top10vpn.com/\" target=\"_blank\">[[!img top10vpn.png " "link=\"no\" alt=\"\"]]</a>" -msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" +msgstr "" +"<a href=\"https://www.top10vpn.com/\" target=\"_blank\">[[!img top10vpn.png " +"link=\"no\" alt=\"\"]]</a>" #. type: Attribute 'title' of: <div><p> msgid "Cooltechzone - $1 000" msgstr "" #. type: Content of: <div><p> -#, fuzzy -#| msgid "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" msgid "" "<a href=\"https://cooltechzone.com/\" target=\"_blank\">[[!img cooltechzone." "png link=\"no\" alt=\"\"]]</a>" -msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" +msgstr "" +"<a href=\"https://cooltechzone.com/\" target=\"_blank\">[[!img " +"cooltechzone.png link=\"no\" alt=\"\"]]</a>" #. type: Attribute 'title' of: <div><p> #, fuzzy @@ -252,10 +242,8 @@ msgid "DuckDuckGo donation challenge - $38 080" msgstr "" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img ddg.png link=\"no\"]]" msgid "[[!img ddg.png link=\"no\" alt=\"\"]]" -msgstr "[[!img ddg.png link=\"no\"]]" +msgstr "[[!img ddg.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "ISC - 20 743€" @@ -267,6 +255,12 @@ msgstr "" msgid "[[!img isc.png link=\"no\" alt=\"\"]]" msgstr "[[!img gsoc.png link=\"no\"]]" +#. type: Attribute 'title' of: <div><p> +#, fuzzy +#| msgid "Anonymous donation - 2.902€" +msgid "Anonymous donation - 4.5 btc" +msgstr "Anonyme Spende - 2.902€" + #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Lush Digital Fund - 11.000€" @@ -291,6 +285,12 @@ msgstr "Freedom of the Press Foundation - $8.859" msgid "[[!img fpf.png link=\"no\" alt=\"\"]]" msgstr "[[!img fpf.png link=\"no\"]]" +#. type: Attribute 'title' of: <div><p> +#, fuzzy +#| msgid "An individual - 2.000€" +msgid "An individual - 2 000€" +msgstr "Eine Einzelperson - 2.000€" + #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "An individual - $2.000" @@ -337,6 +337,18 @@ msgstr "" msgid "[[!img i2p.png link=\"no\" alt=\"\"]]" msgstr "[[!img fpf.png link=\"no\"]]" +#. type: Attribute 'title' of: <div><p> +#, fuzzy +#| msgid "An individual - 2.000€" +msgid "An individual - 1 000€" +msgstr "Eine Einzelperson - 2.000€" + +#. type: Attribute 'title' of: <div><p> +#, fuzzy +#| msgid "An individual - $2.000" +msgid "An individual - $1 000" +msgstr "Eine Einzelperson - $2.000" + #. type: Content of: <div><p> #, fuzzy #| msgid "[[!img tor.png link=\"no\"]]" diff --git a/wiki/src/partners.es.po b/wiki/src/partners.es.po index 342daedef871173f934e8f014d34d6c6037965c5..501f855846d0a2abfef6480b45f82d2f1696baf1 100644 --- a/wiki/src/partners.es.po +++ b/wiki/src/partners.es.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-11-20 12:40+0000\n" -"PO-Revision-Date: 2019-08-24 06:22+0000\n" -"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" +"POT-Creation-Date: 2020-01-06 17:11+0000\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" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: outside any tag (error?) msgid "[[!meta title=\"Partners\"]]" @@ -110,16 +110,6 @@ msgstr "" "<a href=\"https://thebestvpn.com/\" target=\"_blank\">[[!img bestvpn.png " "link=\"no\" alt=\"logo de The Best VPN\"]]</a>" -#. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 4.5 btc" -msgstr "Donación anónima - 4.5 btc" - -#. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img anonymous.png link=\"no\"]]" -msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" -msgstr "[[!img anonymous.png link=\"no\"]]" - #. type: Content of: <p> msgid "$1 000 – $9 999" msgstr "$1 000 – $9 999" @@ -130,21 +120,31 @@ msgstr "$1 000 – $9 999" msgid "An individual - 7 533€" msgstr "Una persona - 2.000€" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" -msgstr "Una persona - 2.000€" +#. type: Content of: <div><p> +#, fuzzy +#| msgid "[[!img anonymous.png link=\"no\"]]" +msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" +msgstr "[[!img anonymous.png link=\"no\"]]" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" -msgstr "Un grupo de personas - 1 000€" +msgid "ThinkPenguin - $1 200" +msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" -msgstr "Una persona - 1.000€" +#. type: Content of: <div><p> +#, fuzzy +#| msgid "" +#| "<a href=\"https://thebestvpn.com/\" target=\"_blank\">[[!img bestvpn.png " +#| "link=\"no\" alt=\"The Best VPN logo\"]]</a>" +msgid "" +"<a href=\"https://www.thinkpenguin.com/\" target=\"_blank\">[[!img " +"thinkpenguin.png link=\"no\" alt=\"\"]]</a>" +msgstr "" +"<a href=\"https://thebestvpn.com/\" target=\"_blank\">[[!img bestvpn.png " +"link=\"no\" alt=\"logo de The Best VPN\"]]</a>" #. type: Attribute 'title' of: <div><p> -msgid "An individual - $1 000" -msgstr "Una persona - $2 000" +msgid "A group of people - 1 000€" +msgstr "Un grupo de personas - 1 000€" #. type: Attribute 'title' of: <div><p> #, fuzzy @@ -269,30 +269,32 @@ msgid "ISC - 20 743€" msgstr "ISC - 20 743€" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img gsoc.png link=\"no\"]]" msgid "[[!img isc.png link=\"no\" alt=\"\"]]" -msgstr "[[!img gsoc.png link=\"no\"]]" +msgstr "[[!img isc.png link=\"no\" alt=\"\"]]" + +#. type: Attribute 'title' of: <div><p> +msgid "Anonymous donation - 4.5 btc" +msgstr "Donación anónima - 4.5 btc" #. type: Attribute 'title' of: <div><p> msgid "Lush Digital Fund - 11 000€" msgstr "Lush Digital Fund - 11 000€" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img lush.png link=\"no\"]]" msgid "[[!img lush.png link=\"no\" alt=\"\"]]" -msgstr "[[!img lush.png link=\"no\"]]" +msgstr "[[!img lush.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Freedom of the Press Foundation - $3 954" msgstr "Freedom of the Press Foundation - $3 954" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img fpf.png link=\"no\"]]" msgid "[[!img fpf.png link=\"no\" alt=\"\"]]" -msgstr "[[!img fpf.png link=\"no\"]]" +msgstr "[[!img fpf.png link=\"no\" alt=\"\"]]" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 2 000€" +msgstr "Una persona - 2.000€" #. type: Attribute 'title' of: <div><p> msgid "An individual - $2 000" @@ -315,26 +317,28 @@ msgid "DeepOnion - 0.154 btc" msgstr "DeepOnion - 0.154 btc" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img debian.png link=\"no\"]]" msgid "[[!img deeponion.png link=\"no\" alt=\"\"]]" -msgstr "[[!img debian.png link=\"no\"]]" +msgstr "[[!img deeponion.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "I2P - 0.1 btc" msgstr "I2P - 0.1 btc" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img i2p.png link=\"no\"]]" msgid "[[!img i2p.png link=\"no\" alt=\"\"]]" -msgstr "[[!img i2p.png link=\"no\"]]" +msgstr "[[!img i2p.png link=\"no\" alt=\"\"]]" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 1 000€" +msgstr "Una persona - 1.000€" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - $1 000" +msgstr "Una persona - $2 000" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img tor.png link=\"no\"]]" msgid "[[!img tor.png link=\"no\" alt=\"\"]]" -msgstr "[[!img tor.png link=\"no\"]]" +msgstr "[[!img tor.png link=\"no\" alt=\"\"]]" #. type: Content of: <h2> msgid "2017" @@ -349,20 +353,16 @@ msgid "Mozilla Open Source Support - $77 000" msgstr "Mozilla Open Source Support - $77 000" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img mozilla.png link=\"no\"]]" msgid "[[!img mozilla.png link=\"no\" alt=\"\"]]" -msgstr "[[!img mozilla.png link=\"no\"]]" +msgstr "[[!img mozilla.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "ExpressVPN - $1 000" msgstr "ExpressVPN - $1 000" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img expressvpn.png link=\"no\"]]" msgid "[[!img expressvpn.png link=\"no\" alt=\"\"]]" -msgstr "[[!img expressvpn.png link=\"no\"]]" +msgstr "[[!img expressvpn.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Anonymous donation - 0.5 btc" @@ -426,10 +426,8 @@ msgid "Mediapart - 2 000€" msgstr "Mediapart - 2 000€" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img mediapart.png link=\"no\"]]" msgid "[[!img mediapart.png link=\"no\" alt=\"\"]]" -msgstr "[[!img mediapart.png link=\"no\"]]" +msgstr "[[!img mediapart.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Anonymous donation - 2 554€" @@ -452,10 +450,8 @@ msgid "Google - GSoC Tails Server" msgstr "Google - GSoC Tails Server" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img gsoc.png link=\"no\"]]" msgid "[[!img gsoc.png link=\"no\" alt=\"\"]]" -msgstr "[[!img gsoc.png link=\"no\"]]" +msgstr "[[!img gsoc.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Tor - Travel sponsorship & server rent" @@ -474,10 +470,8 @@ msgid "Hivos International - 70 000€" msgstr "Hivos International - 70 000€" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img hivos.png link=\"no\"]]" msgid "[[!img hivos.png link=\"no\" alt=\"\"]]" -msgstr "[[!img hivos.png link=\"no\"]]" +msgstr "[[!img hivos.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "DuckDuckGo - $25 000" @@ -504,10 +498,8 @@ msgid "Localization Lab - Translation to Farsi" msgstr "Localization Lab - Traducción al persa" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img localizationlab.png link=\"no\"]]" msgid "[[!img localizationlab.png link=\"no\" alt=\"\"]]" -msgstr "[[!img localizationlab.png link=\"no\"]]" +msgstr "[[!img localizationlab.png link=\"no\" alt=\"\"]]" #. type: Content of: <h2> msgid "2014" @@ -518,10 +510,8 @@ msgid "Access Now - 50 000€" msgstr "Access Now - 50 000€" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img accessnow.png link=\"no\"]]" msgid "[[!img accessnow.png link=\"no\" alt=\"\"]]" -msgstr "[[!img accessnow.png link=\"no\"]]" +msgstr "[[!img accessnow.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Freedom of the Press Foundation - $33 377" @@ -532,30 +522,24 @@ msgid "Open Internet Tools - $25 800" msgstr "Open Internet Tools - $25 800" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img openitp.png link=\"no\"]]" msgid "[[!img openitp.png link=\"no\" alt=\"\"]]" -msgstr "[[!img openitp.png link=\"no\"]]" +msgstr "[[!img openitp.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Förderung Freier Information und Software - 5 000€" msgstr "Förderung Freier Information und Software - 5 000€" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img ffis.png link=\"no\"]]" msgid "[[!img ffis.png link=\"no\" alt=\"\"]]" -msgstr "[[!img ffis.png link=\"no\"]]" +msgstr "[[!img ffis.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Debian - $5 000" msgstr "Debian - $5 000" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img debian.png link=\"no\"]]" msgid "[[!img debian.png link=\"no\" alt=\"\"]]" -msgstr "[[!img debian.png link=\"no\"]]" +msgstr "[[!img debian.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Tor - $5 000" @@ -574,10 +558,8 @@ msgid "National Democratic Institute - $21 000" msgstr "National Democratic Institute - $21 000" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img ndi.png link=\"no\"]]" msgid "[[!img ndi.png link=\"no\" alt=\"\"]]" -msgstr "[[!img ndi.png link=\"no\"]]" +msgstr "[[!img ndi.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Tor - $20 000" diff --git a/wiki/src/partners.fa.po b/wiki/src/partners.fa.po index 3f05425e14c70fef49edf92fb0f59495ca6b8955..7bbaae81806062f8fca64aa3f8cd1c63e921fc18 100644 --- a/wiki/src/partners.fa.po +++ b/wiki/src/partners.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-20 12:40+0000\n" +"POT-Creation-Date: 2020-01-06 17:11+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" @@ -85,14 +85,6 @@ msgid "" "link=\"no\" alt=\"\"]]</a>" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 4.5 btc" -msgstr "" - -#. type: Content of: <div><p> -msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" -msgstr "" - #. type: Content of: <p> msgid "$1 000 – $9 999" msgstr "" @@ -101,20 +93,22 @@ msgstr "" msgid "An individual - 7 533€" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" +#. type: Content of: <div><p> +msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" +msgid "ThinkPenguin - $1 200" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" +#. type: Content of: <div><p> +msgid "" +"<a href=\"https://www.thinkpenguin.com/\" target=\"_blank\">[[!img " +"thinkpenguin.png link=\"no\" alt=\"\"]]</a>" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - $1 000" +msgid "A group of people - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -207,6 +201,10 @@ msgstr "" msgid "[[!img isc.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "Anonymous donation - 4.5 btc" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "Lush Digital Fund - 11 000€" msgstr "" @@ -223,6 +221,10 @@ msgstr "" msgid "[[!img fpf.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 2 000€" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "An individual - $2 000" msgstr "" @@ -255,6 +257,14 @@ msgstr "" msgid "[[!img i2p.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 1 000€" +msgstr "" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - $1 000" +msgstr "" + #. type: Content of: <div><p> msgid "[[!img tor.png link=\"no\" alt=\"\"]]" msgstr "" diff --git a/wiki/src/partners.fr.po b/wiki/src/partners.fr.po index 7767a24871c8c3fd64432c6a1bb8a5a0b4c8bce1..4083939396f760b9894096eb6eb8b66e8f289019 100644 --- a/wiki/src/partners.fr.po +++ b/wiki/src/partners.fr.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-11-20 12:40+0000\n" -"PO-Revision-Date: 2019-09-24 22:50+0000\n" +"POT-Creation-Date: 2020-01-06 17:11+0000\n" +"PO-Revision-Date: 2020-01-07 15:25+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: outside any tag (error?) msgid "[[!meta title=\"Partners\"]]" @@ -65,32 +65,24 @@ msgid "Handshake Foundation - $200 000" msgstr "Handshake Foundation - 200 000$" #. type: Content of: <div><p> -#, fuzzy -#| msgid "" -#| "<a href=\"http://www.handshakefoundation.org/\">[[!img handshake.png link=" -#| "\"no\" alt=\"Handshake Foundation logo\"]]</a>" msgid "" "<a href=\"https://handshake.org/\" target=\"_blank\">[[!img handshake.png " "link=\"no\" alt=\"\"]]</a>" msgstr "" -"<a href=\"http://www.handshakefoundation.org/\">[[!img handshake.png link=" -"\"no\" alt=\"Handshake Foundation logo\"]]</a>" +"<a href=\"https://handshake.org/\" target=\"_blank\">[[!img handshake.png " +"link=\"no\" alt=\"\"]]</a>" #. type: Attribute 'title' of: <div><p> msgid "Mozilla Open Source Support - $146 530" msgstr "Mozilla Open Source Support - 146 530$" #. type: Content of: <div><p> -#, fuzzy -#| msgid "" -#| "<a href=\"https://mozilla.org/\" target=\"_blank\">[[!img mozilla.png " -#| "link=\"no\"]]</a>" msgid "" "<a href=\"https://mozilla.org/\" target=\"_blank\">[[!img mozilla.png link=" "\"no\" alt=\"\"]]</a>" msgstr "" "<a href=\"https://www.mozilla.org/fr/\" target=\"_blank\">[[!img mozilla.png " -"link=\"no\"]]</a>" +"link=\"no\" alt=\"\"]]</a>" #. type: Content of: <p> msgid "$10 000 – $50 000" @@ -98,119 +90,91 @@ msgstr "10 000$ – 50 000$" #. type: Attribute 'title' of: <div><p> msgid "PrivCoin - 6 btc" -msgstr "" +msgstr "PrivCoin - 6 btc" #. type: Content of: <div><p> -#, fuzzy -#| msgid "" -#| "<a href=\"https://thebestvpn.com/\" target=\"_blank\">[[!img bestvpn.png " -#| "link=\"no\"]]</a>" msgid "" "<a href=\"https://www.privcoin.io/\" target=\"_blank\">[[!img privcoin.png " "link=\"no\" alt=\"\"]]</a>" msgstr "" -"<a href=\"https://thebestvpn.com/\" target=\"_blank\">[[!img bestvpn.png " -"link=\"no\"]]</a>" - -#. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 4.5 btc" -msgstr "Don anonyme - 4,5 btc" - -#. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img anonymous.png link=\"no\"]]" -msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" -msgstr "[[!img anonymous.png link=\"no\"]]" +"<a href=\"https://www.privcoin.io/\" target=\"_blank\">[[!img privcoin.png " +"link=\"no\" alt=\"\"]]</a>" #. type: Content of: <p> msgid "$1 000 – $9 999" msgstr "1 000$ – 9 999$" #. type: Attribute 'title' of: <div><p> -#, fuzzy -#| msgid "An individual - 2 000€" msgid "An individual - 7 533€" -msgstr "Un individu - 2 000€" +msgstr "Un individu - 7 533€" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" -msgstr "Un individu - 2 000€" +#. type: Content of: <div><p> +msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" +msgstr "[[!img anonymous.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" -msgstr "Un groupe de personnes - 1 000€" +msgid "ThinkPenguin - $1 200" +msgstr "ThinkPenguin - 1 200$" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" -msgstr "Un individu - 1 000€" +#. type: Content of: <div><p> +msgid "" +"<a href=\"https://www.thinkpenguin.com/\" target=\"_blank\">[[!img " +"thinkpenguin.png link=\"no\" alt=\"\"]]</a>" +msgstr "" +"<a href=\"https://www.thinkpenguin.com/\" target=\"_blank\">[[!img " +"thinkpenguin.png link=\"no\" alt=\"\"]]</a>" #. type: Attribute 'title' of: <div><p> -msgid "An individual - $1 000" -msgstr "Un individu - 1 000$" +msgid "A group of people - 1 000€" +msgstr "Un groupe de personnes - 1 000€" #. type: Attribute 'title' of: <div><p> msgid "TOP10VPN - $1 000" msgstr "TOP10VPN - 1 000$" #. type: Content of: <div><p> -#, fuzzy -#| msgid "" -#| "<a href=\"https://thebestvpn.com/\" target=\"_blank\">[[!img bestvpn.png " -#| "link=\"no\"]]</a>" msgid "" "<a href=\"https://www.top10vpn.com/\" target=\"_blank\">[[!img top10vpn.png " "link=\"no\" alt=\"\"]]</a>" msgstr "" -"<a href=\"https://thebestvpn.com/\" target=\"_blank\">[[!img bestvpn.png " -"link=\"no\"]]</a>" +"<a href=\"https://www.top10vpn.com/\" target=\"_blank\">[[!img top10vpn.png " +"link=\"no\" alt=\"\"]]</a>" #. type: Attribute 'title' of: <div><p> msgid "Cooltechzone - $1 000" msgstr "Cooltechzone - 1 000$" #. type: Content of: <div><p> -#, fuzzy -#| msgid "" -#| "<a href=\"https://thebestvpn.com/\" target=\"_blank\">[[!img bestvpn.png " -#| "link=\"no\"]]</a>" msgid "" "<a href=\"https://cooltechzone.com/\" target=\"_blank\">[[!img cooltechzone." "png link=\"no\" alt=\"\"]]</a>" msgstr "" -"<a href=\"https://thebestvpn.com/\" target=\"_blank\">[[!img bestvpn.png " -"link=\"no\"]]</a>" +"<a href=\"https://cooltechzone.com/\" target=\"_blank\">[[!img cooltechzone." +"png link=\"no\" alt=\"\"]]</a>" #. type: Attribute 'title' of: <div><p> msgid "VPN Review - $1 000" msgstr "VPN Review - 1 000$" #. type: Content of: <div><p> -#, fuzzy -#| msgid "" -#| "<a href=\"https://thebestvpn.com/\" target=\"_blank\">[[!img bestvpn.png " -#| "link=\"no\"]]</a>" msgid "" "<a href=\"https://vpn-review.com/\" target=\"_blank\">[[!img vpnreview.png " "link=\"no\" alt=\"\"]]</a>" msgstr "" -"<a href=\"https://thebestvpn.com/\" target=\"_blank\">[[!img bestvpn.png " -"link=\"no\"]]</a>" +"<a href=\"https://vpn-review.com/\" target=\"_blank\">[[!img vpnreview.png " +"link=\"no\" alt=\"\"]]</a>" #. type: Attribute 'title' of: <div><p> msgid "The Best VPN - $1 000" msgstr "The Best VPN - 1 000$" #. type: Content of: <div><p> -#, fuzzy -#| msgid "" -#| "<a href=\"https://thebestvpn.com/\" target=\"_blank\">[[!img bestvpn.png " -#| "link=\"no\"]]</a>" msgid "" "<a href=\"https://thebestvpn.com/\" target=\"_blank\">[[!img bestvpn.png " "link=\"no\" alt=\"\"]]</a>" msgstr "" "<a href=\"https://thebestvpn.com/\" target=\"_blank\">[[!img bestvpn.png " -"link=\"no\"]]</a>" +"link=\"no\" alt=\"\"]]</a>" #. type: Content of: <p> msgid "in-kind" @@ -221,12 +185,12 @@ msgid "Tor - Server rent" msgstr "Tor - Location de serveur" #. type: Content of: <div><p> -#, fuzzy -#| msgid "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" msgid "" "<a href=\"https://torproject.org\" target=\"_blank\">[[!img tor.png link=\"no" "\" alt=\"\"]]</a>" -msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" +msgstr "" +"<a href=\"https://www.torproject.org/fr/\" target=\"_blank\">[[!img tor.png " +"link=\"no\" alt=\"\"]]</a>" #. type: Content of: <h1> msgid "Previous partners" @@ -245,50 +209,48 @@ msgid "Open Technology Fund - $132 390" msgstr "Open Technology Fund - 132 390$" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img otf.png link=\"no\"]]" msgid "[[!img otf.png link=\"no\" alt=\"\"]]" -msgstr "[[!img otf.png link=\"no\"]]" +msgstr "[[!img otf.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "DuckDuckGo donation challenge - $38 080" msgstr "DuckDuckGo donation challenge - 38 080$" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img ddg.png link=\"no\"]]" msgid "[[!img ddg.png link=\"no\" alt=\"\"]]" -msgstr "[[!img ddg.png link=\"no\"]]" +msgstr "[[!img ddg.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "ISC - 20 743€" msgstr "ISC - 20 743€" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img gsoc.png link=\"no\"]]" msgid "[[!img isc.png link=\"no\" alt=\"\"]]" -msgstr "[[!img gsoc.png link=\"no\"]]" +msgstr "[[!img isc.png link=\"no\" alt=\"\"]]" + +#. type: Attribute 'title' of: <div><p> +msgid "Anonymous donation - 4.5 btc" +msgstr "Don anonyme - 4,5 btc" #. type: Attribute 'title' of: <div><p> msgid "Lush Digital Fund - 11 000€" msgstr "Lush Digital Fund - 11 000€" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img lush.png link=\"no\"]]" msgid "[[!img lush.png link=\"no\" alt=\"\"]]" -msgstr "[[!img lush.png link=\"no\"]]" +msgstr "[[!img lush.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Freedom of the Press Foundation - $3 954" msgstr "Freedom of the Press Foundation - 3 954$" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img fpf.png link=\"no\"]]" msgid "[[!img fpf.png link=\"no\" alt=\"\"]]" -msgstr "[[!img fpf.png link=\"no\"]]" +msgstr "[[!img fpf.png link=\"no\" alt=\"\"]]" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 2 000€" +msgstr "Un individu - 2 000€" #. type: Attribute 'title' of: <div><p> msgid "An individual - $2 000" @@ -311,26 +273,28 @@ msgid "DeepOnion - 0.154 btc" msgstr "DeepOnion - 0,154 btc" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img debian.png link=\"no\"]]" msgid "[[!img deeponion.png link=\"no\" alt=\"\"]]" -msgstr "[[!img debian.png link=\"no\"]]" +msgstr "[[!img deeponion.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "I2P - 0.1 btc" msgstr "I2P - 0,1 btc" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img i2p.png link=\"no\"]]" msgid "[[!img i2p.png link=\"no\" alt=\"\"]]" -msgstr "[[!img i2p.png link=\"no\"]]" +msgstr "[[!img i2p.png link=\"no\" alt=\"\"]]" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 1 000€" +msgstr "Un individu - 1 000€" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - $1 000" +msgstr "Un individu - 1 000$" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img tor.png link=\"no\"]]" msgid "[[!img tor.png link=\"no\" alt=\"\"]]" -msgstr "[[!img tor.png link=\"no\"]]" +msgstr "[[!img tor.png link=\"no\" alt=\"\"]]" #. type: Content of: <h2> msgid "2017" @@ -345,20 +309,16 @@ msgid "Mozilla Open Source Support - $77 000" msgstr "Mozilla Open Source Support - 77 000$" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img mozilla.png link=\"no\"]]" msgid "[[!img mozilla.png link=\"no\" alt=\"\"]]" -msgstr "[[!img mozilla.png link=\"no\"]]" +msgstr "[[!img mozilla.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "ExpressVPN - $1 000" msgstr "ExpressVPN - 1 000$" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img expressvpn.png link=\"no\"]]" msgid "[[!img expressvpn.png link=\"no\" alt=\"\"]]" -msgstr "[[!img expressvpn.png link=\"no\"]]" +msgstr "[[!img expressvpn.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Anonymous donation - 0.5 btc" @@ -421,10 +381,8 @@ msgid "Mediapart - 2 000€" msgstr "Mediapart - 2 000€" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img mediapart.png link=\"no\"]]" msgid "[[!img mediapart.png link=\"no\" alt=\"\"]]" -msgstr "[[!img mediapart.png link=\"no\"]]" +msgstr "[[!img mediapart.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Anonymous donation - 2 554€" @@ -447,10 +405,8 @@ msgid "Google - GSoC Tails Server" msgstr "Google - GSoC Tails Server" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img gsoc.png link=\"no\"]]" msgid "[[!img gsoc.png link=\"no\" alt=\"\"]]" -msgstr "[[!img gsoc.png link=\"no\"]]" +msgstr "[[!img gsoc.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Tor - Travel sponsorship & server rent" @@ -469,10 +425,8 @@ msgid "Hivos International - 70 000€" msgstr "Hivos International - 70 000€" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img hivos.png link=\"no\"]]" msgid "[[!img hivos.png link=\"no\" alt=\"\"]]" -msgstr "[[!img hivos.png link=\"no\"]]" +msgstr "[[!img hivos.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "DuckDuckGo - $25 000" @@ -500,10 +454,8 @@ msgid "Localization Lab - Translation to Farsi" msgstr "Localization Lab - Traduction en persan" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img localizationlab.png link=\"no\"]]" msgid "[[!img localizationlab.png link=\"no\" alt=\"\"]]" -msgstr "[[!img localizationlab.png link=\"no\"]]" +msgstr "[[!img localizationlab.png link=\"no\" alt=\"\"]]" #. type: Content of: <h2> msgid "2014" @@ -514,10 +466,8 @@ msgid "Access Now - 50 000€" msgstr "Access Now - 50 000€" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img accessnow.png link=\"no\"]]" msgid "[[!img accessnow.png link=\"no\" alt=\"\"]]" -msgstr "[[!img accessnow.png link=\"no\"]]" +msgstr "[[!img accessnow.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Freedom of the Press Foundation - $33 377" @@ -528,30 +478,24 @@ msgid "Open Internet Tools - $25 800" msgstr "Open Internet Tools - 25 800$" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img openitp.png link=\"no\"]]" msgid "[[!img openitp.png link=\"no\" alt=\"\"]]" -msgstr "[[!img openitp.png link=\"no\"]]" +msgstr "[[!img openitp.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Förderung Freier Information und Software - 5 000€" msgstr "Förderung Freier Information und Software - 5 000€" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img ffis.png link=\"no\"]]" msgid "[[!img ffis.png link=\"no\" alt=\"\"]]" -msgstr "[[!img ffis.png link=\"no\"]]" +msgstr "[[!img ffis.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Debian - $5 000" msgstr "Debian - 5 000$" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img debian.png link=\"no\"]]" msgid "[[!img debian.png link=\"no\" alt=\"\"]]" -msgstr "[[!img debian.png link=\"no\"]]" +msgstr "[[!img debian.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Tor - $5 000" @@ -570,10 +514,8 @@ msgid "National Democratic Institute - $21 000" msgstr "National Democratic Institute - 21 000$" #. type: Content of: <div><p> -#, fuzzy -#| msgid "[[!img ndi.png link=\"no\"]]" msgid "[[!img ndi.png link=\"no\" alt=\"\"]]" -msgstr "[[!img ndi.png link=\"no\"]]" +msgstr "[[!img ndi.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "Tor - $20 000" diff --git a/wiki/src/partners.html b/wiki/src/partners.html index f21796b5735a4fbee8d0e21434343f92cc231fb8..7995d9fce15eaddec4f54e607bf92e3bc6eb5783 100644 --- a/wiki/src/partners.html +++ b/wiki/src/partners.html @@ -25,16 +25,13 @@ Are you an individual and want to help Tails? [[We warmly welcome your donations <p class="amount-range">$10 000 – $50 000</p> <div class="currentpartner"> <p class="partner partner-size-3" title="PrivCoin - 6 btc"><a href="https://www.privcoin.io/" target="_blank">[[!img privcoin.png link="no" alt=""]]</a></p><!-- 2019-11-17 --> - <p class="partner partner-size-3" title="Anonymous donation - 4.5 btc">[[!img anonymous.png link="no" alt=""]]</p><!-- 2018-12-07 --> </div> <p class="amount-range">$1 000 – $9 999</p> <div class="currentpartner"> <p class="partner partner-size-4" title="An individual - 7 533€">[[!img anonymous.png link="no" alt=""]]</p><!-- 2019-11-14 (heritage) --> - <p class="partner partner-size-4" title="An individual - 2 000€">[[!img anonymous.png link="no" alt=""]]</p><!-- 2018-12-17 --> + <p class="partner partner-size-4" title="ThinkPenguin - $1 200"><a href="https://www.thinkpenguin.com/" target="_blank">[[!img thinkpenguin.png link="no" alt=""]]</a></p><!-- 2019-12-18 --> <p class="partner partner-size-4" title="A group of people - 1 000€">[[!img anonymous.png link="no" alt=""]]</p><!-- 2019-04-05 --> - <p class="partner partner-size-4" title="An individual - 1 000€">[[!img anonymous.png link="no" alt=""]]</p><!-- 2018-12-18 --> - <p class="partner partner-size-4" title="An individual - $1 000">[[!img anonymous.png link="no" alt=""]]</p><!-- 2018-12-19 --> <p class="partner partner-size-4" title="TOP10VPN - $1 000"><a href="https://www.top10vpn.com/" target="_blank">[[!img top10vpn.png link="no" alt=""]]</a></p><!-- 2019-09-12 --> <p class="partner partner-size-4" title="Cooltechzone - $1 000"><a href="https://cooltechzone.com/" target="_blank">[[!img cooltechzone.png link="no" alt=""]]</a></p><!-- 2019-07-04 --> <p class="partner partner-size-4" title="VPN Review - $1 000"><a href="https://vpn-review.com/" target="_blank">[[!img vpnreview.png link="no" alt=""]]</a></p><!-- 2019-06-17 --> @@ -60,18 +57,22 @@ Are you an individual and want to help Tails? [[We warmly welcome your donations <div class="pastpartner"> <p class="partner partner-size-3" title="DuckDuckGo donation challenge - $38 080">[[!img ddg.png link="no" alt=""]]</p> <p class="partner partner-size-3" title="ISC - 20 743€ ">[[!img isc.png link="no" alt=""]]</p><!-- 2018-09-04 --> + <p class="partner partner-size-3" title="Anonymous donation - 4.5 btc">[[!img anonymous.png link="no" alt=""]]</p><!-- 2018-12-07 --> <p class="partner partner-size-3" title="Lush Digital Fund - 11 000€">[[!img lush.png link="no" alt=""]]</p> </div> <p class="amount-range">$1 000 – $9 999</p> <div class="pastpartner"> <p class="partner partner-size-4" title="Freedom of the Press Foundation - $3 954">[[!img fpf.png link="no" alt=""]]</p> + <p class="partner partner-size-4" title="An individual - 2 000€">[[!img anonymous.png link="no" alt=""]]</p><!-- 2018-12-17 --> <p class="partner partner-size-4" title="An individual - $2 000">[[!img anonymous.png link="no" alt=""]]</p> <p class="partner partner-size-4" title="Anonymous donation - 0.2 btc">[[!img anonymous.png link="no" alt=""]]</p><!-- 2018-10-17 --> <p class="partner partner-size-4" title="Anonymous donation - 0.196 btc">[[!img anonymous.png link="no" alt=""]]</p><!-- 2018-10-18 --> <p class="partner partner-size-4" title="Anonymous donation - 0.19 btc">[[!img anonymous.png link="no" alt=""]]</p><!-- 2018-10-22 --> <p class="partner partner-size-4" title="DeepOnion - 0.154 btc">[[!img deeponion.png link="no" alt=""]]</p><!-- 2018-08-28 --> <p class="partner partner-size-4" title="I2P - 0.1 btc">[[!img i2p.png link="no" alt=""]]</p> + <p class="partner partner-size-4" title="An individual - 1 000€">[[!img anonymous.png link="no" alt=""]]</p><!-- 2018-12-18 --> + <p class="partner partner-size-4" title="An individual - $1 000">[[!img anonymous.png link="no" alt=""]]</p><!-- 2018-12-19 --> <p class="partner partner-size-4" title="An individual - $1 000">[[!img anonymous.png link="no" alt=""]]</p> </div> diff --git a/wiki/src/partners.id.po b/wiki/src/partners.id.po index 5898bf7ce34b9fb790136f85532434a08189d31e..1f2751f7b4bf5173c97d2d835bfbf724c92b0be0 100644 --- a/wiki/src/partners.id.po +++ b/wiki/src/partners.id.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-11-20 12:40+0000\n" -"PO-Revision-Date: 2018-04-06 18:26+0200\n" -"Last-Translator: Tails translators <tails@boum.org>\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2020-01-06 17:11+0000\n" +"PO-Revision-Date: 2020-01-15 21:32+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.6\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: outside any tag (error?) msgid "[[!meta title=\"Partners\"]]" @@ -85,14 +87,6 @@ msgid "" "link=\"no\" alt=\"\"]]</a>" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 4.5 btc" -msgstr "" - -#. type: Content of: <div><p> -msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" -msgstr "" - #. type: Content of: <p> msgid "$1 000 – $9 999" msgstr "" @@ -101,20 +95,22 @@ msgstr "" msgid "An individual - 7 533€" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" +#. type: Content of: <div><p> +msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" +msgid "ThinkPenguin - $1 200" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" +#. type: Content of: <div><p> +msgid "" +"<a href=\"https://www.thinkpenguin.com/\" target=\"_blank\">[[!img " +"thinkpenguin.png link=\"no\" alt=\"\"]]</a>" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - $1 000" +msgid "A group of people - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -177,7 +173,7 @@ msgstr "" #. type: Content of: outside any tag (error?) msgid "<span class=\"clearfix\"></span>" -msgstr "" +msgstr "<span class=\"clearfix\"></span>" #. type: Content of: <h2> msgid "2018" @@ -207,6 +203,10 @@ msgstr "" msgid "[[!img isc.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "Anonymous donation - 4.5 btc" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "Lush Digital Fund - 11 000€" msgstr "" @@ -223,6 +223,10 @@ msgstr "" msgid "[[!img fpf.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 2 000€" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "An individual - $2 000" msgstr "" @@ -255,6 +259,14 @@ msgstr "" msgid "[[!img i2p.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 1 000€" +msgstr "" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - $1 000" +msgstr "" + #. type: Content of: <div><p> msgid "[[!img tor.png link=\"no\" alt=\"\"]]" msgstr "" @@ -502,3 +514,47 @@ msgstr "" #. type: Attribute 'title' of: <div><p> msgid "Tor - 8 500€" msgstr "" + +#, fuzzy +#| msgid "[[!img gsoc.png link=\"no\"]]" +msgid "[[!img isc.png link=\"no\" alt=\"Counterpart International logo\"]]" +msgstr "[[!img gsoc.png link=\"no\"]]" + +#, fuzzy +#| msgid "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" +msgid "" +"<a href=\"https://deeponion.org/\" target=\"_blank\">[[!img deeponion.png " +"link=\"no\" alt=\"DeepOnion logo\"]]</a>" +msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "[[!img ndi.png link=\"no\"]]" +msgid "[[!img handshake.png link=\"no\"]]" +msgstr "[[!img ndi.png link=\"no\"]]" + +msgid "[[!toggle id=\"previous_partners\" text=\"Previous partners\"]]" +msgstr "[[!toggle id=\"previous_partners\" text=\"Frühere Partner\"]]" + +msgid "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" +msgstr "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" + +msgid "\"\"\"]]" +msgstr "\"\"\"]]" + +msgid "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" +msgstr "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "> $100.000" +msgid "> $100 000" +msgstr "> $100.000" diff --git a/wiki/src/partners.it.po b/wiki/src/partners.it.po index 9367b673441f4f3f1a795a789e4c9ce8b5eb1bfe..ab99cde25cd5a143ba5985f26d0d26807cd5c0a4 100644 --- a/wiki/src/partners.it.po +++ b/wiki/src/partners.it.po @@ -6,14 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-20 12:40+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2020-01-06 17:11+0000\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" -"Language: \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: outside any tag (error?) msgid "[[!meta title=\"Partners\"]]" @@ -84,14 +87,6 @@ msgid "" "link=\"no\" alt=\"\"]]</a>" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 4.5 btc" -msgstr "" - -#. type: Content of: <div><p> -msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" -msgstr "" - #. type: Content of: <p> msgid "$1 000 – $9 999" msgstr "" @@ -100,20 +95,22 @@ msgstr "" msgid "An individual - 7 533€" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" +#. type: Content of: <div><p> +msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" +msgid "ThinkPenguin - $1 200" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" +#. type: Content of: <div><p> +msgid "" +"<a href=\"https://www.thinkpenguin.com/\" target=\"_blank\">[[!img " +"thinkpenguin.png link=\"no\" alt=\"\"]]</a>" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - $1 000" +msgid "A group of people - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -196,7 +193,7 @@ msgstr "" #. type: Content of: <div><p> msgid "[[!img ddg.png link=\"no\" alt=\"\"]]" -msgstr "" +msgstr "[[!img ddg.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> msgid "ISC - 20 743€" @@ -206,6 +203,10 @@ msgstr "" msgid "[[!img isc.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "Anonymous donation - 4.5 btc" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "Lush Digital Fund - 11 000€" msgstr "" @@ -222,6 +223,10 @@ msgstr "" msgid "[[!img fpf.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 2 000€" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "An individual - $2 000" msgstr "" @@ -254,6 +259,14 @@ msgstr "" msgid "[[!img i2p.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 1 000€" +msgstr "" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - $1 000" +msgstr "" + #. type: Content of: <div><p> msgid "[[!img tor.png link=\"no\" alt=\"\"]]" msgstr "" diff --git a/wiki/src/partners.pl.po b/wiki/src/partners.pl.po index ed37f39fc74563b9a84a8ba87c77a41f921104c8..de4e2d52898f5ce0dc7d3e2403773ef267594e5c 100644 --- a/wiki/src/partners.pl.po +++ b/wiki/src/partners.pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-20 12:40+0000\n" +"POT-Creation-Date: 2020-01-06 17:11+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" @@ -85,14 +85,6 @@ msgid "" "link=\"no\" alt=\"\"]]</a>" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 4.5 btc" -msgstr "" - -#. type: Content of: <div><p> -msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" -msgstr "" - #. type: Content of: <p> msgid "$1 000 – $9 999" msgstr "" @@ -101,20 +93,22 @@ msgstr "" msgid "An individual - 7 533€" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" +#. type: Content of: <div><p> +msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" +msgid "ThinkPenguin - $1 200" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" +#. type: Content of: <div><p> +msgid "" +"<a href=\"https://www.thinkpenguin.com/\" target=\"_blank\">[[!img " +"thinkpenguin.png link=\"no\" alt=\"\"]]</a>" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - $1 000" +msgid "A group of people - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -207,6 +201,10 @@ msgstr "" msgid "[[!img isc.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "Anonymous donation - 4.5 btc" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "Lush Digital Fund - 11 000€" msgstr "" @@ -223,6 +221,10 @@ msgstr "" msgid "[[!img fpf.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 2 000€" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "An individual - $2 000" msgstr "" @@ -255,6 +257,14 @@ msgstr "" msgid "[[!img i2p.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 1 000€" +msgstr "" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - $1 000" +msgstr "" + #. type: Content of: <div><p> msgid "[[!img tor.png link=\"no\" alt=\"\"]]" msgstr "" @@ -502,3 +512,47 @@ msgstr "" #. type: Attribute 'title' of: <div><p> msgid "Tor - 8 500€" msgstr "" + +#, fuzzy +#| msgid "[[!img gsoc.png link=\"no\"]]" +msgid "[[!img isc.png link=\"no\" alt=\"Counterpart International logo\"]]" +msgstr "[[!img gsoc.png link=\"no\"]]" + +#, fuzzy +#| msgid "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" +msgid "" +"<a href=\"https://deeponion.org/\" target=\"_blank\">[[!img deeponion.png " +"link=\"no\" alt=\"DeepOnion logo\"]]</a>" +msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "[[!img ndi.png link=\"no\"]]" +msgid "[[!img handshake.png link=\"no\"]]" +msgstr "[[!img ndi.png link=\"no\"]]" + +msgid "[[!toggle id=\"previous_partners\" text=\"Previous partners\"]]" +msgstr "[[!toggle id=\"previous_partners\" text=\"Frühere Partner\"]]" + +msgid "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" +msgstr "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" + +msgid "\"\"\"]]" +msgstr "\"\"\"]]" + +msgid "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" +msgstr "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "> $100.000" +msgid "> $100 000" +msgstr "> $100.000" diff --git a/wiki/src/partners.pt.po b/wiki/src/partners.pt.po index a52ad5e6f4ffc8ada753ca0c832c6921027b7715..e75cad49e2f703b347837e9bd93b6fcbcb74f26a 100644 --- a/wiki/src/partners.pt.po +++ b/wiki/src/partners.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-20 12:40+0000\n" +"POT-Creation-Date: 2020-01-06 17:11+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" @@ -86,14 +86,6 @@ msgid "" "link=\"no\" alt=\"\"]]</a>" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 4.5 btc" -msgstr "" - -#. type: Content of: <div><p> -msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" -msgstr "" - #. type: Content of: <p> msgid "$1 000 – $9 999" msgstr "" @@ -102,20 +94,22 @@ msgstr "" msgid "An individual - 7 533€" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" +#. type: Content of: <div><p> +msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" +msgid "ThinkPenguin - $1 200" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" +#. type: Content of: <div><p> +msgid "" +"<a href=\"https://www.thinkpenguin.com/\" target=\"_blank\">[[!img " +"thinkpenguin.png link=\"no\" alt=\"\"]]</a>" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - $1 000" +msgid "A group of people - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -208,6 +202,10 @@ msgstr "" msgid "[[!img isc.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "Anonymous donation - 4.5 btc" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "Lush Digital Fund - 11 000€" msgstr "" @@ -224,6 +222,10 @@ msgstr "" msgid "[[!img fpf.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 2 000€" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "An individual - $2 000" msgstr "" @@ -256,6 +258,14 @@ msgstr "" msgid "[[!img i2p.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 1 000€" +msgstr "" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - $1 000" +msgstr "" + #. type: Content of: <div><p> msgid "[[!img tor.png link=\"no\" alt=\"\"]]" msgstr "" diff --git a/wiki/src/partners.ru.po b/wiki/src/partners.ru.po index 45d9c5a95c7a0511830d5e4f75318bde995f9670..7665bffe9d8d004372aaa423693e0c5515ca3606 100644 --- a/wiki/src/partners.ru.po +++ b/wiki/src/partners.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-20 12:40+0000\n" +"POT-Creation-Date: 2020-01-06 17:11+0000\n" "PO-Revision-Date: 2018-02-21 08:10+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -87,14 +87,6 @@ msgid "" "link=\"no\" alt=\"\"]]</a>" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 4.5 btc" -msgstr "" - -#. type: Content of: <div><p> -msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" -msgstr "" - #. type: Content of: <p> msgid "$1 000 – $9 999" msgstr "" @@ -103,20 +95,22 @@ msgstr "" msgid "An individual - 7 533€" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" +#. type: Content of: <div><p> +msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" +msgid "ThinkPenguin - $1 200" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" +#. type: Content of: <div><p> +msgid "" +"<a href=\"https://www.thinkpenguin.com/\" target=\"_blank\">[[!img " +"thinkpenguin.png link=\"no\" alt=\"\"]]</a>" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - $1 000" +msgid "A group of people - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -209,6 +203,10 @@ msgstr "" msgid "[[!img isc.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "Anonymous donation - 4.5 btc" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "Lush Digital Fund - 11 000€" msgstr "" @@ -225,6 +223,10 @@ msgstr "" msgid "[[!img fpf.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 2 000€" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "An individual - $2 000" msgstr "" @@ -257,6 +259,14 @@ msgstr "" msgid "[[!img i2p.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 1 000€" +msgstr "" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - $1 000" +msgstr "" + #. type: Content of: <div><p> msgid "[[!img tor.png link=\"no\" alt=\"\"]]" msgstr "" @@ -505,5 +515,46 @@ msgstr "" msgid "Tor - 8 500€" msgstr "" +#, fuzzy +#| msgid "[[!img gsoc.png link=\"no\"]]" +msgid "[[!img isc.png link=\"no\" alt=\"Counterpart International logo\"]]" +msgstr "[[!img gsoc.png link=\"no\"]]" + +#, fuzzy +#| msgid "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" +msgid "" +"<a href=\"https://deeponion.org/\" target=\"_blank\">[[!img deeponion.png " +"link=\"no\" alt=\"DeepOnion logo\"]]</a>" +msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "[[!img ndi.png link=\"no\"]]" +msgid "[[!img handshake.png link=\"no\"]]" +msgstr "[[!img ndi.png link=\"no\"]]" + +msgid "[[!toggle id=\"previous_partners\" text=\"Previous partners\"]]" +msgstr "[[!toggle id=\"previous_partners\" text=\"Frühere Partner\"]]" + +msgid "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" +msgstr "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" + +msgid "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" +msgstr "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "> $100.000" +msgid "> $100 000" +msgstr "> $100.000" + #~ msgid "\"\"\"]]" #~ msgstr "\"\"\"]]" diff --git a/wiki/src/partners.sr_Latn.po b/wiki/src/partners.sr_Latn.po index cb5514fa90e695dd28b0531e05e7c7e1d048de3e..b32b3adb60c1d4484946ee67f00bff4ce6bf0892 100644 --- a/wiki/src/partners.sr_Latn.po +++ b/wiki/src/partners.sr_Latn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-20 12:40+0000\n" +"POT-Creation-Date: 2020-01-06 17:11+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" @@ -85,14 +85,6 @@ msgid "" "link=\"no\" alt=\"\"]]</a>" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 4.5 btc" -msgstr "" - -#. type: Content of: <div><p> -msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" -msgstr "" - #. type: Content of: <p> msgid "$1 000 – $9 999" msgstr "" @@ -101,20 +93,22 @@ msgstr "" msgid "An individual - 7 533€" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" +#. type: Content of: <div><p> +msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" +msgid "ThinkPenguin - $1 200" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" +#. type: Content of: <div><p> +msgid "" +"<a href=\"https://www.thinkpenguin.com/\" target=\"_blank\">[[!img " +"thinkpenguin.png link=\"no\" alt=\"\"]]</a>" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - $1 000" +msgid "A group of people - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -207,6 +201,10 @@ msgstr "" msgid "[[!img isc.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "Anonymous donation - 4.5 btc" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "Lush Digital Fund - 11 000€" msgstr "" @@ -223,6 +221,10 @@ msgstr "" msgid "[[!img fpf.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 2 000€" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "An individual - $2 000" msgstr "" @@ -255,6 +257,14 @@ msgstr "" msgid "[[!img i2p.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 1 000€" +msgstr "" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - $1 000" +msgstr "" + #. type: Content of: <div><p> msgid "[[!img tor.png link=\"no\" alt=\"\"]]" msgstr "" @@ -502,3 +512,47 @@ msgstr "" #. type: Attribute 'title' of: <div><p> msgid "Tor - 8 500€" msgstr "" + +#, fuzzy +#| msgid "[[!img gsoc.png link=\"no\"]]" +msgid "[[!img isc.png link=\"no\" alt=\"Counterpart International logo\"]]" +msgstr "[[!img gsoc.png link=\"no\"]]" + +#, fuzzy +#| msgid "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" +msgid "" +"<a href=\"https://deeponion.org/\" target=\"_blank\">[[!img deeponion.png " +"link=\"no\" alt=\"DeepOnion logo\"]]</a>" +msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "[[!img ndi.png link=\"no\"]]" +msgid "[[!img handshake.png link=\"no\"]]" +msgstr "[[!img ndi.png link=\"no\"]]" + +msgid "[[!toggle id=\"previous_partners\" text=\"Previous partners\"]]" +msgstr "[[!toggle id=\"previous_partners\" text=\"Frühere Partner\"]]" + +msgid "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" +msgstr "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" + +msgid "\"\"\"]]" +msgstr "\"\"\"]]" + +msgid "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" +msgstr "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "> $100.000" +msgid "> $100 000" +msgstr "> $100.000" diff --git a/wiki/src/partners.tr.po b/wiki/src/partners.tr.po index d431e87e128ecdaba356128fa4528a61fd94d023..a070c1e9f4539d788b86ad97777fb7b58391299b 100644 --- a/wiki/src/partners.tr.po +++ b/wiki/src/partners.tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-20 12:40+0000\n" +"POT-Creation-Date: 2020-01-06 17:11+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" @@ -85,14 +85,6 @@ msgid "" "link=\"no\" alt=\"\"]]</a>" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 4.5 btc" -msgstr "" - -#. type: Content of: <div><p> -msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" -msgstr "" - #. type: Content of: <p> msgid "$1 000 – $9 999" msgstr "" @@ -101,20 +93,22 @@ msgstr "" msgid "An individual - 7 533€" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" +#. type: Content of: <div><p> +msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" +msgid "ThinkPenguin - $1 200" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" +#. type: Content of: <div><p> +msgid "" +"<a href=\"https://www.thinkpenguin.com/\" target=\"_blank\">[[!img " +"thinkpenguin.png link=\"no\" alt=\"\"]]</a>" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - $1 000" +msgid "A group of people - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -207,6 +201,10 @@ msgstr "" msgid "[[!img isc.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "Anonymous donation - 4.5 btc" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "Lush Digital Fund - 11 000€" msgstr "" @@ -223,6 +221,10 @@ msgstr "" msgid "[[!img fpf.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 2 000€" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "An individual - $2 000" msgstr "" @@ -255,6 +257,14 @@ msgstr "" msgid "[[!img i2p.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 1 000€" +msgstr "" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - $1 000" +msgstr "" + #. type: Content of: <div><p> msgid "[[!img tor.png link=\"no\" alt=\"\"]]" msgstr "" @@ -502,3 +512,47 @@ msgstr "" #. type: Attribute 'title' of: <div><p> msgid "Tor - 8 500€" msgstr "" + +#, fuzzy +#| msgid "[[!img gsoc.png link=\"no\"]]" +msgid "[[!img isc.png link=\"no\" alt=\"Counterpart International logo\"]]" +msgstr "[[!img gsoc.png link=\"no\"]]" + +#, fuzzy +#| msgid "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" +msgid "" +"<a href=\"https://deeponion.org/\" target=\"_blank\">[[!img deeponion.png " +"link=\"no\" alt=\"DeepOnion logo\"]]</a>" +msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "[[!img ndi.png link=\"no\"]]" +msgid "[[!img handshake.png link=\"no\"]]" +msgstr "[[!img ndi.png link=\"no\"]]" + +msgid "[[!toggle id=\"previous_partners\" text=\"Previous partners\"]]" +msgstr "[[!toggle id=\"previous_partners\" text=\"Frühere Partner\"]]" + +msgid "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" +msgstr "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" + +msgid "\"\"\"]]" +msgstr "\"\"\"]]" + +msgid "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" +msgstr "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "> $100.000" +msgid "> $100 000" +msgstr "> $100.000" diff --git a/wiki/src/partners.zh.po b/wiki/src/partners.zh.po index 5d29d832f475318b53b6abb46883323b9af983e5..e595edf8108b1e6074f35e3a7114e4928e0ff812 100644 --- a/wiki/src/partners.zh.po +++ b/wiki/src/partners.zh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-11-20 12:40+0000\n" +"POT-Creation-Date: 2020-01-06 17:11+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" @@ -85,14 +85,6 @@ msgid "" "link=\"no\" alt=\"\"]]</a>" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 4.5 btc" -msgstr "" - -#. type: Content of: <div><p> -msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" -msgstr "" - #. type: Content of: <p> msgid "$1 000 – $9 999" msgstr "" @@ -101,20 +93,22 @@ msgstr "" msgid "An individual - 7 533€" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" +#. type: Content of: <div><p> +msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" +msgid "ThinkPenguin - $1 200" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" +#. type: Content of: <div><p> +msgid "" +"<a href=\"https://www.thinkpenguin.com/\" target=\"_blank\">[[!img " +"thinkpenguin.png link=\"no\" alt=\"\"]]</a>" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - $1 000" +msgid "A group of people - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -207,6 +201,10 @@ msgstr "" msgid "[[!img isc.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "Anonymous donation - 4.5 btc" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "Lush Digital Fund - 11 000€" msgstr "" @@ -223,6 +221,10 @@ msgstr "" msgid "[[!img fpf.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 2 000€" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "An individual - $2 000" msgstr "" @@ -255,6 +257,14 @@ msgstr "" msgid "[[!img i2p.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 1 000€" +msgstr "" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - $1 000" +msgstr "" + #. type: Content of: <div><p> msgid "[[!img tor.png link=\"no\" alt=\"\"]]" msgstr "" @@ -502,3 +512,47 @@ msgstr "" #. type: Attribute 'title' of: <div><p> msgid "Tor - 8 500€" msgstr "" + +#, fuzzy +#| msgid "[[!img gsoc.png link=\"no\"]]" +msgid "[[!img isc.png link=\"no\" alt=\"Counterpart International logo\"]]" +msgstr "[[!img gsoc.png link=\"no\"]]" + +#, fuzzy +#| msgid "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" +msgid "" +"<a href=\"https://deeponion.org/\" target=\"_blank\">[[!img deeponion.png " +"link=\"no\" alt=\"DeepOnion logo\"]]</a>" +msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "[[!img ndi.png link=\"no\"]]" +msgid "[[!img handshake.png link=\"no\"]]" +msgstr "[[!img ndi.png link=\"no\"]]" + +msgid "[[!toggle id=\"previous_partners\" text=\"Previous partners\"]]" +msgstr "[[!toggle id=\"previous_partners\" text=\"Frühere Partner\"]]" + +msgid "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" +msgstr "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" + +msgid "\"\"\"]]" +msgstr "\"\"\"]]" + +msgid "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" +msgstr "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "> $100.000" +msgid "> $100 000" +msgstr "> $100.000" diff --git a/wiki/src/partners.zh_TW.po b/wiki/src/partners.zh_TW.po index 9c499f73d485ded20a0ea522884d20a8f48ead4e..0025dd6671a8831579d75cd29779ae9a16d78912 100644 --- a/wiki/src/partners.zh_TW.po +++ b/wiki/src/partners.zh_TW.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-20 12:40+0000\n" +"POT-Creation-Date: 2020-01-06 17:11+0000\n" "PO-Revision-Date: 2018-11-02 13:29+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -87,14 +87,6 @@ msgid "" "link=\"no\" alt=\"\"]]</a>" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 4.5 btc" -msgstr "" - -#. type: Content of: <div><p> -msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" -msgstr "" - #. type: Content of: <p> msgid "$1 000 – $9 999" msgstr "" @@ -103,20 +95,22 @@ msgstr "" msgid "An individual - 7 533€" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" +#. type: Content of: <div><p> +msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" +msgid "ThinkPenguin - $1 200" msgstr "" -#. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" +#. type: Content of: <div><p> +msgid "" +"<a href=\"https://www.thinkpenguin.com/\" target=\"_blank\">[[!img " +"thinkpenguin.png link=\"no\" alt=\"\"]]</a>" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - $1 000" +msgid "A group of people - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -209,6 +203,10 @@ msgstr "" msgid "[[!img isc.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "Anonymous donation - 4.5 btc" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "Lush Digital Fund - 11 000€" msgstr "" @@ -225,6 +223,10 @@ msgstr "" msgid "[[!img fpf.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 2 000€" +msgstr "" + #. type: Attribute 'title' of: <div><p> msgid "An individual - $2 000" msgstr "" @@ -257,6 +259,14 @@ msgstr "" msgid "[[!img i2p.png link=\"no\" alt=\"\"]]" msgstr "" +#. type: Attribute 'title' of: <div><p> +msgid "An individual - 1 000€" +msgstr "" + +#. type: Attribute 'title' of: <div><p> +msgid "An individual - $1 000" +msgstr "" + #. type: Content of: <div><p> msgid "[[!img tor.png link=\"no\" alt=\"\"]]" msgstr "" @@ -505,5 +515,46 @@ msgstr "" msgid "Tor - 8 500€" msgstr "" +#, fuzzy +#| msgid "[[!img gsoc.png link=\"no\"]]" +msgid "[[!img isc.png link=\"no\" alt=\"Counterpart International logo\"]]" +msgstr "[[!img gsoc.png link=\"no\"]]" + +#, fuzzy +#| msgid "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" +msgid "" +"<a href=\"https://deeponion.org/\" target=\"_blank\">[[!img deeponion.png " +"link=\"no\" alt=\"DeepOnion logo\"]]</a>" +msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "[[!img ndi.png link=\"no\"]]" +msgid "[[!img handshake.png link=\"no\"]]" +msgstr "[[!img ndi.png link=\"no\"]]" + +msgid "[[!toggle id=\"previous_partners\" text=\"Previous partners\"]]" +msgstr "[[!toggle id=\"previous_partners\" text=\"Frühere Partner\"]]" + +msgid "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" +msgstr "" +"[[!toggleable id=\"previous_partners\" text=\"\"\" <span class=\"hide\">[[!" +"toggle id=\"previous_partners\" text=\" \"]]</span> <span class=\"clearfix" +"\"></span>" + +msgid "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" +msgstr "" +"<a href=\"https://geti2p.net/\" title=\"I2P - 0.1BTC\">[[!img lib/partners/" +"i2p.png link=\"no\"]]</a>" + +#, fuzzy +#| msgid "> $100.000" +msgid "> $100 000" +msgstr "> $100.000" + #~ msgid "\"\"\"]]" #~ msgstr "\"\"\"]]" diff --git a/wiki/src/partners/thinkpenguin.png b/wiki/src/partners/thinkpenguin.png new file mode 100644 index 0000000000000000000000000000000000000000..d7ad921b9ceab384f976e47ef88239ba9b15d67c Binary files /dev/null and b/wiki/src/partners/thinkpenguin.png differ diff --git a/wiki/src/press.id.po b/wiki/src/press.id.po index 57ad01c7aeb6d5f89b8893ce0a14834d37ba12a2..3e87ade79038bc66c31d9daf115c7fa48768cc1b 100644 --- a/wiki/src/press.id.po +++ b/wiki/src/press.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-01-24 10:23+0000\n" -"PO-Revision-Date: 2019-10-24 10:32+0000\n" +"PO-Revision-Date: 2020-01-16 00:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -26,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=1]]\n" -msgstr "" +msgstr "[[!toc levels=1]]\n" #. type: Title = #, no-wrap @@ -57,7 +57,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap @@ -117,7 +117,7 @@ msgstr "" #. type: Title - #, no-wrap msgid "2019\n" -msgstr "" +msgstr "2019\n" #. type: Plain text #, no-wrap @@ -133,95 +133,104 @@ msgstr "" #. type: Bullet: '* ' msgid "[[!toggle id=\"media_appearances_2018\" text=\"2018\"]]" -msgstr "" +msgstr "[[!toggle id=\"media_appearances_2018\" text=\"2018\"]]" #. type: Bullet: '* ' msgid "[[!toggle id=\"media_appearances_2017\" text=\"2017\"]]" -msgstr "" +msgstr "[[!toggle id=\"media_appearances_2017\" text=\"2017\"]]" #. type: Bullet: '* ' msgid "[[!toggle id=\"media_appearances_2016\" text=\"2016\"]]" -msgstr "" +msgstr "[[!toggle id=\"media_appearances_2016\" text=\"2016\"]]" #. type: Bullet: '* ' msgid "[[!toggle id=\"media_appearances_2015\" text=\"2015\"]]" -msgstr "" +msgstr "[[!toggle id=\"media_appearances_2015\" text=\"2015\"]]" #. type: Bullet: '* ' msgid "[[!toggle id=\"media_appearances_2014\" text=\"2014\"]]" -msgstr "" +msgstr "[[!toggle id=\"media_appearances_2014\" text=\"2014\"]]" #. type: Bullet: '* ' msgid "[[!toggle id=\"media_appearances_2013\" text=\"2013\"]]" -msgstr "" +msgstr "[[!toggle id=\"media_appearances_2013\" text=\"2013\"]]" #. type: Bullet: '* ' msgid "[[!toggle id=\"media_appearances_2012\" text=\"2012\"]]" -msgstr "" +msgstr "[[!toggle id=\"media_appearances_2012\" text=\"2012\"]]" #. type: Bullet: '* ' msgid "[[!toggle id=\"media_appearances_2011\" text=\"2011\"]]" -msgstr "" +msgstr "[[!toggle id=\"media_appearances_2011\" text=\"2011\"]]" #. type: Plain text #, no-wrap msgid "[[!toggleable id=\"media_appearances_2018\" text=\"\"\"\n" -msgstr "" +msgstr "[[!toggleable id=\"media_appearances_2018\" text=\"\"\"\n" #. type: Plain text #, no-wrap msgid "<span class=\"hide\">[[!toggle id=\"media_appearances_2018\" text=\"\"]]</span>\n" msgstr "" +"<span class=\"hide\">[[!toggle id=\"media_appearances_2018\" text=\"\"" +"]]</span>\n" #. type: Title - #, no-wrap msgid "2018\n" -msgstr "" +msgstr "2018\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"press/media_appearances_2018\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"press/media_appearances_2018\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap msgid "[[!toggleable id=\"media_appearances_2017\" text=\"\"\"\n" -msgstr "" +msgstr "[[!toggleable id=\"media_appearances_2017\" text=\"\"\"\n" #. type: Plain text #, no-wrap msgid "<span class=\"hide\">[[!toggle id=\"media_appearances_2017\" text=\"\"]]</span>\n" msgstr "" +"<span class=\"hide\">[[!toggle id=\"media_appearances_2017\" text=\"\"" +"]]</span>\n" #. type: Title - #, no-wrap msgid "2017\n" -msgstr "" +msgstr "2017\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"press/media_appearances_2017\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"press/media_appearances_2017\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap msgid "[[!toggleable id=\"media_appearances_2016\" text=\"\"\"\n" -msgstr "" +msgstr "[[!toggleable id=\"media_appearances_2016\" text=\"\"\"\n" #. type: Plain text #, no-wrap msgid "<span class=\"hide\">[[!toggle id=\"media_appearances_2016\" text=\"\"]]</span>\n" msgstr "" +"<span class=\"hide\">[[!toggle id=\"media_appearances_2016\" text=\"\"" +"]]</span>\n" #. type: Title - #, no-wrap msgid "2016\n" -msgstr "" +msgstr "2016\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"press/media_appearances_2016\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"press/media_appearances_2016\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -547,4 +556,4 @@ msgstr "" #. type: Bullet: '* ' msgid "[CryptoParty handbook](https://www.cryptoparty.in/tails)." -msgstr "" +msgstr "[CryptoParty handbook](https://www.cryptoparty.in/tails)." diff --git a/wiki/src/press/media_appearances_2019.mdwn b/wiki/src/press/media_appearances_2019.mdwn index a94a553f3e476c6252d9e0679d30c6e08458acf3..11961f24fccb7f1b07d0fbb707e91fb9ac4eb22f 100644 --- a/wiki/src/press/media_appearances_2019.mdwn +++ b/wiki/src/press/media_appearances_2019.mdwn @@ -1,16 +1,44 @@ [[!meta title="Media appearances in 2019"]] +* 2019-12-18: [Pourquoi je préfère la BD sur Snowden à son + autobiographie (& vive Tails aussi <3)](https://www.lemonde.fr/blog/bugbrother/2019/12/18/pourquoi-je-prefere-la-bd-sur-snowden-a-son-autobiographie-vive-tails-aussi-3/) + by Jean-Marc Manach in Le Monde. + +* 2019-12-17: [Sa clé USB qui permet d'aller sur le dark web](https://www.youtube.com/watch?v=GFgWl_-sIdE) + by Guillaume Pley in Le QG. + +* Our blog post on "[[Celebrating 10 years of + Tails|news/celebrating_10_years]]" received some press coverage: + + - 2019-12-15: [L’outil préféré d’Edward Snowden ne laisse aucune trace + depuis dix ans](https://www.lalibre.be/economie/digital/l-outil-prefere-d-edward-snowden-ne-laisse-aucune-trace-depuis-dix-ans-5df65c7bf20d5a0c4604c152) + by Christophe Lamfalussy in La Libre Belgique. + + - 2019-12-16: [Happy 10th birthday, TAILS -- the real Paranoid + Linux!](https://boingboing.net/2019/12/16/paranoid-linux-for-real.html) + by Cory Doctorow in Boing Boing. + +* 2019-11-21: [Open source & branding – a contradiction?](https://simplysecure.org/blog/branding-tails) + by Molly Clare Wilson from Simply Secure. + * 2019-10-24: ris [announced the release of Tails 4.0](https://lwn.net/Articles/802876/) in Linux Weekly News. * 2019-08-24: Edward Snowden [writes on - Twitter](https://twitter.com/Snowden/status/1165297667490103302): + Twitter](https://twitter.com/Snowden/status/1165395796520554496): + <em>“In 2013, when a small team of journalists and I went head to head against @NSAGov to reveal the secret system of global mass surveillance, we used @Tails_Live to communicate—to reduce the risk of basic but deadly mistakes.<br/> The NSA only learned of our plan when it hit the news.”</em> + <em>“If you look at the way post-2013 whistleblowers have been caught, + it is clear the absolute most important thing you can do to maintain + your anonymity is reduce the number of places in your operational + activity where you can make mistakes. Tor and Tails still do precisely + that.”</em> + * 2019-08-04: In [Attorney for Daniel Hale blasts indictment for leaking classified drone documents](https://www.dailydot.com/layer8/daniel-hale-indictment/), David Gilmour from The Daily Dot explains that the indictment of Daniel Hale diff --git a/wiki/src/sandbox.de.po b/wiki/src/sandbox.de.po index 886057b3d77b369acf886d89be5ac0fc419af60a..69c86171dbf81b42eddba3be2045bf23af67ad5b 100644 --- a/wiki/src/sandbox.de.po +++ b/wiki/src/sandbox.de.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "POT-Creation-Date: 2019-07-13 14:34+0000\n" -"PO-Revision-Date: 2019-07-17 20:10+0000\n" -"Last-Translator: testreviewer1 <testreviewer1@translate.tails.boum.org>\n" +"PO-Revision-Date: 2019-12-22 21:04+0000\n" +"Last-Translator: Hefee <hefee@debian.org>\n" "Language-Team: None\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text msgid "This is the SandBox." @@ -65,6 +65,10 @@ msgid "" "* more nests\n" "1. And another..\n" msgstr "" +"1. Noch eins\n" +"* unterkategory\n" +"* noch mehr unter\n" +"1. Und nocheiner.\n" #. type: Plain text #, fuzzy diff --git a/wiki/src/security.id.po b/wiki/src/security.id.po index af250d64688b35539421d74bfcdedd157e422fd4..53bb3b9dd60b3f45fec230c708635e9ac7d1f052 100644 --- a/wiki/src/security.id.po +++ b/wiki/src/security.id.po @@ -6,14 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2017-02-09 18:52+0100\n" -"PO-Revision-Date: 2018-06-10 16:28+0200\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-16 00:28+0000\n" +"Last-Translator: Caesar <pinkpidgeon@protonmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: ENCODING\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -23,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=3]]\n" -msgstr "" +msgstr "[[!toc levels=3]]\n" #. type: Plain text #, no-wrap @@ -31,6 +34,10 @@ msgid "" "[[!inline pages=\"page(security/*) and !security/audits and !security/audits.* and !security/audits/* and currentlang()\"\n" "actions=no archive=yes feedonly=yes show=10 sort=\"-meta(date) age -path\"]]\n" msgstr "" +"[[!inline pages=\"page(security/*) and !security/audits and !security/" +"audits.* and !security/audits/* and currentlang()\"\n" +"actions=no archive=yes feedonly=yes show=10 sort=\"-meta(date) age -path\"]]" +"\n" #. type: Plain text msgid "" @@ -72,6 +79,11 @@ msgid "" "and ! tagged(security/fixed) and currentlang() and created_after(security/Numerous_security_holes_in_1.2)\"\n" "actions=no archive=yes feeds=no show=0 sort=\"-meta(date) age -path\"]]\n" msgstr "" +"[[!inline pages=\"page(security/*) and ! tagged(security/probable)\n" +"and !security/audits and !security/audits.* and !security/audits/*\n" +"and ! tagged(security/fixed) and currentlang() and created_after(security/" +"Numerous_security_holes_in_1.2)\"\n" +"actions=no archive=yes feeds=no show=0 sort=\"-meta(date) age -path\"]]\n" #. type: Title # #, no-wrap @@ -91,6 +103,9 @@ msgid "" "[[!inline pages=\"page(security/*) and tagged(security/probable) and currentlang()\"\n" "actions=no archive=yes feeds=no show=0 sort=\"-meta(date) age -path\"]]\n" msgstr "" +"[[!inline pages=\"page(security/*) and tagged(security/probable) and " +"currentlang()\"\n" +"actions=no archive=yes feeds=no show=0 sort=\"-meta(date) age -path\"]]\n" #. type: Title # #, no-wrap @@ -110,6 +125,9 @@ msgid "" "[[!inline pages=\"page(security/*) and tagged(security/fixed) and (currentlang() or security/Numerous_security_holes_in_*)\"\n" "actions=no archive=yes feeds=no show=0 sort=\"-meta(date) age -path\"]]\n" msgstr "" +"[[!inline pages=\"page(security/*) and tagged(security/fixed) and " +"(currentlang() or security/Numerous_security_holes_in_*)\"\n" +"actions=no archive=yes feeds=no show=0 sort=\"-meta(date) age -path\"]]\n" #. type: Title # #, no-wrap diff --git a/wiki/src/security/IP_address_leak_with_icedove.id.po b/wiki/src/security/IP_address_leak_with_icedove.id.po index b00399d03c77428d416707ac92d622e12cf954fc..4d4ac7ba5b5f7c05752901f13524fd82b1d24b98 100644 --- a/wiki/src/security/IP_address_leak_with_icedove.id.po +++ b/wiki/src/security/IP_address_leak_with_icedove.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2018-10-24 23:00+0000\n" +"PO-Revision-Date: 2020-01-16 00:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/security/Iceweasel_exposes_a_rare_User-Agent.id.po b/wiki/src/security/Iceweasel_exposes_a_rare_User-Agent.id.po index b58105b904e16744abde6aedfabeb066f3f01a1f..8ac6a8779238ad6670dbef632fe65abaad1b62a6 100644 --- a/wiki/src/security/Iceweasel_exposes_a_rare_User-Agent.id.po +++ b/wiki/src/security/Iceweasel_exposes_a_rare_User-Agent.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2018-10-24 22:57+0000\n" +"PO-Revision-Date: 2020-01-16 00:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/security/Numerous_security_holes_in_4.0.mdwn b/wiki/src/security/Numerous_security_holes_in_4.0.mdwn index 88ec98e61c2f20ef37133e3e2915ee2685d61c06..87a6ce836ff0efc1a72b14a3e746297a9f8e79b5 100644 --- a/wiki/src/security/Numerous_security_holes_in_4.0.mdwn +++ b/wiki/src/security/Numerous_security_holes_in_4.0.mdwn @@ -7,8 +7,8 @@ Tails 4.0. You should [[upgrade to Tails 4.1|news/version_4.1]] as soon as possible. - - Tor Browser: [[!mfsa 2019-37]] **CHECK** - - Thunderbird: No MFSA published. + - Tor Browser: [[!mfsa 2019-37]] + - Thunderbird: [[!mfsa 2019-38]] - Linux: [[!cve CVE-2019-11135]], [[!cve CVE-2018-12207]], [[!cve CVE-2019-0155]], [[!cve CVE-2019-0154]], [[!cve CVE-2019-17133]], [[!cve CVE-2019-17055]], diff --git a/wiki/src/security/Numerous_security_holes_in_4.1.1.mdwn b/wiki/src/security/Numerous_security_holes_in_4.1.1.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..2f77097f103ca1a4a29ee3992a2a862fe8f3dabf --- /dev/null +++ b/wiki/src/security/Numerous_security_holes_in_4.1.1.mdwn @@ -0,0 +1,20 @@ +[[!meta date="Sun, 05 Jan 2020 17:00:00 +0100"]] +[[!meta title="Numerous security holes in Tails 4.1.1"]] + +[[!tag security/fixed]] + +[[Tails_4.2|news/version_4.2]] fixes many security issues that affect +Tails 4.1.1. You should [[upgrade to Tails 4.2|news/version_4.2]] as +soon as possible. + + - Tor Browser: [[!mfsa 2020-02]] + - Thunderbird: No MFSA published. + - Linux: [[!cve CVE-2019-19602]], [[!cve CVE-2019-18811]], + [[!cve CVE-2019-18660]], [[!cve CVE-2019-15291]], + [[!cve CVE-2019-18683]], [[!cve CVE-2019-15099]], + [[!cve CVE-2019-19524]], [[!cve CVE-2019-19051]], + [[!cve CVE-2019-19047]], [[!cve CVE-2019-19045]], + [[!cve CVE-2019-19534]], [[!cve CVE-2019-19529]], + [[!cve CVE-2019-19052]] + - Cyrus SASL: [[!debsa2019 4591]] + - Python ECDSA: [[!debsa2019 4588]] diff --git a/wiki/src/security/Numerous_security_holes_in_4.2.mdwn b/wiki/src/security/Numerous_security_holes_in_4.2.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..8a12fa2886500e23a3af1ee9d0bf5b05c357dc84 --- /dev/null +++ b/wiki/src/security/Numerous_security_holes_in_4.2.mdwn @@ -0,0 +1,10 @@ +[[!meta date="Sun, 12 Jan 2020 17:00:00 +0100"]] +[[!meta title="Critical security vulnerability in Tails 4.2"]] + +[[!tag security/fixed]] + +[[Tails_4.2.2|news/version_4.2.2]] fixes a [[!mfsa 2020-03 desc="critical +vulnerability"]] in *Tor Browser*, that affects Tails 4.2 and older. + +You should [[upgrade to Tails 4.2.2|news/version_4.2.2]] as +soon as possible. 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 9caf4effc393120d791d047900877ca15bb837d0..1e3d7b0694d86e95e604194dd6aa43f143df920a 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 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-10-24 10:32+0000\n" +"PO-Revision-Date: 2020-01-16 00:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -76,7 +76,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/security/Upgrade_Tor.id.po b/wiki/src/security/Upgrade_Tor.id.po index 49501c09a4392d850d3ac20dd3aa0212ac64b4f1..284df5df4e039441e285fd35c2022ea538196307 100644 --- a/wiki/src/security/Upgrade_Tor.id.po +++ b/wiki/src/security/Upgrade_Tor.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-10-24 10:32+0000\n" +"PO-Revision-Date: 2020-01-16 00:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -41,7 +41,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.de.po b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.de.po index f2f8d95a9a7916fe003d5b939511b4f5a4e47571..15bf2393005cbc06666a7f4ad5b21e2e28f276ae 100644 --- a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.de.po +++ b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.de.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-07-16 07:51+0000\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" "Language: de\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -99,7 +99,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.id.po b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.id.po index 858102b50036e0ba653810a87c8b3e425f64a65a..0d34b80f5e77a77dd5c5980af9fc760cce01548b 100644 --- a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.id.po +++ b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2019-10-24 10:32+0000\n" +"PO-Revision-Date: 2020-01-16 00:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap @@ -71,7 +71,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap @@ -99,7 +99,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap diff --git a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.pt.po b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.pt.po index 140d7508be1e876207db8fe2ad901e95c20f6485..4bfea8e0e8115cfe2e177e8975ce36f29c942bd5 100644 --- a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.pt.po +++ b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.pt.po @@ -6,16 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/security/ineffective_firewall-level_Tor_enforcement.fa.po b/wiki/src/security/ineffective_firewall-level_Tor_enforcement.fa.po index 655f11cce58a3b9c982d4f379e5f594016e3e582..8a2ce7985585656b4e4bbecbea178a21c5d58838 100644 --- a/wiki/src/security/ineffective_firewall-level_Tor_enforcement.fa.po +++ b/wiki/src/security/ineffective_firewall-level_Tor_enforcement.fa.po @@ -6,9 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2015-10-17 10:19+0000\n" -"Last-Translator: sprint5 <translation5@451f.org>\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" "ineffective_firewall-level_tor_enforcement/fa/>\n" "Language: fa\n" @@ -16,12 +17,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap msgid "[[!meta date=\"Mon, 22 Nov 2009 11:20:24 +0000\"]]\n" -msgstr "" +msgstr "[[!meta date=\"Mon, 22 Nov 2009 11:20:24 +0000\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/security/ineffective_firewall-level_Tor_enforcement.id.po b/wiki/src/security/ineffective_firewall-level_Tor_enforcement.id.po index 2b174b51db5fdc8850e0beb85a6fca88d303690f..237ad25e1de6a81fdb8006523908a91143c5c164 100644 --- a/wiki/src/security/ineffective_firewall-level_Tor_enforcement.id.po +++ b/wiki/src/security/ineffective_firewall-level_Tor_enforcement.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2018-10-24 22:59+0000\n" +"PO-Revision-Date: 2020-01-16 00:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/security/noscript_disabled_in_tor_browser.fa.po b/wiki/src/security/noscript_disabled_in_tor_browser.fa.po index 40883c442419cdf3ae82db646ce1cbb8590a6c38..e7c5ca697d25701b042d02ee0a99794c81eb5cee 100644 --- a/wiki/src/security/noscript_disabled_in_tor_browser.fa.po +++ b/wiki/src/security/noscript_disabled_in_tor_browser.fa.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-05-14 15:36+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -29,7 +30,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!tag security/fixed]]\n" -msgstr "" +msgstr "[[!tag security/fixed]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/security/noscript_disabled_in_tor_browser.fr.po b/wiki/src/security/noscript_disabled_in_tor_browser.fr.po index 5174c7a7dd2159e917e49de81e6b52c55f089bbd..bc4a64f7dc4a1bcb0378dd89411f1170d0eb7381 100644 --- a/wiki/src/security/noscript_disabled_in_tor_browser.fr.po +++ b/wiki/src/security/noscript_disabled_in_tor_browser.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-05-14 15:36+0000\n" -"PO-Revision-Date: 2019-09-06 21:50+0000\n" +"PO-Revision-Date: 2020-01-12 13:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -78,7 +78,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!img news/version_3.13.2/with-noscript.png alt=\"\" link=\"no\"]]\n" -msgstr "" +msgstr "[[!img news/version_3.13.2/with-noscript.png alt=\"\" link=\"no\"]]\n" #. type: Plain text msgid "" @@ -92,6 +92,7 @@ msgstr "" #, no-wrap msgid "[[!img news/version_3.13.2/without-noscript.png alt=\"\" link=\"no\"]]\n" msgstr "" +"[[!img news/version_3.13.2/without-noscript.png alt=\"\" link=\"no\"]]\n" #. type: Title ## #, no-wrap @@ -115,7 +116,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[!img news/version_3.13.2/about-config.png link=\"no\"]]\n" -msgstr "" +msgstr " [[!img news/version_3.13.2/about-config.png link=\"no\"]]\n" #. type: Bullet: '1. ' msgid "Click the **I accept the risk!** button." @@ -144,4 +145,4 @@ msgstr "Vérifiez que *NoScript* est à nouveau activé." #. type: Plain text #, no-wrap msgid " [[!img news/version_3.13.2/xpinstall-false.png link=\"no\"]]\n" -msgstr "" +msgstr " [[!img news/version_3.13.2/xpinstall-false.png link=\"no\"]]\n" diff --git a/wiki/src/security/sandbox_escape_in_tor_browser.zh.po b/wiki/src/security/sandbox_escape_in_tor_browser.zh.po index 5ac341e745b4502b20662086e9a33158fb771df6..00088ab813786f19f6005c116a530910d3cf8708 100644 --- a/wiki/src/security/sandbox_escape_in_tor_browser.zh.po +++ b/wiki/src/security/sandbox_escape_in_tor_browser.zh.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-06-25 12:42+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-22 16:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -51,7 +52,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "</div>\n" -msgstr "" +msgstr "</div>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/security/use_of_cleartext_swap_partitions_on_local_hard_disks.id.po b/wiki/src/security/use_of_cleartext_swap_partitions_on_local_hard_disks.id.po index 36e4979d6b5e16244c18861cb7bb98d97c538355..2b45245b1209e1ebb989c6f6d98ce761a4493d7a 100644 --- a/wiki/src/security/use_of_cleartext_swap_partitions_on_local_hard_disks.id.po +++ b/wiki/src/security/use_of_cleartext_swap_partitions_on_local_hard_disks.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2018-10-24 22:55+0000\n" +"PO-Revision-Date: 2020-01-16 00:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/security/use_of_untrusted_Live_system_found_on_local_hard-disk.id.po b/wiki/src/security/use_of_untrusted_Live_system_found_on_local_hard-disk.id.po index 12319acdb9d6f7dce5547aaf8ffce8dd697f56a3..be8c7ca290eb76e31c88b1bcef7218fe74455ef4 100644 --- a/wiki/src/security/use_of_untrusted_Live_system_found_on_local_hard-disk.id.po +++ b/wiki/src/security/use_of_untrusted_Live_system_found_on_local_hard-disk.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-09-18 06:11+0200\n" -"PO-Revision-Date: 2018-10-24 22:57+0000\n" +"PO-Revision-Date: 2020-01-16 00:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.19.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +31,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" -msgstr "" +msgstr "[[!pagetemplate template=\"news.tmpl\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/shortcuts.mdwn b/wiki/src/shortcuts.mdwn index bb0ed9d472ab8d2e0c69b425129686ac9d84fc22..3dd54cc36bc155e4322b254238ba755da7c5b69f 100644 --- a/wiki/src/shortcuts.mdwn +++ b/wiki/src/shortcuts.mdwn @@ -91,18 +91,15 @@ ikiwiki will include your shortcut in the standard underlay. desc="list of *Starter* tasks"]] * [[!shortcut name=tails_ticket url="https://redmine.tails.boum.org/code/issues/%S" desc="#%s"]] * [[!shortcut name=tails_roadmap url="https://tails.boum.org/contribute/roadmap" desc="roadmap"]] -* [[!shortcut name=tails_gitweb url="https://git-tails.immerda.ch/tails/plain/%S"]] -* [[!shortcut name=tails_gitweb_dir url="https://git-tails.immerda.ch/tails/tree/%S"]] -* [[!shortcut name=tails_devel_gitweb url="https://git-tails.immerda.ch/tails/plain/%S?h=devel"]] -* [[!shortcut name=tails_devel_gitweb_dir url="https://git-tails.immerda.ch/tails/tree/%S?h=devel"]] -* [[!shortcut name=tails_testing_gitweb url="https://git-tails.immerda.ch/tails/plain/%S?h=testing"]] -* [[!shortcut name=tails_testing_gitweb_dir url="https://git-tails.immerda.ch/tails/tree/%S?h=testing"]] -* [[!shortcut name=tails_spoof-mac_gitweb url="https://git-tails.immerda.ch/tails/plain/%S?h=feature/spoof-mac"]] -* [[!shortcut name=tails_gitweb_branch url="https://git-tails.immerda.ch/tails/log/?h=%S"]] -* [[!shortcut name=tails_gitweb_branch_winterfairy url="https://git-tails.immerda.ch/winterfairy/tails/log/?h=%S"]] -* [[!shortcut name=tails_gitweb_branch_kytv url="http://repo.or.cz/w/tails/kytv.git/shortlog/refs/heads/%S"]] -* [[!shortcut name=tails_gitweb_commit url="https://git-tails.immerda.ch/tails/commit/?id=%s"]] -* [[!shortcut name=tails_gitweb_repo url="https://git-tails.immerda.ch/%S"]] +* [[!shortcut name=tails_gitweb url="https://git.tails.boum.org/tails/plain/%S"]] +* [[!shortcut name=tails_gitweb_dir url="https://git.tails.boum.org/tails/tree/%S"]] +* [[!shortcut name=tails_devel_gitweb url="https://git.tails.boum.org/tails/plain/%S?h=devel"]] +* [[!shortcut name=tails_devel_gitweb_dir url="https://git.tails.boum.org/tails/tree/%S?h=devel"]] +* [[!shortcut name=tails_testing_gitweb url="https://git.tails.boum.org/tails/plain/%S?h=testing"]] +* [[!shortcut name=tails_testing_gitweb_dir url="https://git.tails.boum.org/tails/tree/%S?h=testing"]] +* [[!shortcut name=tails_gitweb_branch url="https://git.tails.boum.org/tails/log/?h=%S"]] +* [[!shortcut name=tails_gitweb_commit url="https://git.tails.boum.org/tails/commit/?id=%s"]] +* [[!shortcut name=tails_gitweb_repo url="https://git.tails.boum.org/%S"]] * [[!shortcut name=launchpad_bug url="https://bugs.launchpad.net/onboard/+bug/%s" desc="Launchpad bug #%s"]] * [[!shortcut name=tor_bug url="https://bugs.torproject.org/%s" desc="bug #%s on Tor Project's Trac"]] diff --git a/wiki/src/sidebar.ar.po b/wiki/src/sidebar.ar.po index 9b0de5bd8d2148b768b5ca8af065da3d560be87e..24fef421a24ef3d7b0b80ef980d2f44edd9d592a 100644 --- a/wiki/src/sidebar.ar.po +++ b/wiki/src/sidebar.ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-09-27 22:08+0000\n" +"POT-Creation-Date: 2019-12-15 23:20+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" @@ -59,7 +59,7 @@ msgid "" " <li>[[Help & Support|support]]</li>\n" " <li>[[Contribute]]</li>\n" " <li>[[News|news]]</li>\n" -" <li class=\"new\">[[Jobs|jobs]]</li>\n" +" <li>[[Jobs|jobs]]</li>\n" " </ul>\n" "</div>\n" msgstr "" diff --git a/wiki/src/sidebar.ca.po b/wiki/src/sidebar.ca.po index c15ca78bd9df80c22d40e6551efcaa0ac77258cf..d24281727c0945b73484d9622ba99e9b69534385 100644 --- a/wiki/src/sidebar.ca.po +++ b/wiki/src/sidebar.ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-09-27 22:08+0000\n" +"POT-Creation-Date: 2019-12-15 23:20+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" @@ -59,7 +59,7 @@ msgid "" " <li>[[Help & Support|support]]</li>\n" " <li>[[Contribute]]</li>\n" " <li>[[News|news]]</li>\n" -" <li class=\"new\">[[Jobs|jobs]]</li>\n" +" <li>[[Jobs|jobs]]</li>\n" " </ul>\n" "</div>\n" msgstr "" diff --git a/wiki/src/sidebar.de.po b/wiki/src/sidebar.de.po index 2eec2e3d7fbd5d54cfc80ef05b06b1283d80cd17..a1fbe0fb989bf22428e7bb9f31ee7aedcd621eb9 100644 --- a/wiki/src/sidebar.de.po +++ b/wiki/src/sidebar.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-09-27 22:08+0000\n" +"POT-Creation-Date: 2019-12-15 23:20+0000\n" "PO-Revision-Date: 2018-04-15 10:43+0200\n" "Last-Translator: spriver <spriver@autistici.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -85,7 +85,7 @@ msgid "" " <li>[[Help & Support|support]]</li>\n" " <li>[[Contribute]]</li>\n" " <li>[[News|news]]</li>\n" -" <li class=\"new\">[[Jobs|jobs]]</li>\n" +" <li>[[Jobs|jobs]]</li>\n" " </ul>\n" "</div>\n" msgstr "" diff --git a/wiki/src/sidebar.es.po b/wiki/src/sidebar.es.po index 45b1d61ca1d2855172bf4dfa6b7382bb5c02d288..1810ba64bdab2fd50ef57b71652c57107bb3a214 100644 --- a/wiki/src/sidebar.es.po +++ b/wiki/src/sidebar.es.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-09-27 22:08+0000\n" -"PO-Revision-Date: 2019-10-23 12:01+0000\n" +"POT-Creation-Date: 2019-12-15 23:20+0000\n" +"PO-Revision-Date: 2020-01-11 10:27+0000\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "sidebar/es/>\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -71,7 +71,7 @@ msgid "" " <li>[[Help & Support|support]]</li>\n" " <li>[[Contribute]]</li>\n" " <li>[[News|news]]</li>\n" -" <li class=\"new\">[[Jobs|jobs]]</li>\n" +" <li>[[Jobs|jobs]]</li>\n" " </ul>\n" "</div>\n" msgstr "" @@ -83,7 +83,7 @@ msgstr "" " <li>[[Ayuda & Soporte|support]]</li>\n" " <li>[[Colabora|Contribute]]</li>\n" " <li>[[Noticias|news]]</li>\n" -" <li class=\"new\">[[Trabajos|jobs]]</li>\n" +" <li>[[Trabajos|jobs]]</li>\n" " </ul>\n" "</div>\n" diff --git a/wiki/src/sidebar.fa.po b/wiki/src/sidebar.fa.po index 8861a3f4d85bd710bb1d5bd66be6cb4abf9dfa90..8f0e5d4a6b10c8880ba6067cfb2ae50ee2bc4b6a 100644 --- a/wiki/src/sidebar.fa.po +++ b/wiki/src/sidebar.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-27 22:08+0000\n" +"POT-Creation-Date: 2019-12-15 23:20+0000\n" "PO-Revision-Date: 2015-10-20 22:29+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/sidebar/" @@ -91,7 +91,7 @@ msgid "" " <li>[[Help & Support|support]]</li>\n" " <li>[[Contribute]]</li>\n" " <li>[[News|news]]</li>\n" -" <li class=\"new\">[[Jobs|jobs]]</li>\n" +" <li>[[Jobs|jobs]]</li>\n" " </ul>\n" "</div>\n" msgstr "" diff --git a/wiki/src/sidebar.fr.po b/wiki/src/sidebar.fr.po index ecee9ebfcd3d933918907254da5d212bbad8cb9e..a318c93c9778418edb18c7b4dcaeb684ebf5ba12 100644 --- a/wiki/src/sidebar.fr.po +++ b/wiki/src/sidebar.fr.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-09-27 22:08+0000\n" -"PO-Revision-Date: 2019-09-28 12:00+0000\n" -"Last-Translator: Chre <tor@renaudineau.org>\n" +"POT-Creation-Date: 2019-12-15 23:20+0000\n" +"PO-Revision-Date: 2020-01-03 14:26+0000\n" +"Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -71,7 +71,7 @@ msgid "" " <li>[[Help & Support|support]]</li>\n" " <li>[[Contribute]]</li>\n" " <li>[[News|news]]</li>\n" -" <li class=\"new\">[[Jobs|jobs]]</li>\n" +" <li>[[Jobs|jobs]]</li>\n" " </ul>\n" "</div>\n" msgstr "" @@ -83,7 +83,7 @@ msgstr "" " <li>[[Aide & Support|support]]</li>\n" " <li>[[Participer|contribute]]</li>\n" " <li>[[Nouvelles|news]]</li>\n" -" <li class=\"new\">[[Jobs|jobs]]</li>\n" +" <li>[[Jobs|jobs]]</li>\n" " </ul>\n" "</div>\n" diff --git a/wiki/src/sidebar.id.po b/wiki/src/sidebar.id.po index 54db526893516acd5aa1f57fa83285aa99eb1c22..d36fe8adaabe24dfda87f707d7fec610b39c4d5c 100644 --- a/wiki/src/sidebar.id.po +++ b/wiki/src/sidebar.id.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-09-27 22:08+0000\n" -"PO-Revision-Date: 2018-04-15 10:43+0200\n" -"Last-Translator: spriver <spriver@autistici.org>\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" +"POT-Creation-Date: 2019-12-15 23:20+0000\n" +"PO-Revision-Date: 2020-01-16 00:28+0000\n" +"Last-Translator: Caesar <pinkpidgeon@protonmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.10\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -32,11 +34,13 @@ msgid "" "<div id=\"tor_check\" class=\"button\">\n" "<a href=\"https://check.torproject.org/\">\n" msgstr "" +"<div id=\"tor_check\" class=\"button\">\n" +"<a href=\"https://check.torproject.org/\">\n" #. type: Plain text #, no-wrap msgid "[[!img \"lib/onion.png\" link=\"no\"]]\n" -msgstr "" +msgstr "[[!img \"lib/onion.png\" link=\"no\"]]\n" #. type: Plain text #, no-wrap @@ -59,7 +63,7 @@ msgid "" " <li>[[Help & Support|support]]</li>\n" " <li>[[Contribute]]</li>\n" " <li>[[News|news]]</li>\n" -" <li class=\"new\">[[Jobs|jobs]]</li>\n" +" <li>[[Jobs|jobs]]</li>\n" " </ul>\n" "</div>\n" msgstr "" diff --git a/wiki/src/sidebar.it.po b/wiki/src/sidebar.it.po index ecb805d18c18b9e78353d3fdc320e0510988a58f..3979df535fce4018133b66a2b06604a9008bf40b 100644 --- a/wiki/src/sidebar.it.po +++ b/wiki/src/sidebar.it.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-09-27 22:08+0000\n" -"PO-Revision-Date: 2019-09-03 20:00+0000\n" +"POT-Creation-Date: 2019-12-15 23:20+0000\n" +"PO-Revision-Date: 2020-01-22 16:27+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: Tails translators <tails-l10n@boum.org>\n" "Language: it\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -34,23 +34,18 @@ msgstr "" "</div>\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<div class=\"donate button\">\n" -#| " <a href=\"https://tails.boum.org/donate/?r=sidebar\">Donate</a>\n" -#| "</div>\n" +#, no-wrap msgid "" "<div id=\"tor_check\" class=\"button\">\n" "<a href=\"https://check.torproject.org/\">\n" msgstr "" -"<div class=\"donate button\">\n" -" <a href=\"https://tails.boum.org/donate/index.it.html?r=sidebar\">Dona</a>\n" -"</div>\n" +"<div id=\"tor_check\" class=\"button\">\n" +"<a href=\"https://check.torproject.org/?lang=it\">\n" #. type: Plain text #, no-wrap msgid "[[!img \"lib/onion.png\" link=\"no\"]]\n" -msgstr "" +msgstr "[[!img \"lib/onion.png\" link=\"no\"]]\n" #. type: Plain text #, no-wrap @@ -87,7 +82,7 @@ msgid "" " <li>[[Help & Support|support]]</li>\n" " <li>[[Contribute]]</li>\n" " <li>[[News|news]]</li>\n" -" <li class=\"new\">[[Jobs|jobs]]</li>\n" +" <li>[[Jobs|jobs]]</li>\n" " </ul>\n" "</div>\n" msgstr "" diff --git a/wiki/src/sidebar.mdwn b/wiki/src/sidebar.mdwn index 9739117ac741965b948d5c12ff163fdc0d95ed33..a15ead85a1dc99ef689952375f6948c1dd21ca46 100644 --- a/wiki/src/sidebar.mdwn +++ b/wiki/src/sidebar.mdwn @@ -21,7 +21,7 @@ translation of the label below is long and gets split into two lines. --> <li>[[Help & Support|support]]</li> <li>[[Contribute]]</li> <li>[[News|news]]</li> - <li class="new">[[Jobs|jobs]]</li> + <li>[[Jobs|jobs]]</li> </ul> </div> diff --git a/wiki/src/sidebar.pl.po b/wiki/src/sidebar.pl.po index 6b3777094239c6e1e86360dd84ee7508045bd8b5..0e10a4e2d81e0359bf9e3e3f43709cf7bcb0e920 100644 --- a/wiki/src/sidebar.pl.po +++ b/wiki/src/sidebar.pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-09-27 22:08+0000\n" +"POT-Creation-Date: 2019-12-15 23:20+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" @@ -59,7 +59,7 @@ msgid "" " <li>[[Help & Support|support]]</li>\n" " <li>[[Contribute]]</li>\n" " <li>[[News|news]]</li>\n" -" <li class=\"new\">[[Jobs|jobs]]</li>\n" +" <li>[[Jobs|jobs]]</li>\n" " </ul>\n" "</div>\n" msgstr "" diff --git a/wiki/src/sidebar.pt.po b/wiki/src/sidebar.pt.po index 6b8d7d48378651e9b5928cfb07ed61b5e79f1811..a288b522a8832ae1503a1d18b9a3a7fa3639c781 100644 --- a/wiki/src/sidebar.pt.po +++ b/wiki/src/sidebar.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-09-27 22:08+0000\n" +"POT-Creation-Date: 2019-12-15 23:20+0000\n" "PO-Revision-Date: 2017-02-10 14:43+0100\n" "Last-Translator: Tails Developers <amnesia@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -82,7 +82,7 @@ msgid "" " <li>[[Help & Support|support]]</li>\n" " <li>[[Contribute]]</li>\n" " <li>[[News|news]]</li>\n" -" <li class=\"new\">[[Jobs|jobs]]</li>\n" +" <li>[[Jobs|jobs]]</li>\n" " </ul>\n" "</div>\n" msgstr "" diff --git a/wiki/src/sidebar.ru.po b/wiki/src/sidebar.ru.po index 2c438f0a56b089a7f957029a74ce71b6c8f2b2e8..a3fdb99a30fb35742ee4db9c26e55f06b3bf7588 100644 --- a/wiki/src/sidebar.ru.po +++ b/wiki/src/sidebar.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-09-27 22:08+0000\n" +"POT-Creation-Date: 2019-12-15 23:20+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" @@ -59,7 +59,7 @@ msgid "" " <li>[[Help & Support|support]]</li>\n" " <li>[[Contribute]]</li>\n" " <li>[[News|news]]</li>\n" -" <li class=\"new\">[[Jobs|jobs]]</li>\n" +" <li>[[Jobs|jobs]]</li>\n" " </ul>\n" "</div>\n" msgstr "" diff --git a/wiki/src/sidebar.sr_Latn.po b/wiki/src/sidebar.sr_Latn.po index bf0e03e03a714b66a3608c67a2091c2f87d8006a..6d07311b94bb33ab516660ddd21f3962ee4a5a10 100644 --- a/wiki/src/sidebar.sr_Latn.po +++ b/wiki/src/sidebar.sr_Latn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-09-27 22:08+0000\n" +"POT-Creation-Date: 2019-12-15 23:20+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" @@ -59,7 +59,7 @@ msgid "" " <li>[[Help & Support|support]]</li>\n" " <li>[[Contribute]]</li>\n" " <li>[[News|news]]</li>\n" -" <li class=\"new\">[[Jobs|jobs]]</li>\n" +" <li>[[Jobs|jobs]]</li>\n" " </ul>\n" "</div>\n" msgstr "" diff --git a/wiki/src/sidebar.tr.po b/wiki/src/sidebar.tr.po index 0993c9b8e4ddfa610e9961deda267617be8a43c7..a86841ca30e65cb5d8ac9d2bb0309d166a16f3f9 100644 --- a/wiki/src/sidebar.tr.po +++ b/wiki/src/sidebar.tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-09-27 22:08+0000\n" +"POT-Creation-Date: 2019-12-15 23:20+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" @@ -59,7 +59,7 @@ msgid "" " <li>[[Help & Support|support]]</li>\n" " <li>[[Contribute]]</li>\n" " <li>[[News|news]]</li>\n" -" <li class=\"new\">[[Jobs|jobs]]</li>\n" +" <li>[[Jobs|jobs]]</li>\n" " </ul>\n" "</div>\n" msgstr "" diff --git a/wiki/src/sidebar.zh.po b/wiki/src/sidebar.zh.po index a02564d6a1b0a49af7424701b98be4f772a7647c..86b0106a2ba19dfa780ec4a362f2b0980bffd13c 100644 --- a/wiki/src/sidebar.zh.po +++ b/wiki/src/sidebar.zh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2019-09-27 22:08+0000\n" +"POT-Creation-Date: 2019-12-15 23:20+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" @@ -59,7 +59,7 @@ msgid "" " <li>[[Help & Support|support]]</li>\n" " <li>[[Contribute]]</li>\n" " <li>[[News|news]]</li>\n" -" <li class=\"new\">[[Jobs|jobs]]</li>\n" +" <li>[[Jobs|jobs]]</li>\n" " </ul>\n" "</div>\n" msgstr "" diff --git a/wiki/src/sidebar.zh_TW.po b/wiki/src/sidebar.zh_TW.po index 6cff70d2d9eeb38e6bfded8d94bed24347bccf16..b4bd0a30c765c9406f05b3de34c02519f5272584 100644 --- a/wiki/src/sidebar.zh_TW.po +++ b/wiki/src/sidebar.zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails l10n\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-09-27 22:08+0000\n" +"POT-Creation-Date: 2019-12-15 23:20+0000\n" "PO-Revision-Date: 2018-11-02 17:24+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: Tails Chinese translators <jxt@twngo.xyz>\n" @@ -60,7 +60,7 @@ msgid "" " <li>[[Help & Support|support]]</li>\n" " <li>[[Contribute]]</li>\n" " <li>[[News|news]]</li>\n" -" <li class=\"new\">[[Jobs|jobs]]</li>\n" +" <li>[[Jobs|jobs]]</li>\n" " </ul>\n" "</div>\n" msgstr "" diff --git a/wiki/src/staging/about.css b/wiki/src/staging/about.css new file mode 100644 index 0000000000000000000000000000000000000000..ec07f5e54fd159859b85dc3a7edebad8383d0793 --- /dev/null +++ b/wiki/src/staging/about.css @@ -0,0 +1,18 @@ +@import url("common.css"); + +.col-md-8 { + padding-left: 0; +} + +p { + font-size: 1.3em; +} + +em { + font-style: normal; + font-weight: bold; +} + +.follow { + margin-top: 5em; +} diff --git a/wiki/src/blueprint/explain_tails/about.html b/wiki/src/staging/about.html similarity index 98% rename from wiki/src/blueprint/explain_tails/about.html rename to wiki/src/staging/about.html index 08a8a7638bed7e78a0b04bd75efeaa62e7ef432b..619fee7fb0de0bcfbd04a22347d887187a924b44 100644 --- a/wiki/src/blueprint/explain_tails/about.html +++ b/wiki/src/staging/about.html @@ -1,6 +1,6 @@ [[!meta title="Draft for 'How Tails work'"]] [[!meta stylesheet="bootstrap.min" rel="stylesheet" title=""]] -[[!meta stylesheet="blueprint/explain_tails/about" rel="stylesheet" title=""]] +[[!meta stylesheet="staging/about" rel="stylesheet" title=""]] [[!meta robots="noindex"]] <div class="row"> diff --git a/wiki/src/blueprint/explain_tails/common.css b/wiki/src/staging/common.css similarity index 100% rename from wiki/src/blueprint/explain_tails/common.css rename to wiki/src/staging/common.css diff --git a/wiki/src/blueprint/explain_tails/homepage.css b/wiki/src/staging/home.css similarity index 100% rename from wiki/src/blueprint/explain_tails/homepage.css rename to wiki/src/staging/home.css diff --git a/wiki/src/blueprint/explain_tails/homepage.html b/wiki/src/staging/home.html similarity index 94% rename from wiki/src/blueprint/explain_tails/homepage.html rename to wiki/src/staging/home.html index 7f5c51282ef514b4cc7063eb45ef32b44026c615..d15469193f07175a27f08fd48e4c14d692a2fc77 100644 --- a/wiki/src/blueprint/explain_tails/homepage.html +++ b/wiki/src/staging/home.html @@ -1,6 +1,6 @@ [[!meta title="Structure for a new homepage"]] [[!meta stylesheet="bootstrap.min" rel="stylesheet" title=""]] -[[!meta stylesheet="blueprint/explain_tails/homepage" rel="stylesheet" title=""]] +[[!meta stylesheet="staging/home" rel="stylesheet" title=""]] [[!meta robots="noindex"]] <div class="row"> diff --git a/wiki/src/support.ar.po b/wiki/src/support.ar.po index aec6140a1c6e8198b2fdba32ca32ed9ee8845c66..6a718dcc96fbfa8940a37a7e4483eedf1a1ddcf5 100644 --- a/wiki/src/support.ar.po +++ b/wiki/src/support.ar.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-29 19:58+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-02-20 12:59+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Arabic <http://translate.tails.boum.org/projects/tails/" @@ -99,7 +99,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The [list of things that will be in the next release](https://redmine.tails." -"boum.org/code/projects/tails/issues?query_id=111)" +"boum.org/code/projects/tails/issues?query_id=327)" msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/support.ca.po b/wiki/src/support.ca.po index c324036477fda7a1f3e4f8c126ff2e5210c7f628..2ec216694d5f2e913e04b25843cc2ed4b7d9ff1e 100644 --- a/wiki/src/support.ca.po +++ b/wiki/src/support.ca.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-29 19:58+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-10-26 13:26+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -97,7 +97,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The [list of things that will be in the next release](https://redmine.tails." -"boum.org/code/projects/tails/issues?query_id=111)" +"boum.org/code/projects/tails/issues?query_id=327)" msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/support.de.po b/wiki/src/support.de.po index 12ad39b63bee0f67c0e775220f02d56664c0e122..b716aa514b15ea0cc0f1c361b78f8fa60b81f5b7 100644 --- a/wiki/src/support.de.po +++ b/wiki/src/support.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-09-29 19:58+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-11-08 16:00+0100\n" "Last-Translator: Tails translators\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -82,8 +82,8 @@ msgstr "Aktualisieren\n" #. type: Plain text #, fuzzy #| msgid "" -#| "Make sure you are using the latest version, as [[upgrading|doc/" -#| "upgrade]] might solve your problem." +#| "Make sure you are using the latest version, as [[upgrading|doc/upgrade]] " +#| "might solve your problem." msgid "" "Make sure you are using the latest version, as [[upgrading|doc/upgrade]] " "might solve your problem." @@ -105,9 +105,13 @@ msgid "The [[list of known issues|support/known_issues]]" msgstr "Die [[Liste bekannter Probleme|support/known_issues]]" #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "The [list of things that will be in the next release](https://redmine." +#| "tails.boum.org/code/projects/tails/issues?query_id=111)" msgid "" "The [list of things that will be in the next release](https://redmine.tails." -"boum.org/code/projects/tails/issues?query_id=111)" +"boum.org/code/projects/tails/issues?query_id=327)" msgstr "" "Die [Liste der Dinge, die im nächsten Release enthalten sein werden](https://" "redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" diff --git a/wiki/src/support.es.po b/wiki/src/support.es.po index 37f5bcaf7fec98d110ae324bb8429a5ee7f74736..7907345341da34ba43f02876956c5884e0666e47 100644 --- a/wiki/src/support.es.po +++ b/wiki/src/support.es.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-09-29 19:58+0000\n" -"PO-Revision-Date: 2019-09-30 01:49+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" +"PO-Revision-Date: 2020-01-15 08:27+0000\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" "support/es/>\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -103,11 +103,11 @@ msgstr "La [[lista de problemas conocidos|support/known_issues]]" #. type: Bullet: ' - ' msgid "" "The [list of things that will be in the next release](https://redmine.tails." -"boum.org/code/projects/tails/issues?query_id=111)" +"boum.org/code/projects/tails/issues?query_id=327)" msgstr "" -"La [lista de cosas que serán arregladas o mejoradas en las próximas " -"ediciones](https://redmine.tails.boum.org/code/projects/tails/issues?" -"query_id=111)" +"La [lista de cosas que estarán listas en la proxima " +"edición](https://redmine.tails.boum.org/code/projects/tails/" +"issues?query_id=327)" #. type: Bullet: ' - ' msgid "The [[!tails_redmine desc=\"rest of our open tickets on Redmine\"]]" diff --git a/wiki/src/support.fa.po b/wiki/src/support.fa.po index 35fb4c9d1347e7ed7942f39e17d872e68f3617ee..9331d0128980b04b62458a01a9209348f0ed5e4e 100644 --- a/wiki/src/support.fa.po +++ b/wiki/src/support.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-29 19:58+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-02-05 19:08+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Persian <http://translate.tails.boum.org/projects/tails/" @@ -83,8 +83,8 @@ msgstr "ارتقاء\n" #. type: Plain text #, fuzzy #| msgid "" -#| "Make sure you are using the latest version, as [[upgrading|doc/" -#| "upgrade]] might solve your problem." +#| "Make sure you are using the latest version, as [[upgrading|doc/upgrade]] " +#| "might solve your problem." msgid "" "Make sure you are using the latest version, as [[upgrading|doc/upgrade]] " "might solve your problem." @@ -106,9 +106,13 @@ msgid "The [[list of known issues|support/known_issues]]" msgstr "[[فهرست مشکلات شناختهشده|support/known_issues]]" #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "The [list of things that will be in the next release](https://redmine." +#| "tails.boum.org/code/projects/tails/issues?query_id=111)" msgid "" "The [list of things that will be in the next release](https://redmine.tails." -"boum.org/code/projects/tails/issues?query_id=111)" +"boum.org/code/projects/tails/issues?query_id=327)" msgstr "" "[فهرست چیزهایی که در نسخهٔ بعدی اضافه خواهند شد](https://redmine.tails.boum." "org/code/projects/tails/issues?query_id=111)" diff --git a/wiki/src/support.fr.po b/wiki/src/support.fr.po index 94f530ee4ba10286a80fc9e6efb2423695eff5fe..c43ac4c7695d0213727193c4cfd33e98e55c3feb 100644 --- a/wiki/src/support.fr.po +++ b/wiki/src/support.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: 2019-09-29 19:58+0000\n" -"PO-Revision-Date: 2019-10-01 16:57+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" +"PO-Revision-Date: 2020-01-07 15:25+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -104,10 +104,11 @@ msgstr "La liste des [[problèmes connus|support/known_issues]]" #. type: Bullet: ' - ' msgid "" "The [list of things that will be in the next release](https://redmine.tails." -"boum.org/code/projects/tails/issues?query_id=111)" +"boum.org/code/projects/tails/issues?query_id=327)" msgstr "" -"La [liste des changements dans la prochaine version](https://redmine.tails." -"boum.org/code/projects/tails/issues?query_id=111)" +"La [liste des changements dans la prochaine " +"version](https://redmine.tails.boum.org/code/projects/tails/" +"issues?query_id=327)" #. type: Bullet: ' - ' msgid "The [[!tails_redmine desc=\"rest of our open tickets on Redmine\"]]" diff --git a/wiki/src/support.id.po b/wiki/src/support.id.po index 53ddd24273ec7ba6f1c5f8eae37722855e7595b1..d69a973c8a1ca92a1888464a9e62ed00fad34f28 100644 --- a/wiki/src/support.id.po +++ b/wiki/src/support.id.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-09-29 19:58+0000\n" -"PO-Revision-Date: 2019-10-24 10:32+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" +"PO-Revision-Date: 2020-01-15 21:32+0000\n" +"Last-Translator: Caesar <pinkpidgeon@protonmail.com>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -97,7 +97,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The [list of things that will be in the next release](https://redmine.tails." -"boum.org/code/projects/tails/issues?query_id=111)" +"boum.org/code/projects/tails/issues?query_id=327)" msgstr "" #. type: Bullet: ' - ' @@ -136,7 +136,7 @@ msgstr "</div>\n" #. type: Plain text #, no-wrap msgid "<div id=\"wishlist\" class=\"blocks two-blocks\">\n" -msgstr "" +msgstr "<div id=\"wishlist\" class=\"blocks two-blocks\">\n" #. type: Plain text #, no-wrap @@ -154,12 +154,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "</div> <!-- #wishlist -->\n" -msgstr "" +msgstr "</div> <!-- #wishlist -->\n" #. type: Plain text #, no-wrap msgid "<div id=\"talk\">\n" -msgstr "" +msgstr "<div id=\"talk\">\n" #. type: Plain text #, no-wrap @@ -169,4 +169,4 @@ msgstr "" #. type: Plain text #, no-wrap msgid " [[!inline pages=\"support/talk\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" +msgstr " [[!inline pages=\"support/talk.id\" raw=\"yes\" sort=\"age\"]]\n" diff --git a/wiki/src/support.it.po b/wiki/src/support.it.po index 3163232ab71c82e1e151fa9f9077d9062559f5eb..769c2320256a97de39fe1284d731024b63df3226 100644 --- a/wiki/src/support.it.po +++ b/wiki/src/support.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-29 19:58+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2019-07-20 10:40+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails-l10n@boum.org>\n" @@ -82,14 +82,14 @@ msgstr "Aggiornamento\n" #. type: Plain text #, fuzzy #| msgid "" -#| "Make sure you are using the latest version, as [[upgrading|doc/" -#| "upgrade]] might solve your problem." +#| "Make sure you are using the latest version, as [[upgrading|doc/upgrade]] " +#| "might solve your problem." msgid "" "Make sure you are using the latest version, as [[upgrading|doc/upgrade]] " "might solve your problem." msgstr "" -"Assicurati di usare l'ultima versione, questo [[aggiornamento|doc/" -"upgrade]] potrebbe risolvere i tuoi problemi." +"Assicurati di usare l'ultima versione, questo [[aggiornamento|doc/upgrade]] " +"potrebbe risolvere i tuoi problemi." #. type: Title = #, no-wrap @@ -105,9 +105,13 @@ msgid "The [[list of known issues|support/known_issues]]" msgstr "La [[lista dei problemi noti|support/known_issues]]" #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "The [list of things that will be in the next release](https://redmine." +#| "tails.boum.org/code/projects/tails/issues?query_id=111)" msgid "" "The [list of things that will be in the next release](https://redmine.tails." -"boum.org/code/projects/tails/issues?query_id=111)" +"boum.org/code/projects/tails/issues?query_id=327)" msgstr "" "La [lista delle cose che verranno inserite nella prosssima release](https://" "redmine.tails.boum.org/code/projects/tails/issues?query_id=111)" diff --git a/wiki/src/support.mdwn b/wiki/src/support.mdwn index 4b03d209ee65467e5b9ba9150b1ff797bac2b4d2..bba2df905eee530487b8a86e7fd8c5a094c1141e 100644 --- a/wiki/src/support.mdwn +++ b/wiki/src/support.mdwn @@ -34,7 +34,7 @@ Check if the problem is already known You can have a look at: - The [[list of known issues|support/known_issues]] - - The [list of things that will be in the next release](https://redmine.tails.boum.org/code/projects/tails/issues?query_id=111) + - The [list of things that will be in the next release](https://redmine.tails.boum.org/code/projects/tails/issues?query_id=327) - The [[!tails_redmine desc="rest of our open tickets on Redmine"]] <div id="bugs" class="blocks two-blocks"> diff --git a/wiki/src/support.pl.po b/wiki/src/support.pl.po index 7a78a149c0b236fba99ffc7a932e0ca96f98f9b5..bfc5a4825969cbf11da93ec4e128ae273fc9f073 100644 --- a/wiki/src/support.pl.po +++ b/wiki/src/support.pl.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-29 19:58+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-07-02 08:40+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -98,7 +98,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The [list of things that will be in the next release](https://redmine.tails." -"boum.org/code/projects/tails/issues?query_id=111)" +"boum.org/code/projects/tails/issues?query_id=327)" msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/support.pt.po b/wiki/src/support.pt.po index b6303dfd1e48d62bd4ea1f1843acc1428567723a..1a54553d96eb0df6ba7511a12045268e6321363b 100644 --- a/wiki/src/support.pt.po +++ b/wiki/src/support.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-09-29 19:58+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-11-08 16:01+0100\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" @@ -83,8 +83,8 @@ msgstr "Atualização\n" #. type: Plain text #, fuzzy #| msgid "" -#| "Make sure you are using the latest version, as [[upgrading|doc/" -#| "upgrade]] might solve your problem." +#| "Make sure you are using the latest version, as [[upgrading|doc/upgrade]] " +#| "might solve your problem." msgid "" "Make sure you are using the latest version, as [[upgrading|doc/upgrade]] " "might solve your problem." @@ -106,9 +106,13 @@ msgid "The [[list of known issues|support/known_issues]]" msgstr "Na [[lista de problemas conhecidos|support/known_issues]]" #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "The [list of things that will be in the next release](https://redmine." +#| "tails.boum.org/code/projects/tails/issues?query_id=111)" msgid "" "The [list of things that will be in the next release](https://redmine.tails." -"boum.org/code/projects/tails/issues?query_id=111)" +"boum.org/code/projects/tails/issues?query_id=327)" msgstr "" "Na [lista de coisas que serão incluídas na próxima versão](https://labs." "riseup.net/code/projects/tails/issues?query_id=111)" diff --git a/wiki/src/support.ru.po b/wiki/src/support.ru.po index 1d400551bf314dcb492c626b8164a3eb4f0a7e0c..a08c44e2c13db1f8775376434a75b589bd8db77b 100644 --- a/wiki/src/support.ru.po +++ b/wiki/src/support.ru.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-29 19:58+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-07-02 07:45+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -98,7 +98,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The [list of things that will be in the next release](https://redmine.tails." -"boum.org/code/projects/tails/issues?query_id=111)" +"boum.org/code/projects/tails/issues?query_id=327)" msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/support.sr_Latn.po b/wiki/src/support.sr_Latn.po index 34d597524ac9ce10118599f61a3ba74904aa7958..800d3187595a5e64126bb632c9012e944e4f2c17 100644 --- a/wiki/src/support.sr_Latn.po +++ b/wiki/src/support.sr_Latn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-09-29 19:58+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+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" @@ -96,7 +96,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The [list of things that will be in the next release](https://redmine.tails." -"boum.org/code/projects/tails/issues?query_id=111)" +"boum.org/code/projects/tails/issues?query_id=327)" msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/support.tr.po b/wiki/src/support.tr.po index cd190193c3fd873f8f477493ef4ac4cb62432919..dabbb6368853e0006f4d71fbe5feca4f42e51aca 100644 --- a/wiki/src/support.tr.po +++ b/wiki/src/support.tr.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-29 19:58+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-07-02 07:21+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -97,7 +97,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "The [list of things that will be in the next release](https://redmine.tails." -"boum.org/code/projects/tails/issues?query_id=111)" +"boum.org/code/projects/tails/issues?query_id=327)" msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/support.zh.po b/wiki/src/support.zh.po index 0b05a31087b143fa834daee8838aec676b81ce45..6f0925b951503db3ff60dc91f358cd5016612b14 100644 --- a/wiki/src/support.zh.po +++ b/wiki/src/support.zh.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-29 19:58+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-03-15 16:57+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -100,7 +100,7 @@ msgstr "[[已知的问题列表|support/known_issues]]" #, fuzzy msgid "" "The [list of things that will be in the next release](https://redmine.tails." -"boum.org/code/projects/tails/issues?query_id=111)" +"boum.org/code/projects/tails/issues?query_id=327)" msgstr "" "[下个发布版本中会处理的事件清单](https://labs.riseup.net/code/projects/tails/" "issues?query_id=111)" diff --git a/wiki/src/support.zh_TW.po b/wiki/src/support.zh_TW.po index c8d29a8a6a58f5c6e15456dfea3da9d8e735321d..f52bd0c3c9a591499bb85d4097a2215f9373a3c4 100644 --- a/wiki/src/support.zh_TW.po +++ b/wiki/src/support.zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails l10n\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-09-29 19:58+0000\n" +"POT-Creation-Date: 2019-12-24 10:35+0000\n" "PO-Revision-Date: 2018-12-09 09:07+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails Chinese translators <jxt@twngo.xyz>\n" @@ -99,7 +99,7 @@ msgstr "[[已知的問題列表|support/known_issues]]" #, fuzzy msgid "" "The [list of things that will be in the next release](https://redmine.tails." -"boum.org/code/projects/tails/issues?query_id=111)" +"boum.org/code/projects/tails/issues?query_id=327)" msgstr "" "[下個發佈版本中會處理的事件清單](https://labs.riseup.net/code/projects/tails/" "issues?query_id=111)" diff --git a/wiki/src/support/faq.de.po b/wiki/src/support/faq.de.po index 90d3a255a46ebaf944d87c709b45abdabd2c4d35..15a718aba1b36e69f0b0df70c8a74d3a73f11666 100644 --- a/wiki/src/support/faq.de.po +++ b/wiki/src/support/faq.de.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-09-29 19:58+0000\n" -"PO-Revision-Date: 2019-11-22 16:23+0000\n" +"PO-Revision-Date: 2020-01-21 18:26+0000\n" "Last-Translator: Muri Nicanor <muri@immerda.ch>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: de\n" @@ -16,12 +16,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Frequently asked questions\"]]\n" -msgstr "" +msgstr "[[!meta title=\"Häufig gestellte Fragen\"]]\n" #. type: Plain text msgid "" @@ -30,47 +30,54 @@ msgid "" "[[documentation|doc]]. - For questions related to Tor, see also to the [Tor " "support pages](https://support.torproject.org/)." msgstr "" +"- Bei Problemen mit der Hardware, schauen Sie unsere [[bekannten Problemen|" +"support/known_issues]] an. - Um zu erfahren, was Sie mit Tails machen " +"können, lesen Sie unsere [[Dokumentation|doc]]. - Bei Fragen bzgl. Tor, " +"können Sie auch die [Tor-Hilfe-Seiten](https://support.torproject.org/) " +"anschauen." #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Plain text #, no-wrap msgid "<a id=\"project\"></a>\n" -msgstr "" +msgstr "<a id=\"project\"></a>\n" #. type: Title = #, no-wrap msgid "Tails project\n" -msgstr "" +msgstr "Tails Projekt\n" #. type: Plain text #, no-wrap msgid "<a id=\"relationship_with_tor\"></a>\n" -msgstr "" +msgstr "<a id=\"relationship_with_tor\"></a>\n" #. type: Title - #, no-wrap msgid "What is the relationship between Tor and Tails?\n" -msgstr "" +msgstr "Was ist der Zusammenhang zwischen Tor und Tails?\n" #. type: Plain text msgid "" "See our explanation about [[why does Tails use Tor|doc/about/" "tor#relationship]]." msgstr "" +"Lesen Sie hier unsere Erklärung, [[warum Tails Tor benutzt|doc/about/" +"tor#relationship]]." #. type: Plain text #, no-wrap msgid "<a id=\"debian\"></a>\n" -msgstr "" +msgstr "<a id=\"debian\"></a>\n" #. type: Title - #, no-wrap msgid "Why is Tails based on Debian and not on another distribution?\n" -msgstr "" +msgstr "Warum basiert Tails auf Debian und nicht einer anderen Distribution?\n" #. type: Plain text msgid "" diff --git a/wiki/src/support/faq.es.po b/wiki/src/support/faq.es.po index 7193e82141777cb299b862332d844ac45487691c..34162d5fda14f6edd4e477ac8845c05f3e32f702 100644 --- a/wiki/src/support/faq.es.po +++ b/wiki/src/support/faq.es.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-09-29 19:58+0000\n" -"PO-Revision-Date: 2019-12-03 10:26+0000\n" -"Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" +"PO-Revision-Date: 2020-01-15 21:32+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/faq/" "es/>\n" "Language: es\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -24,11 +24,6 @@ msgid "[[!meta title=\"Frequently asked questions\"]]\n" msgstr "[[!meta title=\"Preguntas frecuentes\"]]\n" #. type: Plain text -#, fuzzy -#| msgid "" -#| "- For hardware compatibility issues, refer to our [[known issues|support/" -#| "known_issues]]. - To learn what you can do with Tails, refer to our " -#| "[[documentation|doc]]." msgid "" "- For hardware compatibility issues, refer to our [[known issues|support/" "known_issues]]. - To learn what you can do with Tails, refer to our " @@ -196,8 +191,7 @@ msgid "<a id=\"gnome\"></a>\n" msgstr "<a id=\"gnome\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Why does Tails ship the GNOME Desktop?\n" +#, no-wrap msgid "Why does Tails ship the GNOME Desktop?\n" msgstr "¿Por qué Tails viene con el Escritorio GNOME?\n" @@ -441,10 +435,10 @@ msgid "<a id=\"checksum\"></a>\n" msgstr "<a id=\"checksum\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Where can I find the checksum to verify my Tails download?\n" +#, no-wrap msgid "Where can I find the checksum to verify my Tails download?\n" -msgstr "¿Dónde puedo encontrar el checksum para verificar mi descarga de Tails?\n" +msgstr "" +"¿Dónde puedo encontrar el checksum para verificar mi descarga de Tails?\n" #. type: Plain text msgid "" @@ -460,6 +454,9 @@ msgid "" "the techniques documented on our download page: our browser extension, " "BitTorrent, or basic OpenPGP." msgstr "" +"Verificar con un checksum no sería mejor que verificar usando una de las " +"técnicas documentadas en nuestra página de descarga: nuestra extensión de " +"navegador, BitTorrent u OpenPGP básico." #. type: Plain text msgid "" @@ -468,6 +465,9 @@ msgid "" "checksum would rely on the checksum being securely downloaded from our " "website." msgstr "" +"Todos estos métodos se basan en alguna información que se descarga de manera " +"segura de nuestra web usando HTTPS. De modo similar, la verificación usando " +"checksum se basaría en ser descargada de manera segura de nuestro sitio." #. type: Plain text msgid "" @@ -476,6 +476,10 @@ msgid "" "[[OpenPGP and authenticate our signing key through the OpenPGP Web of Trust|" "install/download#openpgp]]." msgstr "" +"Para verificar tu descarga de Tails sin tener que depender de información " +"descargada de manera segura de nuestro sitio, deberías usar [[OpenPGP y " +"autenticar nuestra clave de firma a través de la Red de Confianza de OpenPGP|" +"install/download#openpgp]]." #. type: Plain text #, no-wrap @@ -483,8 +487,7 @@ msgid "<a id=\"browser\"></a>\n" msgstr "<a id=\"browser\"></a>\n" #. type: Title = -#, fuzzy, no-wrap -#| msgid "Web browser\n" +#, no-wrap msgid "Web browser\n" msgstr "Navegador web\n" @@ -494,10 +497,11 @@ msgid "<a id=\"javascript\"></a>\n" msgstr "<a id=\"javascript\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?\n" +#, no-wrap msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?\n" -msgstr "¿Por qué JavaScript está habilitado por defecto en el <span class=\"application\">Tor Browser</span>?\n" +msgstr "" +"¿Por qué JavaScript está habilitado por defecto en el <span class=\"" +"application\">Tor Browser</span>?\n" #. type: Plain text msgid "" @@ -514,14 +518,6 @@ msgstr "" "bloquear las funciones peligrosas de JavaScript." #. type: Plain text -#, fuzzy -#| msgid "" -#| "Tor Browser also includes a [[security_slider|doc/anonymous_internet/" -#| "Tor_browser#security_slider]] and the [[NoScript|doc/anonymous_internet/" -#| "Tor_browser#noscript]] extension to optionally disable more JavaScript. " -#| "This might improve security in some cases. However, if you disable " -#| "JavaScript, then the [[fingerprint|doc/about/fingerprint]] of your " -#| "browser will differ from most Tor users. This might break your anonymity." msgid "" "Tor Browser also includes a [[security level|doc/anonymous_internet/" "Tor_browser#security_level]] and the [[NoScript|doc/anonymous_internet/" @@ -530,8 +526,8 @@ msgid "" "then the [[fingerprint|doc/about/fingerprint]] of your browser will differ " "from most Tor users. This might break your anonymity." msgstr "" -"Tor Browser incluye también una [[barra de seguridad|doc/anonymous_internet/" -"Tor_browser#security_slider]] y la extensión [[NoScript|doc/" +"Tor Browser incluye también un [[nivel de seguridad|doc/anonymous_internet/" +"Tor_browser#security_level]] y la extensión [[NoScript|doc/" "anonymous_internet/Tor_browser#noscript]] para desactivar opcionalmente más " "JavaScript. Esto puede mejorar la seguridad en algunos casos. Sin embargo la " "[[huella digital|doc/about/fingerprint]] de tu navegador cambiará respecto " @@ -552,10 +548,11 @@ msgid "<a id=\"add-ons\"></a>\n" msgstr "<a id=\"add-ons\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?\n" +#, no-wrap msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?\n" -msgstr "¿Puedo instalar otras extensiones en el <span class=\"application\">Tor Browser</span>?\n" +msgstr "" +"¿Puedo instalar otras extensiones en el <span class=\"application\">Tor " +"Browser</span>?\n" #. type: Plain text #, no-wrap @@ -657,10 +654,11 @@ msgid "<a id=\"add-ons_update\"></a>\n" msgstr "<a id=\"add-ons_update\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?\n" +#, no-wrap msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?\n" -msgstr "¿Debería actualizar las extensiones incluidas en <span class=\"application\">Tor Browser</span>?\n" +msgstr "" +"¿Debería actualizar las extensiones incluidas en <span class=\"application\">" +"Tor Browser</span>?\n" #. type: Plain text #, no-wrap @@ -681,8 +679,7 @@ msgid "<a id=\"flash\"></a>\n" msgstr "<a id=\"flash\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Can I view websites using Adobe Flash with Tails?\n" +#, no-wrap msgid "Can I view websites using Adobe Flash with Tails?\n" msgstr "¿Puedo ver sitios que usan Adobe Flash en Tails?\n" @@ -718,19 +715,15 @@ msgid "Adobe only maintains their GNU/Linux Flash plugin for Google Chrome." msgstr "Adobe sólo mantiene su plugin GNU/Linux Flash para Google Chrome." #. type: Plain text -#, fuzzy -#| msgid "" -#| "We have considered including open-source alternative software to Adobe " -#| "Flash, such as [Gnash](http://www.gnu.org/software/gnash/), but it is not " -#| "the case yet, see [[!tails_ticket 5363]]." msgid "" "We have considered including open-source alternative software to Adobe " "Flash, such as [Gnash](http://www.gnu.org/software/gnash/), but rejected " "them since they are not mature enough and Flash is less and less used anyway." msgstr "" "Hemos considerado incluir alternativas open source a Adobe Flash, como " -"[Gnash](http://www.gnu.org/software/gnash/), pero no es el caso todavía, lee " -"[[!tails_ticket 5363]]." +"[Gnash](http://www.gnu.org/software/gnash/), pero al final no lo hicimos " +"porque todavía no están lo suficientemente maduras y Flash se usa menos " +"últimamente." #. type: Plain text #, no-wrap @@ -743,24 +736,18 @@ msgid "<a id=\"anonymity_test\"></a>\n" msgstr "<a id=\"anonymity_test\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "How to analyse the results of online anonymity tests?\n" +#, no-wrap msgid "How to analyse the results of online anonymity tests?\n" msgstr "¿Cómo analizar los resultados de los tests de anonimato online?\n" #. type: Plain text -#, fuzzy -#| msgid "" -#| "Fingerprinting websites such as <https://panopticlick.eff.org/> or " -#| "<https://ip-check.info/> try to retrieve as much information as possible " -#| "from your browser to see if it can be used to identify you." msgid "" "Fingerprinting websites, such as <https://panopticlick.eff.org/>, try to " "retrieve as much information as possible from your browser to see if it can " "be used to identify you." msgstr "" -"Las webs que chequean tu huella digital, como <https://panopticlick.eff.org/" -"> o <https://ip-check.info/>, intentar recabar la mayor cantidad posible de " +"Las webs que chequean tu huella digital, como <https://panopticlick.eff.org/>" +" o <https://ip-check.info/>, intentan recabar la mayor cantidad posible de " "información de tu navegador para ver si se puede usar para identificarte." #. type: Plain text @@ -821,10 +808,10 @@ msgid "<a id=\"java\"></a>\n" msgstr "<a id=\"java\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?\n" +#, no-wrap msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?\n" -msgstr "¿Java está instalado en el <span class=\"application\">Tor Browser</span>?\n" +msgstr "" +"¿Java está instalado en el <span class=\"application\">Tor Browser</span>?\n" #. type: Plain text msgid "" @@ -840,8 +827,7 @@ msgid "<a id=\"persistence\"></a>\n" msgstr "<a id=\"persistence\"></a>\n" #. type: Title = -#, fuzzy, no-wrap -#| msgid "Persistence\n" +#, no-wrap msgid "Persistence\n" msgstr "Persistencia\n" @@ -851,8 +837,7 @@ msgid "<a id=\"persistent_features\"></a>\n" msgstr "<a id=\"persistent_features\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Can I save my custom settings?\n" +#, no-wrap msgid "Can I save my custom settings?\n" msgstr "¿Puedo guardar mis configuraciones personalizadas?\n" @@ -896,8 +881,7 @@ msgid "<a id=\"luks\"></a>\n" msgstr "<a id=\"luks\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "How strong is the encryption of the persistent volume and LUKS?\n" +#, no-wrap msgid "How strong is the encryption of the persistent volume and LUKS?\n" msgstr "¿Cuánta seguridad dan la encriptación del volumen persistente y LUKS?\n" @@ -942,8 +926,7 @@ msgid "<a id=\"recover_passphrase\"></a>\n" msgstr "<a id=\"recover_passphrase\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Is it possible to recover the passphrase of the persistent volume?\n" +#, no-wrap msgid "Is it possible to recover the passphrase of the persistent volume?\n" msgstr "¿Es posible recuperar la contraseña del volumen persistente?\n" @@ -976,8 +959,7 @@ msgid "<a id=\"vpn\"></a>\n" msgstr "<a id=\"vpn\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Can I use Tails with a VPN?\n" +#, no-wrap msgid "Can I use Tails with a VPN?\n" msgstr "¿Puedo usar Tails con una VPN?\n" @@ -1072,10 +1054,11 @@ msgid "<a id=\"torrc\"></a>\n" msgstr "<a id=\"torrc\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Can I choose the country of my exit nodes or further edit the `torrc`?\n" +#, no-wrap msgid "Can I choose the country of my exit nodes or further edit the `torrc`?\n" -msgstr "¿Puedo elegir el país de mis nodos de salida, o editar de algún otro modo el archivo `torrc`?\n" +msgstr "" +"¿Puedo elegir el país de mis nodos de salida, o editar de algún otro modo el " +"archivo `torrc`?\n" #. type: Plain text msgid "" @@ -1107,8 +1090,7 @@ msgid "<a id=\"dns\"></a>\n" msgstr "<a id=\"dns\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "How does the DNS resolution work in Tails?\n" +#, no-wrap msgid "How does the DNS resolution work in Tails?\n" msgstr "¿Cómo funciona la resolución de DNS en Tails?\n" @@ -1126,10 +1108,10 @@ msgid "<a id=\"htp\"></a>\n" msgstr "<a id=\"htp\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Why does Tails automatically connect to several websites when starting?\n" +#, no-wrap msgid "Why does Tails automatically connect to several websites when starting?\n" -msgstr "¿Por qué Tails se conecta automáticamente a varios sitios al arrancar?\n" +msgstr "" +"¿Por qué Tails se conecta automáticamente a varios sitios al arrancar?\n" #. type: Plain text msgid "" @@ -1167,42 +1149,35 @@ msgid "<a id=\"relay\"></a>\n" msgstr "<a id=\"relay\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Can I help the Tor network by running a relay or a bridge in Tails?\n" +#, no-wrap msgid "Can I help the Tor network by running a relay or a bridge in Tails?\n" -msgstr "¿Puedo colaborar con la red de Tor corriendo un relay o un puente de Tor en Tails?\n" +msgstr "" +"¿Puedo colaborar con la red de Tor corriendo un relay o un puente de Tor en " +"Tails?\n" #. type: Plain text -#, fuzzy -#| msgid "" -#| "It is currently impossible to run a Tor relay or bridge in Tails. See [[!" -#| "tails_ticket 5418]]." msgid "It is currently impossible to run a Tor relay or bridge in Tails." -msgstr "" -"Por el momento es imposible tener relays o puentes de Tor en Tails. Ver [[!" -"tails_ticket 5418]]." +msgstr "Por el momento es imposible tener relays o puentes de Tor en Tails." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"hidden_service\"></a>\n" +#, no-wrap msgid "" "<a id=\"onion_service\"></a>\n" "<a id=\"hidden_service\"></a>\n" -msgstr "<a id=\"hidden_service\"></a>\n" +msgstr "" +"<a id=\"onion_service\"></a>\n" +"<a id=\"hidden_service\"></a>\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "Can I run a Tor hidden service on Tails?\n" +#, no-wrap msgid "" "Can I run a Tor onion service on Tails?\n" "----------------------------------------\n" -msgstr "¿Puedo tener un servicio escondido de Tor en Tails?\n" +msgstr "" +"¿Puedo tener un servicio onion de Tor en Tails?\n" +"-------------------------------------------\n" #. type: Plain text -#, fuzzy -#| msgid "" -#| "It is technically possible to use Tails to provide a hidden service but " -#| "it is complicated and not documented yet." msgid "" "It is technically possible to use Tails to provide an onion service but it " "is complicated and not documented yet." @@ -1224,8 +1199,7 @@ msgid "<a id=\"ping\"></a>\n" msgstr "<a id=\"ping\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Can I use <span class=\"command\">ping</span> in Tails?\n" +#, no-wrap msgid "Can I use <span class=\"command\">ping</span> in Tails?\n" msgstr "¿Puedo usar el comando <span class=\"command\">ping</span> en Tails?\n" @@ -1246,8 +1220,7 @@ msgid "<a id=\"software\"></a>\n" msgstr "<a id=\"software\"></a>\n" #. type: Title = -#, fuzzy, no-wrap -#| msgid "Software not included in Tails\n" +#, no-wrap msgid "Software not included in Tails\n" msgstr "Software no incluido en Tails\n" @@ -1257,8 +1230,7 @@ msgid "<a id=\"new_software\"></a>\n" msgstr "<a id=\"new_software\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Can my favourite software be included in Tails?\n" +#, no-wrap msgid "Can my favourite software be included in Tails?\n" msgstr "¿Puede incluirse mi software favorito en Tails?\n" @@ -1324,8 +1296,6 @@ msgstr "" "añadimos nuevos programas cuando tenemos una muy buena razón:" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "We try to limit the growth of the ISO image and automatic upgrades." msgid "We try to limit the growth of the images and automatic upgrades." msgstr "" "Intentamos limitar el crecimiento de la imagen ISO y las actualizaciones " @@ -1409,8 +1379,7 @@ msgid "<a id=\"bittorrent\"></a>\n" msgstr "<a id=\"bittorrent\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Can I download using BitTorrent with Tails?\n" +#, no-wrap msgid "Can I download using BitTorrent with Tails?\n" msgstr "¿Puedo hacer descargas con BitTorrent en Tails?\n" @@ -1454,8 +1423,7 @@ msgid "<a id=\"youtube\"></a>\n" msgstr "<a id=\"youtube\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Can I download videos from websites?\n" +#, no-wrap msgid "Can I download videos from websites?\n" msgstr "¿Puedo descargar videos de sitios web?\n" @@ -1500,8 +1468,7 @@ msgid "<a id=\"desktop\"></a>\n" msgstr "<a id=\"desktop\"></a>\n" #. type: Title = -#, fuzzy, no-wrap -#| msgid "Desktop environment\n" +#, no-wrap msgid "Desktop environment\n" msgstr "Entorno de escritorio\n" @@ -1511,8 +1478,7 @@ msgid "<a id=\"timezone\"></a>\n" msgstr "<a id=\"timezone\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Why is the time set wrong?\n" +#, no-wrap msgid "Why is the time set wrong?\n" msgstr "¿Por qué está mal configurada la hora?\n" @@ -1563,8 +1529,7 @@ msgid "<a id=\"misc\"></a>\n" msgstr "<a id=\"misc\"></a>\n" #. type: Title = -#, fuzzy, no-wrap -#| msgid "Other security issues\n" +#, no-wrap msgid "Other security issues\n" msgstr "Otros problemas de seguridad\n" @@ -1574,8 +1539,7 @@ msgid "<a id=\"compromised_system\"></a>\n" msgstr "<a id=\"compromised_system\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Is it safe to use Tails on a compromised system?\n" +#, no-wrap msgid "Is it safe to use Tails on a compromised system?\n" msgstr "¿Es seguro usar Tails en un sistema inseguro?\n" @@ -1622,8 +1586,7 @@ msgid "<a id=\"integrity\"></a>\n" msgstr "<a id=\"integrity\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Can I verify the integrity of a Tails USB stick or DVD?\n" +#, no-wrap msgid "Can I verify the integrity of a Tails USB stick or DVD?\n" msgstr "¿Puedo verificar la integridad de una memoria USB o un DVD de Tails?\n" @@ -1651,12 +1614,6 @@ msgstr "" "DVD mismo." #. type: Bullet: '- ' -#, fuzzy -#| msgid "" -#| "There is no documented method of verifying the integrity of a Tails USB " -#| "stick installed using <span class=\"application\">Tails Installer</span>. " -#| "However, if you have another trusted Tails USB stick, you can [[clone it " -#| "onto the untrusted USB stick|doc/upgrade]] to reset it to a trusted state." msgid "" "There is no documented method of verifying the integrity of a Tails USB " "stick. However, if you have another trusted Tails USB stick, you can " @@ -1664,8 +1621,7 @@ msgid "" "trusted state." msgstr "" "No hay un método documentado de verificar la integridad de una memoria USB " -"de Tails instalada usando el <span class=\"application\">Tails Installer</" -"span>. Sin embargo, si quieres tener otra memoria USB de Tails de confianza, " +"de Tails. Sin embargo, si tienes otra memoria USB de Tails de confianza, " "puedes [[clonarla en la memoria USB no confiada|doc/upgrade]] para " "resetearla a un estado de confianza." @@ -1675,8 +1631,7 @@ msgid "<a id=\"reuse_memory_wipe\"></a>\n" msgstr "<a id=\"reuse_memory_wipe\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Can I use the memory wipe feature of Tails on another operating system?\n" +#, no-wrap msgid "Can I use the memory wipe feature of Tails on another operating system?\n" msgstr "¿Puedo usar la funcionalidad wipe de Tails en otro sistema operativo?\n" @@ -1705,10 +1660,10 @@ msgid "<a id=\"new_identity\"></a>\n" msgstr "<a id=\"new_identity\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Where is the <span class=\"guilabel\">New Identity</span> button?\n" +#, no-wrap msgid "Where is the <span class=\"guilabel\">New Identity</span> button?\n" -msgstr "¿Dónde está el botón de <span class=\"guilabel\">Nueva Identidad</span>?\n" +msgstr "" +"¿Dónde está el botón de <span class=\"guilabel\">Nueva Identidad</span>?\n" #. type: Plain text #, no-wrap @@ -1732,19 +1687,12 @@ msgstr "" "está limitada al navegador.\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "The\n" -#| "[[<span class=\"guilabel\">New Identity</span> feature of <span class=\"application\">Tor Browser</span>|doc/anonymous_internet/Tor_Browser#new_identity]]\n" -#| "is limited to the browser.\n" +#, no-wrap msgid "" "In the same way as the <span class=\"guilabel\">New Identity</span> button of\n" "<span class=\"application\">Tor Browser</span> restarts the browser, you have to\n" "restart Tails before using a different identity.\n" -msgstr "" -"La funcionalidad\n" -"[[<span class=\"guilabel\">Nueva Identidad</span> de <span class=\"application\">Tor Browser</span>|doc/anonymous_internet/Tor_Browser#new_identity]]\n" -"está limitada al navegador.\n" +msgstr "\t\n" #. type: Plain text #, no-wrap @@ -1762,8 +1710,7 @@ msgid "<a id=\"boot_statistics\"></a>\n" msgstr "<a id=\"boot_statistics\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Does Tails collect information about its users?\n" +#, no-wrap msgid "Does Tails collect information about its users?\n" msgstr "¿Tails junta información sobre sus usuarios?\n" @@ -1788,19 +1735,14 @@ msgstr "" "idioma preferido del usuario." #. type: Bullet: '- ' -#, fuzzy -#| msgid "" -#| "[[<span class=\"application\">Tails Upgrader</span>|doc/first_steps/" -#| "upgrade]] checks for newer versions. The version of the running Tails is " -#| "passed along with this request." msgid "" "[[<span class=\"application\">Tails Upgrader</span>|doc/upgrade]] checks for " "newer versions. The version of the running Tails is passed along with this " "request." msgstr "" -"[[<span class=\"application\">Tails Upgrader</span>|doc/first_steps/" -"upgrade]] busca versiones nuevas. La versión de Tails que se está ejecutando " -"se pasa junto con esta consulta." +"[[<span class=\"application\">Tails Upgrader</span>|doc/first_steps/upgrade]]" +" busca versiones nuevas. La versión de Tails que se estás ejecutando se pasa " +"junto con esta consulta." #. type: Plain text msgid "" @@ -1820,8 +1762,7 @@ msgid "<a id=\"antivirus\"></a>\n" msgstr "<a id=\"antivirus\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Does Tails need an antivirus?\n" +#, no-wrap msgid "Does Tails need an antivirus?\n" msgstr "¿Tails necesita antivirus?\n" diff --git a/wiki/src/support/faq.fa.po b/wiki/src/support/faq.fa.po index b630eb24248bc1d5a374601b0140ae1a8935b2b9..af03b373efd80df2b2db994855957733c576700e 100644 --- a/wiki/src/support/faq.fa.po +++ b/wiki/src/support/faq.fa.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-09-29 19:58+0000\n" -"PO-Revision-Date: 2018-02-26 09:59+0100\n" -"Last-Translator: sprint5 <translation5@451f.org>\n" -"Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/faq/fa/" -">\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/faq/fa/>" +"\n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.4-dev\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -1765,10 +1765,9 @@ msgid "" msgstr "" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<div class=\"note\">\n" +#, no-wrap msgid "<div class=\"next\">\n" -msgstr "<div class=\"note\">\n" +msgstr "<div class=\"next\">\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/support/faq.id.po b/wiki/src/support/faq.id.po index ab74a931c294e12805bbdde831933823fa1287e4..6ff4a3ef33516e4c47fc901c5633034e81fedac9 100644 --- a/wiki/src/support/faq.id.po +++ b/wiki/src/support/faq.id.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-09-29 19:58+0000\n" -"PO-Revision-Date: 2019-10-24 10:32+0000\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" "Language: id\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -34,7 +34,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Plain text #, no-wrap @@ -1053,7 +1053,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"tip\">\n" -msgstr "" +msgstr "<div class=\"tip\">\n" #. type: Plain text msgid "" @@ -1206,7 +1206,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"note\">\n" -msgstr "" +msgstr "<div class=\"note\">\n" #. type: Plain text msgid "" diff --git a/wiki/src/support/faq.pt.po b/wiki/src/support/faq.pt.po index 47c10f821336cfedd6964817709f4e71c6d2aa04..7d346642245aed16d1998ec6ba8bd7d9fbef698e 100644 --- a/wiki/src/support/faq.pt.po +++ b/wiki/src/support/faq.pt.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-09-29 19:58+0000\n" -"PO-Revision-Date: 2019-10-23 11:15+0000\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" "Language: pt\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -131,10 +131,11 @@ msgid "" "and-data-leaks)." msgstr "" "Ubuntu adiciona funcionalidades de uma forma que consideramos perigosa para " -"a privacidade. Exemplos disso são o Ubuntu One ([parcialmente descontinuado]" -"(http://blog.canonical.com/2014/04/02/shutting-down-ubuntu-one-file-" -"services/)) e as [propagandas da Amazon e seu vazamento de dados](https://" -"www.eff.org/deeplinks/2012/10/privacy-ubuntu-1210-amazon-ads-and-data-leaks)" +"a privacidade. Exemplos disso são o Ubuntu One ([parcialmente " +"descontinuado](http://blog.canonical.com/2014/04/02/" +"shutting-down-ubuntu-one-file-services/)) e as [propagandas da Amazon e seu " +"vazamento de dados](https://www.eff.org/deeplinks/2012/10/privacy-ubuntu-1210" +"-amazon-ads-and-data-leaks)." #. type: Bullet: '0. ' msgid "" diff --git a/wiki/src/support/known_issues.ar.po b/wiki/src/support/known_issues.ar.po index dd1b686ae593fe57e24aba1e3fb8a64109a86c2b..46049d12c27c9f801e71e501333645116797f137 100644 --- a/wiki/src/support/known_issues.ar.po +++ b/wiki/src/support/known_issues.ar.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-13 16:46+0000\n" +"POT-Creation-Date: 2020-01-15 12:48+0000\n" "PO-Revision-Date: 2018-10-26 11:03+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -223,7 +223,7 @@ msgid "" msgstr "" #. type: Bullet: '* ' -msgid "MacBook Air Retina 2019" +msgid "MacBook Air Retina 2018 and 2019" msgstr "" #. type: Plain text @@ -1412,9 +1412,6 @@ msgstr "" #~ msgid "</div>\n" #~ msgstr "</div>\n" -#~ msgid "<a id=\"sandisk\"></a>\n" -#~ msgstr "<a id=\"sandisk\"></a>\n" - #~ msgid "<a id=\"nvidia-maxwell\"></a>\n" #~ msgstr "<a id=\"nvidia-maxwell\"></a>\n" @@ -1423,3 +1420,6 @@ msgstr "" #~ msgid "<a id=\"xorg-driver\"></a>\n" #~ msgstr "<a id=\"xorg-driver\"></a>\n" + +#~ msgid "<a id=\"sandisk\"></a>\n" +#~ msgstr "<a id=\"sandisk\"></a>\n" diff --git a/wiki/src/support/known_issues.ca.po b/wiki/src/support/known_issues.ca.po index b3a40d38fbf7b86f76a888bf882240b3f18dce80..87122bc9dae858a9ef69c9fb2d5efcc8201af8ef 100644 --- a/wiki/src/support/known_issues.ca.po +++ b/wiki/src/support/known_issues.ca.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-13 16:46+0000\n" +"POT-Creation-Date: 2020-01-15 12:48+0000\n" "PO-Revision-Date: 2018-10-26 11:03+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -222,7 +222,7 @@ msgid "" msgstr "" #. type: Bullet: '* ' -msgid "MacBook Air Retina 2019" +msgid "MacBook Air Retina 2018 and 2019" msgstr "" #. type: Plain text @@ -1411,9 +1411,6 @@ msgstr "" #~ msgid "</div>\n" #~ msgstr "</div>\n" -#~ msgid "<a id=\"sandisk\"></a>\n" -#~ msgstr "<a id=\"sandisk\"></a>\n" - #~ msgid "<a id=\"nvidia-maxwell\"></a>\n" #~ msgstr "<a id=\"nvidia-maxwell\"></a>\n" @@ -1422,3 +1419,6 @@ msgstr "" #~ msgid "<a id=\"xorg-driver\"></a>\n" #~ msgstr "<a id=\"xorg-driver\"></a>\n" + +#~ msgid "<a id=\"sandisk\"></a>\n" +#~ msgstr "<a id=\"sandisk\"></a>\n" diff --git a/wiki/src/support/known_issues.de.po b/wiki/src/support/known_issues.de.po index 642055a1b44848a825ae13c5e92d3c789901242b..f4e2f92702ac106bfe3fe0322364e2146771a519 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: 2019-11-13 16:46+0000\n" +"POT-Creation-Date: 2020-01-15 12:48+0000\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" @@ -222,7 +222,7 @@ msgid "" msgstr "" #. type: Bullet: '* ' -msgid "MacBook Air Retina 2019" +msgid "MacBook Air Retina 2018 and 2019" msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues.es.po b/wiki/src/support/known_issues.es.po index 7ed778a60b4c116936aea64c0ee81873b3112c9e..6a86a815e26aa89e6d93d4a215f3aae026f0043c 100644 --- a/wiki/src/support/known_issues.es.po +++ b/wiki/src/support/known_issues.es.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-11-13 16:46+0000\n" -"PO-Revision-Date: 2019-10-24 10:22+0000\n" +"POT-Creation-Date: 2020-01-15 12:48+0000\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/" "known_issues/es/>\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -64,8 +64,7 @@ msgid "<a id=\"problematic-usb-sticks\"></a>\n" msgstr "<a id=\"problematic-usb-sticks\"></a>\n" #. type: Title - -#, fuzzy, no-wrap -#| msgid "Problematic USB sticks\n" +#, no-wrap msgid "Problematic USB sticks\n" msgstr "Memorias USB problemáticas\n" @@ -248,7 +247,7 @@ msgid "" msgstr "" #. type: Bullet: '* ' -msgid "MacBook Air Retina 2019" +msgid "MacBook Air Retina 2018 and 2019" msgstr "" #. type: Plain text @@ -323,10 +322,6 @@ msgstr "" "MacBook Air 3,2 (A1369 EMC 2392) se congela al arrancar Tails en modo UEFI." #. type: Bullet: '* ' -#, fuzzy -#| msgid "" -#| "Mac Pro Tower and MacBook Pro 4,1 (both from early 2008) fails to start " -#| "on Tails." msgid "" "Mac Pro Tower and MacBook Pro 4,1 (both from early 2008) fail to start on " "Tails." @@ -810,8 +805,7 @@ msgid "<a id=\"wi-fi\"></a>\n" msgstr "<a id=\"wi-fi\"></a>\n" #. type: Title = -#, fuzzy, no-wrap -#| msgid "Wi-Fi issues\n" +#, no-wrap msgid "Wi-Fi issues\n" msgstr "Problemas del Wi-Fi\n" @@ -1085,8 +1079,7 @@ msgid "-->\n" msgstr "-->\n" #. type: Title = -#, fuzzy, no-wrap -#| msgid "Other issues\n" +#, no-wrap msgid "Other issues\n" msgstr "Otros problemas\n" diff --git a/wiki/src/support/known_issues.fa.po b/wiki/src/support/known_issues.fa.po index f990b4b98099cffe11f5b7d0f0e096c657a04aac..05d7c9c8d1fa2768c49c7d12ef4bffa1a974ebbe 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: 2019-11-13 16:46+0000\n" +"POT-Creation-Date: 2020-01-15 12:48+0000\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/" @@ -251,7 +251,7 @@ msgstr "" "in-64-bit-mode.html>" #. type: Bullet: '* ' -msgid "MacBook Air Retina 2019" +msgid "MacBook Air Retina 2018 and 2019" msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues.fr.po b/wiki/src/support/known_issues.fr.po index cc74848967110ea6cf9e92be978bfd31d6738020..4a6ffc8d9d1819fa484ce4e54e12cb573927a1fe 100644 --- a/wiki/src/support/known_issues.fr.po +++ b/wiki/src/support/known_issues.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: 2019-11-13 16:46+0000\n" -"PO-Revision-Date: 2019-10-10 09:40+0000\n" +"POT-Creation-Date: 2020-01-15 12:48+0000\n" +"PO-Revision-Date: 2020-01-15 21:32+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -84,14 +84,16 @@ msgid "" "<!--\n" "Last updated: 2014-08-02\n" msgstr "" +"<!--\n" +"Last updated: 2014-08-02\n" #. type: Plain text msgid "I asked help desk about it." -msgstr "" +msgstr "I asked help desk about it." #. type: Plain text msgid "PNY is quite popular among WB reporters:" -msgstr "" +msgstr "PNY is quite popular among WB reporters:" #. type: Plain text #, no-wrap @@ -106,6 +108,15 @@ msgid "" " 56 TOSHIBA\n" " 50 PNY\n" msgstr "" +" 436 SanDisk\n" +" 187 Kingston\n" +" 119 USB\n" +" 88 Generic\n" +" 82 Lexar\n" +" 79 Intenso\n" +" 57 Verbatim\n" +" 56 TOSHIBA\n" +" 50 PNY\n" #. type: Plain text #, no-wrap @@ -114,6 +125,9 @@ msgid "" "still be loud on help desk. Is it?\n" "-->\n" msgstr "" +"If it was still problematic on all PNY USB sticks, this issue would\n" +"still be loud on help desk. Is it?\n" +"-->\n" #. type: Plain text msgid "" @@ -129,10 +143,9 @@ msgid "<a id=\"aegis\"></a>\n" msgstr "<a id=\"aegis\"></a>\n" #. type: Title ### -#, fuzzy, no-wrap -#| msgid "Aegis Secure Key USB 2.0" +#, no-wrap msgid "Aegis Secure Key" -msgstr "Clé USB 2.0 Aegis Secure Key" +msgstr "Aegis Secure Key" #. type: Plain text #, no-wrap @@ -140,12 +153,16 @@ msgid "" "<!--\n" "Last updated: 2015-04-10\n" msgstr "" +"<!--\n" +"Last updated: 2015-04-10\n" #. type: Plain text msgid "" "wb://bf7230b2d53d28cfb7f063d897221b60 is from someone who was able to boot " "from an Aegis Secure Key USB 3.0 and proposes to help us document it." msgstr "" +"wb://bf7230b2d53d28cfb7f063d897221b60 is from someone who was able to boot " +"from an Aegis Secure Key USB 3.0 and proposes to help us document it." #. type: Plain text #, no-wrap @@ -153,6 +170,8 @@ msgid "" "I asked the reported about it.\n" "-->\n" msgstr "" +"I asked the reported about it.\n" +"-->\n" #. type: Bullet: '* ' msgid "Aegis Secure Key USB 2.0" @@ -201,6 +220,9 @@ msgid "" "Last updated: 2018-09-18\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2018-09-18\n" +"-->\n" #. type: Plain text msgid "" @@ -236,6 +258,14 @@ msgid "" "- MacBook Pro 8,3: 2019-11-01\n" "-->\n" msgstr "" +"<!--\n" +"Last updated:\n" +"- MacBook Air 3,2: 2014-06-27\n" +"- MacBook Pro 5,1: 2015-06-19\n" +"- MacBook Pro 4,1: 2014-08-15\n" +"- MacBook Air Retina 2019: 2019-11-01\n" +"- MacBook Pro 8,3: 2019-11-01\n" +"-->\n" #. type: Bullet: '* ' msgid "" @@ -250,8 +280,8 @@ msgstr "" "leopard-64-bit-macs-64-bit-efi-boot-in-64-bit-mode.html>" #. type: Bullet: '* ' -msgid "MacBook Air Retina 2019" -msgstr "" +msgid "MacBook Air Retina 2018 and 2019" +msgstr "MacBook Air Retina 2018 et 2019" #. type: Plain text #, fuzzy, no-wrap @@ -264,7 +294,7 @@ msgstr "Pour permettre à Tails de démarrer correctement, ajoutez les options s #. type: Plain text #, no-wrap msgid " modprobe.blacklist=thunderbolt\n" -msgstr "" +msgstr " modprobe.blacklist=thunderbolt\n" #. type: Plain text #, no-wrap @@ -300,11 +330,11 @@ msgstr "Pour permettre à Tails de démarrer correctement, ajoutez les options s #. type: Plain text #, no-wrap msgid " radeon.modeset=0\n" -msgstr "" +msgstr " radeon.modeset=0\n" #. type: Bullet: '* ' msgid "MacBook Pro 5,1 17\" (Nvidia GeForce 9400M)" -msgstr "" +msgstr "MacBook Pro 5,1 17\" (Nvidia GeForce 9400M)" #. type: Plain text #, fuzzy, no-wrap @@ -317,7 +347,7 @@ msgstr "Pour permettre à Tails de démarrer correctement, ajoutez les options s #. type: Plain text #, no-wrap msgid " nouveau.noaccel=1\n" -msgstr "" +msgstr " nouveau.noaccel=1\n" #. type: Bullet: '* ' msgid "" @@ -327,10 +357,6 @@ msgstr "" "UEFI." #. type: Bullet: '* ' -#, fuzzy -#| msgid "" -#| "Mac Pro Tower and MacBook Pro 4,1 (both from early 2008) fails to start " -#| "on Tails." msgid "" "Mac Pro Tower and MacBook Pro 4,1 (both from early 2008) fail to start on " "Tails." @@ -369,6 +395,9 @@ msgid "" "Last updated: 2019-05-20\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2019-05-20\n" +"-->\n" #. type: Plain text msgid "On some laptops, Tails starts with the following error:" @@ -415,6 +444,9 @@ msgid "" "Last updated: 2013-08-08\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2013-08-08\n" +"-->\n" #. type: Plain text msgid "Booting from DVD works fine, but does not start from USB sticks." @@ -429,10 +461,9 @@ msgstr "" "transmettre vos résultats de test." #. type: Title ### -#, fuzzy, no-wrap -#| msgid "Acer Aspire 5315-ICL50 and Acer ES-1-331" +#, no-wrap msgid "Acer Aspire 5315-ICL50" -msgstr "Acer Aspire 5315-ICL50 et Acer ES-1-331" +msgstr "Acer Aspire 5315-ICL50" #. type: Plain text #, no-wrap @@ -441,16 +472,18 @@ msgid "" "Last updated: 2015-04-10\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2015-04-10\n" +"-->\n" #. type: Plain text msgid "Does not start on USB sticks." msgstr "Ne démarre pas sur une clé USB." #. type: Title ### -#, fuzzy, no-wrap -#| msgid "Systems with Intel graphic cards" +#, no-wrap msgid "AMD Ryzen with Vega graphics cards" -msgstr "Systèmes avec cartes graphiques Intel" +msgstr "AMD Ryzen avec cartes graphiques Vega" #. type: Plain text #, no-wrap @@ -459,12 +492,14 @@ msgid "" "Last updated: 2019-11-01\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2019-11-01\n" +"-->\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid " amd_iommu=on iommu=pt\n" +#, no-wrap msgid " iommu=soft\n" -msgstr " amd_iommu=on iommu=pt\n" +msgstr " iommu=soft\n" #. type: Title ### #, no-wrap @@ -478,6 +513,9 @@ msgid "" "Last updated: 2013-07-20\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2013-07-20\n" +"-->\n" #. type: Plain text msgid "" @@ -499,11 +537,14 @@ msgid "" "Last updated: 2018-01-10\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2018-01-10\n" +"-->\n" #. type: Plain text #, no-wrap msgid " nomodeset\n" -msgstr "" +msgstr " nomodeset\n" #. type: Title ### #, no-wrap @@ -517,6 +558,9 @@ msgid "" "Last updated: 2019-04-05\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2019-04-05\n" +"-->\n" #. type: Plain text msgid "Does not start on Tails USB sticks." @@ -534,6 +578,9 @@ msgid "" "Last updated: 2018-06-14 (wb://7653aff4f415e996567233d8c088da08)\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2018-06-14 (wb://7653aff4f415e996567233d8c088da08)\n" +"-->\n" #. type: Plain text msgid "With BIOS versions A03 06/03/2012 (and A09, A11, and A12)" @@ -557,8 +604,7 @@ msgid "Dell XPS L702X/03RG89, Samsung RV520, Samsung Series 7 Chronos" msgstr "Dell XPS L702X/03RG89, Samsung RV520, Samsung Series 7 Chronos" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "Dell XPS L702X/03RG89, Samsung RV520, Samsung Series 7 Chronos" +#, no-wrap msgid "" "<!--\n" "Last updated:\n" @@ -566,7 +612,13 @@ msgid "" "- Samsung RV520: 2012-12-21\n" "- Samsung Series 7 Chronos: 2014-02-28\n" "-->\n" -msgstr "Dell XPS L702X/03RG89, Samsung RV520, Samsung Series 7 Chronos" +msgstr "" +"<!--\n" +"Last updated:\n" +"- Dell XPS L702X/03RG89: 2012-08-22\n" +"- Samsung RV520: 2012-12-21\n" +"- Samsung Series 7 Chronos: 2014-02-28\n" +"-->\n" #. type: Plain text msgid "" @@ -597,6 +649,10 @@ msgid "" "Specs: https://support.hp.com/us-en/document/c01110206\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2015-02-10\n" +"Specs: https://support.hp.com/us-en/document/c01110206\n" +"-->\n" #. type: Plain text msgid "Does not start Tails 1.2.3." @@ -615,6 +671,10 @@ msgid "" "Specs: https://support.hp.com/gb-en/document/c01768616\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2013-11-05\n" +"Specs: https://support.hp.com/gb-en/document/c01768616\n" +"-->\n" #. type: Plain text msgid "" @@ -637,6 +697,10 @@ msgid "" "Specs: https://www.cnet.com/products/hp-compaq-presario-cq60-615dx/specs/\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2018-02-16\n" +"Specs: https://www.cnet.com/products/hp-compaq-presario-cq60-615dx/specs/\n" +"-->\n" #. type: Plain text msgid "Tails 3.3 does not start." @@ -655,6 +719,10 @@ msgid "" "Worked in 3.0 (wb://b485a1cfa7f7cc1073a70b31f428097c)\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2018-01-15\n" +"Worked in 3.0 (wb://b485a1cfa7f7cc1073a70b31f428097c)\n" +"-->\n" #. type: Plain text msgid "Tails 3.3 restarts during startup and never starts successfully." @@ -673,6 +741,9 @@ msgid "" "Last updated: 2016-05-14\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2016-05-14\n" +"-->\n" #. type: Plain text msgid "" @@ -708,6 +779,10 @@ msgid "" "Specs: https://www.lenovo.com/us/en/laptops/lenovo/y-series/y410p/\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2014-08-03\n" +"Specs: https://www.lenovo.com/us/en/laptops/lenovo/y-series/y410p/\n" +"-->\n" #. type: Plain text msgid "Does not start Tails 1.1 from USB installed manually in Linux." @@ -728,6 +803,10 @@ msgid "" "Specs: https://www.cnet.com/products/lenovo-ideapad-z585-15-6-a8-4500m-6-gb-ram-750-gb-hdd/\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2014-08-05\n" +"Specs: https://www.cnet.com/products/lenovo-ideapad-z585-15-6-a8-4500m-6-gb-ram-750-gb-hdd/\n" +"-->\n" #. type: Plain text msgid "Goes back continuously to Boot Loader Menu on Tails installed on DVD." @@ -761,6 +840,24 @@ msgid "" " Specs: https://www.cnet.com/products/lenovo-thinkpad-edge-e530/\n" "-->\n" msgstr "" +"<!--\n" +"Last updated:\n" +"- Clevo W258CU: 2014-03-29\n" +"- ThinkPad X121e: 2014-02-10\n" +" Specs: https://www.cnet.com/products/lenovo-thinkpad-x121e-3045-11-6-core-i3-2367m-windows-7-pro-64-bit-4-gb-ram-320-gb-hdd-series/\n" +"- ThinkPad T420i: 2014-06-06\n" +" Specs: https://www.cnet.com/products/lenovo-thinkpad-t420i-4178-14-core-i3-2310m-windows-7-pro-64-bit-4-gb-ram-320-gb-hdd-series/\n" +"- ThinkPad T520: 2012-10-11\n" +" Specs: https://www.cnet.com/products/lenovo-thinkpad-t520/\n" +"- ThinkPad W520: 2014-02-17\n" +" Specs: https://www.cnet.com/products/lenovo-thinkpad-w520/\n" +"- ThinkPad T60: 2018-04-30\n" +" Specs: https://www.cnet.com/products/lenovo-thinkpad-t60/specs/\n" +"- ThinkPad E325: 2013-02-28\n" +" Specs: https://www.cnet.com/products/lenovo-thinkpad-edge-e325-1297-13-3-e-350-windows-7-pro-64-bit-4-gb-ram-320-gb-hdd-series/\n" +"- ThinkPad E530: 2014-03-17\n" +" Specs: https://www.cnet.com/products/lenovo-thinkpad-edge-e530/\n" +"-->\n" #. type: Plain text msgid "These machines do not start on USB sticks due to a firmware limitation." @@ -781,6 +878,10 @@ msgid "" "Specs: https://system76.com/laptops/oryx\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2019-05-02\n" +"Specs: https://system76.com/laptops/oryx\n" +"-->\n" #. type: Plain text msgid "" @@ -850,6 +951,9 @@ msgid "" "Last updated: 2018-09-19\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2018-09-19\n" +"-->\n" #. type: Plain text msgid "" @@ -882,6 +986,9 @@ msgid "" "Last updated: 2017-12-24\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2017-12-24\n" +"-->\n" #. type: Plain text #, fuzzy @@ -908,39 +1015,31 @@ msgstr "" #. type: Bullet: '- ' msgid "<span class=\"command\">rtl8723be.fwlps=0 rtl8723be.ips=0</span>" -msgstr "" +msgstr "<span class=\"command\">rtl8723be.fwlps=0 rtl8723be.ips=0</span>" #. type: Bullet: '- ' msgid "<span class=\"command\">rtl8723be.ant_sel=1</span>" -msgstr "" +msgstr "<span class=\"command\">rtl8723be.ant_sel=1</span>" #. type: Bullet: '- ' msgid "<span class=\"command\">rtl8723be.ant_sel=2</span>" -msgstr "" +msgstr "<span class=\"command\">rtl8723be.ant_sel=2</span>" #. type: Bullet: '- ' -#, fuzzy -#| msgid "" -#| "Add `rtl8723be.ant_sel=1 rtl8723be.fwlps=0 rtl8723be.ips=0` to the " -#| "startup options." msgid "" "<span class=\"command\">rtl8723be.ant_sel=1 rtl8723be.fwlps=0 rtl8723be." "ips=0</span>" msgstr "" -"Ajoutez `rtl8723be.ant_sel=1 rtl8723be.fwlps=0 rtl8723be.ips=0` aux options " -"de démarrage." +"<span class=\"command\">rtl8723be.ant_sel=1 rtl8723be.fwlps=0 rtl8723be." +"ips=0</span>" #. type: Bullet: '- ' -#, fuzzy -#| msgid "" -#| "Add `rtl8723be.ant_sel=2 rtl8723be.fwlps=0 rtl8723be.ips=0` to the " -#| "startup options." msgid "" "<span class=\"command\">rtl8723be.ant_sel=2 rtl8723be.fwlps=0 rtl8723be." "ips=0</span>" msgstr "" -"Ajoutez `rtl8723be.ant_sel=2 rtl8723be.fwlps=0 rtl8723be.ips=0` aux options " -"de démarrage." +"<span class=\"command\">rtl8723be.ant_sel=2 rtl8723be.fwlps=0 rtl8723be." +"ips=0</span>" #. type: Plain text #, no-wrap @@ -959,6 +1058,9 @@ msgid "" "Last updated: 2019-01-29\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2019-01-29\n" +"-->\n" #. type: Plain text msgid "" @@ -1000,6 +1102,9 @@ msgid "" "Last updated: 2019-05-10\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2019-05-10\n" +"-->\n" #. type: Plain text msgid "Wi-Fi adapter does not work." @@ -1021,7 +1126,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " modprobe.blacklist=ideapad_laptop\n" -msgstr "" +msgstr " modprobe.blacklist=ideapad_laptop\n" #. type: Title = #, no-wrap @@ -1129,6 +1234,8 @@ msgid "" "<!--\n" "Last updated: 2014-06-27\n" msgstr "" +"<!--\n" +"Last updated: 2014-06-27\n" #. type: Plain text #, no-wrap @@ -1136,6 +1243,8 @@ msgid "" "I asked some ThinkPad X230 users to confirm.\n" "-->\n" msgstr "" +"I asked some ThinkPad X230 users to confirm.\n" +"-->\n" #. type: Plain text msgid "" @@ -1164,6 +1273,10 @@ msgid "" "Specs: https://www.cnet.com/products/acer-travelmate-b113-e-2419-11-6-celeron-1017u-4-gb-ram-320-gb-hdd/\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2013-08-15\n" +"Specs: https://www.cnet.com/products/acer-travelmate-b113-e-2419-11-6-celeron-1017u-4-gb-ram-320-gb-hdd/\n" +"-->\n" #. type: Plain text #, no-wrap @@ -1194,6 +1307,9 @@ msgid "" "Last updated: 2016-08-20\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2016-08-20\n" +"-->\n" #. type: Plain text #, no-wrap @@ -1234,6 +1350,9 @@ msgid "" "Last updated: 2019-07-31\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2019-07-31\n" +"-->\n" #. type: Plain text msgid "Sometimes, after an automatic upgrade, your Tails might either:" @@ -1258,16 +1377,12 @@ msgstr "" "vous ne pouvez pas vous connecter à un réseau." #. type: Plain text -#, fuzzy -#| msgid "" -#| "To fix this problem, you can [[update your Tails manually|doc/first_steps/" -#| "upgrade/#manual]]." msgid "" "To fix this problem, you can [[update your Tails manually|doc/upgrade/" "#manual]]." msgstr "" -"Pour résoudre ce problème, vous pouvez [[mettre à jour Tails manuellement|" -"doc/upgrade/#manual]]." +"Pour résoudre ce problème, vous pouvez [[mettre à jour votre Tails " +"manuellement|doc/upgrade/#manual]]." #. type: Plain text msgid "Note that your Persistent Volume will be safely preserved." @@ -1401,6 +1516,9 @@ msgid "" "Last updated: 2017-08-07\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2017-08-07\n" +"-->\n" #. type: Plain text msgid "" @@ -1443,6 +1561,9 @@ msgid "" "Last updated: 2018-01-15\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2018-01-15\n" +"-->\n" #. type: Plain text msgid "" @@ -1541,6 +1662,10 @@ msgid "" "Specs: https://www.cnet.com/products/lenovo-thinkpad-11e/specs/\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2018-03-22\n" +"Specs: https://www.cnet.com/products/lenovo-thinkpad-11e/specs/\n" +"-->\n" #. type: Plain text msgid "" @@ -1565,7 +1690,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " intel_idle.max_cstate=1\n" -msgstr "" +msgstr " intel_idle.max_cstate=1\n" #. type: Title ## #, no-wrap @@ -1594,6 +1719,9 @@ msgid "" "Last updated: 2019-06-02\n" "-->\n" msgstr "" +"<!--\n" +"Last updated: 2019-06-02\n" +"-->\n" #. type: Plain text msgid "To workaround this issue, you can try to:" @@ -1636,10 +1764,9 @@ msgstr "" "#boot_loader_menu]] suivantes :" #. type: Plain text -#, fuzzy, no-wrap -#| msgid " amd_iommu=on iommu=pt\n" +#, no-wrap msgid " amd_iommu=on iommu=pt\n" -msgstr " amd_iommu=on iommu=pt\n" +msgstr " amd_iommu=on iommu=pt\n" #. type: Plain text msgid "- Disable IOMMU in the BIOS then enable it again." diff --git a/wiki/src/support/known_issues.id.po b/wiki/src/support/known_issues.id.po index c81c6ab11ede7aac6aed5582b7ac6130efd90990..43bb2038460c43952910b597c1df6136c2647a2b 100644 --- a/wiki/src/support/known_issues.id.po +++ b/wiki/src/support/known_issues.id.po @@ -7,14 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-11-13 16:46+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2020-01-15 12:48+0000\n" +"PO-Revision-Date: 2020-01-16 00:28+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -32,7 +34,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=3]]\n" -msgstr "" +msgstr "[[!toc levels=3]]\n" #. type: Title = #, no-wrap @@ -220,7 +222,7 @@ msgid "" msgstr "" #. type: Bullet: '* ' -msgid "MacBook Air Retina 2019" +msgid "MacBook Air Retina 2018 and 2019" msgstr "" #. type: Plain text @@ -1402,3 +1404,18 @@ msgstr "" #. type: Plain text msgid "Some of these workarounds may disable some of the USB ports." msgstr "" + +msgid "<div class=\"caution\">\n" +msgstr "<div class=\"caution\">\n" + +msgid "</div>\n" +msgstr "</div>\n" + +msgid "<a id=\"nvidia-maxwell\"></a>\n" +msgstr "<a id=\"nvidia-maxwell\"></a>\n" + +msgid "<a id=\"nvidia-pascal\"></a>\n" +msgstr "<a id=\"nvidia-pascal\"></a>\n" + +msgid "<a id=\"xorg-driver\"></a>\n" +msgstr "<a id=\"xorg-driver\"></a>\n" diff --git a/wiki/src/support/known_issues.it.po b/wiki/src/support/known_issues.it.po index 8efe7fdf805cd0dd1043b65b00b1252001a2f14d..8dc1ec1d62d3693032d7338b636ecb7c8a081879 100644 --- a/wiki/src/support/known_issues.it.po +++ b/wiki/src/support/known_issues.it.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-11-13 16:46+0000\n" -"PO-Revision-Date: 2019-10-24 10:21+0000\n" +"POT-Creation-Date: 2020-01-15 12:48+0000\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" "Language: it\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -61,12 +61,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"pny\"></a>\n" -msgstr "" +msgstr "<a id=\"pny\"></a>\n" #. type: Title ### #, no-wrap msgid "PNY" -msgstr "" +msgstr "PNY" #. type: Plain text #, no-wrap @@ -114,7 +114,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<a id=\"aegis\"></a>\n" -msgstr "" +msgstr "<a id=\"aegis\"></a>\n" #. type: Title ### #, no-wrap @@ -143,7 +143,7 @@ msgstr "" #. type: Bullet: '* ' msgid "Aegis Secure Key USB 2.0" -msgstr "" +msgstr "Aegis Secure Key USB 2.0" #. type: Plain text msgid "" @@ -222,7 +222,7 @@ msgid "" msgstr "" #. type: Bullet: '* ' -msgid "MacBook Air Retina 2019" +msgid "MacBook Air Retina 2018 and 2019" msgstr "" #. type: Plain text @@ -1090,7 +1090,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid " <pre>Loading, please wait...</pre>\n" -msgstr "" +msgstr " <pre>Loading, please wait...</pre>\n" #. type: Bullet: '- ' msgid "" diff --git a/wiki/src/support/known_issues.mdwn b/wiki/src/support/known_issues.mdwn index 67183c6697220868b9576a50b80b1264f1acb77c..39351ed5a89d14dcccac325c7ac04d44d8bf9e33 100644 --- a/wiki/src/support/known_issues.mdwn +++ b/wiki/src/support/known_issues.mdwn @@ -97,7 +97,7 @@ Last updated: or 64-bit EFI on that list: <https://www.everymac.com/mac-answers/snow-leopard-mac-os-x-faq/mac-os-x-snow-leopard-64-bit-macs-64-bit-efi-boot-in-64-bit-mode.html> -* MacBook Air Retina 2019 +* 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]]: diff --git a/wiki/src/support/known_issues.pl.po b/wiki/src/support/known_issues.pl.po index e01c2e2537032e84f3080312dde87a171a4442b0..2158dacae0ce9a21f9463a9350c5a02ecfc1dc29 100644 --- a/wiki/src/support/known_issues.pl.po +++ b/wiki/src/support/known_issues.pl.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-13 16:46+0000\n" +"POT-Creation-Date: 2020-01-15 12:48+0000\n" "PO-Revision-Date: 2018-10-26 11:03+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -223,7 +223,7 @@ msgid "" msgstr "" #. type: Bullet: '* ' -msgid "MacBook Air Retina 2019" +msgid "MacBook Air Retina 2018 and 2019" msgstr "" #. type: Plain text @@ -1412,9 +1412,6 @@ msgstr "" #~ msgid "</div>\n" #~ msgstr "</div>\n" -#~ msgid "<a id=\"sandisk\"></a>\n" -#~ msgstr "<a id=\"sandisk\"></a>\n" - #~ msgid "<a id=\"nvidia-maxwell\"></a>\n" #~ msgstr "<a id=\"nvidia-maxwell\"></a>\n" @@ -1423,3 +1420,6 @@ msgstr "" #~ msgid "<a id=\"xorg-driver\"></a>\n" #~ msgstr "<a id=\"xorg-driver\"></a>\n" + +#~ msgid "<a id=\"sandisk\"></a>\n" +#~ msgstr "<a id=\"sandisk\"></a>\n" diff --git a/wiki/src/support/known_issues.pt.po b/wiki/src/support/known_issues.pt.po index 00d3660c05479f79b150590bbb79c817c6cc2384..c26c2c855b84bd1ba71607350a4518ff37fcf9c4 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: 2019-11-13 16:46+0000\n" +"POT-Creation-Date: 2020-01-15 12:48+0000\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" @@ -257,7 +257,7 @@ msgstr "" "x-faq/mac-os-x-snow-leopard-64-bit-macs-64-bit-efi-boot-in-64-bit-mode.html>" #. type: Bullet: '* ' -msgid "MacBook Air Retina 2019" +msgid "MacBook Air Retina 2018 and 2019" msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues.ru.po b/wiki/src/support/known_issues.ru.po index 476146930fb452c49f481e9ccb0629c81cd30145..4bfe551b790280350ff1e9580630a8d998ab4ef2 100644 --- a/wiki/src/support/known_issues.ru.po +++ b/wiki/src/support/known_issues.ru.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-13 16:46+0000\n" +"POT-Creation-Date: 2020-01-15 12:48+0000\n" "PO-Revision-Date: 2018-07-02 11:00+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -223,7 +223,7 @@ msgid "" msgstr "" #. type: Bullet: '* ' -msgid "MacBook Air Retina 2019" +msgid "MacBook Air Retina 2018 and 2019" msgstr "" #. type: Plain text @@ -1412,9 +1412,6 @@ msgstr "" #~ msgid "</div>\n" #~ msgstr "</div>\n" -#~ msgid "<a id=\"sandisk\"></a>\n" -#~ msgstr "<a id=\"sandisk\"></a>\n" - #, fuzzy #~ msgid "<a id=\"nvidia-maxwell\"></a>\n" #~ msgstr "<a id=\"sandisk\"></a>\n" @@ -1426,3 +1423,6 @@ msgstr "" #, fuzzy #~ msgid "<a id=\"xorg-driver\"></a>\n" #~ msgstr "<a id=\"sandisk\"></a>\n" + +#~ msgid "<a id=\"sandisk\"></a>\n" +#~ msgstr "<a id=\"sandisk\"></a>\n" diff --git a/wiki/src/support/known_issues.sr_Latn.po b/wiki/src/support/known_issues.sr_Latn.po index 322c5965517dfe09436c28b7b72a224ad1d799ca..b25213d7d585d4107a0abbd42a3259378f466a24 100644 --- a/wiki/src/support/known_issues.sr_Latn.po +++ b/wiki/src/support/known_issues.sr_Latn.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-13 16:46+0000\n" +"POT-Creation-Date: 2020-01-15 12:48+0000\n" "PO-Revision-Date: 2018-10-26 11:03+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -223,7 +223,7 @@ msgid "" msgstr "" #. type: Bullet: '* ' -msgid "MacBook Air Retina 2019" +msgid "MacBook Air Retina 2018 and 2019" msgstr "" #. type: Plain text @@ -1406,5 +1406,17 @@ msgstr "" msgid "Some of these workarounds may disable some of the USB ports." msgstr "" +msgid "</div>\n" +msgstr "</div>\n" + +msgid "<a id=\"nvidia-maxwell\"></a>\n" +msgstr "<a id=\"nvidia-maxwell\"></a>\n" + +msgid "<a id=\"nvidia-pascal\"></a>\n" +msgstr "<a id=\"nvidia-pascal\"></a>\n" + +msgid "<a id=\"xorg-driver\"></a>\n" +msgstr "<a id=\"xorg-driver\"></a>\n" + #~ msgid "<div class=\"caution\">\n" #~ msgstr "<div class=\"caution\">\n" diff --git a/wiki/src/support/known_issues.tr.po b/wiki/src/support/known_issues.tr.po index 9458645acc2e19e0b1d43317e53ea7793296c5b6..bae13eb0dc0ab05d9b58a7652750007a77c2e148 100644 --- a/wiki/src/support/known_issues.tr.po +++ b/wiki/src/support/known_issues.tr.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-13 16:46+0000\n" +"POT-Creation-Date: 2020-01-15 12:48+0000\n" "PO-Revision-Date: 2018-10-27 07:08+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -222,7 +222,7 @@ msgid "" msgstr "" #. type: Bullet: '* ' -msgid "MacBook Air Retina 2019" +msgid "MacBook Air Retina 2018 and 2019" msgstr "" #. type: Plain text @@ -1411,9 +1411,6 @@ msgstr "" #~ msgid "</div>\n" #~ msgstr "</div>\n" -#~ msgid "<a id=\"sandisk\"></a>\n" -#~ msgstr "<a id=\"sandisk\"></a>\n" - #~ msgid "<a id=\"nvidia-maxwell\"></a>\n" #~ msgstr "<a id=\"nvidia-maxwell\"></a>\n" @@ -1422,3 +1419,6 @@ msgstr "" #~ msgid "<a id=\"xorg-driver\"></a>\n" #~ msgstr "<a id=\"xorg-driver\"></a>\n" + +#~ msgid "<a id=\"sandisk\"></a>\n" +#~ msgstr "<a id=\"sandisk\"></a>\n" diff --git a/wiki/src/support/known_issues.zh.po b/wiki/src/support/known_issues.zh.po index 5cdbe7f6d15e045a0b28ce07ef4c3bdbecbeef0f..cfc86b7524ca58c94891e9e91bc7733ae615a008 100644 --- a/wiki/src/support/known_issues.zh.po +++ b/wiki/src/support/known_issues.zh.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-13 16:46+0000\n" +"POT-Creation-Date: 2020-01-15 12:48+0000\n" "PO-Revision-Date: 2018-10-25 10:36+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -222,7 +222,7 @@ msgid "" msgstr "" #. type: Bullet: '* ' -msgid "MacBook Air Retina 2019" +msgid "MacBook Air Retina 2018 and 2019" msgstr "" #. type: Plain text @@ -1411,12 +1411,6 @@ msgstr "" #~ msgid "</div>\n" #~ msgstr "</div>\n" -#~ msgid "<a id=\"sandisk\"></a>\n" -#~ msgstr "<a id=\"sandisk\"></a>\n" - -#~ msgid "SanDisk" -#~ msgstr "SanDisk" - #, fuzzy #~ msgid "<a id=\"nvidia-maxwell\"></a>\n" #~ msgstr "<a id=\"sandisk\"></a>\n" @@ -1428,3 +1422,9 @@ msgstr "" #, fuzzy #~ msgid "<a id=\"xorg-driver\"></a>\n" #~ msgstr "<a id=\"sandisk\"></a>\n" + +#~ msgid "<a id=\"sandisk\"></a>\n" +#~ msgstr "<a id=\"sandisk\"></a>\n" + +#~ msgid "SanDisk" +#~ msgstr "SanDisk" diff --git a/wiki/src/support/known_issues.zh_TW.po b/wiki/src/support/known_issues.zh_TW.po index 86100da72f953a004ab8e7260343d9551ec39496..59e4007f60c0dabc09b80459b2161b6cafae4bd4 100644 --- a/wiki/src/support/known_issues.zh_TW.po +++ b/wiki/src/support/known_issues.zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails l10n\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-11-13 16:46+0000\n" +"POT-Creation-Date: 2020-01-15 12:48+0000\n" "PO-Revision-Date: 2018-11-02 17:20+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: Tails Chinese translators <jxt@twngo.xyz>\n" @@ -223,7 +223,7 @@ msgid "" msgstr "" #. type: Bullet: '* ' -msgid "MacBook Air Retina 2019" +msgid "MacBook Air Retina 2018 and 2019" msgstr "" #. type: Plain text @@ -1419,21 +1419,21 @@ msgstr "" #~ msgid "</div>\n" #~ msgstr "</div>\n" -#~ msgid "<a id=\"sandisk\"></a>\n" +#, fuzzy +#~ msgid "<a id=\"nvidia-maxwell\"></a>\n" #~ msgstr "<a id=\"sandisk\"></a>\n" #, fuzzy -#~ msgid "<a id=\"partial-upgrade\"></a>\n" +#~ msgid "<a id=\"nvidia-pascal\"></a>\n" #~ msgstr "<a id=\"sandisk\"></a>\n" #, fuzzy -#~ msgid "<a id=\"nvidia-maxwell\"></a>\n" +#~ msgid "<a id=\"xorg-driver\"></a>\n" #~ msgstr "<a id=\"sandisk\"></a>\n" -#, fuzzy -#~ msgid "<a id=\"nvidia-pascal\"></a>\n" +#~ msgid "<a id=\"sandisk\"></a>\n" #~ msgstr "<a id=\"sandisk\"></a>\n" #, fuzzy -#~ msgid "<a id=\"xorg-driver\"></a>\n" +#~ msgid "<a id=\"partial-upgrade\"></a>\n" #~ msgstr "<a id=\"sandisk\"></a>\n" diff --git a/wiki/src/support/known_issues/graphics.ar.po b/wiki/src/support/known_issues/graphics.ar.po index 181a51e0707d9a0c401ff4f7f2695e0afaf31a49..7cea508ef2c6e35645a5121a361f391fd0c0fbd3 100644 --- a/wiki/src/support/known_issues/graphics.ar.po +++ b/wiki/src/support/known_issues/graphics.ar.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-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-28 15:21+0000\n" "PO-Revision-Date: 2018-10-26 13:27+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -274,6 +274,7 @@ msgid "" "<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 [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD 7520G</td><td>?</td><td>?</td></tr>\n" "</table>\n" msgstr "" diff --git a/wiki/src/support/known_issues/graphics.ca.po b/wiki/src/support/known_issues/graphics.ca.po index 4c124cbbcee96f7543b05141f9c1b01e3db096fc..097c2fc0cf1922af62cd53c40beda9d7ba937dfc 100644 --- a/wiki/src/support/known_issues/graphics.ca.po +++ b/wiki/src/support/known_issues/graphics.ca.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-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-28 15:21+0000\n" "PO-Revision-Date: 2018-10-26 13:27+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -273,6 +273,7 @@ msgid "" "<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 [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD 7520G</td><td>?</td><td>?</td></tr>\n" "</table>\n" msgstr "" diff --git a/wiki/src/support/known_issues/graphics.de.po b/wiki/src/support/known_issues/graphics.de.po index 950cac7bdd5b4d3ead8c0c571e393b095adf6b9f..6044ea97652e4b72c27edaf275ae54376c641578 100644 --- a/wiki/src/support/known_issues/graphics.de.po +++ b/wiki/src/support/known_issues/graphics.de.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: 2019-10-23 12:30+0000\n" +"POT-Creation-Date: 2019-12-28 15:21+0000\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" "Language: de\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -32,7 +32,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap @@ -273,6 +273,7 @@ msgid "" "<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 [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD 7520G</td><td>?</td><td>?</td></tr>\n" "</table>\n" msgstr "" diff --git a/wiki/src/support/known_issues/graphics.es.po b/wiki/src/support/known_issues/graphics.es.po index bdb1115c69ccabbbbcb8313a263061617cef82c7..be89a5ef7f6c84048a735526e46897d367044dc4 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: 2019-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-28 15:21+0000\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" @@ -301,6 +301,7 @@ msgid "" "<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 [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD 7520G</td><td>?</td><td>?</td></tr>\n" "</table>\n" msgstr "" diff --git a/wiki/src/support/known_issues/graphics.fa.po b/wiki/src/support/known_issues/graphics.fa.po index 4fcdeee92df1441b1460c7a40adea72de54595f4..bd8d667958899ee6ff050561d8a6ab5f453ae317 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: 2019-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-28 15:21+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" @@ -276,6 +276,7 @@ msgid "" "<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 [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD 7520G</td><td>?</td><td>?</td></tr>\n" "</table>\n" msgstr "" diff --git a/wiki/src/support/known_issues/graphics.fr.po b/wiki/src/support/known_issues/graphics.fr.po index 95287ae26aaa8d359dd3600753987f82dd28dddc..fdfd0e153603772b0a272f901877c04586a6ce34 100644 --- a/wiki/src/support/known_issues/graphics.fr.po +++ b/wiki/src/support/known_issues/graphics.fr.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: 2019-10-14 11:55+0000\n" -"Last-Translator: xin <xin@riseup.net>\n" +"POT-Creation-Date: 2019-12-28 15:21+0000\n" +"PO-Revision-Date: 2020-01-12 12:09+0000\n" +"Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -67,7 +67,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!img error.png link=\"no\" alt=\"\"]]\n" -msgstr "" +msgstr "[[!img error.png link=\"no\" alt=\"\"]]\n" #. type: Bullet: '1. ' msgid "" @@ -317,17 +317,27 @@ msgid "" "<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 [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD 7520G</td><td>?</td><td>?</td></tr>\n" "</table>\n" 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 [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</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 " +"[1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD " +"7520G</td><td>?</td><td>?</td></tr>\n" "</table>\n" #. type: Plain text @@ -618,6 +628,81 @@ msgid "" " </tr>\n" "</table>\n" msgstr "" +"<table>\n" +" <tr>\n" +" <th><strong>Nom de code</strong> </th>\n" +" <th><strong>Nom officiel</strong> </th>\n" +" </tr>\n" +" <tr>\n" +" <td>NV50 (G80) </td>\n" +" <td>GeForce 8800 (GTS, GTX, Ultra)<br/>Quadro FX (4600 (SDI), " +"5600) </td>\n" +" </tr>\n" +" <tr>\n" +" <td>NV84 (G84) </td>\n" +" <td>GeForce 8600 (GT, GTS, M GT, M GS), 8700M GT, GeForce 9500M " +"GS, 9650M GS <br/>Quadro FX (370, 570, 570M, 1600M, 1700), NVS 320M </td>\n" +" </tr>\n" +" <tr>\n" +" <td>NV86 (G86) </td>\n" +" <td>GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT, " +"GeForce 9300M G <br/>Quadro FX 360M, NVS (130M, 135M, 140M, 290) </td>\n" +" </tr>\n" +" <tr>\n" +" <td>NV92 (G92) </td>\n" +" <td>GeForce 8800 (GT, GS, GTS 512, M GTS, M GTX) <br/> GeForce " +"9600 GSO, 9800 (GT, GTX, GTX+, GX2, M GT, M GTX) <br/> GeForce GTS 150(M), " +"GTS 160M, GTS 240, GTS 250, GTX (260M, 280M, 285M), GT (330, 340) <br/> " +"Quadro FX (2800M, 3600M, 3700, 3700M, 3800M, 4700 X2), VX 200 </td>\n" +" </tr>\n" +" <tr>\n" +" <td>NV94 (G94) </td>\n" +" <td>GeForce 9600 (GSO 512, GT, S), 9700M GTS, 9800M GTS, GeForce " +"G 110M, GT 130(M), GT 140 <br/>Quadro FX (1800, 2700M) </td>\n" +" </tr>\n" +" <tr>\n" +" <td>NV96 (G96) </td>\n" +" <td>GeForce 9400 GT, 9500 (GT, M G), 9600 (M GS, M GT), 9650M " +"GT, 9700M GT <br/> GeForce G 102M, GT 120 <br/> Quadro FX (380, 580, 770M, " +"1700M) </td>\n" +" </tr>\n" +" <tr>\n" +" <td>NV98 (G98) </td>\n" +" <td>GeForce 8400 GS, GeForce 9200M GS, 9300 (GE, GS, M GS)<br/> " +"GeForce G 100, G 105M <br/>Quadro FX (370 LP, 370M), NVS (150M, 160M, 295, " +"420, 450) </td>\n" +" </tr>\n" +" <tr>\n" +" <td>NVA0 (GT200) </td>\n" +" <td>GeForce GTX (260, 275, 280, 285, 295) <br/>Quadro CX, FX (" +"3800, 4800, 5800) </td>\n" +" </tr>\n" +" <tr>\n" +" <td>NVA3 (GT215) </td>\n" +" <td>GeForce GT (240, 320, 335M), GTS (250M, 260M, 350M, 360M) <" +"br/>Quadro FX 1800M </td>\n" +" </tr>\n" +" <tr>\n" +" <td>NVA5 (GT216) </td>\n" +" <td>GeForce GT (220, 230M, 240M, 325M, 330M), 315 <br/>Quadro " +"400, FX 880M, NVS 5100M </td>\n" +" </tr>\n" +" <tr>\n" +" <td>NVA8 (GT218) </td>\n" +" <td>GeForce 8400 GS, ION 2, GeForce 205, 210, G 210M, 305M, " +"310(M), 405 <br/>Quadro FX (380 LP, 380M), NVS (300, 2100M, 3100M) </td>\n" +" </tr>\n" +" <tr>\n" +" <td>NVAA (MCP77/MCP78) </td>\n" +" <td>GeForce 8100, 8200, 8300 mGPU / nForce 700a series, 8200M G " +"</td>\n" +" </tr>\n" +" <tr>\n" +" <td>NVAC (MCP79/MCP7A) </td>\n" +" <td>ION, GeForce 9300, 9400 mGPU / nForce 700i series, 8200M G, " +"9100M, 9400M (G) </td>\n" +" </tr>\n" +"</table>\n" #. type: Plain text #, no-wrap @@ -717,6 +802,37 @@ msgid "" " </tr>\n" "</table>\n" msgstr "" +"<table>\n" +" <tr>\n" +" <th><strong>Nom de code</strong> </th>\n" +" <th><strong>Nom officiel</strong> </th>\n" +" </tr>\n" +" <tr>\n" +" <td>NV117 (GM107) </td>\n" +" <td>GeForce GTX (745, 750, 840M, 845M, 850M, 860M, 950M, 960M) <" +"br/>Quadro K620, K1200, K2200, M1000M, M1200M ; GRID M30, M40</td>\n" +" </tr>\n" +" <tr>\n" +" <td>NV118 (GM108) </td>\n" +" <td>GeForce 830M, 840M, 930M, 940M[X]</td>\n" +" </tr>\n" +" <tr>\n" +" <td>NV120 (GM200) </td>\n" +" <td>GeForce GTX Titan X</td>\n" +" </tr>\n" +" <tr>\n" +" <td>NV124 (GM204) </td>\n" +" <td>GeForce GTX (980)</td>\n" +" </tr>\n" +" <tr>\n" +" <td>NV126 (GM206) </td>\n" +" <td>GeForce GTX (950, 960)</td>\n" +" </tr>\n" +" <tr>\n" +" <td>NV12B (GM20B) </td>\n" +" <td>Tegra X1</td>\n" +" </tr>\n" +"</table>\n" #. type: Plain text #, no-wrap @@ -786,6 +902,32 @@ msgid "" " </tr>\n" "</table>\n" msgstr "" +"<table>\n" +" <tr>\n" +" <th><strong>Nom de code</strong> </th>\n" +" <th><strong>Nom officiel</strong> </th>\n" +" </tr>\n" +" <tr>\n" +" <td>NV132 (GP102) </td>\n" +" <td>NVIDIA Titan (X, Xp), GeForce GTX 1080 Ti</td>\n" +" </tr>\n" +" <tr>\n" +" <td>NV134 (GP104) </td>\n" +" <td>GeForce GTX (1070, 1080)</td>\n" +" </tr>\n" +" <tr>\n" +" <td>NV136 (GP106) </td>\n" +" <td>GeForce GTX 1060</td>\n" +" </tr>\n" +" <tr>\n" +" <td>NV137 (GP107) </td>\n" +" <td>GeForce GTX (1050, 1050 Ti)</td>\n" +" </tr>\n" +" <tr>\n" +" <td>NV138 (GP108) </td>\n" +" <td>GeForce GT 1030</td>\n" +" </tr>\n" +"</table>\n" #. type: Title = #, no-wrap diff --git a/wiki/src/support/known_issues/graphics.id.po b/wiki/src/support/known_issues/graphics.id.po index 8bdb5c5087de5996a75e2a2df1ca75d762f51570..a1460beaebe6c9bbe49e45069064daf1bb105c8f 100644 --- a/wiki/src/support/known_issues/graphics.id.po +++ b/wiki/src/support/known_issues/graphics.id.po @@ -3,19 +3,20 @@ # 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" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2019-12-28 15:21+0000\n" +"PO-Revision-Date: 2020-01-15 21:32+0000\n" +"Last-Translator: John Doe <osman@surkatty.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -31,7 +32,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!toc levels=2]]\n" -msgstr "" +msgstr "[[!toc levels=2]]\n" #. type: Title = #, no-wrap @@ -272,6 +273,7 @@ msgid "" "<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 [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD 7520G</td><td>?</td><td>?</td></tr>\n" "</table>\n" msgstr "" diff --git a/wiki/src/support/known_issues/graphics.it.po b/wiki/src/support/known_issues/graphics.it.po index ade4e90b6b941e2f7bb797a355028591be81ec3e..0233fb4fb3a7ff77f0568c85b5ffeade3a3d53d7 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: 2019-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-28 15:21+0000\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" @@ -276,6 +276,7 @@ msgid "" "<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 [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD 7520G</td><td>?</td><td>?</td></tr>\n" "</table>\n" msgstr "" diff --git a/wiki/src/support/known_issues/graphics.mdwn b/wiki/src/support/known_issues/graphics.mdwn index e3b474f9e89bb1870151185de203eddb757a0208..a70ce9f42b9d57179775a8b3ddcbe365437a5d46 100644 --- a/wiki/src/support/known_issues/graphics.mdwn +++ b/wiki/src/support/known_issues/graphics.mdwn @@ -128,6 +128,7 @@ Tickets: #11095 #12482 <tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Broadway PRO [Mobility Radeon HD 5850]</td><td>[1002:68a1]</td><td></td></tr> <tr><td>Advanced Micro Devices, Inc. [AMD/ATI] RV730/M96 [Mobility Radeon HD 4650/5165]</td><td>[1002:9480]</td><td></td></tr> <tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Device [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr> +<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD 7520G</td><td>?</td><td>?</td></tr> </table> ### Workaround diff --git a/wiki/src/support/known_issues/graphics.pl.po b/wiki/src/support/known_issues/graphics.pl.po index f6660d2de225688d75af3ab8d255dcdfb00e76b1..740cbcac009ef9c1fbabc823bf39768cba6879b5 100644 --- a/wiki/src/support/known_issues/graphics.pl.po +++ b/wiki/src/support/known_issues/graphics.pl.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-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-28 15:21+0000\n" "PO-Revision-Date: 2018-10-26 11:04+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -274,6 +274,7 @@ msgid "" "<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 [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD 7520G</td><td>?</td><td>?</td></tr>\n" "</table>\n" msgstr "" diff --git a/wiki/src/support/known_issues/graphics.pt.po b/wiki/src/support/known_issues/graphics.pt.po index 03a3d9e8b4b7d6b762d142f92ccaddb50ff824e6..67977ba38696c4dc87b31fd96488c7442054272e 100644 --- a/wiki/src/support/known_issues/graphics.pt.po +++ b/wiki/src/support/known_issues/graphics.pt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" -"PO-Revision-Date: 2019-10-23 12:31+0000\n" +"POT-Creation-Date: 2019-12-28 15:21+0000\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" "Language: pt\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -278,6 +278,7 @@ msgid "" "<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 [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD 7520G</td><td>?</td><td>?</td></tr>\n" "</table>\n" msgstr "" diff --git a/wiki/src/support/known_issues/graphics.ru.po b/wiki/src/support/known_issues/graphics.ru.po index 00725f4fecd926b597095dafaba8cc9ebfa53ca3..3a7ca3d66b107e6c4db35524948cd30cee00f507 100644 --- a/wiki/src/support/known_issues/graphics.ru.po +++ b/wiki/src/support/known_issues/graphics.ru.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-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-28 15:21+0000\n" "PO-Revision-Date: 2018-06-27 19:40+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -274,6 +274,7 @@ msgid "" "<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 [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD 7520G</td><td>?</td><td>?</td></tr>\n" "</table>\n" msgstr "" diff --git a/wiki/src/support/known_issues/graphics.sr_Latn.po b/wiki/src/support/known_issues/graphics.sr_Latn.po index ce50ea0ce34f6df5dc299801cf0dd34cea8a2501..8cda3d2ad531bc5ebfa18a4b737a03230c651baf 100644 --- a/wiki/src/support/known_issues/graphics.sr_Latn.po +++ b/wiki/src/support/known_issues/graphics.sr_Latn.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-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-28 15:21+0000\n" "PO-Revision-Date: 2018-10-26 13:27+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -274,6 +274,7 @@ msgid "" "<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 [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD 7520G</td><td>?</td><td>?</td></tr>\n" "</table>\n" msgstr "" diff --git a/wiki/src/support/known_issues/graphics.tr.po b/wiki/src/support/known_issues/graphics.tr.po index 4b5eea7de7c07dd78473e0d74a69094c0727dfb5..047214635bd6a9ba256c915169f4bcb5b92d1b04 100644 --- a/wiki/src/support/known_issues/graphics.tr.po +++ b/wiki/src/support/known_issues/graphics.tr.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-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-28 15:21+0000\n" "PO-Revision-Date: 2018-10-26 13:27+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -273,6 +273,7 @@ msgid "" "<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 [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD 7520G</td><td>?</td><td>?</td></tr>\n" "</table>\n" msgstr "" diff --git a/wiki/src/support/known_issues/graphics.zh.po b/wiki/src/support/known_issues/graphics.zh.po index d284fd6424f272824928393d54fee2fc4ddb6313..04e4c242f3d1ea7ed69426977ef4efe400e521cc 100644 --- a/wiki/src/support/known_issues/graphics.zh.po +++ b/wiki/src/support/known_issues/graphics.zh.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-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-28 15:21+0000\n" "PO-Revision-Date: 2018-10-26 13:27+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -273,6 +273,7 @@ msgid "" "<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 [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD 7520G</td><td>?</td><td>?</td></tr>\n" "</table>\n" msgstr "" diff --git a/wiki/src/support/known_issues/graphics.zh_TW.po b/wiki/src/support/known_issues/graphics.zh_TW.po index 543a3095d6e1bedbf37cc5fc4e6ac9ff789c05fd..7d542a94fc790c16a6550e2780df5d43452ff158 100644 --- a/wiki/src/support/known_issues/graphics.zh_TW.po +++ b/wiki/src/support/known_issues/graphics.zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails l10n\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2019-12-03 17:17+0000\n" +"POT-Creation-Date: 2019-12-28 15:21+0000\n" "PO-Revision-Date: 2018-11-02 17:28+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: Tails Chinese translators <jxt@twngo.xyz>\n" @@ -272,6 +272,7 @@ msgid "" "<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 [1002:98e4]</td><td>[1002:98e4]</td><td>(rev da)</td></tr>\n" +"<tr><td>Advanced Micro Devices, Inc. [AMD/ATI] Radeon HD 7520G</td><td>?</td><td>?</td></tr>\n" "</table>\n" msgstr "" diff --git a/wiki/src/tails-bugs.key b/wiki/src/tails-bugs.key index 69d98b548391f82d2f2ec93960d31ae7bb03ba99..c9e74df8e7d1b1855f4a1b2ced6ef9f3b7fdd881 100644 --- a/wiki/src/tails-bugs.key +++ b/wiki/src/tails-bugs.key @@ -583,228 +583,393 @@ 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 +VTxWkXFM8Y9tjFgqGRk81ppMttT5hjz///////////////////////////////// //////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////// @@ -813,1048 +978,1529 @@ JAbY9sDIbgeTq8sYb2QjrKO/A2VrjlU8VpFxTPGPbYxYKhkZPNaaTLbU+YY8//// //////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////// -////////////////////////////////////////////////////////////iF4E -EBEKAAYFAlltKmgACgkQUNG8lUQkh1cP2wEA0ikKA68Ccw4HlvJvnaVTl/X76lfW -FavOgKoPrE40EhUBAIuwsnvPyl8FBIOYwPQsrPre0jwSMOw4YKlSvKKy9F9AiQIz -BBABCgAdFiEEx1b9Fpdz13fMFZ1veKivihhH5bkFAllxgPYACgkQeKivihhH5blX -uhAAn9zcPf87V2pFp7b4o2LruZNTB59Te7nr4xXMBevp3z1OvF7+2qp6TkKyagVG -BI+elQt14KIugI7juWJ7U44jOAmIyrQSX11vRnhdYAmZCicieUp0QIMcs4+QL1sb -awpUn4vC3+WKOzI4EJhWqkQgrny9EJypSvmS05ZFr8M/TgmEIvI5lnAIkCpMftWi -z44iNZVoEPrzcixlXd8wVciLgIRH5B47bYNNuenIscsf5tTKxNgRV9QZA2HxkU4M -eoqYsu46hDiunFdP99m9y8pBOnBp+goXNsYpQJ0VSBCI3IqwxQrd35Vu0//qoWV0 -ix9rCkX+VyVN/+3yeg0Ab3yFhfSYcS4vUCN8VD3KOVDhudeWgVyygkoBSiXBtszg -Uh/Rn0JW4eQBCBFxMxR/BOnmG5RyPegroULZvP6CNkLYDmetDGqyo3Oiym42k8nY -p8lkxpocKGjb5WweytuZV19M2hNab182VQkUnH9gJwe8DaGUCl7qrAD4z+Nd85fP -VciYGwCaCUQ7TDzAsbdpP3relsPrBPFifwawbAsVqW15Fir493nyi0qv+7zBhb1+ -GUGpeTB/lr35P1L221kCf2NMbBIOX/uYeN09a+FLvrxxoHCg0YXW9o+0eb2FJ7GQ -OUf4ztRdyyFLw0d4ZVsgySWSWgBzQdvGuc3cYZLoOs5BPVqJATMEEAEKAB0WIQS7 -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 +iVringeiQwXT2bWvpKGVHiv1RyktLsy6OQCbV6utALxVfrTc/Zqjd1ebodpEOV7K +/Q+PeVZaHFfHUo9YXrqI7+xM+4x3aDg6ur6JAkQEEgEKAC4FAlO78VQnGmdpdDov +L2dpdGh1Yi5jb20vaW5maW5pdHkwL3B1YmtleXMuZ2l0AAoJEBMY76xfu9vO1bMP +/Rw8fmUnH0vjsw+MNQFi4lc2rYmDLtZkc1x/hdzgq+0Belnt6Z8ANf1/W5CY3ixa +xPaV62KN5oriF5ov56+YA3+DN+Wq49hqOHI0ur6FuuzacNFQlnj7l0hgRLKrujsy +uFOC5zMX6tQX4e4gzhaEEx8+Z1RQT5b9cJAaNBN0Vr35H4LGK9e541NJy7+Q7yZa +w5olU40SBLiZEX297TbXEKjZAz7N5SaWlN0StigYOly7o4ooz6+Jh2vZXfifLmyr +pwqzVhyiA83ZZdceVNEYei8XJwO8APpweDwamppCbq9kuxPir7JlVWZkCW0tKNGJ +uFeIF6eFxeeYxroYuxiJ4IkIc1SUwRGJxIZIFdzx3UmHtfxxbrQ+D7LcLdj26ZyI +srNcjdGLZ79QrFhsDR6z9gif0CnqwQ/UERyMOQSeposQq1h0te1rjyX27Dn3oik9 +9NBCFsqPmsHjiL2OgHQBtCKAAN8htY7IjTIVpON9tnDgirsVoI5H73ydE2JYuuQj +QSvJBvngGp9/ZqV7kCvDEOvmCx5TIY40JTIXCebj3nTU49SH/E+WlVhCT/0kxOTW +USGLavhLLyUPNjv7AmjnyVTD8qr4Bj8vUeay2mJj6/Jlc5cljEKpW+1eqNRIQKfS +PaQ1HjpJUVFKho/vslvVs6Oawl/01OjXpC78sCIxj7dniQGBBBMBCABrBQJTxIOJ +BYMHkUpNXhSAAAAAABUAQGJsb2NraGFzaEBiaXRjb2luLm9yZzAwMDAwMDAwMDAw +MDAwMDAwNDU2NmFiNDQ0YzU0OWM1YTFmMjI0NDFkNjI0Y2EzZjJmNTU0ZDE4NjMx +NjFkMmIACgkQf6sRQmfk+gT3pwf/SKalUujrslb3B05wO7F8ZjmkdEM5CII0kHlQ +kcCKTFgF3rGVRtWtlKJjfQdxSQqzHNEwNjH8hn0y6oBMEQni6xiC00gVhdjE3U77 +Ew/9ErShxoL61EWBCUvJS9YHlGM7tqgOyQwu/+EZCa8gUAC4nQjzfkHGIz4iDqRb +QK+gCvHpYQM22PIed5McrFZhxpSRmFig/z0VLoBD0p05DayB2uL3GP0Gz5CxQmhz +SG4GedqXsAgt34HkM60cFOJLkoFxkbjGp9I4KIhFXA8MeNJpJ4VRpv7XAP2Put4H +JElHfuobwlAeSoi+br1CYYmreAJYeKmp5sbFuETB0d1jQ8or1okCHAQQAQIABgUC +U8TjOAAKCRAei/NJIykSZUqWD/0avL90ma03W4os0SLV7SV3uCEGckrNBrXgmJVM +WFufNdc0VskeyqBooIcZ0S5imCANvNruj9FZlIu0IelhZQ+GmxXWRi/1PtO3Kgjz ++UicnW+eVKBlMXz5G3/w5YNoleS2zIJFznNStkD1jfeK7EgmcZWJF4DSiNPFvP9K +TdcZi62i6tSgEa8MpcC7AwyaUOD/B5Pff4spQtJ/5NcB5KAcTUBwK9WvPZcyABrE +RMyXCADwzJdWbwfQG+YoTcCl/n25DC4SGtu0vh5P0i6AdyJm+g1ZLNE2fxnMmp+e +h5zYP0DoCIxett9rFyhTJvr2s2LXyD3RqjDLr7lZqkDwK8raHYsKZ8berdcYCmtX +7t8C8gjb2CJXQQlA1DRhW95eLn1vvu7KmcJqx2KTUbx3X+8ieVeQCP4RTFQw5bDU +CXD3WuesZar+887HmMGLgWln6xyNguyUUoEptza5Vy/zxidcpTt9SguLWEKTUyYL +4Gwy+V1FcBZh2Pz72+fM/XmnFRok1WI/wRjjueZyODN1gpnLZCFV5A6Zqv8XbiXn +59yk1tTdNFKnwM//jb5UqkLz+O44a5nDHDrU5Cwob1KdKgx2HJEh9qzDhNTb0+oG +g+4KAfOL4pCdfjTQ/BS3nY1MHm4hAxwXd6QzBPlDjt2wrWkZ7JVHRWAeHLMrqLQ4 +7uZyEIkBHAQQAQIABgUCVFO7rQAKCRAceKMJRGHyMY1gB/sE69osEC8B4ZzajPLP +XbRW78fHu+Y7S0Y6/+h586dzFfDYCOwu2vrNv8NKxyG6fkwS0CcoE1osHipmEiDb +3wnuqHDYTBPWDMxtNVA4MfsJvUkcSmRlIzyp+MgP5/tbd+RiHRUrlo3+PJSa+Ni9 +0LUI/e99OKJtOH4WbqlzdgHF+SgI9Te/SHcjjH9e0TY1zJkrdy+C6yNER4TmQEGW +O6/4dM88Yu94nUmc6kMghRsu2dBg6JJGMnrcZgj0RJsxN3QRolAGqQaMYmivTO+J +Ycry3GLdNtgTsRMcvYzSRSIQcq9MsSI3uUN3wGfsH3DOZ7gm3y5VtW0/4Gl25ER8 +g9CziQIcBBABCgAGBQJUvRxDAAoJENu4ArJYrNhPbKgP/R8BIDeAGLW6bE6x5rEa +ml65ZjjOpgM7LtvaxGgNw6urUEEAPJBmlBbfmUGBZ5zDpGF0u/a+v0vUEEDpYYW+ +47WlfYtVFzKZL+E9DoSfmDMArcaTHw8cItEEzp5KjmteQg6dLW5wdAYDdE2hKpn3 +mTxLe2QshOAIsinNle84V0VjjL79g2VygjNvqSWkd9LIlvU7RPFr9hjEvdZltJqD +OjMRfi0cdQY84XBY4wJzU7b0CQcQqN5kHoGdN5M7WzfXEu01429XPaekN+aFs4hF +QW/r2713obw5QTYn58+Wu3lyKb7zhlJN3tVWXnAEeBpmpO/bMAIW+ReUFQkC0oNl +EWH9eSO5sCm82gc19lZWf9EDs5ITt6h6gpjvDhrCo1pZUMYXfALEOte5cVrqxN71 +orf0/wwTqB/6bvHp8hkBUk2131F0hza3wODFDTEGb+IcQthJ2GbZn0r6mLW3riRR +lJ68x9BpHvM5JlY9gBLPX0pnX5AR2wS0JoHmkjv7qMDCv2vry+yMCrGBsUynySkJ +iBmLus7yJpsQAg910dzlsYCpd9EaeHcD2dwpdLD2Ny2zDkJ/hSKNgE9PPqe7Qinw +O3Y7IA/uKag//tZdcFvGM58E13hnmCNSaC7bMQAZVdN8YnfEuZJsTzT/EIZU9C5J +uCPx8SKyNE5v5WO5nq7ASFXuiF4EEBEKAAYFAlULH+0ACgkQI232nWf20bGF0AEA +ujmAufsPDzyxa1S/1yyBKbvlyN1GIPlXRUkU+JPQK04BALYZdiuKOLK7ah+OLG0D +zHESpldV6k4vMVa79z59fr3FiQIcBBABCAAGBQJVNQxYAAoJEKSFoO1RuLfENfYP ++wZtd8F+z9+m7zVBHIbH/Rnw2YoGwdXuN79b0VZNlz/fs7of3fSv+YZpLsTKrHWW +NYYSGBE+xZTb/ZmTccDxwR8XfBduba5KpmB1DwAkDjFeeroN8rwhKtvzsObflSnP +IWvh3aaocGCO3EHmuib8wHP55lbZBjlMEZkqFIoHRwYv7+EEFMvn+rLWIq5ILiVF +7qrRA/P11x+cUQnq4xpGP7QUISyJW6wzlZ1z9nE461pgtGfloCKHKqUN/FKFBWNB +BmgXD94TOiMdjo6Dn6mMLZYWRK8afHaJ+67UtJyHQR+hWbjhiqbdchxojYpFfiLG +h24EQU5XP4djFnJt0NR0rcpcKgzBp9zvxhiWLGhEOkR5o05pTlXymO4vt1djhR5h +HiWLrOksYnf6tE92km34QUpSs3Z4jv0KULz7BzABd7wWcS37IYZMJ1BDKAY4yGG8 +JpMcZzaYxnZQ6kelrWex4bu0F6OCieEZgIXm5hgYZkz6QvUY3OFECK/GXhnNk7wg +V7buxamFQNKH3qOGxgq+DjJAOdia/xjLoM7R+g5sZsl02tT39Irw5R7zj7wkeiq/ +WGuHbtAntAbWHn0NqtBqLjQOmMrzhaEc6M0Sf6ucbagggS4S5mLe0s6Ec87NPz6k +9GIqTf7k8C2z2Ip8HQOyONQAmKJ1cy/CXEDemBZPlbu3iQIcBBABCgAGBQJVCwls +AAoJEM4RtVbQM4PyMqYP/10LVEeZjcB8WuXqdqVWA7H0Pmn0esHMI+C0GA7JstDB +fvuyIZxwlMuqYzbyHqgWiRUBaW2+etj3AlbyAiVM/WhZbMUqQNJnjFpQoVBrUJHS +arnZQzEPa1jGfZq/mor4IcsB2W9IOC4AlUFTc2W0oH+7+OXHL8eETTp+tWWxOaHx +eC0WDVTMtZ2uQoeVt6z6gnzygNmfIZZm9SiY/0PND2dK0Y6klRAsvv6w7syofn/N +WP9+xDXAD/D47UDnOfxg1pH+pjQnLuXMhjYuQW4TT1XCHUFT9xNeIH1SpxmN4MK3 +Y7Nwc+7x4YOszQ/iruPl2U8qBnaQVoYVnnuTmbyU+RBED3eL9YhE1d9wFBOUFRbQ +XzjCM4sTab4JOemjkypq9hxNUzS4QxHRVhjsfxVyhR7OvA/t9pgGvuAyOLNxFZml +nhaGO+SV+gk/jyDsvuTLABsb7FcQMUW0x382RkJKq0n1jNgTlD2yKaCIO+CZJ+Fl +ALXA1XjTIwhvPSeiEB0P6ahMiEwllQBrtfPc+1RCz+cfCBNld9BxMcj+0uNocczx +HKPGM159HWp6O/mXzinnlkoZ4VMOY/yxL+Bri+xCJ1/5Y0fLutZhVOIHIt5JUFbO +eNzmmp4hmwyWq7sjBk1+ohBFmegFKLPYM+r5WYlZuDeinDYge/dVgjfF2fhIAW7b +iQIiBBABCAAMBQJVIdK7BYMHhh+AAAoJED38eqE6mIIP/XsQAL7McgnPGC0oQFgB +GknPuIKt9UMOzHxUcnPzMvYTNgHB/KtS/WrYfvf8k5jVuqjMcZRoz4HnrtFrwnav +yTvNFzmge8VJGk5zFjWc2y7wC/1NPYKQHdWnqo3Dx/ZJsxTbdS4Kxw4VrMJ5QOQ2 +rXbBEeJTQqY6w6rcFE3BtsB4xdUcUCAuBurXS2JkaKVsK+4PccWwiiNqRzCpJiy5 +IWLyXGcPDQjOjkJh+TJ//MS3mqhO9Gag5YmCathE0rydxSfum5Q6T+2yDc6TZZ7y +NwI843leOUAX3c67rtXAwiDNBsC1EHKRPSGIZImatGD7WrJLuuUdDXTsJf7i+4lv +XEGgtQw09ZNZ9joEvJUru45+4o5U5trdntbqVWtPMSaMK1AfYckNi7PKHx0eNWRP +KnREY5pdmIgKtE80h0neGg94RhbC+ElEThr+Oyu2QxegaGST+VMQd4ftRS/C1k5R +gcG5X0QMHoJJqqehY5Gk3RdKYq1iLBkUqMfRciQzN9Wg1Ywtedhq7O3T2yQ95H9V +FIGNJOg/S36JuSuFuyGAPu8Tjt3PQXRlN9a6gvr+LzZG9w5Z+GCoI28YvZuUotJx +BQ0qMZ4PguSzuYOPgoAjptP2sv4pTbK/ckUUfyU/Eaf8QowSqrGK35B8yTVi/hFL +AYeFTqZjwTiY3tl9bdU21FwCAYB2iQEcBBABAgAGBQJVf39sAAoJEFsKGl0lASFH +/YQH/1TQmABXn8OJtJdH/ZLN2zZGgjw1lc76qVEege5Yi5hj/1XPY7JdZJqz0HdG +/vgIh8ZxDatyhcDzrBhOlnP7KmfrJ5pN2hi2UUFM2A+KpZD+5E5s2wZ/gNHtXbBo +1GBkS+ydBnMvrL/dpWjs3y/HlOSpfj3O3cfEM3J2zqO14rJwHTYZq6yzFEUgMgsr +1/GSSrHfds5a1bHEcHxc/hukuAZyPZ9DJD0anzc7oCEYzkDikFninR6EJz63Dsdw +LT1Jqjqq6bsI8JETWPZ0YzsEBFFw0Jr0NU6fQYvk7alDOZHA/ecoSgXytGCeyQ4f +zEHSM55dhrcDRQTJQHzHvFpbq7eJAhwEEAEKAAYFAlVtdkwACgkQtF+No/dgjHbn +bg//cTH8QoB3etW/YIqVYx0TFgK7D8pWHqtHItugvRPSQGVdzupKiXy130I4OdQZ +bxhHbxTk55rnIZPCJlCoKr5O+iDNPIJdH8JPi9X17exD9L6vhAAEeJYi2yUureS6 +FCeWv9peudATZAU7wpLJuKnLf1oQ1zUkt5etp9iu2nbDdRMNHLJLfxIWri8jfCk7 +JamsWpYlUc4EvAx8U5mTuM845Qmxy0mxniVB4PV4gtZ0VIXCxK3r9FecneGBY3cI +u0TONaIe1C/K/QP5JYiUNjh/M8wnBwFL4mOzzXYyFmkpaq2iY48MwCPX+15oLS6o +zN6fVTBDPgVm5n4rkz9WnkcOpQ2Fw2P83S3u+rS0WNPAzQNI6Jb9aC1Mf3YZ0EN4 +RCuMqL3CFlqy9gHS8o4yvJJ97snDr3XsLunduvgJWWXhiXZpVd9eUsZYtWjVnFSD +6tA9BXNsu/zVTJ/wLH8skr1OV6ljtBCFx6l0tc1jjKzb0hR/7woQsE+yIgckytbx +dTnJ7+U/r1V0mWR8HKLDnJaz51pcIB5Nbi3pkCVvVgfUCLWwHfvW2ang2sK5kOAT +zdYvyr4A46mNbI+bIZT9NINEJBksmOb8CLuSxjE1jtw1LTu2etEsWE1L5axtdwqg +miMQjShbDT8yIQH+VR/sYfDSPmIAdNc9CwHPJya/gkARduKJARwEEAEIAAYFAlXq +ekYACgkQC4YadTV+T9AOBAgApQb7JPgu7IRPqJtu9DvbFM08QDOxnfvXmH3XLfvC +9OyCuhjfSc4TUYi9IpnSMU1okJCzi3NjSBFU6OsiAT+3BbMJVZghWm6ZHd04jn/o +9Abw0iBCO8qkGUBULgpyCAE4TjYmn6+ZBhmah3QPjMzFRuZLraq/DMHhTM+YhPTu +pupH2/sryWfHaErO0JbRj9lX6BlfQFkqvoiNUg+wL/W7fSLIp2LHmuXIxGCouhgS +yBdNQ8exVZ0mvRzBw86dprkgUTZjwbZRsKrPt6hC0taLSnqPKlQFsGphWDxUbt5Y +y04/SBKYXFQZvggQafc5Zuw3wt/Bpr3NyXziffWsgzQjrYkBHAQQAQoABgUCVaGd +swAKCRAKT1efeGARWYZkB/9/9QeiU9KukWxQZyr+gh62U8MjkURo/VNRPJV0odn7 +60S8NfSWX4v7FIog5yXZOT6hZnOFTCqQ/auhfbaRkxhvgNYDCg1jCSAdFOaRz4a6 +iJ2LHGxSgFTxahu9omOtdHvcr9xxxjI1LpO3vsBCB+FjCKOUi9MZv4DJL6V6Zexb +TbV+HDlakfRoyXz7zoXARqouo03iOxQBdE9liHjXodHE1hqpYueV9WwjkBVWuehb +QubhNaTJ9wda1BTC+kk3LkRxLKWIws6ZwlDIG5F+8zPHLkN4RsRmZRy8CTdJyjsJ +nCYm2RMxGN6v7KVnrFiBwDTR9rXLFK7LlFW9KSDfzHrDiQEcBBABCgAGBQJVqCbY +AAoJEI6pp3X2yEgUhHEIAKHx+ioULqSuvOkHTOsKR0GcHjgRp+RCMjqYMIbaBKf4 +OlYWhF6wcoR1bP5g2x8CMDK2jJ1YjfcnC0wzliK9vJ8sxqphPkJwlDfLdkVLLxDd +2nlyLck0V4bBXnxcf625QjebLPT9ftkCRa3ZE9aYZdamwe38mUAeC7+lumYY5L+O +RmHFSF3ypPEdB9a6VXvSSif+1GJaQvIA4pbBqTl77mkHeheUgl6HOiZNTND1fux8 +hNCgI49cA66tunJMmeoOGNzOpWnTnw1S6naCdLIiScxy+c1I5an1I6TGjt7RIiwV +6mO4qvHCQ0vISRR0Jn3RW+OcNah2OEvdLxPuSJDtfYGJAhwEEAEKAAYFAlXOR18A +CgkQJ1B4oG8VDsmqDg/+PXdhtK9jTYQu3PzfO3Cv7HRiOGVw9RrHMYi45H6S7vwg +FeLBo/DK2QpGk5UVObI/2hcG7M6JMujUildb/L0/SYFJtoHGIKU8EFIT6Lu3ogXf +HQzdpC89H3K/V4T5moftYCtOOJTxQWoHn7LIl2iYc0Z6gWeTAeDvqccMR1ykVcFg +YkORPPk4veKbPZjy6NcQTEf14CRT2NesNIZ30c0yF6GwnWrzMCnb766YvZ8MfbBr +OTy6nQNeKDO0K5k3S9hY3FpSdBuCCGrDJjFVz8pIQb3pENwPgCezj3oxHQLbOVl5 +s4vAgtaH7r6/n8w2/HeWNDu6C8tXM8PPTO/ZAuCxBYaf0FySXDkMI6DRpWpt/h3a +vIj8qpLhnzrb2mZiIevwOoL5YUIDse5cdgad7f7RkAH882+BR4ksXHTC98tCBzKU +V04b7AyyeONsLTU4QUU+nmehlli+rK2dRCKl4bcGNViV3B6FkEhWQcELCgrGjuCo +2Dmm5Q6xciphgNmGY7uZvouiT1DWQ/CledCldpSkKa/wLC7pRYNjof7icK4NZzga +zsZp5Ny/p2G4tO/T3it15H9GvWW7xi8A0TV0BsNaw2osbIihhZXsYx9UuGaIb97k +mZp5BkOXdRgLBYm4RNgE063VUsFXY3ydY7mS66QA6pfGBEESRnVj7pzOaO+pFeGI +RgQQEQoABgUCVlAk8wAKCRC8F2HlD4PU/rUgAJwPLq6rGjjLgxAjwa5199fFrvP9 +mgCePaJZ6pwoXMJCLh7V9lxGryP3JuKJARwEEAEKAAYFAlZ0tVoACgkQhKVEYnRG +m/7W7wf+MvKZZ6NsA4VqNeMcpkKIsPTsaEp11moMAmg46BFNzBk9mIfjpYdDbMyx +M0Lmp8BE/9/1+tOIrDj9HAMfnIkk+7zVdls4D5pMzGsOIIVfT1SfG5vTsxseeqqw +2slwGOWW2o4pTjvjKS2vqVFEbIjI/RpStqyVwGz0pn8zOQmTieWH5JQOvoWmnxzQ +GqTxee9dBhGdFhGYG13yYnabXaKGVy+Fn2dHUKE546n1h+HLkUu1McCvYIhcPUa1 +USlMPJ0gwPFzLXBjr/4BrYnDtTK7Y8CqkUt8xKWlT2b2KI67z4uOvtW+fYyrSk3L +8Y/bmFn0qNsqDSgdrfNgSE0KKL0IpokCHAQQAQIABgUCVnQC1AAKCRD4wLBR1nz3 +PtzgEADXI57PL0ruaaXEcTHQRMRrvwULTlH5P3/tSAFCPEaMCCcXNwJEvUZtrLcY +6G+Wp7i4h8SuHDV/McDoVBZoRFdN7vKaix3UFzoy3X9qen5nlu6+d1Q/iS4Bq8Xp +D1M34UJUkfeEszNmy47uTnlt8e77h61iR7ARyYQmYmlKeL4uZMyW0QMEG8KRT68F +ZWfvYxxHULJP9r86iTNrmkBZAVq+0WeYOraQb2Iq2mMr+yoyXZMNAEMi604nh275 +aYc8vVT36+pOfOzcUwM84aAQz0nczUQxnCJGwiB8vK0ZhY+kzpnZf+bw1v9xKxAd +Zq7IkbTMI+cTWdNUPDXqec8oiGCoWdEyVGXzMBIMGnFaNYt8MO8aNEFxRROM3y0q +8XEn1fd1e4hHV/AYQowmEL4GyFWSO2T/eKXHCRCTV7CZHnpMdFV3PLmvFwvvLbUS +lGn2tmYDBPxfZvwMR+kZt48NtWDnXEN8Wr9DX4x5y89zPFSoqqiMf4Vv8qH2KZEO +PVVVITw8oMX4Yxv33TGyfSTZqJfbly577ec8UBossu4u0JbKhV0vusSK8KCovaa9 +2eh1KWbBR92r0bSXytu0i59LK8GH/yCpnIBFFEWqvTwx1MOc5jZ8LlnbvHkub6km +dJybKNrsukm7jbfEkjvQoW4DAHCIdfAFSYA2ZQljn3msrmpepokCHAQQAQoABgUC +VqIRNgAKCRAapxaIHTtIPGJ9D/4pP6XjMiFRVs3ui/LKkYlF78bk3OsUeEPPMyDK +c+xZenuAnsXaJJ+MYzMzzcz8EtTEYLSPW6GJXGgtlqEoF8mL1Ey3Eqh9vjbL205f +BqESWwjjUvs3xom+0bAb8Wg3XDREjVx/0Y6ZTqgHeSHIOg1++HjoAkruwZjlmCwz +LE7lpHPIukXd1to1I8LyY9YlPRS3P79dZuaZtyK2/OGObk9jrsLnFn8ZiJVyYJuD +/VEpPzwRQI8q3zzcjdsaRLI29E//h9pMKa03W7hhO/ojAlbhwd994ee6vrI7vnK9 +y2/8EWI1Y0KLNCMToPDw2FLhZ2HrQMVIdNwAOIzmNsgcjIXPiRnf3DtgIv5WR+tE +/QKH8uKywJ++xCtrpOb1qteVw3cfiqCMddEyC/kt0qFrs8AvchO8H5tKC2XgFdN7 +Y9TC8UCB6QWcmbUV0bUBGd7G5y6NnoqwoUINZ/sijcKXFp06d4E7GEK+zXKKvoPZ +86JCWaylUKukUmux+3OoM47gRadELLej92NKEe6oCLFhkJxqYYUefZEne8sa2y5e +HpYRpc4Vr0FFTbOzTZv7RcyO1e9+mA288tgv54FaPgI01upEeRqZ9qcNKBZwzpmG +LAcpepc4vml5oPN2Fe4CdRz7b3Rn91zfeBAIiaDRAfKXhL/fqkTjit6TwgTBdWVD +wlff6YkCHAQQAQoABgUCVcV2ZwAKCRD2chfGZh4OHBiDD/9f3G4mEcxGifAPgn0T +3A1qxW0w4n2eFDTiUnqzX38vMoS8L2KtCyBrMY7OuOXFtnC6dknwmxEcUrmCM2I6 +ex4eQ0zhNSa+bZx4Of6JfANClPYPeKGU9HkkBKTMMSq8+FEJxvkx4XjKJFkPorF0 +BGQU9uObMH5IgCTNwRIi8AFgAYIeD69JV0P10AP+mn8jVZnMWhn9PcJYVz5Ipep4 +ZmO0lqbKt98DWP2MGQyKPnguWLruhxUxzuYJ+UapIaZV2MWQ/oJW3U6E1ngUm63G +5rUI9ZmKXZzP7CLaNThhuU3qcOA96ix2BrTJPkvoBByjQGb7yIZCj8vC4JlXbGpd +SV4X4P8ydqYJZrBoqaS/loJ2dOEBuYdDc039DgscPU4dJ8Tv2TxWDWXkpjzsO/dd +W4neynmWiC4eH5dZkDpe6EyWrUokpulLhetTlDlkjjq7ztxfd76OnqlkSPduTIfb +7m46dy5eFvKMadCQxNxD3lYj1iFCe4vAq3Vsax7OLgi8E3aSDfMZxLy11YxX2KK/ +g6Re/decgd0lTFUdODmDGojyYqnntFRaxKcXwjkDENTO8h7mQ3LjP7lvywyIxYkS +GDCJZuCXj6hksG75OB8epNXhNGC9Nzq40D9pXyIEWA+JBPcJpNYZDQXwz9KPy64g +Gen2EWN6f01XnT0aHBOlhcfxn4kBHAQQAQoABgUCV2a1pQAKCRBtcjpnRcagSRPB +B/kBlMwHGriefOouLmczvUM45H0faGSKc3nhvhge2ZrrA5otVdSjI7xSEuOmN/OW +Lmx8Xreb6B5bvCt37pbEs10nWbawLkcNQY94DredcLuKHdKnZZkmNGJo9FkLg+BL +kSSe9EH3z1b+EkKc2HEGaEydRlzC57X10YOva1Z0eyqVjVFgDe0HC0oKx/2uRTUD +BdKxmYr8v3WjCTZDJ28kHI/jdYJliOzofPibJMep3uCjNaodThezadKnCZpsksTB +JkmWxD8w7tw6qlGT4pw23dXP2uK5lr6ZRStKV2Bm+vdh9wU9I2pSN5IhAx5T2K8O +23d9s4yHzRaJkoc3zp1qqaSIiQEcBBABCgAGBQJYXgUbAAoJEOjfcRDDS/y/REUI +AIar9oUG31YjojIvzvnzTJf+k8A0+BYy8Nlm0XJiYRS1NMUPdG3cIWS3+ImDTsO7 +M7ByNPrDrzusR6EjEqstspznTGt8nLwYEEg2Y0NDHdEuvM1oFS5eoLKBp3mIqy5l +z3ysZz8v57m9zaxr9wHNI9SIqDBBor5VnYIyi8758ER7w61c2u27BpTIItPULRno +nZ0/F0HZpYGWWuoenE7uIHwFMHmmzKedFOyz55SYmxlssY8NVXFE8wFOnMO4XUlH +mG37F0XFsw29otCu0lHjB/gknh8610BUKYCdQg8G6ztpjPpnkXLuhA6RBqKw5Al8 +2GErud1Z735ixA54AMMNsX2JAZwEEAEIAAYFAljb0lEACgkQPjqY6bCvEJC8QAv/ +f2Cc6ebm/aFXgWrVeiGaaqm0x9vg/BZf/1sjbTpYPgkqBscGc6Zq7LCbax2YZPK9 +xTorhqHJfTiQaUrwN2XR2sTumBslgyIIkq3H6F5BWg2KPrwQR1P3CeKpJxLPF1Iq +2EOAVte/MF+KOxcu0OnWFjb/oEFVDRfYdgX+bIK1PoItYqFgL4sIz+rov3AsN/X3 +2QohNnnPBPshyjkDRz3g02LYhSjRY9NpCmouUeEhXjz+UXyXq1mfRxnvVr/0uN8T +tEnzcTqnn6I1DdzeWnYOCgxydBUAlhIgsGVuUStAVIc3S2WVJp/Q8Zku1d7YfxgL +xDcLl7tBD8ckA847+DuGPA5WKhELEiOHVBTOjk6IgzgfZggLGGoCZaOZ02w4Gdf0 +KDyiYdqa8MOARtbnl8rGxJOSPriSIqosWLEdb58HrLdyK5omFOiyDzbnTLimO0xk +M54XmGgm5oZUAPO4oI2AT+DaGYkDS6J0e3XeJss5vNTIRyycbEcgi71M801kgTEt +iQIcBBABCgAGBQJYjJWNAAoJEHTP/q8EUGAHde4P/2ly7QkV9CIQsRtdu+DgVWyJ +YQN1UTrkiFa7Z4VYEvdwBhvCc4WNlkz6B1A2z6kEFDAZ971/Ws2SPdFbUgu4V4DB +wSk5q9avbh7WmLN5Pn1lwbt2VD9ooYrcz0tbqHy3JwHV0TPsZ6xz2l2qB/9xXaN0 +QKFdfAj7zm9CEL8OPsi4sXP+tN81t4askBWWVyziAQukLQKIdt1RZQyNj3it6Rqd +VXZJkGl96lNFNchVHy+W0hVXbGLaLcgqHRkX2DxUtl3c4oszTZdKBSVB1/8U53RI +4VHx/3eQ/TsOtrjgW5adZdq2Ghmi8o7ti1WYq4UCkNMHKmJWJcAu7+nHHztkFr9D +R5y5uUdkyTBSueaOAkWm1R2VKYG5fQ7IU0hD8p2Z0wt8RHe449DD5TbHKxlZ7sAm +8ozK2DpTZReWbwHEINVaYuSDSirCV1GXK9cHxulPSgPyZF+idE1djrAB9dfrjejr +CTkNhHHMTvkxfscJD1sEU0hddWw6LaTo73HN1tmVk2bDvuq1ZNylmFf8M06zbxvG +c42SK2h0FA0qApZmYN7rVXsod9MVNUHi1BmWCJvpeUKJ7Xe4tSOqE1lFk4pPV/Wh +XwklniJqrzBUSd9X3wPJByezEUE95oqQgTzj9vYIaiLghUPIHYKyR9Kd0Oqppofv +qyy6vtWLD33kCNdtL1XmiF0EEBEKAAYFAlltKmgACgkQUNG8lUQkh1d+fQD7BMN6 +WQ8nDFz9CjALnxu4cVFjVxHlEH48yFB4A4XqBx4A9RxXiffSnjiBoG8nLL/tW4lP +UuPGbmQOL5sTPyoLvziJAjMEEAEKAB0WIQTHVv0Wl3PXd8wVnW94qK+KGEfluQUC +WXGA9gAKCRB4qK+KGEfludB4EAClN/FV7W3mRKs9Q4nu+7wZpx2lfFDStBU/DORf +6Gj1oBLgSomBX7sV8ran58NwpqUwQEg25Dob41hvYRqNti93AcxDQPfvZDbuQNu3 +G9fVXLo3lxRx1jljS9zKqA9J5zaJPrjQ7zhjbiBjYsHglkAmXGn5o8/bupx9HJD1 +BC3/6mMtVtJDkm/9LZyPK6AM3iUqoAU7M7Ex8PUZFqfzJ/JmNK1s+0rhgfdnkDJK +0j030vSSji5C8XP+PqdO94LGMwV/1I5km11dR3orYGfProrVP3KW/2na/fQGEkMK +1sSUsUs5OAnKIhVWDpaPom57QXei4ubRcasjy+rzCT4XbxdHAucq+sc6JslRsjL8 +YqgZ2dLnUHf1ozrI5RlBpmNjc+C2xMTx+HcEyhg1tIHTl9Tm7UQf05gF9cGO7uhb +u87p9Jk2NUvf57L5xEZST/0376b5oCWa5tFJSB42ea2n7oUKLBeA1j2mvUmGrSJ+ +dfmw+cXJ3FJjJxCgmo9/BQ/J2kvctAlk+oO+ssyMpnSdJ9S2J3WvhcNMjAErISsT +Ewn8iHu9jto/4W4cWGUl1KeWxmpYmLoVPCnfcx2khKRc8u/cNRjtIMn7mmtzCtt/ +IXd7Gm3V+//2CPVCkdL+8Lzu5Xq1rd1AqAe9bDDMgF5k5l+I9SzRdHv7r2usx84t +2+HwmokBMwQQAQoAHRYhBLu2s1IfIDuxpnZw/djmt65MKKD/BQJZvVeuAAoJENjm +t65MKKD/PrsH/1RSW+aiFgr8zvOEPSAmFlhcTWeKaWdeTHfhqKgZvFg+4WOCdVWk +crFE0YCsc5x7vqcadI1ZJlyEmf6tAeEljoBIQNwI3eA2RiqZQp++C4ktLO7TRr2T +fT4cNeCajk+QQdbrAjSfAzXe7q/wEqmNikO22s1JdwDHEpzL7RVrMzY6QP7eZH/E +FXDo3a1WEs30qhjF0UQP4X8ESa2hxaElLgJCQUjb/yQ6yFme9ltt0hevAErkL37d +BPbg2I0+A1uzDzXWj1J6AtcbBcvIpeclvHYhAfVJ3qDPzOrpAAKo6ZLRk5TkO5Yf +a92aZ/PRFzN6SGmeHEhRgnDJZ9eHrmKc3eGJATMEEAEKAB0WIQT3M1oW3J029009 +iV5zN1gT9dkmmQUCWbzMrwAKCRBzN1gT9dkmmYfdB/9uMXZ0AwgXb7NFVI0jfeBZ +gG1HcV6uETGByqFrGHPhFdtsYql/hrlOAtQmnqaMwc4G1XrM3kECixSowJPq8AN1 +7ILxQQ2CgCqp67/jc1TWZ07dCY7R0bFIejHuOX38ZCU9NyglWXab5S+5RpCPLEFg +E0A+qm1byBGRAivPykmE2IM61oT+Q+ylqomyLB2bRFzuI/qSqi8W7H4zuoxN7l06 +LkCUxfelNKuZchhAXlin/yLnIIBkF8U6vVOZbmaexFKQ5UAKFQaZg7Hyx+ErTG+6 +NDIuKBmNMDV6+tfBGVAij+PCF5SoEHK2Ei3Ll38nJdyO+DFY1UAp/gREY1/PBFxS +iQGcBBABCgAGBQJZlYNgAAoJEKes0Pa2YFS9mPYL/1zExS9Jv3LGELT4Mtj1+ISC +K13MpwncJEb5fDmU8TdN69OffVfwXgChtssGGBvzfmFTYwQ4BlOpsExh8ohAXb6h +p7eu9nQ04LomJRV0RVSgTfNlPI8pof9ki4g+n99fJkHALZcVN0DAMxmAS2Wx07xA +TGGiPPMO6kSW96I6qxz3GNThEA99K+roYp90x7saNVGLp51eK5Jvufi2uqUkpFzz +sgdegdqS9JMW+Bz72k64Pt7qpImQKLkCeSrkO7uCQkOCZ6i+yllcnzyAK2VcErHW +8Ru9/HNT5qd44z4878rKggQcglGHzazmPW+4z4PYdsn/MGZwHTZyoj2vtLNuL7/8 +G75WkfFKXB+NVJZHRB7CUJppqCcy6dkcUq5jH9pQVH2FYXJhcVfxoFShmabYn4WK +xBY8siifQw0e201Fqiv6qsNdkv21IAPTfQ/pd0mu/9O3R6Kca4sOLTFsQU4gamxl +cuNusLZz+DQES8erT5WDtH1AwgG0xDc+46NV2zB58IkBnAQQAQoABgUCWa7odAAK +CRCNlwXej5jBPOGJC/9v5AaHBgIe2CWpS95iqvusNCTnxfW6mqfqnmaGBPMQlBgt +cSwrj2l87O+BetvMTCSRV0NCYw0IsiCPviFRA/BK5YGON/ugTvNvWnkmfA8faJ5h +IHoAUZ7AQBnipmE1p5A4rjBQxJZ7FjFc5iDitH6fblqUYiSGfBTuvdFrVeFcpjrv +8hYJlyNGAcr54kiFl45OPWRHEe6GhLxYzXiZmFgmKIImyoQRlxvqxgWKk8P2tcSA +Mpf8zvWfnLGfrvHw/PdOwuG9CKvGgjS+KH8TPtMO68IE0qBCXE/mfHOCiEIy1S0G ++mgS6P5OXhqXklYbEVqUb/10EsGRSz5HpA6d12gVPp0DWpUUFLNwCIrifwZzvMZt +oXGZTxpwmlvL4lCgEtAKTrTZto8dZxFo1rAeWVQ4D5Zs6HzYRN2A20rEePjb6oXl +5VajV0+oJMxwQrK26RMNovUmODn8jS7q6dC1PVECZ/XbBhnA6hx2X7+y5s+9QqFh +mavFSjiFmvimWhMH6sCJAZwEEAEKAAYFAlm2gSsACgkQB5CRAhXkooO/awv/XrwD +etbYyyPdwmy9iW3HFLWR0vgmJiel+0yMJxKG5k8gCVZhyre0h9/lCL9r39jPNJZW +v1+hzjY9nh3Pe8Q3k0cSrV6uik+34nLgyQgFK8b4IMigjUmSKXbxjbNo4ExYtB1U +Q+atE3h9CduB6De9cl2l45v5TPtenVw6tVkmsnPKxI1zYu2nMx2Naw52ZvkXI5VD +SzG9gDAQt53gZ/+/glV5br2H4/+poj/CEhpD2YDSHZJB6dY9Inwg5KrxQtrTbb6s +PpHVLnz+kVFPXyhsmz9I/ut/FryetNijajOI8QCial7X9HkTejPH/8f8o543lXBI +dXM2+klg5Z1yumqcGlgyWzONVmXzGhkX/d4x2GOxVsrOBc49efae+xqBNIo2hnTj ++RiiORX00ifiqSgaTBOueVkwtM8QqnpGEsAjNcEHUI0Yy/27LmOTXKNYWabqotY/ +lT2BBxc0Ey9jKP3OxeXstTyo/RcYE+JmBj7i8/cjj8acy312XDOOG2LmcWOXiQIc +BBABCgAGBQJZr1h9AAoJENNYdQhsLzeEK78QALX0eLCQzbBB311E7O646mNrZXJf +wPm5m9n+h2NZMbXdGjFbf8Gg3grmZp4HtpADszs5PuZQy5bMsI4QqslIGO4fLXaK +mORndkh7PU0fsJC0GGjmBl+9L+Vi6+ZfEnWD2BGRhxquOGovL1kWrg26BCD6hePm +C08DqE4qtdP1Be7teIAikEXjVEreJ4hcNMDj8gefH7Qdi8gb8YVWdcxsHI8WZmJu +Y4DZLI+4OGExwZ/nbpVQ6+Ky5c/dMaubb0Isa7HxTQj5hhoKbPZYJ1/0jRX9Cwsh +wVkrUB7DkNGpbVE6x4orZ8f7xtJBfO+EYiwkTFGHMeimj6P65SyQyZmkI9V3mTVa +RJJYSBN1CXskNL9ahPDNhl6lJpMoeC9ow7dR2/O9gR17UfkuC9KsVufvQSLYwWsH +b1fvlPsQXeRU4QPzfykZS0zkJq24C//DTKcyLO80qINAw5qNfl0OV7UyWsp2ZMph +eNZOWh7zQtqlvIjxiJjnN9nPvqWhREJvQBgNIZCrQcf1xJz67fbqqilY1L9u+hfx +3ORVcUezu/aF2xaQZjU3RS5egzB6UwNEazjVtb//+wSsZkvxTUVQexuYfqftmHz8 +3jEySayxvOEFvOTQ9xeK+65Ll/KMeZeLLT/SmGTSZ2UWnrs/u0tlTBdzWAsFCkql +gmQyaaZGfF1m6m+aiQIzBBABCgAdFiEEHMi/PbZrIadOPlzRvyTBJMDOhUUFAlmQ +oSgACgkQvyTBJMDOhUVXvw/9E9FitqdsrhJADF80N8+XrUEBsS8u2+F8mPnfnKWq +d2PXG9qzUL7fegFDa9rwBcC3KX5vbPJq2rK/iu7a32mKNgZApzucfwkgxxvU9ghn +qBMrMCbjbhHrrmjz3HvyDg+CymbTRFESNNGEPyqSSjFleoqr1EP4QROg9YksVkVJ +U/L5iXJmXOUMvxQQ2FGyPF/78XbddMtOpGCMnRTSmM20wa/Lw/TlohD/vlf+W5WI +m2fjj+eUY3Vl8EbaZ4OVg4jx9/Gf6hrGo8zn1wj/tPCw3LF5NHL7HkSbORukL/9h +x8zORY1k5XQa7FsffT1Q3E+TGC26HN/0jTKuGlxoviqRs5Z39SiH9K4jTgeCUTMW +9ukd9yJDYDQDR29m3YL13XZ5iNrpbGJ80YCMLoaa9E9gdFCSuM9FirjZ8v0zMaUO +u4GnoQaPO4pY4a7cSbF7FBdfum915VRZx29Lx8QVwvdOP5kLGAgUmcYtoJ1o0LYo +8HxDnIdNQB0V2EXB/s6ZLPUiUvJM38iSnFT+9bgpKoXhbAPAE4wVbhT4z6ixfDyh +H7CHg76CdzjTQTp/ZBCpQgbsedQOZCdLhAy2coIbkt+Yxn9J73cCc52S2QnPGn5b +nEUsuEnkSXHmKNTQQ+9Erjl9sw2pE1aqHxDVi7fHaZHCaNXMeXXg3bfsZnAVOW0N +BVGJAhwEEAEKAAYFAlnFfwcACgkQkI7Hy9VPjhT6fg/8Du3FqGM09WwQ7Sl3774d +LpEeyaaIVNt19gjfB0VD/eB7nd6RtdWT1OxGweHf2rN6q+xstrpIWHdRN2HvF1tw +DEMMIha12kq8W3uqgqe6firaZhIWwo+4EiHYrHog9zFmTKNssRSPNtoxxy/waDxd +dvuwwBYpSIqA4kq+aApww90DPnY9NQsgEDlNcqRSSAj6iAQwDlwE/Vr/uJdH6Dot +So5QpCpNGtP70qVDt45lLJfTpI0VAKpCD+uDRQ3A3srKkSNgABHCJaFYj/k0Wc4u +0FEoWviFUoJ6WdDVAmWItiqhTMA1vi3q1CDbEpGalNvWIZEzCxDDB4SXUaDjgeAt ++CUZ3i3oEFlB47iTH24oaYYz62/htrFsZzKDLeipYQtHABmdItJYiyga7ARe40U7 +ogwr3pg3N4I7Vjlo7xRu2CJ7bWS7Eo49pza6O5pbO7lzEoqPx/bVCb8PuZ6+umWG +xoKx8oGUAJnYlN+3KxNyqCNKMwq2HEwDfW8DupbKt3DeRFBlMbixG6olbn2hBbMw +Qxlv+Uaj4D0u+xExMZd3NXT+VAZCBYriPIiMZ/2p17E7CIkvEuMP+MB27Q6yNUW5 +D62kuktJcZnbfx7dMSS37ifj+z1Di97Qp/PofQ3y7k0CAlfUm0bsHtQWu57GACOy +bHKGn3GPRBBBC/Y8KsQiCkWJAZwEEAEKAAYFAlnrs1gACgkQY6q4Z+HboJ3wgAv8 +DQyvwNVPraFmv/UAyyxsKs5BaWe3aLB6JqvEx5oYt3KKwe1Oc46lXQgqFuEBphqZ +Ih6Z+bxNcvDRdhwUkbHTBO0s/Pz9uwPml3km+RC5jZLqoHibtTwRSmkKXiNXUN+e +1Z9eTSeL1jnOwZSjvx72bvC5grpXHgogB6w83IKFEA8GMH6hdnLMPejeQrtHefZf +3hGuMMNBdgFNJ+orxucszq+5TAqN2R4GIAKSTIl4hfpKF7d+PB1ydethdYOVjSmP +6xTytfb9KuE28b4/WM7DMwawsBwagT1Izfcr9UkazBYYTiTMRBZdqScYgu00DE/l +ehVSB5iNSGEgtCm0rCGcyy6CpoZZ4vkpBTgJK3d8xgVgfdpXWTHsZjDmc9tBbUHL +wLITq+A9D/dlk/fOtEsKsXvHRltKVl1xx1Pw0Cvy1glF+oid9/pT0E5lvhAqDcFi +Lo49EQAcn0n1D/mc3r8d0mPtWlAb9EkwUcUrISgvfz7iPJLzWNXULdRlIN3+x9KY +iQGcBBABCgAGBQJZ69whAAoJEK1RthqrYlRCz5wL/0ClSqTL6boLYjn0Qq9UBLyT +VIlqBPl/LHY1bDVGKwzX5ypy6UwWN3RGLyXgV20MlFkhs9hY0DoMTsyH2lkx5YaA +CwqEl1T4WTFwog3kQ2mUNfZ+p++YJewI6LBJ+x2jbbAiP9fHzvgHCBhkeKijsgq+ +PgQMV2u8mnftKL9E+yj+mDZUPmi1ukZ8+nz23gsHk1P4cwb+EXbn0l5O2oWwkDb9 +nOAj1+mn5IwB9t2DtlttorsFDZHNvvctkMZjpfc9mBePHXQPAD7/Irkm0QflrXLT +noJrGupQ0AdMr3CwsdJfPucW6bJG2FT/dI0+knSVEGF+zY82wGJ/ASG3lZJ0GecL +ZxVsYhkcu4Nf8lUXehLY6k7MN19RB3jBpVdX60kPgEFVHtLX523Gh1g97GiiaD/4 +SOpBBLZukUPaIRTp9NH+VeTGlSU6Uj9gIJHUAd3FMsKh3aG1yFnVOVC/Dko/cmVe +5S6R06/loVa+0oML7ASGlIOdNf7vkn8R9UrfmXctIYkCHAQQAQoABgUCWepf9gAK +CRCoWzrmvDnX98DTD/99XphnTKqAT8DXA70xfLL4W1GTx3yMXbFCb4n+z5ak8yTN +SIIIbRuEAyerseR5+BvH46pq9FF9UEf7RG2PC6MWsWDsgT4G2d6JnZPbBS01Ffwz +mPuXmzMRkgKWCD8N+GZ5fmdga/aKeHrB8x02w3+J5+X6QhXi6X4CF4XqLG2doM+y +7H3gh54JHqC9LMrybbWJAEwhUAhL2ZH5j+5GHCd7ea3lV0loX04ZLyx2RvpCsMSd +o+32JhcSlJs93UZqHItRXiN9Pb5JjWTt9NoQ5rlu5cQzI1TMuIsQTt5auLtTvee3 +4IUbeuBJrRHNxvFzJlS+dTLlF+cq/E7AyM24o69pb8E7H7y9IHNnMp2B7w5l9/uM +5fgxvXqo31u6awuvl2rFXzW04iN1ZbEy1k6aUO076QIz7dmuQS0lv38GMw8Uo6HM +7vwImRYRlL82iLWf3znqmqYdsretuliiv9sbkYcCL9gohjU6lYJEV/AbUbQ/9F2a +FAlsNOcAabMzR5XKam+GQnQMtWFT9qPTMxhRamBosHJd6A4Tg6Wp9Az+ntj4BkfN +NW3aOWMaMtVC2btl7lkwhrO5+PLm8tN/vbPH/2gbEHPTy0rbp4J/G/11+kONrw7F +O/6LK9LmjrhUdy2W7VHY4Zzga4jNaZIs4RT/TVaY1I8wLMHtF6sQxQrWw4q824kB +MwQQAQgAHRYhBL00xy3IQdm6k7BEFPPf5RiScF6GBQJaJ/R0AAoJEPPf5RiScF6G +wcMIAJUMx6/l9BtGINqsZz3U7p7EwQwioTyAvpFQnHqPjn1Vo4NfW+NqUAaR0ZE3 +QqNQ72UwAcSNCyO/ixsZHNvdQVTU/6eUHg2EhUjjkEoxk6jWnrkuzNknTkIVKIlO +c8OPyUi8J/JPL+5ZR8GZYcYGiuDmcS+sunu4JqpdLZFqRUthflSoojMrdIZr3RsE +YMYkDcihywseMzULf+IaFXcOaulHzIr3g7VQjEHaLb5az2+B07xkNba6AhqcAoy+ ++nrOBzMpGcotrclxf3d5U7nFL6tRG7O+rs9et0ebNRC3httG92duS5cJ3wwlJw/K +odg4Y0/zkbzfFDPoqeBNFynAXAaJAhwEEAEKAAYFAlodZcUACgkQhAAaeS4Vp0lr +MhAAmkZ2Muo9G/iEMiIVIixXhrfiLix8gjA4cqlCoHW7YJvdJK2qJjS0LAcNX0uz +rT5WoLSvEWg++YkkNokcI6e8et2sCn/icUia3D7FLmMXwQnan8bCaESXoPUTtkfD +yNqVvyK3ibjpfOzfh44dffGt0z+cywStcXtpa12P7ISpV0xAODx/h/7hip0TxOTw +w0t97nUx5ChddaS1+A6euOiIRRyLc14brk+HE4vCKdISZSgu0VOi4ZZB2EdJMRwJ +ZqmHtmA0yyPr/6MhBI3sAofVTxMsUUsykVVr5UHAbcAsxhigq/XpgjzFZPpDeH9Y +6+Z6hwG4k1+2ucDyjN+sGX58uQLLMYESVGlaEHDxaH7/msgkOHpMHAXVwJBggnak +nOUDmlj4j6WsjNP+/iSASL3Pw83AC++QHIcDIaJi/Bfl8ebwdYEs86W/sSK5c5nA +HV1sAQ2cANlQ3fjmIY4/PTZM78+QSyqe/T6/X0p6a2Gm4w2HcJjbWtKl4jXI33JU +g8V0qBoxCJHlFE4lsntNmBZhMzfY1VZHwxPtOmjgXZQeydTImaZNFm3SRILh3KNa +D9RDVICfF5alwKhjsJJcY6Edwm6yS+mRyOXQjUC4eD2RFN5FYuUR8LfifqJRCs3V +Ihh8mmUci3TiBd4c78PpEsQwFrlVrRkuY2Cf4FKtsgudGyGJAjMEEAEIAB0WIQQu +uvpII3MSEhnbhueozb22JNydVgUCWk0ovQAKCRCozb22JNydVrWSEACThYeAm+sl +q4tBA3B/JKmBOgDx4DywhfERH6fb17eiGeXP1sAaNYre7RVMvZxYKDdqHGF/DGfF +3ilXLZRc0IJJYM4vcf0w3MOSsMTLcoQEG4U3PFAi/GIPsFHduAEOpb0vWBR9Csoy +aKbz9sTfJLKVtd96tCfImQjAcl2Gch6IloHyJ3DpDVRnPk7v2phWZCwKkjJq7cJu +RUmuTvzKzA/YLy+2Gpe91gqKylVabddU7HHjZwLZjDE1OQA64b8AbwUxvKRZa11R +85mg8dVZ7IUUDRU+PaKkYK1lv5Fcu2JUDXG/z7pL9yVWeETJEi3mgb4OSpSSsx6a +SaWiomIgdPNSBmMyufLY9lH3SfArnjMqlyJZ9mIysYKKJIk4KPXT904UWKmjZZzK +rkmIJGyYcZMhoqsyWlY5IYN7nihqUMXYCUVBLp45Se7aa3uq2lacl+JiPjGXCX/F +o0wT1EjTHgq4QgqujEh7qfG8nKcqvJCLMl01sTydqJMea3lxkCDbtMKKKln3wr/I ++UKfoW/MtkMk+lSZGFDDMAPi6fiLdxujtIZej2KmuEgrpMUK3ZDV0s4f/0rbrREB +dKZhXYlNAN5jtWHTiXL/orZJ1TNyxEvZlsEeNJgjqsqIJRl45wvNMMN1Qa5And15 +j2cq4W0AFbBN5NuqbBCvnw5yevOclmT0rIkCMwQQAQoAHRYhBC4USQtVKN9Xd7fi +5SlKAiPzVvmIBQJaLrRkAAoJEClKAiPzVvmInCkQAIXgEs1HVaL75s8vzHnNlDAh +XVXyEj4s67s/hlWn7pnh9F/az8KQV4TbuKr5C9sP8i5ObHkzxBAyv5PR2H9FrCUN +0L339lhtIzoUSd/z5jrW0uBf4ycFL7OpoPou1Z6YsoyMmX5c5nrWfOApCFEXr1xk +sXbuxsUTqPslzuq/8jp6tTupjC6oDjVo8A8o/oe9euOMmMd4fzHqamPTPOH5F83Q +1MMX0AJ+rU1/eG3Z1JOJU9PBseqpYLC7mD0q+PBCgaBVKDp3x720tT7DAwCNEKKh +XQWPtq+C/B7tEmBHHtVxaDSKM29uCQaHv6VYgCSucT1R5Ms+o6KWT+Fy0saFh2Eq +5pA4ko0XIn3KfNcWejAZ2MoGuEwbSxfPUKl95/u4Ht0ipvtLKX0KhBRp0PjOjOlT +/y1Xy7ZQqbsgSbxPQs4ztJddBhEdGiVeSEmxmfpteUKYZwMUGxgR0CoKQeSswZ44 +qCEwDvMJqO7cqchggl8/xsEvMEJzshv+/WNmoL6q7FXcRkf21sJIQbcCDWBN2t3L +fV7EtvWPS2akVVAXl9snSg/urhMdPFTKHIXbdTl6EnzzAtouWFfJACVlFP1lW7GI +lT3b5eOkadUfNcH6zWlqOkUqcxBUlzXeSo5LPyxDgGzWnZ5Apf7boJMs0LiUs3eU +9OyEGvOs0rhnSyIo+ho6iQIzBBABCgAdFiEEM0bsjTTlyHk0aVDB2862em+ZTW0F +AlpyQywACgkQ2862em+ZTW2m9w/9G4Q2AO3rtbdnMQwT0Q4O9OFrpBLioW0FWonZ +g8hjFTTwlBtSNcg/ve4aoUNPX1bXb2f5NbjM42GLlPslpLr4NJugTQI1aZBIlTzb +2Uwc8EqsGTEzS4zCZwfd0uW2rRiGJCgXVR2pN0jLbnohS3v3jjGLxIBJ5drjafAN +8fSE6H+Cuuw2IX4tt7JMPpuSIt5jt4wE6/hoPRuZqHzlwvm/pp42U+t0dLMTGoW5 +7m851wrlfljeZzb0XCxvHXnZm7axaU4E49KYqwodTwEgcyhe1l1RQNFfzUkSYEnB +sp231Wp+eJtsm4xm/c+XcCK7VsqTMArs0qaa4/YBz0fFwaVALmi0tPU+UToJgugE +r37c0+0Se0Xhrri1UkCt6xHxvAR75FdsXs9e1d1cC7+CyYMBzFlRN7qLQMVI6Sab +eBWSg6Wl90OSS3NPK5ZzgCwiH09gI5szl8Ie+WV0T5aMPoZ780POAfCn/KqZR2ok +LlDGPVyyeyioyLQXhuNYuyliZHhgBW1dYL5DZlcXZWxt042Ao8Qg4r+6MMV5ZbLi +Kvp9tCufCrk9dVOyRjQxZl8SEcWgM0pocCzhC2n+/7xdUuvkkAN0crGT7kjzpkz2 +T8SssRMI50ueT/1XZSb0+NHe7VpKpH4ML/kQzQV11Uh1ReQE4HR/uoE/liS8EzWX +Fbch63SJAjMEEAEKAB0WIQSW1D/Krh2U12MtIUHWnaO35Ai5rAUCWtIEgAAKCRDW +naO35Ai5rKMaD/9O85GH1URL/V5H+k+t9bEz5+Lm31Sy5icNicY/r1Ho/6ZZWgOU +DuGNPsdG1F7/zgdoiUtNPOLNZLrmsWLH/iuWgEzJB81oCi1pnoglj1vG7LlnFPHz +8SEMr0yEPJIkkO6cljUpdXNR/nnPlCTBqNhVD+oDRKx98xjqwRKXNm5qkmzorUn9 +kkU4vWWTGh4ORX2nyqyem497ck4KKvVSNBpTUCLEHmhdIbLIbPE8oX40MERULkr0 +W5begCaLGVO1vrTidtrrBDBCfZp/H8KikDjoxzAJrbcZ3yFgEhD4KtGKMPwN9HPJ +VdDUpQVZpOy/waVHhUdf4K4xCPW+HYjDVp2+/epdhUmFzdHD4tpuLNoKIBX4ZUoL +90PRkWP1Ib6q6f8TwsF4VlFo1RHx1JeB/9J+ReTTF4tTgc3minXGf13j9SoGleLH +X24+gJ9B/13BHTjeTUrO6XxkMx6NAlbozP/zEfkJDWH+3r1X75NQLcD7g2RfeJcF +7utoLteU9xQSDgGA1oSwsO4rG4nJVsixHbuaQxpky4Q02jNFK5EYLwgCJFvBILNM +yQFxuOBAvSjpzuFt8sgo/RzUjvADpYs8LgxzekbYD6axkzheTlZ8vth9MxbLJRL4 +ofcGxQV8x4hDSbLTlk1xcs3FsxfjNI/+Apw9KfclJCCKqAHjGGjFjLTV/YkCVQQT +AQIAPwIbAwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AWIQQfVu3TB0EEgDXawcXs +V7Vu8MQxMgUCWtL1OQUJDKWP4wAKCRDsV7Vu8MQxMtLoD/9IlROl0y7gUePkzZ9X +oXxmQmqvFOVGitVtrsWDbmdHUt5F4CAdOkI9lRuncfLbxaD7g2Aq6KAz/4UJTF2D +IVjH6vE0hXrmgGDPhodhL0SPfJTAKGCUSQlECwxrpXIqGukn2Bd2b6njSSIBebVu +IP7UfTlt2VVKnpOSstSAO44ByEo6XlwV/Gg7kUsdnCLU2iSX3ewAtn+VakWvwVpN +MMjO8AR3bBVygi2u+B+r0vf/YA1IcILfYNP7P5p+/S7lRZwQ8KyRnTYg8fum7Zj0 +RvKcpVgOPOlrDz4yXFixCPhNMcFxY99etBk4gZSPs4DKhmbqr1SfZHxhSjmNIlxW +q9cA/AFp//NvXazsrMQ5rpdZRYgix718lGgC/HUqUWwhxx83c4XRTueo5BhEIniH +jtAJcLo9aU14xFrMgjN29ipeD6TI1e9BbyIyMK8B262Uf+akVeyGxvxa/L3Lt0pl +yLp8EZh+kBD3AO/a7nQiXMVFFOFr87dHXdvWK25f5YEIYchwob98qrwgaXhH2qAT +Ovh0RMhHpScnqFt2BcYgyzXazIsbb989z1hgBYi90sryVgxLGPEuULrDdzYDDgjl +vMqJs1qFH1PDsZ+9pSJCfoEfaICzgII/xYvTXCUZAQODxEEpDmeKg9OTZbmJdaKe +fWHi9VclZKxS534oW94qRaE0MokBNgQQAQoAIBYhBP9wjNFXJHqUtBMOmXNmolvd +N4oOBQJbEEOaAgcAAAoJEHNmolvdN4oOl9UH/2pIb0mPShtFgPr2qu5fJf/1qAGv +uAIW/cHkiCTBvbTxgWCUONWXc+IByAIpMSZ8BmuwWLQqQfAPUrU64HEVmh21YFOD +z43m42AyNIuZnW8oWmvUk3b6VvUWJfaGigK5qrGoH4i8BU1H0663eWx4P/AZ4kj5 +Se0kr3bcqHOuZWhzHr/ZHLZOXJUhG74dowp/NdMAG+7lOTRouVAHIsGXZVs/ileV +SIhdZUxj3wiHL5qnovDP3llyLqGT8Q7W5dIpoYtIY4NwK5Zs4euyW8+DnWvKBWyb +a8WXGP8u9785KtKdHgZm2ox1DIOHfrDK5Sk37oaHkXnZOgxtx61nFc+6GQCJAjME +EwEKAB0WIQQT3e1JrpyKIE01Z8p8+EIB/rMgNwUCWqEpIQAKCRB8+EIB/rMgN+x8 +D/9L4mUDhzbhXpLrq4Nlpx+Exof4m7NMA0qhlr1rwDx9h5kciXny+O+KldLsYeKX +MX1GswDPiF4IqwKcAPHYydBCI5ZvrugN2YDDYViMKLjKaRdKXpS+XqCaZRt+IZjZ +J0xeaehnh6WRQo7qvmoZLdVN7Xx5dBpv2y29GCbR8mKn0pGt5GI+J0T8qQHd2jms ++gGboZXo66asrEYI5LRqcQrLdrk1j33ZU+bq/XSURhXRGINuYZjVj3AJIrintsjD +iSy3TV0FYSlM3rA8CQMMQwYZnfI9kqlxbgdrt2UR/3FaDwLx64k1ypucHv74phWb +kO3JQ7jIvIhHtbANCYLYS8JXt684oX65y0li7ULmYU086AShv5I8Lt1fXkTICmtL +ZjfKniResCndzVJWecseVPPp4hsdzPS0bSjCCuOmW9nNemwaeSObMILrG1ck93gZ +QNPht/+Awe72fH1XBw5kwxielhl63fZ/osLxL7obtZbcc51EwL42PlaWRuInHaik +DKPnI70xmimb9jrqU7mlIxAu3W030NRVUbl9tSwb6CQERrvQTyNq5cNfRJb0/h5T +PgsMQpuaABMfA+g4KNlSBfiDq/2pF4MVFEU5nc4Sw/x6e9sDc+ofwGwKbyy0bNhw +UBYHMWd1o5WMtA+wr0Y+OVPs4nG794P1O/UlOCZgTqD4sIkBMwQQAQoAHRYhBO++ +QStf6haubbXdIVKQ5dktk/I/BQJbhOw6AAoJEFKQ5dktk/I/5DIH/1SAQOQUkxc7 +DSiRQmpXDSuXol4nobbQ4nt1koa1UfoxptazzZZyFaMrX4Y78aogYss4hdhTjdLx +Qjhi1OQfIY71eAnXe6szpCHGPdumG2GYbHnUj9yAoMSLDB+yT1I5IDpzlZxCG7TP +GMYUAwRQHOwFPDlgCKTlPe+eU+vPs+dvsS7aYwu8+tLuk8Q4JpQqFRajsgucA62t +SstIqtuTXaSnwNDlEsLu4NMFyK8VfLXa+2L9DgvuSdFXJG6WLQwVXqiYAXisAG3Y +U20AkMp6wEGu6u0/Bkd5b8eqxFZZw1AOYlr5GQGGX8ZWnbNCjyjBZOPzkICy8hch +jW/GKDL+3KaJAjMEEgEKAB0WIQQLrwTMvaGhumGqM0CLQCOVSpq8WwUCW5mV8wAK +CRCLQCOVSpq8W68FEACuXnMM5AQxwUIZdc8PzFwMw4uEywCbd6yVAsWXKUQo9yfU +W6NCxHE5lUIJ+OZieuETB91a2QljiK7Zu+h6Opzmeael+rtQtH6fH3LY58qihqBo +F0eUcj9ew3GdKX8isQiWm6p2ht/+RSaK7uZdgIeNHiaCPnWONCi0/xxMCHIJNvaR +XUGOjei1+sa3D+o9lukMyJMq5Mo+QIDfrVOiP4QMRe0hUpNZANPfh8eTTGsT1MgN +rq/5xrVJrILipjo35yaQxKrMvtb3LOaEoZ0BegLK1U2G11pNgm+4s9GyyjyYqhDn +AMVJbhKFRAd18Mjy6hSVTa4ZMZLw9ey3OcOLUS/dyfmj4jbd4QTY0VkFd6zcIY+r +v2LBTqxhn0tj4AGt1pFG6VkH5zOyRML+/L3Is6N0zbAaksElKvB4ORZz2cSlhp1z ++5mCFKyyM7TINCyzTQcRN1MemrK6YIWmaSvhsqncMZI2NfXAHf6mCvaS3rTALzCx +naeG+kfUqEIS5LqS/BO9dO0jzDGfRpW1S6xz0b3k4JwFnRatSGLTQQDc+ZB/S6Qz +/5q9p1lTXM24247fTUpMZo33Goc05NIF42iUyl4kG4cx3VswNWaGEuiudqFPRqA8 +xMfEAGmJKYw8u45zS+ng/PyIbl3N1LhXzxoX0lLT1tXqtzfLwf5h/NwH688fMIkC +MwQSAQoAHRYhBIFVYkR9ecsCL5wSAcVXzmrZFhqWBQJbbUPZAAoJEMVXzmrZFhqW +XHQP/jBe9UlVk/sIxw+rvBitbuRVyHaw2PRvjNajmygcjZNCRD/Z0SphrXz17Vbl +3NLuP0qLOQqVfL2vvRZU7tpzgtrSvRH1p3w0eohPmC7uJCGiIzVDWZZuZr/0aAKh +8rNZ+Z4JTsbMBlSr11visAQ9K+EMZDnuFrKHi9eZu+yZZxv5l+zjk76QCcyDfdwK ++otak8F1p67/V3TRqwCaj/OV72XBB3h4Yu9TqgD26h9WBAB7ZVErxmXpGavO8x92 +VzUUt58mci4k67KAC7qqjpf0ROWCc+JUJ5KfC2wRyPkZuZKZsYHeHC2u3mWHlG+o +kH1qnn4sDEyRuw5Ffxzylib1/7YSoRabz47ukhNTUGKU44IiHBmJRY++Ob7hWdHR +/aU1rO2pyn+o4x/uszyLu6KR3RZq8LrSTZbjxafPlMlJlNXwwPJxTDfEjrSV6R0J +zxsEqLjqt3JUPvBgFDjy24CzL/TEvD6QxG/vdEJlJI36UwEeoxecoF04ldNdt3FC +GlsxeIwsILPidG9K9hzhyGMwXvNKZ3YjJHrNB1x/v+OABUkQyN4WGMtMKXBdjP2z +fF+ysfuR7ab8jt1225/6wO+Yy8MdVV0NTQDCwnVSqzhy+uaHJCmLqdQ+RtIHA06Y +WwgIh8ZGM4LFDhK9yuEMxxyXzwZPyEB5gAePj2JUupRHi13TiQIzBBIBCgAdFiEE +xCJfKmITrNR737p+1fcr9C97Fr0FAltmknYACgkQ1fcr9C97Fr1ZVBAA12rPeUpJ +IYz7WTy1PzC9UayGkU5noiCi6jBOzMntIOweOuC3BstP6Z7gsxBTh3TJ50sjhpoC +bESII6jxMrCxGQcagWvKhrvgJQAwtN1LnLhGlhR/2e0qyQr0zSY83U54xZelZ7K0 ++5tjhROYeXQM7ovnhK3+rpRNBU4isWoWjhyuaXQKwHbWLA9+YNqv+PQa5Skt70L/ +9b5KNLgvDMUFjvZvVQXC4bHfmFyzrZ5B9AYXB70kscdDV+ygCih/Ebsu3c0h7BuI +JKvAPCb6U6cgqRXmWIRhlokjCGlZl5thT3AZZm6VRaVkPZlAkqxb/3VDt7K2tPse +qVSK1R6y01/vs0sIbxsVt9jzlPzd8GQyM9zxFofGdGOBaTb3bI6g71CnIb9DQ0/o +QH2r8YEaJaWxgJuuiK9QKr9/yVPggn+OJSp94EDH1ZOgNLp7Wq5FgfT+Qy2Tepno +1pDTL0RfykKvaZ8pJeSm9HFEr8LAHDGl8N7aPVwiNzLe8CAXIJfxPrcbVopTm5OW +HBE59VfH+r8XPeQeEkrecvthLVcckOoTcQVnuEFnBOWul7T1O95UwjgbjBa9M/E2 +xyTrrEOTzvuR0RLPV+lNDhKpiJOjzCLVbPFlXmGo7eX4y/7GTLCpeDps7AtNGdvC +nZ15c3LWw+/xFd/QlXu8UJDHQGxv6o3NcWCJAhwEEAEKAAYFAluxAEUACgkQfqTk +giGNt4C1uQ/+KRwpbCsA4dcT8pdKGDSkCfzym9jGseoXQ+5TGFEHAp1lDDDGMjgi +fRbtHL4obJilEohRStV+WU6vYM13kR1nrwC1zVQrv2rB8YzpQzcdpDdFqZcc+bjT +ouQSgcK/Cg1/PCnonYx7yxdGhBF6Pm6jMMeolrcq93S6KvmY0NvCim8m7r/S1Bo2 +XZBawNbhwn1l8bskpfIUqsja/NZUsbtOJG5djV11uH8iu2++VFMFeqqVufEWBdb/ +uRv7UqT8YMZi97ipy6FVwh9YyPIcYT5eME9LVBQY4ZF0JUhjKNzv4Uul4DgRInMK +EjS0169x1hjyYuCGMeylNGuhdSN4mzM5qSkzhzhGJEzGV49Z0DKqD8ceShee8DqU +LHjAVdVd5m8E2y+rbuLqMSRiYENCpFHw5BVCPsmpkeI53ZLBnUq3RScS7N8pBoMK +BF0TtaK/6fbtixzNNtrNHO0mFXfgmXV2vDkMJTqPTORoPlsM2UJBpEeuCC8xfIJ4 +tNu8mS6pwxpjLCqk8ehP9jqcS8R8hxCZScCqrO0GFxgSL7w4I1FYhFXow34Dnzdn +5Aq2AENOk8GHUp421y4ibh0OegtxxgpcMbs0WCkOMSbiy5gEdLL7smsIBEg4apvq +KJfLmuTRz3BbkUdsCHYnFG4/bjsdNwX60QElzQfoSweYcN0nkbWpwliJAbMEEAEK +AB0WIQSk1DTyRoCr2aZ1QMD4HC7ojzX58gUCXDuA9AAKCRD4HC7ojzX58sCqC/sE +/N/wXVteQwhkRBhgS5B2QobN0P6sEdiLyMp3xmnS8LShJpkrMH68YYuzXRJzgVVE ++sWw3FnHEtHIiwdGQqa/72RSFfPS/jFzi/D2Ow55rnH8/kYhoqJdvIImJC3NZ1XB +kt/6edv/H6JLNVE84NcB/TsWVXmQxV3FlGsNe6EIiHMCCUnO2HLwCR7mUYJhjOdx +GZRY4Zp35n33966mZfX1nG91ydferiU4w+xG2GGXaOfVdnFNgMy8W4CwvdwKGltZ +QcU4o0LCVCkokLMTqZ1RRYmwtj6hrtjA48/S8UgFqLNTxGaxMhQJjCPbFvJMBjlM +0zgkCrYchdxl2II/BYntZXD8WZ4TS9LH3msua/U2jNqbkN1folS+sVjCQqsPUoeL +cm1baVrYfuBo05Ssxul+XX2usQLNXqo628rabqAg+bXwXHpmnhcg2aBdnpBbYjVQ +FYWvcB/tMwl+Gtq0dKbZifuFGvEao6jTlYEecmP+fa1kVVkkgBilpNgl1297NQiJ +AhwEEAEKAAYFAlxlUzEACgkQTS2k646St9pESQ/+OTc0ABhHkjDR5vaAevx74uE3 +Jd+e4LklGla4Qv2kcL5HtuF3iR+UgBLZc65uv33pzIL6YX/l9J8qh/m3FH97VYLL +A9o4y6tQfo4UPE0G6/BsyHpOh4KsjzMgejszYNCcSx8/7rcu3fjhpgQXmaVkEjDn +M46f9k7yvm8f6i+W0rJHydtrS+W8KjqAaUFpeL/uNBLJZbDaVcfNZkWlUqNjhvtr +UvmtlYawB0adF3tCG8G6S7UVJAjYf2m9MCwZx4Y36eDWrQU5oIVmlKSMGPvnIJ4R +7xToY8hUx/MjOeVBA7f6kwUxspZHJAip6u9IQoCMSmy8MSsJAGm5eWDxm8FWfD+I +h+3EorjtqyMhr/LV/ODVxZM5Yw9e5d/UeMFYQqTmH8wKE1SEnuYLrXLruRShH/Jt +weKnNdDJv3CzElmYzzf2M4Ks4h8j2deeSNMtWVUHmd+pao5BMd371DzWR+7cY3Gn +/eNBZeX9dvSmn5RGFmoy/mKz1UDEWqTLivAJjKiSPUTDQz0EQKkAr7GtnnuxbSf3 +AmE0TObkAP0TvQnOONT938MrJYOIAlNdE9JBbXhgJXoWfNzE9ROmROkmskUbkEXc +39vMH8za2/9B7kE3LB0JqQqfW4f+V4aMw452yLIpZ0faWv4gLS6Jr4j/ciCHySMH +mx3tQ+/2cI1IZoaf5JCJATMEEAEIAB0WIQR5EQ/97u1pqDbc4eWt6rXMOiioYQUC +XMbhWgAKCRCt6rXMOiioYRjiCADKSqOMt7Lmg+xQEt3czvaJOwqSI9Uy+KIAZP3V +B32ib29A4x2zNY1Der1+4CxHvPOkoaFBk4Rje0l4Bt4De3LXgLzUkrj/mD6MZhJJ +wvfu2QV3WXnNaZMxdWbPy7xOGLpxFfnn6zLlt+cTy+1/fbsQP+m6sbza1hMtz8IZ +Mzelyh1R7BsWqh0JcN1+cJkE1p8Ns8XFGnGJcdXgJT/wSdMurYGvHcvwzUmG2dER +2EprgEOaI0aXExV522H/TfhXJZiESz/x4uOt1uY0W+zAly9WUxx3pFyfEOz2AwGn +eRuOUZ7id6doTDKd5g5KgL72rJTgBrQxVjlz1L+0wCKDhewviQIzBBABCgAdFiEE +2rU+6rokmNpESS8d7Ysk9A1/n38FAl0JzuEACgkQ7Ysk9A1/n39B1g/+M96S8/z3 +QyXf/+Nb2H6mf/cVyOl6CKTuXtDBILqvt+TEqb9o8Iu9TsWuzqpfwOAWCQc7kQzH +5a/lr+/q+eO/hvSYyAqClt3gFyGjbbliEAfZ8VHw8nXwxs9YntwxdzNXgQmvufjo +tgJ8w6DYa+rAfvq+jo5wPMbqNtCRgXMGbKzKdij5k6z3Vnaxg7dnLPH+b1kCKeq1 +Nvis0OD65j769CxioJ2U6T7rSkiPWfHJ/aY4LbytOEZ5SJfg2X4EQEXK/ewEsGxD +v7Nx1Vmz+Q+Iz4hHWh0Xegbspug8w30inkqotBEoQwK4QvqgOWZmqX2IqYyWPeAe +f4RodAmSqlTWQKd8vj0n061LYb9EzD/+KrKUSFZ2TfQzQMxjeB287P0bBawQr6SS +rBEA3uwS+eJLQZXmZu41ydqqglCT5t56ZaPkNOnWT/rXlEiNkD/42gWtFzlYKy/m +nvH9wTRtqLoVPB6r3SH3iDC7MxQPyO2wbNvvrgPaQ/DlntJBkS6h34MMVTOAN/IW +ASJhR3HvjnxMW2FxzzIQdlw41lEirR4eU2RisHPDiO3RvLcGV41KxhHJ/dbuOJag +XrMIJM8vxLpipY+V0yYsDRm2Hh7eBcZ8k6hxAf26m+nUE8kuSDYcPYWYkSC8ksk9 +1DyXIbh7E2kdBQtL5izLeU0zYfPji9Ad0tCJAlUEEwECAD8CGwMGCwkIBwMCBhUI +AgkKCwQWAgMBAh4BAheAFiEEH1bt0wdBBIA12sHF7Fe1bvDEMTIFAl45KPMFCRAL +w50ACgkQ7Fe1bvDEMTIr+w/+OSob79JSfuGYSVzcUBZ+/TFPIRjVYG20dHaOaVZP +1iYYupscHwTOes9YfQWLO8t90750fUPRMK8bRJoBcdKpRxfW20bshmFa6m2tOdwf +Ve2mcOfQzvmNDya7BUKQCJ3cRZDbawC4ECubtltXEp3OrCAX68bjjtCyDFleElZ3 +lpQr1PhoqtV+L9ozTsrWmbhUyvuEKfzZxiuk4g7COrdabfVCirOXk1YWJnDMXUPl +UmhxvwhHkMYv3BKYqFOWdP/CIHP8JXqDshkLY0tfv6IytHQEhSfbX6z7BubgxZcd +Wr9Y/ltOf/W+RCz3wn8mjMEHrKwvvtlYIDP5vRnUB1pr4P0y0Wmf29LMgh647ggT +W5W4Xy2FqaEA5mHkFUf/TxQ8IYOHckAy6La5bHSt44qdkh3WyX9UUgDnY4ZTP7AM +faJVHtjPQOLUBa2rM6oz1r90u1/e57KEVJGobk1Jtqufwl/xZL/MpR4qUi3TQLu+ +7apyBLsh/hr37xgIwTIgT+rZbyTmosy7qnUXzo8c7gNf30sAeBjau8cA8d6Dee+c +pOWWU7pA08jiSPnyLecYODNoFKBZa5m02G8Jae8UsVUqjtKNRENMuRYfPUY1kBrm +upzdggDKam6hv8zAMfir4v5M/lvsPfkmjvOAIAYZExnceDyE3DD7uW+Xmb1cXMno +9XOJAjMEEwEKAB0WIQTZxFnPjgmppXeNK/wYr7ldyFzyOQUCXZU1qQAKCRAYr7ld +yFzyOb0WD/9z5eUZWA3Cu2RYbdU74aIn3WA4WeaAgwWOb+8JhqlDKL5VBlLsdJwZ +TXf+kh0g8XmyvJHkHOFNkDIn2DeRpDrsxV1vKKYbfXh/314fhUf5LCVyasVfsa31 +CeWMtyQz3+ZvvOmcV3/B5qTwV69o6IhGcQEp4O4fowWNrSkMyUC43xWsgbqA4Plx +MfK1LBITKOrIy6BbtfyZRjhI6jtV/NYOVHnhRPTUxgooTQboUgcYeoJZqub9GZxi +F+tSkyUoJt0YrEpGmHFKfkvTB+lLG2H7D/HSyPvGrke/AbuwC/dwEbA0vFCsG4sv +BG3VwXh8ktOYNCNJOLm6u4kxvQqnBKFHl9ZVhdvjzayf9CReKLI5mjI3SRIt0KL/ +OphvhgEqXdOT6qVDzLNFEtdGa6mB+8vqAcdxKPNJX7w+MZikneokIKP1hvJ774Ii +btHewIu7m1Uf5P4DQYsaeZOhKzcqPpcRLW+3FZzU9IS63VhES00B0eGmB7hsjZ68 +HVBfDTewjJ8jrLLAmTxcB3+G9QsAlgZDifgRoCcQ687fCeMz5w+7BqUa+M436P2U +lIu9Ga/j+DUgtLDtPl/RaHCJAfWCWatV6T8hbKxWNvW2ExUHbklDgsH5EtQtuBtx +SDVLm78Uh3aoue/E2fD/0pERHe+d9Xum2KhZUa2UHy3GJKhrFhWIDIkBMwQQAQoA +HRYhBKbm3IyGsvwCAnHEqK4rBndjRHkoBQJd08PNAAoJEK4rBndjRHkoZDgIALS/ +5XwCOgx8MLwO+PAZHn4V2uaz1uqsqRrMuz5siYvtkZHe92jCetPhasXnMDwqLKtA +wAtjritw/U8dIjw9GPD2Rj171UBi00G5w2/Cj+ZqrVL0JSbcktSBxExNXnVN9Tem +IOrz9+YiufPxDNmEZ+If44BUR190Bh4d4RZzoS4DC5Eu3GBi58aTK3QwqXVqHFgO +9GmNz5SngYQYZ9qYeNtYUh+kTh3z7iVMA6WMxjwuRw/l9tnFNoW1+DlTShTcfjkx +SmOwVco7MJkZYHitwPbAx3aYEUwcmX+gcpgr19y3L3lReO4PJr4Am2aRBjKREjeK +BvDEwVb5tvlLNPT6+oWJAjMEEAEKAB0WIQQ5hOvmsiTMLWKVIxDscxr3i5HzyAUC +Xc8YrwAKCRDscxr3i5HzyPZEEACF3j8IBbx+uHH5kJpgEehBB4ojBUXG5SJDX9IC +iOdKNpis9WZLK/5dC6O3SUR2/j6fOeZzhCNxZ1ujRj/ybHwvzrkSycDDCzxTjA3q +FArRrAAjtrt0SFXzVVrc3Xw71Ic1o5MXWvEzLPnB5agESWY0uoP/qDVqN71EEhGD +ThkYoM2YlZpIe1zTL/Tacwz2F1ZNuSAcZvDslgLT4DxqO69h+7mywjNyP0zc1M5I +rQVoV049eLFXRvkGcIUpzQlKuemEcGBlkLNHMIGgIZAC5nO1J9grCcXRInfP/h8Y +Wp7CHpcgfTexbMWIpid3hx3hnEz/gmnc2jgfW/vOCWYMPOPaKIi1OlN73GIN6X8t +BiiaOiE0Ul6lzSC6p9ycCCGik0SjoD3nZrqv1VQcPOcoruSErSpbw9Fqp5WY7feN +sLo1WE9XPg6or7SO74MB1Cl9tyxH2VYm4eidmio+ndB57M0jZzxrMb5tGw/yIbiG +x1RAHJmB43oFz/W6yUCo9DSnYYxo87MqIHNYLnETy+j5W8Vjmpu3H7k7VInH4YCH +77VOa6PIT0vm/9pwxx2DXIzeRfcyzd520LWvv77QW42mokyacCq9svgxXUWEjwZL +/1H5oP4Sacf0kqUHg1rZzVKPeplytnKpvhDaE0GiI2/P4cXb4SqJbRLrs9fRZenQ +ezAdy7Q7VGFpbHMgcHJpdmF0ZSB1c2VyIHN1cHBvcnQgPHRhaWxzLXN1cHBvcnQt +cHJpdmF0ZUBib3VtLm9yZz6JAj4EEwECACgFAlPqcIcCGwMFCQlmAYAGCwkIBwMC +BhUIAgkKCwQWAgMBAh4BAheAAAoJEOxXtW7wxDEypGgP/2x7ySeuvNz9onfGmtqF +/VBbtyWIgGn/9Ol3fOcJfMVVgzDSzZJPmbS1ntJB9iWtVcrm/JhmpGzXDQAlVKoj +o8y23lUvJbODnoa/nsmQWi/8/swvhMg96iYWCcY5MzQhcAIxYD/tNfTVFHnOBGvB +VMOedJLV22//PtmI66BOZbLz0jva2Yr7ZkWSN4HaWnnUMh5YbJgfZENpWHssWpfC +9D2traE9fak2d9lICwxIBhFP8AfRch3YCi+vS6vI/Qw+vi1m3iHtws7wtZCPXNAt +IsNyH3jG0keDeplkTi9TcyXH/QnLTG0Gvr9KOrQcA02ZXG8wt20YA+IwtXPPYUeU +sZ31ORAliSkCQiU9XGVz88lqo8CWukDFcnUF+Jnaz2GIZQKxI2M+RCams1/ELW1y +89RwF8SlBclh4l5Niv+RoK73ShTlTvR2N8F5unCPjy6aD11rEB4oVnduLXWKWXeR +5zVqAI17sfrQkDDWBtzusga+6MozhldUK+CLR9uj6OHh7k1NIrmRjjC/shArjQs/ +2Mgh8fVzxIH3YAArxszkGDS0C2jpAz142BEoL6AmrvASw1x89xlqwzz/9uezcu8j +Vwq2ZjcU0xHzVMRHMNkjCAxjnfvQaU4kmUBAqnhjsuPTIBiFuqhf7htRx2vnwEL9 +ET/RjbLcdyq0o15wn8FaVfseiQEcBBABAgAGBQJUU7utAAoJEBx4owlEYfIxoQYH +/1a0H3QAeOs3epW9xgxoaKSx/FvRFyf+7Qauaz0WxTczEQPgqefgKIiKVqHuVw/9 +3v/a1Da8HKJI2BXOZRckTg9KFJnpBzL2xP70XVWv5ey+ofo00u9lhesRW5Vkbeik +WEGnPVPmAnUkYwIHipYMULdKwNG9xyFuYiW0Ho9m4V0fXRbl3uLilGWebIWfS7IJ +5kSAQZdEXneOsowUrXhCVkBeXpDUQUcN9tRUxiHS/UBHyA8NTE3XaEg0+h88XtIY +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 +alkkSQmBbukyv4nGBs8WwDoEbHWoWumThPz/7R1fpTupSlLI+bQRPcLwLVqFC4JH +8HAVJGv5UyA9gMxoSZufCR+gubadZbSAT2ReqW30BpLttoKJAhwEEAEKAAYFAlS9 +HEMACgkQ27gCslis2E+GUg//WXsDOMShFByxSL1ahjQq0lRurfRdCZpgLjTLJKxi +Z1Qk1ga+ceDEK71Op5QQf47d3qM7aGQuuSH8clI+c1hP9smVOHBMjhmGCK/9H66z +mC1pQKP/uTrB86n1G3BjZ7RIw4dughzns7uOrxjNe9M+Y1Gw+vryxWY8twonSTFY +GhV4saHtTaUYKBTUiz9ebMlsOvckUL6M8BvqdcHYS61uOGCW9SNJxxu1XzE4PL8d +jpG3ob71cyi/lF1QRczdGWIWZMLOzY/8PB3KKY5yHXXOkjB4xAchDRWvh8PasEpg +OIaSvmoiWX1592CTcoD4XsCcw+s+pp5c9E/O0NYcnA1+KxJtptLDnAd+KjlWjY/L +Y2pKq1SjWUdfkAdrJEYbtO2VSN4vJzY+OXAuNXkpCXow93ve+9+bYwTmW68XIm6J +YKrGnCUGyDNrvTruUF8XMSvuCEAr44SR4RHYZL72bP////////////////////// //////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////// -////////iQIcBBABCgAGBQJXzwwEAAoJEJ5bBPQw+AosFiMQAKqjyxcCM7j1UzVI -cqhWz0kYhT5LJRQ9pmxkbVbUeB0PHsFaALJOPM+WEypEyJ28KM0k+NHY3TNnhXHu -AwIZiOmVRtxJz80nc7JJotsiR1eLNuEh75S+gT3TeDFqggIIIqmRbXhTUrSYr+l8 -TDY2NBFHY95BuKyAdd/8loSPxiLKeNCaJ+0CZIpPFG0wQZoioC7sIyCLsyk1H2Jo -ZGhvhSVZ3OXuPZvUmsCbq2zTUNC1Y+RLLwyKTlTJ2PlpW4I4WnAn7YplfwloVavD -Q82TjOusZmNnMjbMw4lNYfbvHRXwf0cAF4ZKWhzpAHiKKoM8+bGbD93f2ksL4X/Y -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 -ILvKxtqJrm1xYOLHS2amLTquzk6XNWkdtQbQwLA= -=kgX0 +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 +=2kVA -----END PGP PUBLIC KEY BLOCK----- diff --git a/wiki/src/tails-signing-minimal.key b/wiki/src/tails-signing-minimal.key new file mode 100644 index 0000000000000000000000000000000000000000..b7c53c9364e72a29f1342681a3995998b1171884 --- /dev/null +++ b/wiki/src/tails-signing-minimal.key @@ -0,0 +1,209 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- + +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 +=TqDI +-----END PGP PUBLIC KEY BLOCK----- diff --git a/wiki/src/templates/news.tmpl b/wiki/src/templates/news.tmpl index 8ef927a716a193c48b3002a00b1d09e5fc39f82a..3d4ad8cfd12f76f668cacaa4e18d3a2384ba32e2 100644 --- a/wiki/src/templates/news.tmpl +++ b/wiki/src/templates/news.tmpl @@ -20,7 +20,7 @@ <TMPL_IF LOCAL_CSS> <link rel="stylesheet" href="<TMPL_VAR BASEURL><TMPL_VAR LOCAL_CSS>" type="text/css" /> <TMPL_ELSE> -<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css?reload-2019-09-20" type="text/css" /> +<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css?reload-2020-01-12" type="text/css" /> </TMPL_IF> <script src="<TMPL_VAR BASEURL>lib/js/mirror-dispatcher.js" type="text/javascript"></script> @@ -66,44 +66,6 @@ </a> </div> -<a id="donate-banner" href="https://tails.boum.org/donate/index.<TMPL_VAR HTML_LANG_CODE>.html?r=banner"> - <div class="donate-en"> - <span class="first">Tails helps thousands of people stay safe online every day. And it's free.</span> - <span class="second">Donate today to protect and sustain Tails!</span> - </div> - - <div class="donate-es"> - <span class="first">Tails ayuda a miles de personas a navegar con seguridad cada día y es gratis.</span> - <span class="second">¡Dona hoy para apoyar y proteger Tails!</span> - </div> - - <div class="donate-de"> - <span class="first">Tails hilft täglich tausenden Menschen sicher im Netz zu sein, und das unentgeltlich.</span> - <span class="second">Spende heute, um Tails am Leben zu halten!</span> - </div> - - <div class="donate-fa"> - <span class="first">Tails helps thousands of people stay safe online every day. And it's free.</span> - <span class="second">Donate today to protect and sustain Tails!</span> - </div> - - <div class="donate-fr"> - <span class="first">Chaque jour, Tails protège gratuitement des milliers de personnes sur le net.</span> - <span class="second">Donnez aujourd'hui pour soutenir et protéger Tails !</span> - </div> - - <div class="donate-it"> - <span class="first">Tails helps thousands of people stay safe online every day. And it's free.</span> - <span class="second">Donate today to protect and sustain Tails!</span> - </div> - - <div class="donate-pt"> - <span class="first">Tails ajuda milhares de pessoas a se protegerem na Internet todos os dias, e é gratuito.</span> - <!-- Faça uma doação para ajudar o Tails a continuar a existir! --> - <span class="second">Donate today to protect and sustain Tails!</span> - </div> -</a> - <TMPL_IF HTML5><article class="page"><TMPL_ELSE><div class="page"></TMPL_IF> <TMPL_IF HTML5><section class="pageheader"><TMPL_ELSE><div class="pageheader"></TMPL_IF> diff --git a/wiki/src/templates/page.tmpl b/wiki/src/templates/page.tmpl index c7979eff25dc3a4ae65115f80f929e4f815c2fc8..f1b4dd1c0874ee125bf030d6c545ed6e1d69dc90 100644 --- a/wiki/src/templates/page.tmpl +++ b/wiki/src/templates/page.tmpl @@ -20,7 +20,7 @@ <TMPL_IF LOCAL_CSS> <link rel="stylesheet" href="<TMPL_VAR BASEURL><TMPL_VAR LOCAL_CSS>" type="text/css" /> <TMPL_ELSE> -<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css?reload-2019-09-20" type="text/css" /> +<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css?reload-2020-01-12" type="text/css" /> </TMPL_IF> <script src="<TMPL_VAR BASEURL>lib/js/mirror-dispatcher.js" type="text/javascript"></script> @@ -66,44 +66,6 @@ </a> </div> -<a id="donate-banner" href="https://tails.boum.org/donate/index.<TMPL_VAR HTML_LANG_CODE>.html?r=banner"> - <div class="donate-en"> - <span class="first">Tails helps thousands of people stay safe online every day. And it's free.</span> - <span class="second">Donate today to protect and sustain Tails!</span> - </div> - - <div class="donate-es"> - <span class="first">Tails ayuda a miles de personas a navegar con seguridad cada día y es gratis.</span> - <span class="second">¡Dona hoy para apoyar y proteger Tails!</span> - </div> - - <div class="donate-de"> - <span class="first">Tails hilft täglich tausenden Menschen sicher im Netz zu sein, und das unentgeltlich.</span> - <span class="second">Spende heute, um Tails am Leben zu halten!</span> - </div> - - <div class="donate-fa"> - <span class="first">Tails helps thousands of people stay safe online every day. And it's free.</span> - <span class="second">Donate today to protect and sustain Tails!</span> - </div> - - <div class="donate-fr"> - <span class="first">Chaque jour, Tails protège gratuitement des milliers de personnes sur le net.</span> - <span class="second">Donnez aujourd'hui pour soutenir et protéger Tails !</span> - </div> - - <div class="donate-it"> - <span class="first">Tails helps thousands of people stay safe online every day. And it's free.</span> - <span class="second">Donate today to protect and sustain Tails!</span> - </div> - - <div class="donate-pt"> - <span class="first">Tails ajuda milhares de pessoas a se protegerem na Internet todos os dias, e é gratuito.</span> - <!-- Faça uma doação para ajudar o Tails a continuar a existir! --> - <span class="second">Donate today to protect and sustain Tails!</span> - </div> -</a> - <TMPL_IF HTML5><article class="page"><TMPL_ELSE><div class="page"></TMPL_IF> <TMPL_IF HTML5><section class="pageheader"><TMPL_ELSE><div class="pageheader"></TMPL_IF> diff --git a/wiki/src/torrents/files/tails-amd64-4.1.img.sig b/wiki/src/torrents/files/tails-amd64-4.1.img.sig deleted file mode 100644 index 5133b723933ac665de17bb75c92b97c73f482505..0000000000000000000000000000000000000000 --- a/wiki/src/torrents/files/tails-amd64-4.1.img.sig +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl3lmnYACgkQqLD05Fsb -UOLPLQ/8D4w/Od5jP1CLBukedgmBaV4YGAP4VEtnVX5pACEEY5KzK3M5LcDvi/Y1 -wOXAYh1OgP9nHynJKrt+zPOZ8DIeuBr6Svz+Ai8zI+yc8iVi9WNwJB2DiSXKSLPk -nig4ta29E9MYH5OPiSbh1zHz5sTpWdhI06HzRRp2B1TtnwTe5dYpkaJuXgyYBneh -r5oKOGMaqOh31D7XEPSl7o9KA6EdlJwvTPwdHnuxcPvXm7b/OCJrMLCSUbu7if7W -7fROjgJ0p8+koJnagyk/mTaCjV/rC/+4vjWabunKFI8+3HtoWqe9RjZmgHY9G7P2 -A9JBVAmae0TB+ChtqnCEEN5utgl/fTiR/iKrNBYUBYnRVNwk8Uds9+ZZpJaPL5X6 -D0yIxabAz3roF+fMv72FE58ENjPWmrhwaG+vJirxAxEGifM+Nh5AP1CTgWnUoJF2 -fbNXHr9AP/IhfLk7m1VFHekVjG6MTjI1kfXDIgMvCxEqC8/xMJSY2yiqZdbKlQjT -nCyvYEBMJHwZCzZ78fQITP4mkEbWbaGxMruFQEn0WpwzB9uOs1xBk+gR9B+3W+T3 -7Y827mgEEDFXjoIhSKUggWQ+qo6FeMGbTUF+jcBu8Mo3Qj3p6v6CSwTqtc8zxuJW -s+ZGMp1579Pcsg8baNNlYjdy35Tah2ruZyIh8Md/McUlGJrru00= -=lUPp ------END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-4.1.img.torrent b/wiki/src/torrents/files/tails-amd64-4.1.img.torrent deleted file mode 100644 index ac1ad0d8a1866be274cb00999ead4c9600d14963..0000000000000000000000000000000000000000 Binary files a/wiki/src/torrents/files/tails-amd64-4.1.img.torrent and /dev/null differ diff --git a/wiki/src/torrents/files/tails-amd64-4.1.iso.sig b/wiki/src/torrents/files/tails-amd64-4.1.iso.sig deleted file mode 100644 index 258af36113a7e8409faea44304bf44147624ce47..0000000000000000000000000000000000000000 --- a/wiki/src/torrents/files/tails-amd64-4.1.iso.sig +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl3lmmEACgkQqLD05Fsb -UOLC5g/6AxkbzIQWIvPTxY+qAaEs8Oi92kRDRLuDjHXrENPnWyJP6yUwuk9u6E8l -8r2j/S8aoxMNYX0h9nG0sqfBI8kbQfRNMGMtGldvbytnrwYyRzMwWWcCQkJYZSvC -S38p4g5YI+zYas4UUeQFOBzYB20dgLhbE1mA9W4bKGjQs1tQ9kiIRKt+oWfAQzHu -wgnuUNgPx8skSnSHRRqIcsZid2XCaSB5PjPy8VNFggaUSJ5Oq5bm2JHx+kG6JIdp -u5hNCCrYVFuONmURhWglcnb/zAcBRKt+6CqliW+KSEWYpKpG/CeTI+/OK0BdZfd4 -AcIKlDz3EQbXrOxu/G7Tlj211M6xhyOTkRU4PM4kRfYvrB+S7QGhDlgOzCpAL0qT -G5HUIJTH2GMiwVnk2N9xE+vNjyPPhTcxEdsIyPCk2rQujYWiwMxJqpeCaQEkrinB -/ZsxJ5RnNkW4H3LEl9FLvgNbEMB/8UP9o5HjTKW1ExLg7qWDc1S2x7Kmft/ZzJ5I -8Or5/k1KRbr6JZLqHANzsifiFRJTISLlhvxNikirL8ZkWNGExucGgbQt9ojHbRRo -8veLaM/dXicPlx5dwWB244I3rpuuBd1YSNMR/eu0Jevkr/tLzqRtUb0j/1WbpUBo -CBGVgxf2v1sdXltBWCuzg8DIIwGktsej2dLIGoAPHm9CqJIcVw4= -=Fo2r ------END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-4.1.iso.torrent b/wiki/src/torrents/files/tails-amd64-4.1.iso.torrent deleted file mode 100644 index 15fa97b4d4bd1087e8fa6485c18420bcefc045c9..0000000000000000000000000000000000000000 Binary files a/wiki/src/torrents/files/tails-amd64-4.1.iso.torrent and /dev/null differ diff --git a/wiki/src/torrents/files/tails-amd64-4.1.build-manifest b/wiki/src/torrents/files/tails-amd64-4.2.2.build-manifest similarity index 94% rename from wiki/src/torrents/files/tails-amd64-4.1.build-manifest rename to wiki/src/torrents/files/tails-amd64-4.2.2.build-manifest index 13c9fd4cc99a82a78a66a34b4084b64f414be90a..f65773c2b124d062d871dd6eea44201ff2d4650e 100644 --- a/wiki/src/torrents/files/tails-amd64-4.1.build-manifest +++ b/wiki/src/torrents/files/tails-amd64-4.2.2.build-manifest @@ -1,9 +1,9 @@ --- origin_references: debian: - reference: '2019111801' + reference: '2019122802' debian-security: - reference: '2019120203' + reference: '2020011301' torproject: reference: '2019100904' packages: @@ -31,7 +31,7 @@ packages: version: 1.1.8-2 - arch: amd64 package: amd64-microcode - version: 3.20191021.1 + version: 3.20191218.1 - arch: all package: anthy-common version: 1:0.3-8.1 @@ -131,9 +131,6 @@ packages: - arch: amd64 package: bsdmainutils version: 11.1.2+b1 - - arch: all - package: bsdtar - version: 3.3.3-4+deb10u1 - arch: amd64 package: bsdutils version: 1:2.33.1-0.1 @@ -194,6 +191,9 @@ packages: - arch: amd64 package: coreutils version: 8.30-3 + - arch: all + package: cpanminus + version: 1.7044-1 - arch: amd64 package: cpio version: 2.12+dfsg-9 @@ -413,6 +413,9 @@ packages: - arch: all package: ferm version: 2.4-1 + - arch: amd64 + package: ffmpeg + version: 7:4.1.4-1~deb10u1 - arch: amd64 package: file-roller version: 3.30.1-2 @@ -706,10 +709,10 @@ packages: version: 3.30.0-2 - arch: all package: git-man - version: 1:2.20.1-2 + version: 1:2.20.1-2+deb10u1 - arch: amd64 package: git - version: 1:2.20.1-2 + version: 1:2.20.1-2+deb10u1 - arch: amd64 package: gjs version: 1.54.3-1.0tails1 @@ -1031,6 +1034,12 @@ packages: - arch: all package: imagemagick-6-common version: 8:6.9.10.23+dfsg-2.1 + - arch: amd64 + package: imagemagick-6.q16 + version: 8:6.9.10.23+dfsg-2.1 + - arch: amd64 + package: imagemagick + version: 8:6.9.10.23+dfsg-2.1 - arch: all package: init-system-helpers version: 1.56+nmu1 @@ -1051,7 +1060,7 @@ packages: version: 3.14-7 - arch: amd64 package: intel-microcode - version: 3.20191112.1~deb10u1 + version: 3.20191115.2~deb10u1 - arch: all package: intltool-debian version: 0.35.0+20060710.5 @@ -1148,6 +1157,9 @@ packages: - arch: amd64 package: libaom0 version: 1.0.0-3 + - arch: all + package: libapp-cmd-perl + version: 0.331-1 - arch: amd64 package: libapparmor1 version: 2.13.2-10 @@ -1157,12 +1169,6 @@ packages: - arch: amd64 package: libapt-pkg5.0 version: 1.8.2 - - arch: all - package: libarchive-tar-wrapper-perl - version: 0.33-1 - - arch: amd64 - package: libarchive-tools - version: 3.3.3-4+deb10u1 - arch: all package: libarchive-zip-perl version: 1.64-1 @@ -1232,6 +1238,9 @@ packages: - arch: amd64 package: libaudit1 version: 1:2.8.4-3 + - arch: amd64 + package: libautobox-perl + version: 3.0.1-1+b1 - arch: amd64 package: libavahi-client3 version: 0.7-4+b1 @@ -1250,6 +1259,9 @@ packages: - arch: amd64 package: libavcodec58 version: 7:4.1.4-1~deb10u1 + - arch: amd64 + package: libavdevice58 + version: 7:4.1.4-1~deb10u1 - arch: amd64 package: libavfilter7 version: 7:4.1.4-1~deb10u1 @@ -1277,6 +1289,9 @@ packages: - arch: amd64 package: libb-hooks-op-check-perl version: 0.22-1+b1 + - arch: all + package: libb-keywords-perl + version: 1.20-1 - arch: amd64 package: libb2-1 version: 0.98.1-1 @@ -1436,6 +1451,9 @@ packages: - arch: amd64 package: libcap2 version: 1:2.25-2 + - arch: all + package: libcapture-tiny-perl + version: 0.48-1 - arch: all package: libcarp-assert-more-perl version: 1.16-1 @@ -1575,8 +1593,26 @@ packages: package: libconfig-any-perl version: 0.32-1 - arch: all - package: libcontext-preserve-perl - version: 0.03-1 + package: libconfig-ini-perl + version: 1:0.025-1 + - arch: all + package: libconfig-mvp-perl + version: 2.200011-1 + - arch: all + package: libconfig-mvp-reader-ini-perl + version: 2.101463-1 + - arch: all + package: libconfig-tiny-perl + version: 2.23-1 + - arch: all + package: libcpan-distnameinfo-perl + version: 0.12-2 + - arch: all + package: libcpan-meta-check-perl + version: 0.014-1 + - arch: all + package: libcpan-uploader-perl + version: 0.103013-1 - arch: amd64 package: libcpanel-json-xs-perl version: 4.09-1 @@ -1613,9 +1649,6 @@ packages: - arch: amd64 package: libcurl4 version: 7.64.0-4 - - arch: all - package: libdata-dumper-concise-perl - version: 2.023-1 - arch: all package: libdata-optlist-perl version: 0.110-1 @@ -1625,6 +1658,9 @@ packages: - arch: all package: libdata-record-perl version: 0.02-4 + - arch: all + package: libdata-section-perl + version: 0.200007-1 - arch: all package: libdatetime-format-dateparse-perl version: 0.05-2 @@ -1676,18 +1712,12 @@ packages: - arch: amd64 package: libdevel-callchecker-perl version: 0.008-1 - - arch: amd64 - package: libdevel-declare-perl - version: 0.006019-1+b1 - arch: all package: libdevel-globaldestruction-perl version: 0.14-1 - arch: all package: libdevel-overloadinfo-perl version: 0.005-1 - - arch: all - package: libdevel-partialdump-perl - version: 0.20-1 - arch: all package: libdevel-stacktrace-perl version: 2.0300-1 @@ -1703,6 +1733,15 @@ packages: - arch: all package: libdist-checkconflicts-perl version: 0.11-1 + - arch: all + package: libdist-zilla-perl + version: 6.012-1 + - arch: all + package: libdist-zilla-plugin-test-notabs-perl + version: 0.15-3 + - arch: all + package: libdist-zilla-plugin-test-perl-critic-perl + version: 3.001-2 - arch: all package: libdjvulibre-text version: 3.5.27.1-10 @@ -1910,15 +1949,30 @@ packages: - arch: all package: libfile-configdir-perl version: 0.021-1 + - arch: all + package: libfile-copy-recursive-perl + version: 0.44-1 - arch: all package: libfile-find-rule-perl version: 0.34-1 + - arch: all + package: libfile-homedir-perl + version: 1.004-1 - arch: all package: libfile-listing-perl version: 6.04-1 + - arch: all + package: libfile-pushd-perl + version: 1.016-1 + - arch: all + package: libfile-sharedir-install-perl + version: 0.13-1 - arch: all package: libfile-sharedir-perl version: 1.116-2 + - arch: all + package: libfile-slurp-tiny-perl + version: 0.004-1 - arch: all package: libfile-stripnondeterminism-perl version: 1.1.2-1 @@ -2051,6 +2105,9 @@ packages: - arch: amd64 package: libgfortran5 version: 8.3.0-6 + - arch: amd64 + package: libgif7 + version: 5.1.4-3 - arch: amd64 package: libgimp2.0 version: 2.10.8-2 @@ -2300,6 +2357,9 @@ packages: - arch: amd64 package: libharfbuzz0b version: 2.3.1-1 + - arch: all + package: libhash-merge-simple-perl + version: 0.051-2 - arch: amd64 package: libhavege1 version: 1.9.1-7 @@ -2429,6 +2489,9 @@ packages: - arch: all package: libio-stringy-perl version: 2.111-3 + - arch: all + package: libio-tiecombine-perl + version: 1.005-1 - arch: amd64 package: libip4tc0 version: 1.8.2-4 @@ -2507,6 +2570,9 @@ packages: - arch: all package: libjson-maybexs-perl version: 1.004000-1 + - arch: all + package: libjson-perl + version: 4.02000-1 - arch: amd64 package: libjsoncpp1 version: 1.7.4-3 @@ -2561,9 +2627,15 @@ packages: - arch: amd64 package: libldb1 version: 2:1.5.1+really1.4.6-3 + - arch: amd64 + package: liblept5 + version: 1.76.0-1 - arch: amd64 package: liblilv-0-0 version: 0.24.2~dfsg0-2 + - arch: all + package: liblingua-en-inflect-perl + version: 1.903-1 - arch: amd64 package: liblirc-client0 version: 0.10.1-5.2 @@ -2576,6 +2648,9 @@ packages: - arch: amd64 package: liblmdb0 version: 0.9.22-1 + - arch: all + package: liblocal-lib-perl + version: 2.000024-1 - arch: amd64 package: liblocale-gettext-perl version: 1.07-3+b4 @@ -2583,8 +2658,14 @@ packages: package: liblockfile-bin version: 1.14-1.1 - arch: all - package: liblog-log4perl-perl - version: 1.49-1 + package: liblog-dispatch-array-perl + version: 1.003-1 + - arch: all + package: liblog-dispatch-perl + version: 2.68-1 + - arch: all + package: liblog-dispatchouli-perl + version: 2.016-1 - arch: amd64 package: liblognorm5 version: 2.0.5-1 @@ -2666,15 +2747,15 @@ packages: - arch: amd64 package: libmbim-proxy version: 1.18.0-1 + - arch: all + package: libmce-perl + version: 1.838-1 - arch: amd64 package: libmeanwhile1 version: 1.0.2-9 - arch: amd64 package: libmediaart-2.0-0 version: 1.9.4-2 - - arch: all - package: libmethod-signatures-simple-perl - version: 1.07-1 - arch: amd64 package: libmetis5 version: 5.1.0.dfsg-5+b2 @@ -2684,6 +2765,9 @@ packages: - arch: all package: libmime-charset-perl version: 1.012.2-1 + - arch: all + package: libmixin-linewise-perl + version: 0.108-1 - arch: amd64 package: libmjpegutils-2.1-0 version: 1:2.1.0+debian-5 @@ -2702,9 +2786,18 @@ packages: - arch: amd64 package: libmodplug1 version: 1:0.8.9.0-2 + - arch: all + package: libmodule-build-perl + version: 0.422400-1 + - arch: all + package: libmodule-cpanfile-perl + version: 1.1004-1 - arch: all package: libmodule-implementation-perl version: 0.09-1 + - arch: all + package: libmodule-path-perl + version: 0.19-1 - arch: all package: libmodule-pluggable-perl version: 5.2-1 @@ -2717,39 +2810,30 @@ packages: - arch: all package: libmoo-perl version: 2.003004-2 + - arch: all + package: libmoose-autobox-perl + version: 0.16-1 - arch: amd64 package: libmoose-perl version: 2.2011-1+b1 - - arch: all - package: libmoosex-getopt-perl - version: 0.74-1 - - arch: all - package: libmoosex-has-sugar-perl - version: 1.000006-1 - arch: all package: libmoosex-lazyrequire-perl version: 0.11-1 - arch: all - package: libmoosex-meta-typeconstraint-forcecoercion-perl - version: 0.01-2 - - arch: all - package: libmoosex-method-signatures-perl - version: 0.49-1 + package: libmoosex-oneargnew-perl + version: 0.005-1 - arch: all package: libmoosex-role-parameterized-perl version: 1.10-1 - arch: all - package: libmoosex-traits-perl - version: 0.13-2 + package: libmoosex-setonce-perl + version: 0.200002-1 - arch: all - package: libmoosex-types-path-class-perl - version: 0.09-1 + package: libmoosex-types-perl-perl + version: 0.101343-1 - arch: all package: libmoosex-types-perl version: 0.50-1 - - arch: all - package: libmoosex-types-structured-perl - version: 0.36-1 - arch: all package: libmoox-configfromfile-perl version: 0.009-2 @@ -2938,7 +3022,7 @@ packages: version: 2:4.20-1 - arch: amd64 package: libnss3 - version: 2:3.42.1-1+deb10u1 + version: 2:3.42.1-1+deb10u2 - arch: amd64 package: libntfs-3g883 version: 1:2017.3.23AR.3-3 @@ -3078,8 +3162,8 @@ packages: package: libparams-validationcompiler-perl version: 0.30-1 - arch: all - package: libparse-method-signatures-perl - version: 1.003019-1 + package: libparse-pmfile-perl + version: 0.41-1 - arch: amd64 package: libparted-fs-resize0 version: 3.2-25 @@ -3125,9 +3209,21 @@ packages: - arch: all package: libpeas-common version: 1.22.0-4 + - arch: all + package: libperl-critic-perl + version: 1.132-1 + - arch: all + package: libperl-prereqscanner-perl + version: 1.023-1 + - arch: all + package: libperl-version-perl + version: 1.013-2 - arch: amd64 package: libperl5.28 version: 5.28.1-6 + - arch: amd64 + package: libperlio-utf8-strict-perl + version: 0.007-2+b1 - arch: amd64 package: libpgm-5.2-0 version: 5.2.122~dfsg-3 @@ -3158,6 +3254,12 @@ packages: - arch: amd64 package: libpng16-16 version: 1.6.36-6 + - arch: all + package: libpod-eventual-perl + version: 0.094001-1 + - arch: all + package: libpod-spell-perl + version: 1.20-1 - arch: amd64 package: libpolkit-agent-1-0 version: 0.105-25 @@ -3191,6 +3293,15 @@ packages: - arch: all package: libppi-perl version: 1.236-1 + - arch: all + package: libppix-quotelike-perl + version: 0.006-1 + - arch: all + package: libppix-regexp-perl + version: 0.063-1 + - arch: all + package: libppix-utilities-perl + version: 1.001000-2 - arch: amd64 package: libprocps7 version: 2:3.3.15-2 @@ -3332,6 +3443,9 @@ packages: - arch: amd64 package: libreadline7 version: 7.0-5 + - arch: all + package: libreadonly-perl + version: 2.050-1 - arch: all package: libregexp-common-perl version: 2017060201-1 @@ -3410,6 +3524,12 @@ packages: - arch: amd64 package: librevenge-0.0-0 version: 0.0.4-6 + - arch: all + package: librole-hasmessage-perl + version: 0.006-1 + - arch: all + package: librole-identifiable-perl + version: 0.007-1 - arch: all package: librole-tiny-perl version: 2.000006-1 @@ -3437,21 +3557,33 @@ packages: - arch: amd64 package: libsane version: 1.0.27-3.2 + - arch: amd64 + package: libsasl2-2 + version: 2.1.27+dfsg-1+deb10u1 - arch: amd64 package: libsasl2-2 version: 2.1.27+dfsg-1 + - arch: amd64 + package: libsasl2-modules-db + version: 2.1.27+dfsg-1+deb10u1 - arch: amd64 package: libsasl2-modules-db version: 2.1.27+dfsg-1 - arch: amd64 package: libsasl2-modules - version: 2.1.27+dfsg-1 + version: 2.1.27+dfsg-1+deb10u1 - arch: amd64 package: libsbc1 version: 1.4-1 + - arch: all + package: libscope-guard-perl + version: 0.21-1 - arch: amd64 package: libsdl1.2debian version: 1.2.15+dfsg2-4 + - arch: amd64 + package: libsdl2-2.0-0 + version: 2.0.9+dfsg1-1 - arch: amd64 package: libseccomp2 version: 2.3.3-4 @@ -3527,6 +3659,9 @@ packages: - arch: amd64 package: libsodium23 version: 1.0.17-1 + - arch: all + package: libsoftware-license-perl + version: 0.103014-1 - arch: amd64 package: libsombok3 version: 2.4.0-2 @@ -3608,12 +3743,27 @@ packages: - arch: all package: libstring-errf-perl version: 0.008-1 + - arch: all + package: libstring-flogger-perl + version: 1.101245-2 + - arch: all + package: libstring-format-perl + version: 1.18-1 - arch: all package: libstring-formatter-perl version: 0.102084-1 + - arch: all + package: libstring-rewriteprefix-perl + version: 0.007-2 + - arch: all + package: libstring-shellquote-perl + version: 1.04-1 - arch: all package: libsub-exporter-formethods-perl version: 0.100052-1 + - arch: all + package: libsub-exporter-globexporter-perl + version: 0.005-1 - arch: all package: libsub-exporter-perl version: 0.987-1 @@ -3683,6 +3833,21 @@ packages: - arch: amd64 package: libteamdctl0 version: 1.28-1 + - arch: all + package: libterm-encoding-perl + version: 0.02-2 + - arch: amd64 + package: libterm-readkey-perl + version: 2.38-1 + - arch: amd64 + package: libtesseract4 + version: 4.0.0-2 + - arch: all + package: libtest-deep-perl + version: 1.128-1 + - arch: all + package: libtest-perl-critic-perl + version: 1.04-1 - arch: amd64 package: libtevent0 version: 0.9.37-1 @@ -3695,6 +3860,9 @@ packages: - arch: amd64 package: libtext-iconv-perl version: 1.7-5+b7 + - arch: all + package: libtext-template-perl + version: 1.55-1 - arch: all package: libtext-wrapi18n-perl version: 0.06-7.1 @@ -3707,6 +3875,12 @@ packages: - arch: amd64 package: libtheora0 version: 1.1.1+dfsg.1-15 + - arch: all + package: libthrowable-perl + version: 0.200013-1 + - arch: all + package: libtie-ixhash-perl + version: 1.23-2 - arch: amd64 package: libtiff5 version: 4.0.10-4 @@ -4184,6 +4358,9 @@ packages: - arch: all package: libyaml-perl version: 1.27-1 + - arch: all + package: libyaml-tiny-perl + version: 1.73-1 - arch: amd64 package: libyelp0 version: 3.31.90-1 @@ -4221,23 +4398,23 @@ packages: package: linux-base version: '4.6' - arch: amd64 - package: linux-headers-5.3.0-2-amd64 - version: 5.3.9-2 + package: linux-headers-5.3.0-3-amd64 + version: 5.3.15-1 - arch: all - package: linux-headers-5.3.0-2-common - version: 5.3.9-2 + package: linux-headers-5.3.0-3-common + version: 5.3.15-1 - arch: amd64 - package: linux-image-5.3.0-2-amd64 - version: 5.3.9-2 + package: linux-image-5.3.0-3-amd64 + version: 5.3.15-1 - arch: amd64 package: linux-kbuild-5.3 - version: 5.3.9-2 + version: 5.3.15-1 - arch: amd64 package: linux-libc-dev version: 4.19.67-2+deb10u2 - arch: all package: linux-source-5.3 - version: 5.3.9-2 + version: 5.3.15-1 - arch: all package: live-boot-initramfs-tools version: 1:20170112 @@ -4457,6 +4634,9 @@ packages: - arch: amd64 package: pcscd version: 1.8.24-1 + - arch: all + package: pdf-redact-tools + version: 0.1.2-1 - arch: amd64 package: perl-base version: 5.28.1-6 @@ -4469,6 +4649,9 @@ packages: - arch: amd64 package: perl version: 5.28.1-6 + - arch: all + package: perltidy + version: 20180220-1 - arch: all package: pidgin-data version: 2.13.0-2 @@ -4651,7 +4834,7 @@ packages: version: 0.9.11-5 - arch: all package: python3-ecdsa - version: 0.13-3 + version: 0.13-3+deb10u1 - arch: all package: python3-electrum version: 3.3.8-0.1 @@ -4934,12 +5117,6 @@ packages: - arch: amd64 package: tails-installer version: 5.0.16+dfsg-0tails1 - - arch: all - package: tails-iuk - version: 4.0.3-1 - - arch: all - package: tails-perl5lib - version: 2.0.3-1 - arch: all package: tails-persistence-setup version: 2.2.1-1 @@ -4958,39 +5135,48 @@ packages: - arch: amd64 package: tcpflow version: 1.5.2+repack1-1 + - arch: all + package: tesseract-ocr-eng + version: 1:4.00~git30-7274cfa-1 + - arch: all + package: tesseract-ocr-osd + version: 1:4.00~git30-7274cfa-1 + - arch: amd64 + package: tesseract-ocr + version: 4.0.0-2 - arch: all package: thunderbird-l10n-ar - version: 1:68.2.2-1~deb10u1 + version: 1:68.3.0-2~deb10u1 - arch: all package: thunderbird-l10n-de - version: 1:68.2.2-1~deb10u1 + version: 1:68.3.0-2~deb10u1 - arch: all package: thunderbird-l10n-es-es - version: 1:68.2.2-1~deb10u1 + version: 1:68.3.0-2~deb10u1 - arch: all package: thunderbird-l10n-fr - version: 1:68.2.2-1~deb10u1 + version: 1:68.3.0-2~deb10u1 - arch: all package: thunderbird-l10n-id - version: 1:68.2.2-1~deb10u1 + version: 1:68.3.0-2~deb10u1 - arch: all package: thunderbird-l10n-it - version: 1:68.2.2-1~deb10u1 + version: 1:68.3.0-2~deb10u1 - arch: all package: thunderbird-l10n-pt-br - version: 1:68.2.2-1~deb10u1 + version: 1:68.3.0-2~deb10u1 - arch: all package: thunderbird-l10n-ru - version: 1:68.2.2-1~deb10u1 + version: 1:68.3.0-2~deb10u1 - arch: all package: thunderbird-l10n-tr - version: 1:68.2.2-1~deb10u1 + version: 1:68.3.0-2~deb10u1 - arch: all package: thunderbird-l10n-zh-cn - version: 1:68.2.2-1~deb10u1 + version: 1:68.3.0-2~deb10u1 - arch: amd64 package: thunderbird - version: 1:68.2.2-1~deb10u1 + version: 1:68.3.0-2~deb10u1 - arch: all package: tor-geoipdb version: 0.4.1.6-1~d10.buster+1 @@ -5275,4 +5461,4 @@ packages: version: 1:1.2.11.dfsg-1 source: - package: torbrowser-launcher - version: 0.3.2-2 + version: 0.3.2-4 diff --git a/wiki/src/torrents/files/tails-amd64-4.2.2.img.sig b/wiki/src/torrents/files/tails-amd64-4.2.2.img.sig new file mode 100644 index 0000000000000000000000000000000000000000..276e6e11723d039b64d7c382027d7918e3706b01 --- /dev/null +++ b/wiki/src/torrents/files/tails-amd64-4.2.2.img.sig @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl4cS0wACgkQ0h2tOK8o +HAtbgA/9HjalMwcRiPX2fjeEdMhLy/y1UeWAeNo5WbYsRT2HjFaDfM3zwvvgBe7X +pXE3WcEGxR/1CnOwx32ahvZdiq67ooTu5LfQgYu177BY8o7PIm6L6CWGBonJU3QK +IYMOSHJtFIKfJvGQaVFijYVZWC0McQ0iCpqhL7iRM4lRvVyNQth+2zeKahDX2r9g +uMFpTXlwbnlcj37tMTcHlIMKMiMdPzj2JLJyXOepeIn2olP5F2dek5Wm2H32r5y8 +X/hqcKouCWvNYecKZ4yNpZQdrJDItCdzJ16c4tyl9U4ME9qGXlvTEz1eyFzGgAh8 +E0LzJ4GKM8qPxoDKFNaYsJhlHKwjzdR83/iH7fNjzlLWIziGxFDJIFDwbc7RVgCE +zpLux6YwpFbflC5Ln3fvys4av3KImaXgikk/5PfIZ6pSr+7DRO0R1dgqudQxKAG8 +VlojWE/zWF9qgWOFuDu+NW8AxPC+tDeouwh6TtA7xNSGObE8Kh+Ps8o3XqCqZb8A +Yh5jHkCtbBQmvVMecvD5rJCmo/Otsc1NZSy89Mx7Dd/WPG/6epe/Nq2udo6Qdx9V +0vmJqOE+dDOyFnbFiz06MSV9K2zj/l+6VrZibmcIrtGcJOYpF0jbrRjWimkCqvLm +kW+UAwzqTaOQh2BxdnsOWW3mK9u+6Q8uLnZYa3lhPx9IiF1wk/M= +=gIYP +-----END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-4.2.2.img.torrent b/wiki/src/torrents/files/tails-amd64-4.2.2.img.torrent new file mode 100644 index 0000000000000000000000000000000000000000..8712854f354f3dc556da3dd755f8dbd12d4ff886 Binary files /dev/null and b/wiki/src/torrents/files/tails-amd64-4.2.2.img.torrent differ diff --git a/wiki/src/torrents/files/tails-amd64-4.2.2.iso.sig b/wiki/src/torrents/files/tails-amd64-4.2.2.iso.sig new file mode 100644 index 0000000000000000000000000000000000000000..c00cf74db13d53e1392939e15699e5afd1d6fc1b --- /dev/null +++ b/wiki/src/torrents/files/tails-amd64-4.2.2.iso.sig @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl4cSzsACgkQ0h2tOK8o +HAtKqA/9EWb5v343WouebQ5lM11REUCPpTeJ/QXmTZxfr+mSYvwyfA4VNPqabcto +hBYBduJRZaMJGhYUO7rW8sdD/AN1OU8jUC2h1VuN1Xrc6WHMGEXN8kcAi52zIivs +kuqFh7s8bY6b+14qyJO2qdbZgc8Y3jewAF9QU7AieVEMxLTQFigHpzlSkhgNNR/S +7ZLmK3rJE1JBksKjZSssS/PSXRV1P6YE/YzC87e6pUbnXOCG8fvpz7sW4oILb1g9 +TeogKjcODW/HF6r2zpnbgDN4jrtNSxYMumwlasNPwL3aRED5/ZxkvNMkG0mFgV4V +gh8VhEM1LlSe9iCXKCdEkS4K7ySPntpHJtPgd9Qhpfcue8FjprWIsSoaKheIl5Kf +OnQ4iAOrGmgM48JxQOTEYVD0uJkwzQ/bqjOtYzXxL69VED47nlNXvwg/jSl888le +Gdiledywdjg0+PdDwqeuqs/Kr9BF8BcRWrOT0WrnIh7ledprjct3MBO3sZce6Bq+ +wrlSp++3xqkUxHors3YiN2VN6ntziIUiRQppuee2nMNB8wJXTLXF6q61ECdrcVo7 +lmqc8FpCd1KjyuuYi26otQpdwyYkQlbBCr3zotWA3jnBULfYGq6zy4bJmmN2vdYf +0IWnJuA7svDmNV7C+OyODs/qXS2LSjfo1rqThf/6QjxIbDcwZCw= +=1HJb +-----END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-4.2.2.iso.torrent b/wiki/src/torrents/files/tails-amd64-4.2.2.iso.torrent new file mode 100644 index 0000000000000000000000000000000000000000..29d22697da6b0ce90cad66234d115bde53c95f23 Binary files /dev/null and b/wiki/src/torrents/files/tails-amd64-4.2.2.iso.torrent differ diff --git a/wiki/src/torrents/files/tails-amd64-4.1.packages b/wiki/src/torrents/files/tails-amd64-4.2.2.packages similarity index 96% rename from wiki/src/torrents/files/tails-amd64-4.1.packages rename to wiki/src/torrents/files/tails-amd64-4.2.2.packages index e12c3e9cc912e6fbe969b1b88486cd9a60257fab..61e3fbd1983bb099e0fcb66f14386bbe6558b7e5 100644 --- a/wiki/src/torrents/files/tails-amd64-4.1.packages +++ b/wiki/src/torrents/files/tails-amd64-4.2.2.packages @@ -5,7 +5,7 @@ adwaita-icon-theme 3.30.1-1 adwaita-qt:amd64 1.0-2 aircrack-ng 1:1.5.2-3 alsa-utils 1.1.8-2 -amd64-microcode 3.20191021.1 +amd64-microcode 3.20191218.1 anthy 1:0.3-8.1 anthy-common 1:0.3-8.1 apg 2.2.3.dfsg.1-5 @@ -33,7 +33,6 @@ bookletimposer 0.2-5 brasero 3.12.2-5 brasero-common 3.12.2-5 bsdmainutils 11.1.2+b1 -bsdtar 3.3.3-4+deb10u1 bsdutils 1:2.33.1-0.1 bubblewrap 0.3.1-4 busybox 1:1.30.1-4 @@ -117,10 +116,11 @@ exiv2 0.25-4 fatresize 1.0.2-11 fdisk 2.33.1-0.1 ferm 2.4-1 +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.3.0+fake1 +firefox 68.4.1+fake1 firmware-amd-graphics 20190717-2 firmware-atheros 20190717-2 firmware-b43-installer 1:019-4 @@ -210,8 +210,8 @@ gir1.2-udisks-2.0:amd64 2.8.1-4 gir1.2-upowerglib-1.0:amd64 0.99.10-1 gir1.2-webkit2-4.0:amd64 2.26.2-1~deb10+1 gir1.2-wnck-3.0:amd64 3.30.0-2 -git 1:2.20.1-2 -git-man 1:2.20.1-2 +git 1:2.20.1-2+deb10u1 +git-man 1:2.20.1-2+deb10u1 gjs 1.54.3-1.0tails1 gkbd-capplet 3.26.1-1 glib-networking:amd64 2.58.0-2 @@ -317,14 +317,16 @@ ibus-hangul 1.5.1-1 ibus-libpinyin 1.11.0-1 ibus-unikey 0.6.1-1.1+b1 ifupdown 0.8.35 +imagemagick 8:6.9.10.23+dfsg-2.1 imagemagick-6-common 8:6.9.10.23+dfsg-2.1 +imagemagick-6.q16 8:6.9.10.23+dfsg-2.1 init 1.56+nmu1 init-system-helpers 1.56+nmu1 initramfs-tools 0.133+deb10u1 initramfs-tools-core 0.133+deb10u1 inkscape 0.92.4-3 inotify-tools 3.14-7 -intel-microcode 3.20191112.1~deb10u1 +intel-microcode 3.20191115.2~deb10u1 ipheth-utils 1.0-5 iproute2 4.20.0-2 iptables 1.8.2-4 @@ -349,7 +351,6 @@ libaccountsservice0:amd64 0.6.45-2 libacl1:amd64 2.2.53-4 libaio1:amd64 0.3.112-3 libalgorithm-c3-perl 0.10-1 -libaliased-perl 0.34-1 libamd2:amd64 1:5.4.0+dfsg-1 libanthy1:amd64 1:0.3-8.1 libanthyinput0:amd64 1:0.3-8.1 @@ -359,8 +360,6 @@ libaom0:amd64 1.0.0-3 libapparmor1:amd64 2.13.2-10 libapt-inst2.0:amd64 1.8.2 libapt-pkg5.0:amd64 1.8.2 -libarchive-tar-wrapper-perl 0.33-1 -libarchive-tools 3.3.3-4+deb10u1 libarchive-zip-perl 1.64-1 libarchive13:amd64 3.3.3-4+deb10u1 libargon2-1:amd64 0~20171227-0.2 @@ -389,6 +388,7 @@ libavahi-common3:amd64 0.7-4+b1 libavahi-glib1:amd64 0.7-4+b1 libavc1394-0:amd64 0.5.4-5 libavcodec58:amd64 7:4.1.4-1~deb10u1 +libavdevice58:amd64 7:4.1.4-1~deb10u1 libavfilter7:amd64 7:4.1.4-1~deb10u1 libavformat58:amd64 7:4.1.4-1~deb10u1 libavresample4:amd64 7:4.1.4-1~deb10u1 @@ -450,7 +450,6 @@ libcap2:amd64 1:2.25-2 libcap2-bin 1:2.25-2 libcarp-assert-more-perl 1.16-1 libcarp-assert-perl 0.21-1 -libcarp-clan-perl 6.07-1 libccid 1.4.30-1 libccolamd2:amd64 1:5.4.0+dfsg-1 libcdio-cdda2:amd64 10.2+0.94+2-4 @@ -469,11 +468,8 @@ libclass-accessor-perl 0.51-1 libclass-c3-perl 0.34-1 libclass-data-inheritable-perl 0.08-3 libclass-inspector-perl 1.32-1 -libclass-load-perl 0.25-1 -libclass-load-xs-perl 0.10-1+b3 libclass-method-modifiers-perl 2.12-1 libclass-singleton-perl 1.5-1 -libclass-tiny-perl 1.006-1 libclass-xsaccessor-perl 1.19-3+b2 libcld2-0:amd64 0.0.0-git20150806-6 libclone-perl 0.41-1+b1 @@ -493,7 +489,7 @@ libcolord2:amd64 1.4.3-4 libcolorhug2:amd64 1.4.3-4 libcom-err2:amd64 1.44.5-1+deb10u2 libconfig-any-perl 0.32-1 -libcontext-preserve-perl 0.03-1 +libconfig-tiny-perl 2.23-1 libcpanel-json-xs-perl 4.09-1 libcpprest2.10:amd64 2.10.10-1 libcrack2:amd64 2.9.6-2 @@ -506,7 +502,6 @@ libcupsfilters1:amd64 1.21.6-5 libcupsimage2:amd64 2.2.10-6+deb10u1 libcurl3-gnutls:amd64 7.64.0-4 libcurl4:amd64 7.64.0-4 -libdata-dumper-concise-perl 2.023-1 libdata-optlist-perl 0.110-1 libdata-perl-perl 0.002009-3 libdata-record-perl 0.02-4 @@ -527,15 +522,11 @@ libde265-0:amd64 1.0.3-1+b1 libdebconfclient0:amd64 0.249 libdesktop-notify-perl 0.05-2 libdevel-callchecker-perl 0.008-1 -libdevel-declare-perl 0.006019-1+b1 libdevel-globaldestruction-perl 0.14-1 -libdevel-overloadinfo-perl 0.005-1 -libdevel-partialdump-perl 0.20-1 libdevel-stacktrace-perl 2.0300-1 libdevmapper-event1.02.1:amd64 2:1.02.155-3 libdevmapper1.02.1:amd64 2:1.02.155-3 libdiscid0:amd64 0.6.2-3 -libdist-checkconflicts-perl 0.11-1 libdjvulibre-text 3.5.27.1-10 libdjvulibre21:amd64 3.5.27.1-10 libdmapsharing-3.0-2:amd64 2.9.39-4 @@ -605,6 +596,7 @@ libfftw3-double3:amd64 3.3.8-2 libfftw3-single3:amd64 3.3.8-2 libfile-configdir-perl 0.021-1 libfile-find-rule-perl 0.34-1 +libfile-homedir-perl 1.004-1 libfile-listing-perl 6.04-1 libfile-sharedir-perl 1.116-2 libfile-which-perl 1.23-1 @@ -649,6 +641,7 @@ libgeoip1:amd64 1.6.12-1 libgetopt-long-descriptive-perl 0.103-2 libgexiv2-2:amd64 0.10.9-1 libgfortran5:amd64 8.3.0-6 +libgif7:amd64 5.1.4-3 libgimp2.0 2.10.8-2 libgirepository-1.0-1:amd64 1.58.3-2 libgjs0g 1.54.3-1.0tails1 @@ -773,7 +766,6 @@ libio-html-perl 1.001-1 libio-pty-perl 1:1.08-1.1+b5 libio-socket-socks-perl 0.74-1 libio-socket-ssl-perl 2.060-3 -libio-string-perl 1.08-3 libio-stringy-perl 2.111-3 libip4tc0:amd64 1.8.2-4 libip6tc0:amd64 1.8.2-4 @@ -817,6 +809,7 @@ liblcms2-2:amd64 2.9-3 libldap-2.4-2:amd64 2.4.47+dfsg-3+deb10u1 libldap-common 2.4.47+dfsg-3+deb10u1 libldb1:amd64 2:1.5.1+really1.4.6-3 +liblept5 1.76.0-1 liblilv-0-0:amd64 0.24.2~dfsg0-2 liblirc-client0:amd64 0.10.1-5.2 liblist-moreutils-perl 0.416-1+b4 @@ -824,7 +817,6 @@ libllvm7:amd64 1:7.0.1-8 liblmdb0:amd64 0.9.22-1 liblocale-gettext-perl 1.07-3+b4 liblockfile-bin 1.14-1.1 -liblog-log4perl-perl 1.49-1 liblognorm5:amd64 2.0.5-1 liblouis-data 3.8.0-2 liblouis17:amd64 3.8.0-2 @@ -853,7 +845,6 @@ libmbim-glib4:amd64 1.18.0-1 libmbim-proxy 1.18.0-1 libmeanwhile1:amd64 1.0.2-9 libmediaart-2.0-0:amd64 1.9.4-2 -libmethod-signatures-simple-perl 1.07-1 libmetis5:amd64 5.1.0.dfsg-5+b2 libmhash2:amd64 0.9.9.9-7+b1 libmime-charset-perl 1.012.2-1 @@ -865,20 +856,8 @@ libmnl0:amd64 1.0.4-2 libmodplug1:amd64 1:0.8.9.0-2 libmodule-implementation-perl 0.09-1 libmodule-pluggable-perl 5.2-1 -libmodule-runtime-conflicts-perl 0.003-1 libmodule-runtime-perl 0.016-1 libmoo-perl 2.003004-2 -libmoose-perl 2.2011-1+b1 -libmoosex-getopt-perl 0.74-1 -libmoosex-has-sugar-perl 1.000006-1 -libmoosex-lazyrequire-perl 0.11-1 -libmoosex-meta-typeconstraint-forcecoercion-perl 0.01-2 -libmoosex-method-signatures-perl 0.49-1 -libmoosex-role-parameterized-perl 1.10-1 -libmoosex-traits-perl 0.13-2 -libmoosex-types-path-class-perl 0.09-1 -libmoosex-types-perl 0.50-1 -libmoosex-types-structured-perl 0.36-1 libmoox-configfromfile-perl 0.009-2 libmoox-file-configdir-perl 0.007-2 libmoox-handlesvia-perl 0.001008-4 @@ -940,7 +919,7 @@ libnotify-bin 0.7.7-4 libnotify4:amd64 0.7.7-4 libnpth0:amd64 1.6-1 libnspr4:amd64 2:4.20-1 -libnss3:amd64 2:3.42.1-1+deb10u1 +libnss3:amd64 2:3.42.1-1+deb10u2 libntfs-3g883 1:2017.3.23AR.3-3 libnuma1:amd64 2.0.12-1 libnumber-compare-perl 0.03-1 @@ -964,7 +943,6 @@ liborc-0.4-0:amd64 1:0.4.28-3.1 liborcus-0.14-0:amd64 0.14.1-6 libotr5:amd64 4.1.1-3 libp11-kit0:amd64 0.23.15-2 -libpackage-deprecationmanager-perl 0.17-1 libpackage-stash-perl 0.38-1 libpackage-stash-xs-perl 0.29-1 libpackagekit-glib2-18:amd64 1.1.12-5 @@ -987,7 +965,6 @@ libparams-classify-perl 0.015-1+b1 libparams-util-perl 1.07-3+b4 libparams-validate-perl 1.29-1+b1 libparams-validationcompiler-perl 0.30-1 -libparse-method-signatures-perl 1.003019-1 libparted-fs-resize0:amd64 3.2-25 libparted2:amd64 3.2-25 libpath-class-perl 0.37-1 @@ -1024,7 +1001,6 @@ libportaudio2:amd64 19.6.0-1 libportsmf0:amd64 0.1~svn20101010-5 libpostproc55:amd64 7:4.1.4-1~deb10u1 libpotrace0:amd64 1.15-1 -libppi-perl 1.236-1 libprocps7:amd64 2:3.3.15-2 libprotobuf-c1:amd64 1.3.1-1+b1 libprotobuf17:amd64 3.6.1.3-2 @@ -1107,11 +1083,12 @@ libsamplerate0:amd64 0.1.9-2 libsane:amd64 1.0.27-3.2 libsane-common 1.0.27-3.2 libsane-hpaio:amd64 3.18.12+dfsg0-2 -libsasl2-2:amd64 2.1.27+dfsg-1 -libsasl2-modules:amd64 2.1.27+dfsg-1 -libsasl2-modules-db:amd64 2.1.27+dfsg-1 +libsasl2-2:amd64 2.1.27+dfsg-1+deb10u1 +libsasl2-modules:amd64 2.1.27+dfsg-1+deb10u1 +libsasl2-modules-db:amd64 2.1.27+dfsg-1+deb10u1 libsbc1:amd64 1.4-1 libsdl1.2debian:amd64 1.2.15+dfsg2-4 +libsdl2-2.0-0:amd64 2.0.9+dfsg1-1 libseccomp2:amd64 2.3.3-4 libsecret-1-0:amd64 0.18.7-1 libsecret-common 0.18.7-1 @@ -1163,7 +1140,6 @@ libstemmer0d:amd64 0+svn585-1+b2 libstrictures-perl 2.000005-1 libstring-errf-perl 0.008-1 libstring-formatter-perl 0.102084-1 -libsub-exporter-formethods-perl 0.100052-1 libsub-exporter-perl 0.987-1 libsub-exporter-progressive-perl 0.001013-1 libsub-identify-perl 0.14-1+b1 @@ -1183,10 +1159,10 @@ libsystemd0:amd64 241-7~deb10u2 libtag1v5:amd64 1.11.1+dfsg.1-0.3 libtag1v5-vanilla:amd64 1.11.1+dfsg.1-0.3 libtalloc2:amd64 2.1.14-2 -libtask-weaken-perl 1.06-1 libtasn1-6:amd64 4.13-3 libtdb1:amd64 1.3.16-2+b1 libteamdctl0:amd64 1.28-1 +libtesseract4:amd64 4.0.0-2 libtevent0:amd64 0.9.37-1 libtext-charwidth-perl 0.04-7.1+b1 libtext-glob-perl 0.10-1 @@ -1195,6 +1171,7 @@ libtext-wrapi18n-perl 0.06-7.1 libthai-data 0.1.28-2 libthai0:amd64 0.1.28-2 libtheora0:amd64 1.1.1+dfsg.1-15 +libtie-ixhash-perl 1.23-2 libtiff5:amd64 4.0.10-4 libtimedate-perl 2.3000-2 libtinfo6:amd64 6.1+20181013-2+deb10u2 @@ -1362,7 +1339,7 @@ libzvbi-common 0.2.35-16 libzvbi0:amd64 0.2.35-16 libzxcvbn0:amd64 2.4+dfsg-2 linux-base 4.6 -linux-image-5.3.0-2-amd64 5.3.9-2 +linux-image-5.3.0-3-amd64 5.3.15-1 live-boot 1:20170112 live-boot-initramfs-tools 1:20170112 live-config 5.20190519 @@ -1432,6 +1409,7 @@ passwd 1:4.5-1.1 patch 2.7.6-3+deb10u1 pciutils 1:3.5.2-1 pcscd 1.8.24-1 +pdf-redact-tools 0.1.2-1 perl 5.28.1-6 perl-base 5.28.1-6 perl-modules-5.28 5.28.1-6 @@ -1497,7 +1475,7 @@ python3-distro 1.3.0-1 python3-distutils 3.7.3-1 python3-dnspython 1.16.0-1 python3-dogtail 0.9.11-5 -python3-ecdsa 0.13-3 +python3-ecdsa 0.13-3+deb10u1 python3-electrum 3.3.8-0.1 python3-flask 1.0.2-3 python3-gi 3.30.4-1 @@ -1586,23 +1564,25 @@ systemd 241-7~deb10u2 systemd-sysv 241-7~deb10u2 sysvinit-utils 2.93-8 tails-installer 5.0.16+dfsg-0tails1 -tails-iuk 4.0.3-1 -tails-perl5lib 2.0.3-1 +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 -thunderbird 1:68.2.2-1~deb10u1 -thunderbird-l10n-ar 1:68.2.2-1~deb10u1 -thunderbird-l10n-de 1:68.2.2-1~deb10u1 -thunderbird-l10n-es-es 1:68.2.2-1~deb10u1 -thunderbird-l10n-fr 1:68.2.2-1~deb10u1 -thunderbird-l10n-id 1:68.2.2-1~deb10u1 -thunderbird-l10n-it 1:68.2.2-1~deb10u1 -thunderbird-l10n-pt-br 1:68.2.2-1~deb10u1 -thunderbird-l10n-ru 1:68.2.2-1~deb10u1 -thunderbird-l10n-tr 1:68.2.2-1~deb10u1 -thunderbird-l10n-zh-cn 1:68.2.2-1~deb10u1 +tesseract-ocr 4.0.0-2 +tesseract-ocr-eng 1:4.00~git30-7274cfa-1 +tesseract-ocr-osd 1:4.00~git30-7274cfa-1 +thunderbird 1:68.3.0-2~deb10u1 +thunderbird-l10n-ar 1:68.3.0-2~deb10u1 +thunderbird-l10n-de 1:68.3.0-2~deb10u1 +thunderbird-l10n-es-es 1:68.3.0-2~deb10u1 +thunderbird-l10n-fr 1:68.3.0-2~deb10u1 +thunderbird-l10n-id 1:68.3.0-2~deb10u1 +thunderbird-l10n-it 1:68.3.0-2~deb10u1 +thunderbird-l10n-pt-br 1:68.3.0-2~deb10u1 +thunderbird-l10n-ru 1:68.3.0-2~deb10u1 +thunderbird-l10n-tr 1:68.3.0-2~deb10u1 +thunderbird-l10n-zh-cn 1:68.3.0-2~deb10u1 tor 0.4.1.6-1~d10.buster+1 tor-geoipdb 0.4.1.6-1~d10.buster+1 torsocks 2.3.0-2 diff --git a/wiki/src/upgrade.tr.po b/wiki/src/upgrade.tr.po index b724f44a0a9ef2e12dd03eea92bb20286f16e412..5c395729e281d4069607b10905bd4faab112ad17 100644 --- a/wiki/src/upgrade.tr.po +++ b/wiki/src/upgrade.tr.po @@ -3,18 +3,20 @@ # 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" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-22 14:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -24,7 +26,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!meta robots=\"noindex\"]]\n" -msgstr "" +msgstr "[[!meta robots=\"noindex\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/clone-overview.fr.po b/wiki/src/upgrade/clone-overview.fr.po index 0670e76f1881185e26b140a60ecdcf123fdc5d95..9a154501b09388586c46e5bb8e48e0bd1240aef1 100644 --- a/wiki/src/upgrade/clone-overview.fr.po +++ b/wiki/src/upgrade/clone-overview.fr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: 2019-10-01 18:42+0000\n" +"PO-Revision-Date: 2020-01-03 14:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: fr\n" @@ -16,13 +16,13 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> -#, fuzzy -#| msgid "[[!meta title=\"Manually upgrade from another Tails\"]]" msgid "[[!meta title=\"Manually upgrade by cloning from another Tails\"]]" -msgstr "[[!meta title=\"Mettre à jour manuellement depuis un autre Tails\"]]" +msgstr "" +"[[!meta title=\"Mettre à jour manuellement en clonant depuis un autre Tails\"" +"]]" #. type: Content of: outside any tag (error?) msgid "" @@ -42,7 +42,7 @@ msgstr "" #. type: Content of: <div><div> msgid "Let's go!" -msgstr "C'est parti !" +msgstr "Allons-y !" #. type: Content of: outside any tag (error?) msgid "|upgrade/clone]]" diff --git a/wiki/src/upgrade/clone-overview.it.po b/wiki/src/upgrade/clone-overview.it.po index 0652ab87c9657fed976110d5fb0989568d0d6e99..26d41484ad17b09ddfb3686c2851b0095a13346f 100644 --- a/wiki/src/upgrade/clone-overview.it.po +++ b/wiki/src/upgrade/clone-overview.it.po @@ -6,15 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: transitails\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 00:30+0000\n" -"PO-Revision-Date: 2016-08-25 18:01-0000\n" -"Last-Translator: transitails <transitails@inventati.org>\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" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.10\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> #, fuzzy @@ -23,15 +25,6 @@ msgid "[[!meta title=\"Manually upgrade by cloning from another Tails\"]]" msgstr "Aggiornamento manuale da <strong>un altra Tails</strong>" #. type: Content of: outside any tag (error?) -#, fuzzy -#| msgid "" -#| "[[!meta title=\"Manually upgrade from another Tails\"]] [[!meta robots=" -#| "\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" " -#| "title=\"\"]] [[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=" -#| "\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/stylesheets/" -#| "overview\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/" -#| "inc/stylesheets/upgrade-clone\" rel=\"stylesheet\" title=\"\"]] [[!inline " -#| "pages=\"install/inc/overview\" raw=\"yes\" sort=\"age\"]] [[" msgid "" "[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=" "\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/stylesheets/" @@ -40,13 +33,12 @@ msgid "" "\"install/inc/stylesheets/upgrade-clone\" rel=\"stylesheet\" title=\"\"]] [[!" "inline pages=\"install/inc/overview\" raw=\"yes\" sort=\"age\"]] [[" msgstr "" -"[[!meta title=\"Aggiornamento Manuale da un altra Tails\"]] [[!meta robots=" -"\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=" -"\"\"]] [[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=" -"\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/stylesheets/" -"overview\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/" -"stylesheets/upgrade-clone\" rel=\"stylesheet\" title=\"\"]] [[!inline pages=" -"\"install/inc/overview.it\" raw=\"yes\" sort=\"age\"]] [[" +"[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"" +"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/stylesheets/" +"assistant\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/" +"stylesheets/overview\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"" +"install/inc/stylesheets/upgrade-clone\" rel=\"stylesheet\" title=\"\"]] [[" +"!inline pages=\"install/inc/overview.it\" raw=\"yes\" sort=\"age\"]] [[" #. type: Content of: <div><div> msgid "Let's go!" diff --git a/wiki/src/upgrade/clone.fa.po b/wiki/src/upgrade/clone.fa.po index 778276c9a57dc542faccec26de2043f0b39156a2..ecaf36760be9d3d0990b89a7a4917dc0f0daeb68 100644 --- a/wiki/src/upgrade/clone.fa.po +++ b/wiki/src/upgrade/clone.fa.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2018-04-24 16:42+0300\n" -"PO-Revision-Date: 2019-11-22 08:51+0000\n" +"PO-Revision-Date: 2020-01-22 15:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fa\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -37,11 +37,15 @@ msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\n" #, no-wrap msgid "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -59,6 +63,8 @@ msgstr "" #, no-wrap msgid "[[!inline pages=\"install/inc/steps/verify_up-to-date.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/verify_up-to-date.inline.fa\" raw=\"yes\"" +" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/linux-download.fa.po b/wiki/src/upgrade/linux-download.fa.po index e78a7a04047ad7d678761465a7ec1fa550833dc6..c54beade5a33dd61c4115eb1a114fac026375fe3 100644 --- a/wiki/src/upgrade/linux-download.fa.po +++ b/wiki/src/upgrade/linux-download.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-22 08:51+0000\n" +"PO-Revision-Date: 2020-01-22 15:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fa\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -38,6 +38,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -45,6 +47,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/download\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/download\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -52,6 +56,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -63,7 +69,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!meta script=\"install/inc/js/download\"]]\n" -msgstr "" +msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap @@ -71,3 +77,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/download.inline.fa\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/linux-download.it.po b/wiki/src/upgrade/linux-download.it.po index d77a9184aae6b61c9bfba9548c0c3c59e771abf7..257ed2972ecc27ee3a5c3258e8a39b6c6292eb0a 100644 --- a/wiki/src/upgrade/linux-download.it.po +++ b/wiki/src/upgrade/linux-download.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-16 12:01+0000\n" +"PO-Revision-Date: 2020-01-22 14:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: it\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -47,6 +47,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/download\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/download\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -63,11 +65,13 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/upgrade-linux\" " "rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/upgrade-linux\" rel=\"" +"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta script=\"install/inc/js/download\"]]\n" -msgstr "" +msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap @@ -75,3 +79,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/download.inline.it\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/linux-download.pt.po b/wiki/src/upgrade/linux-download.pt.po index 70d2cf3da55285f58a9665e6803f52b004726761..cd284b95d400f7856fe96321c9cab95c9de8fea4 100644 --- a/wiki/src/upgrade/linux-download.pt.po +++ b/wiki/src/upgrade/linux-download.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-22 08:52+0000\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" "Language: pt\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -38,6 +38,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -52,6 +54,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -59,11 +63,13 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/upgrade-linux\" " "rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/upgrade-linux\" rel=\"" +"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta script=\"install/inc/js/download\"]]\n" -msgstr "" +msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap @@ -71,3 +77,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/download.inline.pt\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/linux-download.tr.po b/wiki/src/upgrade/linux-download.tr.po index 890663dcff632492fbd9a5828fa3f178c9d05e6f..d2aee2f08a76588428e9ba58742c62d48c1cecc3 100644 --- a/wiki/src/upgrade/linux-download.tr.po +++ b/wiki/src/upgrade/linux-download.tr.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-22 14:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -24,12 +25,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!meta robots=\"noindex\"]]\n" -msgstr "" +msgstr "[[!meta robots=\"noindex\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" +msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/linux-overview.fr.po b/wiki/src/upgrade/linux-overview.fr.po index c98b5620feae1df7c102e466481e2e8acf407105..2b4190955ededbc0907b61d8b310e1615902ac0c 100644 --- a/wiki/src/upgrade/linux-overview.fr.po +++ b/wiki/src/upgrade/linux-overview.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-10-31 12:50+0000\n" +"PO-Revision-Date: 2020-01-02 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Manually upgrade from Linux\"]]" @@ -35,7 +35,7 @@ msgstr "" #. type: Content of: <div><div> msgid "Let's go!" -msgstr "" +msgstr "Allons-y !" #. type: Content of: outside any tag (error?) msgid "|upgrade/linux-download]]" diff --git a/wiki/src/upgrade/linux-overview.it.po b/wiki/src/upgrade/linux-overview.it.po index a6f600cdad64a158e1d03d51387991feafb9edb6..4eb66f1a1d1a8fd86f5f2254dde16e5fb71d4d05 100644 --- a/wiki/src/upgrade/linux-overview.it.po +++ b/wiki/src/upgrade/linux-overview.it.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-17 12:26+0000\n" +"Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Manually upgrade from Linux\"]]" @@ -31,6 +32,12 @@ msgid "" "title=\"\"]] [[!inline pages=\"install/inc/overview\" raw=\"yes\" " "sort=\"age\"]] [[" msgstr "" +"[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"" +"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/stylesheets/" +"assistant\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/" +"stylesheets/overview\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"" +"install/inc/stylesheets/upgrade-linux\" rel=\"stylesheet\" title=\"\"]] [[" +"!inline pages=\"install/inc/overview.it\" raw=\"yes\" sort=\"age\"]] [[" #. type: Content of: <div><div> msgid "Let's go!" @@ -38,4 +45,4 @@ msgstr "" #. type: Content of: outside any tag (error?) msgid "|upgrade/linux-download]]" -msgstr "" +msgstr "|upgrade/linux-download]]" diff --git a/wiki/src/upgrade/linux-overview.pt.po b/wiki/src/upgrade/linux-overview.pt.po index a6f600cdad64a158e1d03d51387991feafb9edb6..8283e55f622f05676c6add454d019e6552cfd156 100644 --- a/wiki/src/upgrade/linux-overview.pt.po +++ b/wiki/src/upgrade/linux-overview.pt.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Manually upgrade from Linux\"]]" @@ -34,7 +35,7 @@ msgstr "" #. type: Content of: <div><div> msgid "Let's go!" -msgstr "" +msgstr "Vamos lá!" #. type: Content of: outside any tag (error?) msgid "|upgrade/linux-download]]" diff --git a/wiki/src/upgrade/linux.ar.po b/wiki/src/upgrade/linux.ar.po index cde81a9f3cad224670e2ed73a5e7cf275ff6216a..dfee5ee4fcb9d5c2530c65af0be85a626522b88b 100644 --- a/wiki/src/upgrade/linux.ar.po +++ b/wiki/src/upgrade/linux.ar.po @@ -3,18 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-22 15:28+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -49,12 +51,14 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"hidden-step-1\"></div>\n" -msgstr "" +msgstr "<div class=\"hidden-step-1\"></div>\n" #. type: Plain text #, no-wrap msgid "<div class=\"step-image\">[[!img install/inc/infography/os-linux.png link=\"no\" alt=\"\"]]</div>\n" msgstr "" +"<div class=\"step-image\">[[!img install/inc/infography/os-linux.png link=\"" +"no\" alt=\"\"]]</div>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/linux.de.po b/wiki/src/upgrade/linux.de.po index 60fd6d8ce36266e155ca45c18a4ba221e5267141..0c6a32b543cba475c04550b880e4b406174b4f11 100644 --- a/wiki/src/upgrade/linux.de.po +++ b/wiki/src/upgrade/linux.de.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -93,6 +94,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/restart_first_time.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/restart_first_time.inline.de\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -100,3 +103,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/clone.inline.de\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/linux.fa.po b/wiki/src/upgrade/linux.fa.po index 5c08031750aaf41ab321c282b58aa20c13e31157..6e79540935c10b4bfd043b377db73cf722e8bd5b 100644 --- a/wiki/src/upgrade/linux.fa.po +++ b/wiki/src/upgrade/linux.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-22 08:51+0000\n" +"PO-Revision-Date: 2020-01-22 15:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fa\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -38,6 +38,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -45,6 +47,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -56,7 +60,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"hidden-step-1\"></div>\n" -msgstr "" +msgstr "<div class=\"hidden-step-1\"></div>\n" #. type: Plain text #, no-wrap @@ -64,6 +68,8 @@ msgid "" "<div class=\"step-image\">[[!img install/inc/infography/os-linux.png " "link=\"no\" alt=\"\"]]</div>\n" msgstr "" +"<div class=\"step-image\">[[!img install/inc/infography/os-linux.png link=\"" +"no\" alt=\"\"]]</div>\n" #. type: Plain text #, no-wrap @@ -82,11 +88,13 @@ msgid "" msgstr "" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap msgid "" "[[!inline pages=\"install/inc/steps/install_with_gnome_disks.inline\" " "raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_gnome_disks.inline.fa\" raw=" +"\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -94,6 +102,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/restart_first_time.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/restart_first_time.inline.fa\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -101,3 +111,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/clone.inline.fa\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/linux.fr.po b/wiki/src/upgrade/linux.fr.po index 6fcbedc6f1168ad097d598a2bc2f6016b01b72f1..fe88973c9db80e1f016c3420d73c81cf985e0222 100644 --- a/wiki/src/upgrade/linux.fr.po +++ b/wiki/src/upgrade/linux.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-10-31 12:55+0000\n" +"PO-Revision-Date: 2020-01-03 14:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -76,7 +76,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<p class=\"start\">Start in Tails.</p>\n" -msgstr "" +msgstr "<p class=\"start\">Démarrez Tails.</p>\n" #. type: Title = #, no-wrap diff --git a/wiki/src/upgrade/linux.it.po b/wiki/src/upgrade/linux.it.po index 2fc0ee526843fa3a0b85d56eb08e4ab8e3361374..c617d1da8a1dc6ab618ef0d98676406834d8341f 100644 --- a/wiki/src/upgrade/linux.it.po +++ b/wiki/src/upgrade/linux.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-16 12:01+0000\n" +"PO-Revision-Date: 2020-01-17 12:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: it\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -56,6 +56,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/upgrade-linux\" " "rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/upgrade-linux\" rel=\"" +"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -93,6 +95,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/install_with_gnome_disks.inline\" " "raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_gnome_disks.inline.it\" raw=" +"\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/linux.pt.po b/wiki/src/upgrade/linux.pt.po index 5f15b13037fa7d0679901c5f52f13bb2a7ca68c4..c07e4fb6c9815c41546b72a6886dad77e8fb817a 100644 --- a/wiki/src/upgrade/linux.pt.po +++ b/wiki/src/upgrade/linux.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-22 08:52+0000\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" "Language: pt\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -38,6 +38,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -45,6 +47,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -52,11 +56,13 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/upgrade-linux\" " "rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/upgrade-linux\" rel=\"" +"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap msgid "<div class=\"hidden-step-1\"></div>\n" -msgstr "" +msgstr "<div class=\"hidden-step-1\"></div>\n" #. type: Plain text #, no-wrap @@ -64,22 +70,26 @@ msgid "" "<div class=\"step-image\">[[!img install/inc/infography/os-linux.png " "link=\"no\" alt=\"\"]]</div>\n" msgstr "" +"<div class=\"step-image\">[[!img install/inc/infography/os-linux.png link=\"" +"no\" alt=\"\"]]</div>\n" #. type: Plain text #, no-wrap msgid "<p class=\"start\">Start in Tails.</p>\n" -msgstr "" +msgstr "<p class=\"start\">Inicie o Tails.</p>\n" #. type: Title = #, no-wrap msgid "Install an intermediary Tails\n" -msgstr "" +msgstr "Instale um Tails intermediário\n" #. type: Plain text msgid "" "In this step, you will install an intermediary Tails using the Tails USB " "image that you downloaded earlier." msgstr "" +"Nesta etapa, você instalará um Tails intermediário usando a imagem USB do " +"Tails obtida anteriormente." #. type: Plain text #, no-wrap @@ -87,6 +97,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/install_with_gnome_disks.inline\" " "raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_gnome_disks.inline.pt\" raw=" +"\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -94,6 +106,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/restart_first_time.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/restart_first_time.inline.pt\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -101,3 +115,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/clone.inline.pt\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/linux.tr.po b/wiki/src/upgrade/linux.tr.po index 2c7630114ee815e0135529c3bd4d901c30e9f767..d20c63d6f08717fe85ba6a890e653364ff02b169 100644 --- a/wiki/src/upgrade/linux.tr.po +++ b/wiki/src/upgrade/linux.tr.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-22 14:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -24,12 +25,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!meta robots=\"noindex\"]]\n" -msgstr "" +msgstr "[[!meta robots=\"noindex\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" +msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -49,12 +50,14 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<div class=\"hidden-step-1\"></div>\n" -msgstr "" +msgstr "<div class=\"hidden-step-1\"></div>\n" #. type: Plain text #, no-wrap msgid "<div class=\"step-image\">[[!img install/inc/infography/os-linux.png link=\"no\" alt=\"\"]]</div>\n" msgstr "" +"<div class=\"step-image\">[[!img install/inc/infography/os-linux.png link=\"" +"no\" alt=\"\"]]</div>\n" #. type: Plain text #, no-wrap @@ -81,6 +84,8 @@ msgstr "" #, no-wrap msgid "[[!inline pages=\"install/inc/steps/restart_first_time.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/restart_first_time.inline.tr\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/mac-download.fa.po b/wiki/src/upgrade/mac-download.fa.po index 594943372b00bdc0efce629d6056ad6c89ed7e51..d9d66fad31e3751470ae257bc589cebd3d9f618b 100644 --- a/wiki/src/upgrade/mac-download.fa.po +++ b/wiki/src/upgrade/mac-download.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-22 08:51+0000\n" +"PO-Revision-Date: 2020-01-22 15:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fa\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -38,6 +38,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -45,6 +47,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/download\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/download\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -52,6 +56,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -63,7 +69,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!meta script=\"install/inc/js/download\"]]\n" -msgstr "" +msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap @@ -71,3 +77,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/download.inline.fa\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/mac-download.it.po b/wiki/src/upgrade/mac-download.it.po index 25badc02bf8a5b69cde4534d6d647e9d4a8ed1b1..b93063062735d9853463916d2d1a6bba5a650fbb 100644 --- a/wiki/src/upgrade/mac-download.it.po +++ b/wiki/src/upgrade/mac-download.it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-14 18:32+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-17 12:26+0000\n" +"Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -65,6 +65,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/upgrade-mac\" " "rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/upgrade-mac\" rel=\"stylesheet\"" +" title=\"\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/mac-download.pt.po b/wiki/src/upgrade/mac-download.pt.po index 71dfb882d11a1eac66eacab9059b9e934b70392e..e8cf63dc12804c84cf60a223fa3de8a6f79634f8 100644 --- a/wiki/src/upgrade/mac-download.pt.po +++ b/wiki/src/upgrade/mac-download.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-22 08:52+0000\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" "Language: pt\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -38,6 +38,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -52,6 +54,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -63,7 +67,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!meta script=\"install/inc/js/download\"]]\n" -msgstr "" +msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap @@ -71,3 +75,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/download.inline.pt\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/mac-download.tr.po b/wiki/src/upgrade/mac-download.tr.po index 2bab1a5da6502c80c2ffd7381ed144e04fe4d120..5333a717c507761f6f6dbd6445eb47abb692af82 100644 --- a/wiki/src/upgrade/mac-download.tr.po +++ b/wiki/src/upgrade/mac-download.tr.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-22 14:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -24,12 +25,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!meta robots=\"noindex\"]]\n" -msgstr "" +msgstr "[[!meta robots=\"noindex\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" +msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/mac-overview.fr.po b/wiki/src/upgrade/mac-overview.fr.po index e64b15e30e6e3d90261e160cc078e60bcc6f6e91..03a8accc3df5cc1d5d99acfa028220135a1796ed 100644 --- a/wiki/src/upgrade/mac-overview.fr.po +++ b/wiki/src/upgrade/mac-overview.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-10-31 12:55+0000\n" +"PO-Revision-Date: 2020-01-02 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Manually upgrade from macOS\"]]" @@ -35,7 +35,7 @@ msgstr "" #. type: Content of: <div><div> msgid "Let's go!" -msgstr "" +msgstr "Allons-y !" #. type: Content of: outside any tag (error?) msgid "|upgrade/mac-download]]" diff --git a/wiki/src/upgrade/mac-overview.it.po b/wiki/src/upgrade/mac-overview.it.po index 7fe4d396ac3317d105aacfe998dd71728a57c7f3..e996433c28040f1e95833231efc4a45c24a7f571 100644 --- a/wiki/src/upgrade/mac-overview.it.po +++ b/wiki/src/upgrade/mac-overview.it.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-17 12:26+0000\n" +"Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Manually upgrade from macOS\"]]" @@ -31,6 +32,12 @@ msgid "" "title=\"\"]] [[!inline pages=\"install/inc/overview\" raw=\"yes\" " "sort=\"age\"]] [[" msgstr "" +"[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"" +"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/stylesheets/" +"assistant\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/" +"stylesheets/overview\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"" +"install/inc/stylesheets/upgrade-mac\" rel=\"stylesheet\" title=\"\"]] [[" +"!inline pages=\"install/inc/overview.it\" raw=\"yes\" sort=\"age\"]] [[" #. type: Content of: <div><div> msgid "Let's go!" @@ -38,4 +45,4 @@ msgstr "" #. type: Content of: outside any tag (error?) msgid "|upgrade/mac-download]]" -msgstr "" +msgstr "|upgrade/mac-download]]" diff --git a/wiki/src/upgrade/mac-overview.pt.po b/wiki/src/upgrade/mac-overview.pt.po index 7fe4d396ac3317d105aacfe998dd71728a57c7f3..b5dfaae65f5d08194c5a2c1de582c4e05b2d669d 100644 --- a/wiki/src/upgrade/mac-overview.pt.po +++ b/wiki/src/upgrade/mac-overview.pt.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Manually upgrade from macOS\"]]" @@ -34,7 +35,7 @@ msgstr "" #. type: Content of: <div><div> msgid "Let's go!" -msgstr "" +msgstr "Vamos lá!" #. type: Content of: outside any tag (error?) msgid "|upgrade/mac-download]]" diff --git a/wiki/src/upgrade/mac.de.po b/wiki/src/upgrade/mac.de.po index bbb708a5ccfa404cc60c01b4de8c12235a874219..4814bc6d302e97402d459c20ba9dea6df30e6cb8 100644 --- a/wiki/src/upgrade/mac.de.po +++ b/wiki/src/upgrade/mac.de.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -65,6 +66,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/install_with_etcher.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_etcher.inline.de\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -72,6 +75,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/restart_first_time.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/restart_first_time.inline.de\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -79,3 +84,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/clone.inline.de\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/mac.fa.po b/wiki/src/upgrade/mac.fa.po index 7ec4937c2e6a859f309bbbad482aa47e202073e8..e94abf1618287d0995b720453cde58ea69e67d67 100644 --- a/wiki/src/upgrade/mac.fa.po +++ b/wiki/src/upgrade/mac.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-22 08:51+0000\n" +"PO-Revision-Date: 2020-01-22 15:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fa\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -38,6 +38,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -45,6 +47,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -59,6 +63,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/install_etcher_in_mac.inline\" " "raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/install_etcher_in_mac.inline.fa\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -66,6 +72,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/install_with_etcher.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_etcher.inline.fa\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -73,6 +81,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/restart_first_time.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/restart_first_time.inline.fa\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -80,3 +90,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/clone.inline.fa\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/mac.it.po b/wiki/src/upgrade/mac.it.po index 40ef99bc352956d61d0a3ba4a50ae5585e0491c5..6cc91a81bdbbf98f04fb7f3ccad3adebb0566b4b 100644 --- a/wiki/src/upgrade/mac.it.po +++ b/wiki/src/upgrade/mac.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-16 12:01+0000\n" +"PO-Revision-Date: 2020-01-17 12:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: it\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -56,6 +56,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/upgrade-mac\" " "rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/upgrade-mac\" rel=\"stylesheet\"" +" title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -63,6 +65,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/install_etcher_in_mac.inline\" " "raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/install_etcher_in_mac.inline.it\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/mac.pt.po b/wiki/src/upgrade/mac.pt.po index 6c7b1a182a26e61321f3053fe27cab35d075d7a3..a297fa522ec70b60363149555d13f386620bcafa 100644 --- a/wiki/src/upgrade/mac.pt.po +++ b/wiki/src/upgrade/mac.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-22 08:52+0000\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" "Language: pt\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -38,6 +38,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -45,6 +47,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -66,6 +70,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/install_with_etcher.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_etcher.inline.pt\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -73,6 +79,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/restart_first_time.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/restart_first_time.inline.pt\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -80,3 +88,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/clone.inline.pt\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/mac.tr.po b/wiki/src/upgrade/mac.tr.po index 10b2978ccd4b6cc26bd4485557169ec76f771bda..0fc8a87a00ad2e0ab091a61df48fad3d83d95f41 100644 --- a/wiki/src/upgrade/mac.tr.po +++ b/wiki/src/upgrade/mac.tr.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-22 14:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -24,12 +25,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!meta robots=\"noindex\"]]\n" -msgstr "" +msgstr "[[!meta robots=\"noindex\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" +msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/tails-download.fa.po b/wiki/src/upgrade/tails-download.fa.po index 5bea4e5bf9269c005485204160112eca40f50c6c..842125ce69a41fe9fd594a8f5017da1c63e8e7fc 100644 --- a/wiki/src/upgrade/tails-download.fa.po +++ b/wiki/src/upgrade/tails-download.fa.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-11-22 08:51+0000\n" +"PO-Revision-Date: 2020-01-22 15:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fa\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -37,28 +37,38 @@ msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\n" #, no-wrap msgid "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta stylesheet=\"install/inc/stylesheets/download\" rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/download\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta stylesheet=\"install/inc/stylesheets/upgrade-tails\" rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/upgrade-tails\" rel=\"" +"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta script=\"install/inc/js/download\"]]\n" -msgstr "" +msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/download.inline.fa\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/tails-download.fr.po b/wiki/src/upgrade/tails-download.fr.po index 69819b17c0c98a45787d545c84f16a3e82e40bb7..0052a6af57916a2ac2bd7400d481fa2c2db40eeb 100644 --- a/wiki/src/upgrade/tails-download.fr.po +++ b/wiki/src/upgrade/tails-download.fr.po @@ -6,21 +6,22 @@ msgid "" msgstr "" "Project-Id-Version: \n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2018-01-04 16:00+0000\n" -"Last-Translator: \n" +"PO-Revision-Date: 2020-01-03 14:26+0000\n" +"Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.11\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!meta title=\"Manually upgrade inside Tails (or Linux)\"]]\n" +#, no-wrap msgid "[[!meta title=\"Manually upgrade from your Tails\"]]\n" -msgstr "[[!meta title=\"Mettre à jour manuellement dans Tails (ou Linux)\"]]\n" +msgstr "[[!meta title=\"Mettre à jour manuellement depuis votre Tails\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/tails-overview.fr.po b/wiki/src/upgrade/tails-overview.fr.po index 2b4da5a98a45049ff33c359a4559416e389c1830..d1b24185f8721a552b68fd13aca20bbfff9ededf 100644 --- a/wiki/src/upgrade/tails-overview.fr.po +++ b/wiki/src/upgrade/tails-overview.fr.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-01 18:29+0000\n" +"PO-Revision-Date: 2020-01-03 14:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: fr\n" @@ -16,13 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> -#, fuzzy -#| msgid "[[!meta title=\"Manually upgrade inside Tails (or Linux)\"]]" msgid "[[!meta title=\"Manually upgrade from your Tails\"]]" -msgstr "[[!meta title=\"Mettre à jour manuellement dans Tails (ou Linux)\"]]" +msgstr "[[!meta title=\"Mettre à jour manuellement depuis votre Tails\"]]" #. type: Content of: outside any tag (error?) msgid "" @@ -42,7 +40,7 @@ msgstr "" #. type: Content of: <div><div> msgid "Let's go!" -msgstr "C'est parti !" +msgstr "Allons-y !" #. type: Content of: outside any tag (error?) msgid "|upgrade/tails-download]]" diff --git a/wiki/src/upgrade/tails-overview.it.po b/wiki/src/upgrade/tails-overview.it.po index b5b3c372a6f294f7134f10c22edff7dea2ba54db..532284af6fda0adc11e0ed5aace9053873404ca3 100644 --- a/wiki/src/upgrade/tails-overview.it.po +++ b/wiki/src/upgrade/tails-overview.it.po @@ -6,30 +6,23 @@ msgid "" msgstr "" "Project-Id-Version: transitails\n" +"Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2016-08-25 18:01-0000\n" -"Last-Translator: transitails <transitails@inventati.org>\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" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.10\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Manually upgrade from your Tails\"]]" msgstr "" #. type: Content of: outside any tag (error?) -#, fuzzy -#| msgid "" -#| "[[!meta title=\"Manually upgrade inside Tails\"]] [[!meta robots=\"noindex" -#| "\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] " -#| "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet" -#| "\" title=\"\"]] [[!meta stylesheet=\"install/inc/stylesheets/overview\" " -#| "rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/" -#| "stylesheets/upgrade-tails\" rel=\"stylesheet\" title=\"\"]] [[!inline " -#| "pages=\"install/inc/overview\" raw=\"yes\" sort=\"age\"]] [[" msgid "" "[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=" "\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/stylesheets/" @@ -38,13 +31,12 @@ msgid "" "\"install/inc/stylesheets/upgrade-tails\" rel=\"stylesheet\" title=\"\"]] [[!" "inline pages=\"install/inc/overview\" raw=\"yes\" sort=\"age\"]] [[" msgstr "" -"[[!meta title=\"Aggiornamento manuale dentro Tails\"]] [[!meta robots=" -"\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=" -"\"\"]] [[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=" -"\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/stylesheets/" -"overview\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/" -"stylesheets/upgrade-tails\" rel=\"stylesheet\" title=\"\"]] [[!inline pages=" -"\"install/inc/overview.it\" raw=\"yes\" sort=\"age\"]] [[" +"[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"" +"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/stylesheets/" +"assistant\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/" +"stylesheets/overview\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"" +"install/inc/stylesheets/upgrade-tails\" rel=\"stylesheet\" title=\"\"]] [[" +"!inline pages=\"install/inc/overview.it\" raw=\"yes\" sort=\"age\"]] [[" #. type: Content of: <div><div> msgid "Let's go!" diff --git a/wiki/src/upgrade/tails.ar.po b/wiki/src/upgrade/tails.ar.po index 58f338997fb39ceab03b2ceec4ea4b3b04dea0f8..d73669adc9e65f7e6f3135f5085f66dd05d265c7 100644 --- a/wiki/src/upgrade/tails.ar.po +++ b/wiki/src/upgrade/tails.ar.po @@ -8,7 +8,7 @@ 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" -"PO-Revision-Date: 2019-10-24 10:30+0000\n" +"PO-Revision-Date: 2020-01-22 15:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Arabic <http://translate.tails.boum.org/projects/tails/" "upgrade-tails/ar/>\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -59,6 +59,8 @@ msgstr "<div class=\"hidden-step-1\"></div>\n" #, no-wrap msgid "<div class=\"step-image\">[[!img install/inc/infography/os-tails.png link=\"no\" alt=\"\"]]</div>\n" msgstr "" +"<div class=\"step-image\">[[!img install/inc/infography/os-tails.png link=\"" +"no\" alt=\"\"]]</div>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/tails.fa.po b/wiki/src/upgrade/tails.fa.po index 69e4d5a7848c86b18d1e2b35d45c23d4428ecbaa..a2727c226e20dc1ce9b9f1c4711a388710efe4f8 100644 --- a/wiki/src/upgrade/tails.fa.po +++ b/wiki/src/upgrade/tails.fa.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-31 11:29+0000\n" -"PO-Revision-Date: 2019-11-22 08:51+0000\n" +"PO-Revision-Date: 2020-01-22 15:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" "Language: fa\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -37,26 +37,34 @@ msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\n" #, no-wrap msgid "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta stylesheet=\"install/inc/stylesheets/upgrade-tails\" rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/upgrade-tails\" rel=\"" +"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap msgid "<div class=\"hidden-step-1\"></div>\n" -msgstr "" +msgstr "<div class=\"hidden-step-1\"></div>\n" #. type: Plain text #, no-wrap msgid "<div class=\"step-image\">[[!img install/inc/infography/os-tails.png link=\"no\" alt=\"\"]]</div>\n" msgstr "" +"<div class=\"step-image\">[[!img install/inc/infography/os-tails.png link=\"" +"no\" alt=\"\"]]</div>\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/tails.fr.po b/wiki/src/upgrade/tails.fr.po index 655239d69464dfea7c7dd8bbe096af082c3fb68b..cbe19a22627242acfd66536dd807a120d64e8bac 100644 --- a/wiki/src/upgrade/tails.fr.po +++ b/wiki/src/upgrade/tails.fr.po @@ -6,21 +6,22 @@ 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" -"PO-Revision-Date: 2019-01-19 16:36+0000\n" -"Last-Translator: Tails translators <amnesia@boum.org>\n" +"PO-Revision-Date: 2020-01-03 14:26+0000\n" +"Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.11\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!meta title=\"Manually upgrade inside Tails (or Linux)\"]]\n" +#, no-wrap msgid "[[!meta title=\"Manually upgrade from your Tails\"]]\n" -msgstr "[[!meta title=\"Mettre à jour manuellement dans Tails (ou Linux)\"]]\n" +msgstr "[[!meta title=\"Mettre à jour manuellement depuis votre Tails\"]]\n" #. type: Plain text #, no-wrap @@ -58,10 +59,9 @@ msgid "<div class=\"step-image\">[[!img install/inc/infography/os-tails.png link msgstr "<div class=\"step-image\">[[!img install/inc/infography/os-tails.png link=\"no\" alt=\"\"]]</div>\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<p class=\"start\">Start in Tails or Linux.</p>\n" +#, no-wrap msgid "<p class=\"start\">Start in Tails.</p>\n" -msgstr "<p class=\"start\">Démarrez Tails ou Linux.</p>\n" +msgstr "<p class=\"start\">Démarrez Tails.</p>\n" #. type: Title = #, no-wrap diff --git a/wiki/src/upgrade/tails.it.po b/wiki/src/upgrade/tails.it.po index f6887d8ff5d2b0a738ec57af0188432bf3b8f449..ea7cd15fa8e3c3a4f4b232cdf9788e35b993bb0f 100644 --- a/wiki/src/upgrade/tails.it.po +++ b/wiki/src/upgrade/tails.it.po @@ -6,15 +6,17 @@ 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" -"PO-Revision-Date: 2016-08-25 18:00-0000\n" -"Last-Translator: transitails <transitails@inventati.org>\n" +"PO-Revision-Date: 2020-01-15 08:28+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.10\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, fuzzy, no-wrap @@ -81,10 +83,11 @@ msgstr "" "avevi precedentemente scaricato." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid "[[!inline pages=\"install/inc/steps/install_with_gnome_disks.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"install/inc/steps/clone.inline.it\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_gnome_disks.inline.it\" raw=" +"\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/tails.pt.po b/wiki/src/upgrade/tails.pt.po index 436e3fc45b48c9d1a10cbe6f6868f6da46ed38ac..cca39d63892a5506ca731bc9e72be12399c6c111 100644 --- a/wiki/src/upgrade/tails.pt.po +++ b/wiki/src/upgrade/tails.pt.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: Tails 2.2.1\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2018-04-27 10:45+0000\n" -"Last-Translator: Tails translators <tails-l10n@boum.org>\n" +"PO-Revision-Date: 2019-12-22 21:04+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.10.1\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, fuzzy, no-wrap @@ -60,8 +60,7 @@ msgid "<div class=\"step-image\">[[!img install/inc/infography/os-tails.png link msgstr "<div class=\"step-image\">[[!img install/inc/infography/os-tails.png link=\"no\" alt=\"\"]]</div>\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<p class=\"start\">Start in Tails.</p>\n" +#, no-wrap msgid "<p class=\"start\">Start in Tails.</p>\n" msgstr "<p class=\"start\">Inicie o Tails.</p>\n" @@ -71,22 +70,19 @@ msgid "Install an intermediary Tails\n" msgstr "Instale um Tails intermediário\n" #. type: Plain text -#, fuzzy -#| msgid "" -#| "In this step, you will install an intermediary Tails using the Tails ISO " -#| "image that you downloaded earlier." msgid "" "In this step, you will install an intermediary Tails using the Tails USB " "image that you downloaded earlier." msgstr "" -"Nesta etapa, você instalará um Tails intermediário usando a imagem ISO do " +"Nesta etapa, você instalará um Tails intermediário usando a imagem USB do " "Tails obtida anteriormente." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" sort=\"age\"]]\n" +#, no-wrap msgid "[[!inline pages=\"install/inc/steps/install_with_gnome_disks.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "[[!inline pages=\"install/inc/steps/clone.inline.pt\" raw=\"yes\" sort=\"age\"]]\n" +msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_gnome_disks.inline.pt\" raw=" +"\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/v1/Tails/4.0/amd64/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/4.0/amd64/stable/upgrades.yml index 8acd8d30756125019c3e30f65fde84fb26b2cd85..aed6fd4b42117640a8c9996ce5a4051217c98b21 100644 --- a/wiki/src/upgrade/v1/Tails/4.0/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v1/Tails/4.0/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable product-name: Tails product-version: '4.0' upgrades: -- details-url: https://tails.boum.org/news/version_4.1/ +- details-url: https://tails.boum.org/news/version_4.2/ type: major upgrade-paths: - target-files: - - sha256: f5ad5d1314af0a0247ab995f80cc55cd9b219fade862d4954d5c3532fb0fe84a + - sha256: a6b30a8c7bdba4508404010bcac8a64d96fb1814d82c964a44647fc4bd9b0301 size: 1151539200 - url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.1/tails-amd64-4.1.iso + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2/tails-amd64-4.2.iso type: full - target-files: - - sha256: d3de4497da64783c8cb98ef5949b3f10296185423099943e8cba7a22b519cd4e - size: 389457920 - url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_4.0_to_4.1.iuk + - sha256: afb35c028dc2152cda7070f97ff60ad986500063647dc81973ad3ed2ebbd3a5e + size: 385034240 + url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_4.0_to_4.2.iuk type: incremental - version: '4.1' + version: '4.2' diff --git a/wiki/src/upgrade/v1/Tails/4.0/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/4.0/amd64/stable/upgrades.yml.pgp index 0a8b554972a6ae40305833281e1054f7f80ac7bf..6369bb493f9de8cd92b50dc3f2eef84773c3de85 100644 --- a/wiki/src/upgrade/v1/Tails/4.0/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v1/Tails/4.0/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl3loUUACgkQqLD05Fsb -UOJJBw//caUqOl+OqrrEb2Vo6b37F6CJKPtlGTuyjDv7m3KRsFDdJq8oOpMWoMAu -Ble9UAkIr1tIPX2raMZQJOPVEykBiPWBfHq6/bhXYMUzEiNG5/2TVm8MxurAVstC -UjFIxNZy1lV1hCgkXGCnid1aSg7J319K9Kwh6iXBDt1shjX4AG/sTWW8eYEfi8Ro -EVhhKKV8qPoeuczpK6ZF9WZ/ecxKJyEY/8Zp3FTkhQrYM2UNhZONJ1hkbdSyWU4n -D8u3ftbioV+e5WfUDssTWA/MXg8hZBRtUaQZwpUCDAY/S53XrIpb+sGxuzMqVHj7 -iUL/vMbR9soOnJJdGn6koZeBed10gH+hUuIqIDr8lg3Tl4aBXtvS9WZ9mJ7Xa9jn -s5rNsYuFNebPKPZbEYesPQ2Kcl8JeczGv6mkt5xuYrzOJpcVi7Pk5ccvFOAPwpby -xw4froqx2UjYZmB+SnYUzlVnS0Go1ANrlfn0OLSAfydV8V+c2dAn0CLNV+o+T7h8 -V3QbnpXAVC/DP9Lzjnlmc3vHz5v3Bjbh6c3QSSFlO7LeZMLsQ0Q2/H3TDvfMfId6 -ZYOiQBJHvtfYht98RAf6vYurSDB+dg6mBcsd5b7z0y3CTLp5Wgvh3BXGNmqXW26h -jKdpXdBvgGHX0awq5kVe2TRfaIyaZXFEEg8YTLFYm0PPX3F3L9U= -=DP3X +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXhODLAAKCRCQsrS9eu0j +X2o5AP9R0ZDZouowaIMOYM7GXFk4OUQAoLNWAm+2CjESMBeCzQEA1/jFTXEqHcRI +oG3dbrDPdThZ76Fa3ASzkedeIAjxYA8= +=4cnP -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/4.0/amd64/test/upgrades.yml b/wiki/src/upgrade/v1/Tails/4.0/amd64/test/upgrades.yml index e0e8eecd12ba3e5e0064f77d9af714d336a32588..88605d5df75180c508922469cd24255618b991f5 100644 --- a/wiki/src/upgrade/v1/Tails/4.0/amd64/test/upgrades.yml +++ b/wiki/src/upgrade/v1/Tails/4.0/amd64/test/upgrades.yml @@ -4,17 +4,17 @@ channel: test product-name: Tails product-version: '4.0' upgrades: -- details-url: https://tails.boum.org/news/version_4.1/ +- details-url: https://tails.boum.org/news/version_4.2/ type: major upgrade-paths: - target-files: - - sha256: f5ad5d1314af0a0247ab995f80cc55cd9b219fade862d4954d5c3532fb0fe84a + - sha256: a6b30a8c7bdba4508404010bcac8a64d96fb1814d82c964a44647fc4bd9b0301 size: 1151539200 - url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.1/tails-amd64-4.1.iso + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2/tails-amd64-4.2.iso type: full - target-files: - - sha256: d3de4497da64783c8cb98ef5949b3f10296185423099943e8cba7a22b519cd4e - size: 389457920 - url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_4.0_to_4.1.iuk + - sha256: afb35c028dc2152cda7070f97ff60ad986500063647dc81973ad3ed2ebbd3a5e + size: 385034240 + url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_4.0_to_4.2.iuk type: incremental - version: '4.1' + version: '4.2' diff --git a/wiki/src/upgrade/v1/Tails/4.0/amd64/test/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/4.0/amd64/test/upgrades.yml.pgp index 5229ea99f9bd9c99fbd071b1ed825b6446a0d01d..89703541a533920db5de19cc8740316154ed28eb 100644 --- a/wiki/src/upgrade/v1/Tails/4.0/amd64/test/upgrades.yml.pgp +++ b/wiki/src/upgrade/v1/Tails/4.0/amd64/test/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl3loeIACgkQqLD05Fsb -UOIGXA//TG9+3OfqNioSadCl+2vLh+v7QsZqNpfJMLfaAuh7dbO28PwiMbGKC4Jx -k46lR/6Uhg3RX6q/UPDvAr/rK0CrVv6OxlyZJsWtAZLc9WHPBSF9feBRfGLvjWtZ -poLD8TSOEWvGuoFWQsV/XSEetVkYUyXKXie1ew3pd/HOfHT0CvC5H2Yi6xsyuMlU -820R7JRANZMld89nW+G0HaQccfNsF0F0dMYgodaMh4tvzAW5UDw+Y4SxKYAtST6h -6/tPXqr+622D6TuIdvugtc4bvhpnvGaPwQN8TtcktL94PM/d/9bc+IL91QU8AoO6 -vcin02JvrmyZnhZon/Cm+tQFFot82GOTZZ2LuW67cN87lSDo7cRuIZCkrnA+qc4V -zUj4NyV1tQ+5F21HBxdpR2/3Q0X7AYupaY2X4HH8DQSUT2R0S1Zq182SudH+zEdG -s9n1ATjMn7Wn7qTY9i2VgV4nav3zBO4PO8Q2iIJklkrrLvTfzUuRunP9PZpX8lqh -fbQU/4my9xJhyMCLNW7JTrOR7QA9NfZ/aShSxIyvRhWBNbrfTwVhXxiY08dGCS1Y -+brJJEZLj+yQIQT5XDGa3wNXGdipUngzEdk9KehdmpmJ4v4VT6rz9yd6DGBlgr7Y -eZZoIvqC7WNcUEOGM7IIHMb0jii1F8hV/OrRTUW4knva6OxgVZw= -=QiDy +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXhOD3wAKCRCQsrS9eu0j +Xz7HAQC5DYkjgfgfMplduDRfgRNf154gwK0EkbE66L5GYG/c7gEAjIoNMT5diqfL +n31xpxj+DZ6GxCdeofAqukI4+VpgDgM= +=bgdS -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/4.1.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/4.1.1/amd64/stable/upgrades.yml index 11084bf8c7f10fe9c055112de9fcd688d8e98cb4..629cbafdee1a1de676cc6044b92df0aff7d32419 100644 --- a/wiki/src/upgrade/v1/Tails/4.1.1/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v1/Tails/4.1.1/amd64/stable/upgrades.yml @@ -3,3 +3,18 @@ build-target: amd64 channel: stable product-name: Tails product-version: 4.1.1 +upgrades: +- details-url: https://tails.boum.org/news/version_4.2/ + type: major + upgrade-paths: + - target-files: + - sha256: a6b30a8c7bdba4508404010bcac8a64d96fb1814d82c964a44647fc4bd9b0301 + size: 1151539200 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2/tails-amd64-4.2.iso + type: full + - target-files: + - sha256: 67df6d97b41e79ff988e9be317a25dfbee2c6f54b9f2f27d778884358ef9451e + size: 228341760 + url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_4.1.1_to_4.2.iuk + type: incremental + version: '4.2' diff --git a/wiki/src/upgrade/v1/Tails/4.1.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/4.1.1/amd64/stable/upgrades.yml.pgp index a936be96c0cf965e82c031fd3403406d0ad546ee..e2a61c7de779ea2714bee7ffa978a78d891390f5 100644 --- a/wiki/src/upgrade/v1/Tails/4.1.1/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v1/Tails/4.1.1/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl3loV8ACgkQqLD05Fsb -UOLNTQ//aInSaQXMx/DgZ/YygR9i9aKmU+Nvbc/xO/rNn9QemwJimBpKfa16DATV -+13cnUrwEekDwxMtOusq7Yh7aO3UJv/DtJcLJAuiDhKKfTIbH8HSoAl8hwEtc95y -3I5tZxl4TPggtOPIejXdo+SJRDc2d7zECR9JzmnTiLFYYchKp76cU7pjXfAd/KRm -AlQ90IKSDLYf8aK1U0eS9JDCj7ln0gJacCYvllmP/T5foGbegIwMvQuNE0qjuQnY -FSB7RrNubnyvXRtOng8k3V8WffhgGdjYT1UIF19DQqM7SjaqiC19/OaT91osHbhs -y1ShmOwtMys8vatf9HVRHaf7CAeh+EaxhYS2Oobv6+hGyebEErj0lyP/mrF8qcz8 -jKUH/N0wBIaWiFU0LCQpewmh1S7tgegeLWBp7gKgVPDXaHWaSfF6aDsE5NuqwAmE -LwZXyoovurawjj7wLB8p6UjqRbpq6L7I1szEvWmULfIvQ9HS8NL69t1MO1/N/zWs -f3roLHVUpSr3gOPtCuHEeVOtdSfK0/kq5c2H+LIoRCf/P2HCxCPNS+GRsVPuS5h1 -Yg5mPcWPT3vJfMdNnb5RI1/CR97NbWrFy907oKlk67+tjkQoKxl9PQEZ+S00YvzZ -POtljxm9btzkd7THF5vEFw0yjMLIaEzpKb5Nb33klkh8R2IxFME= -=MFjU +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXhODQgAKCRCQsrS9eu0j +X6WHAP4jgE2x9r4/f3gCjViEjf3zB15RheJR5+qqZrgLM3GrqQD/XWTrNgo4NtrH +EDM7hxMqc5U6WZZ3PGyW1ZTHYnGvuQg= +=kFAv -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/4.1.1/amd64/test/upgrades.yml b/wiki/src/upgrade/v1/Tails/4.1.1/amd64/test/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..7b9d88e0d3a24c7be4baa78107cef38014b79d48 --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/4.1.1/amd64/test/upgrades.yml @@ -0,0 +1,20 @@ +--- +build-target: amd64 +channel: test +product-name: Tails +product-version: 4.1.1 +upgrades: +- details-url: https://tails.boum.org/news/version_4.2/ + type: major + upgrade-paths: + - target-files: + - sha256: a6b30a8c7bdba4508404010bcac8a64d96fb1814d82c964a44647fc4bd9b0301 + size: 1151539200 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2/tails-amd64-4.2.iso + type: full + - target-files: + - sha256: 67df6d97b41e79ff988e9be317a25dfbee2c6f54b9f2f27d778884358ef9451e + size: 228341760 + url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_4.1.1_to_4.2.iuk + type: incremental + version: '4.2' diff --git a/wiki/src/upgrade/v1/Tails/4.1.1/amd64/test/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/4.1.1/amd64/test/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..9005b96e4f6280e02320658a22c248b7e6504a19 --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/4.1.1/amd64/test/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXhOD8AAKCRCQsrS9eu0j +XyiuAQDuxvZl/YVtq2OzHTPY5LPIh5LEPgiKOW5mPezP6XAtIwD+O/YtQB5QsZ77 +ECWAjqGmWuApklGmLCbb+GfQvlZdVA4= +=x8gj +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/4.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/4.1/amd64/stable/upgrades.yml index a87652ab9af20b924464b44400d20ca9755c3379..e24632b8b7032691191f67d9c6683eb2865b4596 100644 --- a/wiki/src/upgrade/v1/Tails/4.1/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v1/Tails/4.1/amd64/stable/upgrades.yml @@ -3,3 +3,18 @@ build-target: amd64 channel: stable product-name: Tails product-version: '4.1' +upgrades: +- details-url: https://tails.boum.org/news/version_4.2/ + type: major + upgrade-paths: + - target-files: + - sha256: a6b30a8c7bdba4508404010bcac8a64d96fb1814d82c964a44647fc4bd9b0301 + size: 1151539200 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2/tails-amd64-4.2.iso + type: full + - target-files: + - sha256: 24274d18cc08e274f81899b9805d1b58cbdd20dab8395e1ff22dd1c0686ca7de + size: 243107840 + url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_4.1_to_4.2.iuk + type: incremental + version: '4.2' diff --git a/wiki/src/upgrade/v1/Tails/4.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/4.1/amd64/stable/upgrades.yml.pgp index 113bc1c0d648f70f7cd594ab7b01fdadd31dec99..a6695c3c59b362d3fea02c2e207655da2377a84b 100644 --- a/wiki/src/upgrade/v1/Tails/4.1/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v1/Tails/4.1/amd64/stable/upgrades.yml.pgp @@ -1,7 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXZ8mNAAKCRCQsrS9eu0j -Xw30AP0bAKpPylF5DnzOMXNYLeIQWejInMOQMMFKwNgaP3u0EAD+IywLCCVuC6C+ -CRJ2OE6dz2iba3Y7aotvw/aKNIY2fg0= -=x2EM +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXhODJgAKCRCQsrS9eu0j +XyvKAP40mv6Kt7HDBxv3l6ZEHptqajDFy+LtwmWi98nUYzMRqQD+PlR0qPTGFDPU +ZE3S9phlNX/5ja1K8ZJL3yMziMFbXQQ= +=vcyr -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/4.1/amd64/test/upgrades.yml b/wiki/src/upgrade/v1/Tails/4.1/amd64/test/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..4cdbee6e83f9a63bef0b4af1aaf24a5085dcac97 --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/4.1/amd64/test/upgrades.yml @@ -0,0 +1,20 @@ +--- +build-target: amd64 +channel: test +product-name: Tails +product-version: '4.1' +upgrades: +- details-url: https://tails.boum.org/news/version_4.2/ + type: major + upgrade-paths: + - target-files: + - sha256: a6b30a8c7bdba4508404010bcac8a64d96fb1814d82c964a44647fc4bd9b0301 + size: 1151539200 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2/tails-amd64-4.2.iso + type: full + - target-files: + - sha256: 24274d18cc08e274f81899b9805d1b58cbdd20dab8395e1ff22dd1c0686ca7de + size: 243107840 + url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_4.1_to_4.2.iuk + type: incremental + version: '4.2' diff --git a/wiki/src/upgrade/v1/Tails/4.1/amd64/test/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/4.1/amd64/test/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..69999093e01eb80a55e09119059f3f1fbd3207d6 --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/4.1/amd64/test/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXhOD6QAKCRCQsrS9eu0j +X0nyAP0R4Ac510bYqhtlARiXRVK16gxoyYGBfjGNEWDEr/NntwD9GzIx4g2II1eG +/D691oMbyIb5WLkunkD8xa9yK7rWZQo= +=7i1r +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/4.2.1/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v1/Tails/4.2.1/amd64/alpha/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..d07e7c2a3a61413bc658fb8bd9971c9be1da697f --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/4.2.1/amd64/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: alpha +product-name: Tails +product-version: 4.2.1 diff --git a/wiki/src/upgrade/v1/Tails/4.2.1/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/4.2.1/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..2438b78540864f002d9ff8955fca23f69b7d266a --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/4.2.1/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXhODOwAKCRCQsrS9eu0j +X5oQAQDl+58C52Zx53sGi4pZxw2TkAyV+znE05Olcw1V9YZlPwEAwwTY0w0DBl9H +ZG5raZwHn1WedvBmva+JpA9TJzY2rgw= +=eByY +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v1/Tails/4.2.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/4.2.1/amd64/stable/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..0047524b64a219752c395adf961f331f67dc46d5 --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/4.2.1/amd64/stable/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: stable +product-name: Tails +product-version: 4.2.1 diff --git a/wiki/src/upgrade/v1/Tails/4.2.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/4.2.1/amd64/stable/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..2a845492428e83205b341b67be726f1fec989ff8 --- /dev/null +++ b/wiki/src/upgrade/v1/Tails/4.2.1/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXhODNQAKCRCQsrS9eu0j +X6fpAP4jZ83II1Yg24X5lgo9fIEuu0JdYH7ibCdPdIp/vT1DAAD/QxsBLG+fT29C +ZlictSlG8NCHDSNbtj2nYwsCgK42xQ8= +=mrYz +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/2.0~test/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/2.0~test/amd64/alpha/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..9186cdf5e602d2126e399b1146fd0a7f36b6c947 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/2.0~test/amd64/alpha/upgrades.yml @@ -0,0 +1,20 @@ +--- +build-target: amd64 +channel: alpha +initial-install-version: '2.0~test' +product-name: Tails +upgrades: +- details-url: https://tails.boum.org/news/version_2.2-test/ + type: major + upgrade-paths: + - target-files: + - sha256: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff + size: 1234567890 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-2.2~test/tails-amd64-2.2~test.iso + type: full + - target-files: + - sha256: 7bedac01d00fdff0dcb7bbeb1a400f1a4679c277e084b369d0e6d9dc823adfe9 + size: 4096 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_2.0~test_to_2.2~test.iuk + type: incremental + version: 2.2~test diff --git a/wiki/src/upgrade/v2/Tails/2.0~test/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/2.0~test/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..b136ebe8e1bceb7c2464edda2d78938a588ecb02 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/2.0~test/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXgcxdgAKCRCQsrS9eu0j +X7P1AP95w2AQYip6kE5+12nKjFE5zLTyIVpcAZSJsvVJbf7uNAD+OUtBtNOaoKsl +ryG3/AKbV+qRp7QsQ48+liqMITrEgg4= +=xk+Z +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/2.0~test/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/2.0~test/amd64/stable/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..87a36cd958762b6cd1e2dcb4f1a8c3b71b20a837 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/2.0~test/amd64/stable/upgrades.yml @@ -0,0 +1,20 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: '2.0~test' +product-name: Tails +upgrades: +- details-url: https://tails.boum.org/news/version_2.2-test/ + type: major + upgrade-paths: + - target-files: + - sha256: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff + size: 1234567890 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-2.2~test/tails-amd64-2.2~test.iso + type: full + - target-files: + - sha256: 7bedac01d00fdff0dcb7bbeb1a400f1a4679c277e084b369d0e6d9dc823adfe9 + size: 4096 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_2.0~test_to_2.2~test.iuk + type: incremental + version: 2.2~test diff --git a/wiki/src/upgrade/v2/Tails/2.0~test/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/2.0~test/amd64/stable/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..34a4e7e422e768867421fbfc1ff4402083d07b36 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/2.0~test/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXgcxcQAKCRCQsrS9eu0j +X+04AQCjVqTlITcd8iZoLA3g4aWcBXHxaEFL0Fe6m+g50ZHVrgD/UfkmiXyMJnYC +jT+C3ZGhw4I/6IVn+ra1BmJ/KjQFWg8= +=9szA +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/2.1~test/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/2.1~test/amd64/alpha/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..917190773c873c71018bdeb3623f8bb3e7813ace --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/2.1~test/amd64/alpha/upgrades.yml @@ -0,0 +1,23 @@ +--- +build-target: amd64 +channel: alpha +initial-install-version: '2.1~test' +product-name: Tails +upgrades: +- details-url: https://tails.boum.org/news/version_2.3-test/ + type: major + upgrade-paths: + - target-files: + - sha256: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff + size: 1234567890 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-2.3~test/tails-amd64-2.3~test.iso + type: full + - target-files: + - sha256: 4d05a0c6d201bbaab633b7c8d26b136abec9dc9483a1a88f313e45c60de694d5 + size: 4096 + # This is really a 2.0~test to 2.3~test IUK, but in the context of our + # test suite, it's applied on a Tails that's been fooled to think + # it was initially installed as Tails 2.1. + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_2.0~test_to_2.3~test.iuk + type: incremental + version: 2.3~test diff --git a/wiki/src/upgrade/v2/Tails/2.1~test/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/2.1~test/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..3e9796180c6de153d94abdf525c4a4c570a8831c --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/2.1~test/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXgcxfwAKCRCQsrS9eu0j +X/wSAP9ld0LftNAfdO0UyHbT+kMWGPq5NGM0D7F1/wJ7VtYPZQD9HC6HjpSq3wGh +Bp7GInK7rCPnvr/p928Pej+2M6zc1w0= +=avaf +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/2.1~test/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/2.1~test/amd64/stable/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..3abadc521aca1806fd23a3050e5bbd2ee18296c9 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/2.1~test/amd64/stable/upgrades.yml @@ -0,0 +1,23 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: '2.1~test' +product-name: Tails +upgrades: +- details-url: https://tails.boum.org/news/version_2.3-test/ + type: major + upgrade-paths: + - target-files: + - sha256: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff + size: 1234567890 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-2.3~test/tails-amd64-2.3~test.iso + type: full + - target-files: + - sha256: 4d05a0c6d201bbaab633b7c8d26b136abec9dc9483a1a88f313e45c60de694d5 + size: 4096 + # This is really a 2.0~test to 2.3~test IUK, but in the context of our + # test suite, it's applied on a Tails that's been fooled to think + # it was initially installed as Tails 2.1. + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_2.0~test_to_2.3~test.iuk + type: incremental + version: 2.3~test diff --git a/wiki/src/upgrade/v2/Tails/2.1~test/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/2.1~test/amd64/stable/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..87a5fab1e898595c03827e187c4a0592441d050c --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/2.1~test/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXgcxewAKCRCQsrS9eu0j +X3AOAQCyvGP2Z4oNtcg2lxPTqaeaIzbMXKW0i5j0SSNlnv+u2AD+L8pMi+5eFqgl +8l10BNuxaNuKwwGchmd+dPHkTTQpDw8= +=LDPa +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.0/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.0/amd64/alpha/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..2bb59d41e48cb193e69886b5ce3b95514575312b --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.0/amd64/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: alpha +initial-install-version: 4.0 +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.0/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.0/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..d8db1b166b5c5ba83896d244dfe9fc3cea721efb --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.0/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXf/FAwAKCRCQsrS9eu0j +XwcoAP9uNV2291QEtF0+ZzxSJ+nEqituOijGr7w5iCp7fZCmKgD/aki+IUiggVC5 +ZEqCq16CMUWay8EkPfktViMWuC78Ngk= +=xc1B +-----END PGP SIGNATURE----- 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 new file mode 100644 index 0000000000000000000000000000000000000000..e866a1ce84dafd4522335ee2c8f5668312a1d9c2 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.0/amd64/stable/upgrades.yml @@ -0,0 +1,20 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: '4.0' +product-name: Tails +upgrades: +- details-url: https://tails.boum.org/news/version_4.2.2/ + type: major + upgrade-paths: + - target-files: + - sha256: 307be5c051a10920b9dfe0b3b4447eeabf0037c427081997017b58cdac0ac4a1 + size: 1151539200 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2.2/tails-amd64-4.2.2.iso + type: full + - target-files: + - sha256: 4303ce00df36ddd4002e7db65c9088fb85b7999972ab511da67ee0eaffd8b720 + size: 383762432 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.0_to_4.2.2.iuk + type: incremental + version: 4.2.2 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 new file mode 100644 index 0000000000000000000000000000000000000000..e345c61cc9deef92f19f95f5a3f4cd87a1c3a8ee --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.0/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl4chRMACgkQ0h2tOK8o +HAvMeg//QlUahWHCfsS1SfAnXyo88Q14rdtja9YmB4HvI7cx7/JBiNzpamwLybol +l6r/WcmHFt71GAm18s8QYk3YgL6zvm7x+CUJUjw91NRpa1VnZJS0tu1dvB6O6s9k +T2BvozmYma/drkZ4Q9mjRIIShZ7qnA6tZK9+K15pRAP06hy/8wA3R3SzJcyERYrn +4Yy5zl9u18SxZIapcv0pXNStjvOnN1RorU6FMlZTxTvXjDdpjfy04/fSMMXa6BEa +wSoUJIZ51GK3AAHwlZGdjeCbp6iQjBMsjyolPW+Y0SSe6qBXiMG1x83KmaQBbx1c +lKd9ebsapx4QiCRfY1CNFB7R/EqMsSQPCRHZTpGblWKpP8joZZS4IKoK6ldwoGsK +7iqYaODMqG6ESFLCI8hta0eceFk6izMprf7H4l/LYjUoqCPUuYVrKIoSU3Bh6+Of ++OeunlCCYIEv/nPt5jJE5HJQ+MSfG1aI3U57NMIHoFR3wL0Mhr3hubiPIuxmynwR +PmPjcJcHFj5XlCjiTEoINtIzgqoB8DfawRk7ynRcP94pbBl5LaSmFbs3pdKls4iE +OF3kvkZ2/ibbWJvQDcG5HjWlTQBgNaDpRDOf4qGOKtfZxEiivQWbTotc8tR5Eyxo +r8W6nFU6dSwB1xVz+nWJkp42+zILxlNENJqJ23jFbwoYpSzfpdU= +=ABhs +-----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 new file mode 100644 index 0000000000000000000000000000000000000000..8c5c2688ca346ed0b1bbfe5a4ba49e1461e61727 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.0~beta1/amd64/stable/upgrades.yml @@ -0,0 +1,20 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: 4.0~beta1 +product-name: Tails +upgrades: +- details-url: https://tails.boum.org/news/version_4.2.2/ + type: major + upgrade-paths: + - target-files: + - sha256: 307be5c051a10920b9dfe0b3b4447eeabf0037c427081997017b58cdac0ac4a1 + size: 1151539200 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2.2/tails-amd64-4.2.2.iso + type: full + - target-files: + - sha256: 67d8e4f6fa62baf50e6b4820c0e4a9facc95510ce81f5fae6329d7aeeda1854a + size: 486612992 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.0~beta1_to_4.2.2.iuk + type: incremental + version: 4.2.2 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 new file mode 100644 index 0000000000000000000000000000000000000000..eae5f03926ebcfbac8485c2ab40eeed73adc8d67 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.0~beta1/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl4chQsACgkQ0h2tOK8o +HAvDIxAAuZ5SrrjEmg+ezNWtaQ4vu+4zyCd2yx9uwfOmraFGAhI+KgL+9bLkZFDy +Eeqyk+3yiikkhIxxuk5hHGoLebtaBCeTxHXOdV4t9edjZk8ZtRy7LibtT7wprC/f +1O3342mnOxvZE/k0cERT7/QwWULNkUX3v1He74yzUXr6oakD45YdnIK5jehYpiOS +F3LAWyu+gOrqTlhPtPYLSBY9O3QJQYoxMKtnOGDvYflUEBMabefLuEzig71G77Gh +zvLg95Y2QrfWUh23pBhAPHEo5C1Jf1t8uN+H/sJKf9HF8njTk1lEv/kVnf3P7cZP +TIEzpKhNUhBt8ucBQ79cfLdoG9z7Mxn2RQMkRbONATvMkTnPxoGSGO36bjg5snLj +TA9tqtlHVOyMQAbeyQKuSeILCYHmOOfrgnYdRMn1N0rsRacl4sGDB6RtnLiGb/Lb +RHUiV9PPYQ/VmgfkLi4eCGlDILKzVO9Q/PKEY3ZWUV1cx8vnqB6ocyxCsepD1qam +f+xMCEUvc7StDyNoBfG/CtmfkbW8Yi95TTITA5AVYq2v8ejJoBh9WKh7yIs2oP9z +niS8o09ZEUOAGWPoOGVPWxWeK94v/tw1y0BVvhMZqCvsn4fNCdsdawRx3bemZY3G +F0ZOjS4SGTLGNdybYnCn4faMoCZHW/QnxyNyAsgS5JgwNMiobyE= +=7w4h +-----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 new file mode 100644 index 0000000000000000000000000000000000000000..5d520c557cb9b5ecafe0ae6613060a33977a70c1 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.0~beta2/amd64/stable/upgrades.yml @@ -0,0 +1,20 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: 4.0~beta2 +product-name: Tails +upgrades: +- details-url: https://tails.boum.org/news/version_4.2.2/ + type: major + upgrade-paths: + - target-files: + - sha256: 307be5c051a10920b9dfe0b3b4447eeabf0037c427081997017b58cdac0ac4a1 + size: 1151539200 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2.2/tails-amd64-4.2.2.iso + type: full + - target-files: + - sha256: 79d8d88224a2a38fb442b3e0a59ddf0c6ab8461e20ce2f023104b1a3268c190b + size: 433725440 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.0~beta2_to_4.2.2.iuk + type: incremental + version: 4.2.2 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 new file mode 100644 index 0000000000000000000000000000000000000000..0c8d52f294f1991c3b7ef45a13f6da5924a07880 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.0~beta2/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl4chRoACgkQ0h2tOK8o +HAvKzQ/+ODeNbWOZVSQLa1klhG8xvCW1J3WL65P89/rw/xZY+85GqGxLrRX8LYS8 +v3bUdmBgNv1t2nHBcFzbnApzFuU+cXGbWtWs1Apx89cMngyLDSSuRh2SwSkAzbpa +Voc30YyfHdwsXSDPlkTY2j8lyvGxlMCn++D0BK4OffV7G9/Ib3mdAdZofl+Bixn2 +R20wDU+uAJiP+xkYtlAFywSsq81U8uUrczJE6KmJclJpEHxI67NFZ0PfXf4JDeiJ +XGYCHmvIw+9tTiWAzt6glivvUIHKhO6Qlx0VZTjIbjTkZDxojBrlk3utronpMRa4 +V/ARd50oSIE+1UpZ16JSLyWulTXd3IEOY+7q2SYNZoss8nx5w6Tl39ECEhZlitwq +0IapplFNTZyP3ZqeNsALM3777obleMOtC39CnqMhzsjvh9BnbGcGmnmfYNXN7B8e +TreY6tR/t8CNRn8B5OtVHN1KGDXuFe/NYgwjRZxo0XKim8XfmgNA8Uod5ccuO4JT +LwMgaJxjPVs0for0Q7NlSpSyEv3ljwd6ONNavr2ad8h+lTMxljwJQcedDpohv+F4 +ZUs7FntBhY3z197Ca+H1CdOR7QPXNT1DZX0bZA8InvMmqSbmktfGr2p7DtQ6VWws +oU7pBgzIKScApxdmQAvA1xPmaoQm2jzNMo4HOutCGaQqTGHasew= +=ldR0 +-----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 new file mode 100644 index 0000000000000000000000000000000000000000..bff6d4a22ba047106e8c7b0160e3a90fcc2f7754 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.0~rc1/amd64/stable/upgrades.yml @@ -0,0 +1,20 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: 4.0~rc1 +product-name: Tails +upgrades: +- details-url: https://tails.boum.org/news/version_4.2.2/ + type: major + upgrade-paths: + - target-files: + - sha256: 307be5c051a10920b9dfe0b3b4447eeabf0037c427081997017b58cdac0ac4a1 + size: 1151539200 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2.2/tails-amd64-4.2.2.iso + type: full + - target-files: + - sha256: 8bca15d958c8a810b2d08ca67cb0a8380e7e55490f6513f3418ced049b3eaa2a + size: 392642560 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.0~rc1_to_4.2.2.iuk + type: incremental + version: 4.2.2 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 new file mode 100644 index 0000000000000000000000000000000000000000..cd9cb6fe42178b37ac0d2a8b43c7231ac06a8b12 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.0~rc1/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl4chQQACgkQ0h2tOK8o +HAscJhAAip8/k1up2yKTz5C4HBK6CG9OsE7y4t7Ssd46RalKrn+ONSgErbSCGz8Z +97ScpZGs01pJctHpag1uL2+lcPbe8yGjbgDZIoYTEUVWS5Z5jKxKCdlPnegy0N2Q +m+mGkDE8K6NPTOtVgt6LHbl1TJpr15WUjQ4j4GjoiyLaP9W0ctep1Fn8yh7BbK9j +531cAOOHcvAhERaSg6HlEkckrupEKt0xsW98p0WmhwpEwkSXYwjLxi1IOXBWblmF +02C7Y2VrHMGs6miZkuSSZITw+61euuQWDOZLTdAPqELtCCOOu3xRWcFvYtiu+tc+ +lPnzF0aBgXq5VwPX8iKXdusHWB85UPja9cJh6A+uJc61BCZnma37alC+3ddsO+MW ++F5xHc3Yy+znHC9XuMnowcfIs8QXa6EgNTKn1EuRepUcD8dBv45MwqA4qshCgKtH +GVHfPwrjcuXqwGBjPOJKJRJszrBEiUolsA+LunDqz5ygZpjqvT3Q240G5YaNt971 +Mmmsn3zK11/gDw9LE4pSlB9vhbkWXmyJaqFHHnF2/iOTqP6pBTiRvA6k7kWBN+PX +hCSp8/raL0Io6iTP5F+jHZF8451HETQNKrPMoLyA5060b2Q4XOnnXf2BSbz9uyqD +A3JF4RniyAPlVu50PuhFbvUotQcy4poOE7nrFQbgFAsPcMHnI3U= +=ag3k +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.1.1/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.1.1/amd64/alpha/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..396e1a34226246b5386c4b5ebf9b08af29cfdb28 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.1.1/amd64/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: alpha +initial-install-version: 4.1.1 +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.1.1/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.1.1/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..5f7239fe2b34408faf90a748f502d9bafa712c9b --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.1.1/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXf/FDAAKCRCQsrS9eu0j +X9JAAP95Gh5x3PRjY5t3MevGC4TuWPoeMxsSVu6SBZjQYsbQwQD/ZHNFAB7nlRyl +iGwYLIAM948CapeQqztMSjXZowMsuAY= +=Q4V/ +-----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 new file mode 100644 index 0000000000000000000000000000000000000000..aee239ec95e23fbd2631a144a889c9f6b2f06306 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.1.1/amd64/stable/upgrades.yml @@ -0,0 +1,20 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: 4.1.1 +product-name: Tails +upgrades: +- details-url: https://tails.boum.org/news/version_4.2.2/ + type: major + upgrade-paths: + - target-files: + - sha256: 307be5c051a10920b9dfe0b3b4447eeabf0037c427081997017b58cdac0ac4a1 + size: 1151539200 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2.2/tails-amd64-4.2.2.iso + type: full + - target-files: + - sha256: 474ab8e13bba99ed41b63edc5289aafe6d916ed51e1c9a3351e03f2a2d8585fb + size: 227160064 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.1.1_to_4.2.2.iuk + type: incremental + version: 4.2.2 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 new file mode 100644 index 0000000000000000000000000000000000000000..8b7ab7782ee805a3a6a8eaab0785477d1c214bb0 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.1.1/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl4chSEACgkQ0h2tOK8o +HAuhnRAAmrSYuH1mBtSw9slRUusqYGl57OjNfsg8VviKOnwQ573geT2UIXkSUpdC +JNJ5uwRvhg/PuG63Gkps8dv2eWnqGPd/fq4hZkbWLCjhiubQ1NQJcG2wjIf9ZOf6 +EHeS6n1RsWK4WgMQp9VNaNXImvFCZQnmu+VLRP458qwyZqP8kpgi8fo+3lHappS+ ++bQPyE3gLO8KfYdXogLgL69eTzvV5dFmu2uolLI0rWprFJ6RRkr9QNcIoYnephIC +/xC+FeTAXIp09PC1dnnlktEtGkTu1uj8QnDWPATpgLIoYld3IAZyKcmjhCwIUgCP +dZc1DYxkDtrCmEKaVZ3w04U/5zlrUHed+xAHkLjn4WTqZmZSZu25+1MiboiqenIv +rdQWPR8TchB8wIP7YA1VY2lrkMJCPItRJQ0iA+iLbIlWy/h7n+1CujhlQ1/3UI/I +S0w3VycukNwyqSV+HSP7RD8ODfUQX4F/7iYmn8dNnx6ZfUpniWGJeLzEdX99O6mu +teDAGFvfvND1IMNDgL/thDNSrcVuAektZixgx/vBjq5SOW3MAa213C8FTQoCKJ4m +KE/og2sTayz510rTM3WvdhHFA36Iiq8IP80xHuYTN8zHIKwBMV5JHuU5DS4gsuWQ +Wm+IXrTmxc8R0LyXvQ4KSzdhcDbMmdGhYlcqd7foY8v2qR44teo= +=3A5e +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.1/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.1/amd64/alpha/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..e561cd488c759a852a627dc452e2491f9a5fd663 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.1/amd64/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: alpha +initial-install-version: 4.1 +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.1/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.1/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..ab34859be95e22debb5c76002a3e54ca26b11742 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.1/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXf/E8AAKCRCQsrS9eu0j +X2qxAP0bIdu3aIloqjFLoa2sTKwSsfsW+unflG87g9r/iLQMvgD+JZsySHC1Zt7/ +ywX8I+HFGZuoeTRpRxUt8Lb5Ek4VNww= +=2D2t +-----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 new file mode 100644 index 0000000000000000000000000000000000000000..c3aa8adc849d02953796be00dd00f7ecb636f606 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.1/amd64/stable/upgrades.yml @@ -0,0 +1,20 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: '4.1' +product-name: Tails +upgrades: +- details-url: https://tails.boum.org/news/version_4.2.2/ + type: major + upgrade-paths: + - target-files: + - sha256: 307be5c051a10920b9dfe0b3b4447eeabf0037c427081997017b58cdac0ac4a1 + size: 1151539200 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2.2/tails-amd64-4.2.2.iso + type: full + - target-files: + - sha256: 9344e8246d6b15ae3a854fa8702d5501e871dae115af1efce0b1ae71cf93c34d + size: 241901568 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.1_to_4.2.2.iuk + type: incremental + version: 4.2.2 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 new file mode 100644 index 0000000000000000000000000000000000000000..16215e3c72dec75d58eb979c75155702fa4dee69 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.1/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl4chSgACgkQ0h2tOK8o +HAvs5BAAg/SqdflOvfroT1DM7pYPvd9BuxJ/h1AMiO+sHDb53AHeuZF4fahed8CS +RFzHIxOcpJbBDoOcPxVJcTgZFKjFSEuwZdSpYm/XRSzcS3wie443pju7qPsa/tlr +0Vb5nqssyrQhSMd3JP0UNhDPfopcXnR/nrcyCTHlKQpy1XdY133z4jnJrOnjswky +PLqvuAkId9bGOdEjxg1CB6hQ6Kwe+VeaSPQvKWO9fmCDsSklRERAOmZqIPSm8OA7 +cJXmoMpiFo1COcuWzA/tsDlanCMugrEifWiyj3kpmEM5382/Jl2nzEYcPgmLe57F +1OJ/CnR5pW6SNKJRjXcyAjwSTm1HtVhAmLq9ToMPKDH0L055DBex+w5E9xvBVIJu +46IHwCN+FpFx5FZo12DEWJ9CgYMjKrgY1RM8QcmV/JTU6AjLh4OjFfT03Q1fjqmS +JYudk9H/lmpDV7UpS84pTaQTQOxypAaX5cSrpbAI6nGqOKuc9vtlhvMV2jPSN4qi +pizn9sVyXtuDdOCCAjNIPRWfmiDflwGaZ9yUQo2dyTOTbNkVFknTcWU0y30KlIm/ +CAZ0/s0mAQ4tRqGZEE31h+uhoJ9L0JouuWsJWJc9V9+0L+v7WorwLKJr02+naq3U +Y7ZxHDQMbQXdzQz5CZFWfYTen3IUBn4fGKIwOOwoDleIS6HQWf8= +=BST1 +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.2.2/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.2.2/amd64/alpha/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..af3a98620cbf5cec34a2c29e4554d5cd6c7495b3 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.2.2/amd64/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: alpha +initial-install-version: 4.2.2 +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.2.2/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.2.2/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..4301dbe82df3871444e8befe39efdc77722a5ba6 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.2.2/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl4YkYIACgkQqLD05Fsb +UOKFCA//bEhrKsTxJH63QfoGrbXHPpjQ+q1fwTf0HfeL0E3Xa52HhncpvswMsoA9 +fZxH5B6doiCkiT45v5emP8CQZgHzEuHphs8HppJp7/v8tCYpaoaWYPT0aSuk+Wx3 +KU2Pij9bgOOMwSGgQ0DP0CXJ3S+7v8uV3nRmQta4jOIgzEamgFTHzZUbTXCXsj2U +bi1azpWP0sK8ixfJSZB2hNuP7+0JzyPU98hC1KgA7ITHUhrWFIasb6L0KDPvn07i +2/WxciyxhS6JxvWcxGfI1t/QUeH/hVfCYG7At2u1T2ZRrSOCpONJ8UzVfaKbOKzy +ImyLaWC40taxxPCHkZ80DPtgDEMFwm08PjpGgu4+lL+sm0dGZ7Z9aQBlyTalKuT7 +baqgMDDufp5GxxHjXW1BFkC/ZyRrE6LRfkMes8ohd1tV2qIAW1zK6uMVSWQklINO +pJN2KkBUnxy990yfZ43XwTywyXKTsLnV858GJPsB9DTTp2vTPZxxYOFxTHOHrtZB +kgIObNR8Ap/UvRys3oPpYGmP6ItyjnTZZ2b8zlEU754maRd2bZaptR73OiWyhtMD +OrW/aIMqohsvfdQkFDtfKpgbcTXGO+CoQFCiOE++DAVNQl2W6CdYWE3tdyHTPozB +6BU1LjdQWAyCXMK5XIcVe2GU1P55w9jchtBu/QzNh1eSjBJqnM8= +=n9v3 +-----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 new file mode 100644 index 0000000000000000000000000000000000000000..58c4257bcb7002542ef78991eff64d292b495fef --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.2.2/amd64/stable/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: 4.2.2 +product-name: Tails 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 new file mode 100644 index 0000000000000000000000000000000000000000..c84fde457d4b3b01fcad099a77e0f218acf22a3e --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.2.2/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl4YkYgACgkQqLD05Fsb +UOLxvQ/+P0+e/ANnzxHLkX+shwc1rWCX1hZ7v5+VyzB0nPeMrZVVTTQ5480kroGL +A9qyxi7RbX3TlC52bRTV8yv1j5h6xqDtj8qFBJ5q4obLXevMxEe+jkwsic5okTC4 +3kGinmbk3gIH1eVAR/1qIusakqFnysF0vOuWK+GwJyRlO+GLPATINa2mJZ1Bm/L1 +XYN+FegD3HwV5UgrjgTqjWr+y5C+R/qdY8mZjc6/E4Y+J0vBsgj5DW1mJpo48I0i +M953HKCuMr+8/N7ydcFKgOD5YkSUUnTIaosQQqulyIXqAbA/RYa+vAh1JIb/ztCs +PSBmISMopYYo2+LCYSaQEOw+sshbh6NBLkLl4THXTVYLW1r5FSH7R6HitHJR/hZT ++LEe+mqyY7GRcZICk3Fy5VPixeimoP6HLSUO+VMMKFNuW3oC0HZpbCSCL5lJSnWN +HMFiSTN051GLvm126ubdKkk+cx4QOgdSHwzCouslSRUHmR4wTtVBNbtgSZY5ipt4 +H3qIMZTbmrUlIOZwLT9DRY+ZE1H6HDBsgKtT4ki5P/IeKYm2BAwbHyNS3Uurgkyz +dvvNKEKVh3Qb5OB4mMEjb3OaxE6UgWtPeaDDazBsxYJmkfuLqJOtlwuqzlOsu5dk +AlFFrf4QQUAbToeUFndmXhc3WB7cFpNrJGqqdEWplEoUIVt9oLs= +=DXjv +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.2.2/amd64/test/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.2.2/amd64/test/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..539e514f0dc8a4ab794dca8c25eb0d636ea45520 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.2.2/amd64/test/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: test +initial-install-version: 4.2.2 +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.2.2/amd64/test/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.2.2/amd64/test/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..8851069de9296ecd9c5bcdec10fdadda35213615 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.2.2/amd64/test/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXhyrrAAKCRCQsrS9eu0j +X9FBAQDxQWXAAvCca91fz2E5TJz8aRzmhC9XJIlxmH10kE1XpgEAu9uzYT/jYcIE +SGvHuWVNTii6zdHuBuvQcf8O+w7mKQo= +=ypQr +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.2.3/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.2.3/amd64/alpha/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..3263c77836d5a374e777f12834abb284a2f463b1 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.2.3/amd64/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: alpha +initial-install-version: 4.2.3 +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.2.3/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.2.3/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..790a792c992423642c427c69970505a69cbfd580 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.2.3/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl4chP4ACgkQ0h2tOK8o +HAtcXA/9E0WbyzZ1GsY2kTDGZroedqu4J6uYyfl5mEGvlYM2JgCY68sef48HHMhW +UR2W2ieCFL2BH5wIbNVT1T2HwWRklEb/x1nnvngtr4FH6At9lRqFUp20NPUyuggi +5/4ISugXk55aNFje4zXVJSeAF3TgFQ1pBaSzXzpX2Tj/6Q5q+Hxn4aFGXHAxH4Wz +pU7kyjG/pLIO38LT0otxQuPd6irIftN3/fLT4CwrTL8pmMIDz0WiWH+aKJ4x9EGW +13+ncXUjqI9CahPryKXiWDuB4E53A2Q884Pkqo9vpQ0vTTWl3cjtxG8tz8hSImql +zggHXS9JpGCCdrwzAQNT12KbaSAzHS2XU/wFGBQDZTiofwfgSWAXV054L3/lhqGj +Dpu9/Q+0Rqyvqh12Z9z0BRRgJVhPiMA4A6jLvmO+RbD86BRGo+Om3ggGnFMYe5P7 +x597eZDNouAcHN/Solr51BSY9aEETEA+XdPWQHeiVDh3rzyPVwz2rJzIQbKFD0OF +OVuI9z+slOuoyQCJ+GztMqqD20x1FZkkxdrVTKIszae4ULXYIBixnDO62Nk/0FUQ +E+L3Sp7IHH7EV2L3A4VDVFWBLUwvZf2BzBrfOEJY1vrR8N7Vx3YIH5dHG0pWKvO/ +LDKDhNu5sx0Y3cXY6UEv/dN0lUmGZAyTXRM94ewYkVHFdHptRAA= +=c7Lq +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.2.3/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.2.3/amd64/stable/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..b713188ecf75a6241925fb739d1ce4a709f631d0 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.2.3/amd64/stable/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: 4.2.3 +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.2.3/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.2.3/amd64/stable/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..e4c27f9e68791b236fb45c921b04bd193c7f9c76 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.2.3/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl4chPcACgkQ0h2tOK8o +HAsBBA/+LSuhqee3xL4yw39gGsBwdmvmlbbVHrnIG7oJBtCgq5vsvi9Jk12EBb75 +odxPfOFt4is2CfNtDthSVSru1qo73j7pLq8om0C/Smf2hsJKExtg423G5aBsN25D +mDG8NoKr82bM1+ZLH6zdD3mG3W1HYUbnK55sNX2CDpYbFQjwuzjvFvIngpxPtWgg ++AynnaUWFkBSq0Rf9+tfKtyaGXCRewhHMTSFSCyJgF+EPGNJBII65PJ0bGfHxd47 +8a0hJEhaZAdCQ/7LwgGomnAHJjXSAGgbNaSn1NAftmG5XnH1MlEhlf6jnfUdyX2B ++Rhw3esii+owo7tjASWuauxe0YMYSzafICFOo3cgEorCInCajI85v0FbRdSp/BV/ +hbcPyHMu54akfkncK8tQFNeKqoVGgy47FnbVSZw4ZbwYWueoXp/UoTvvAG6SWsfQ +Prjdbqu+uZqAAi2MrouAjSUUlBx91ZYKffid4y/memCM6cojXNFmaZVK3qNIp7VC +EMSFDcUonsAI5VCOBWx97jnyXKayVYf34CF0nYTgpCOVP250y1Ji++QtRL+EX+Bi +sHLBvliCWpPMydWWX3IFPBv7vRZra4UGQJab+J1yzvpr1sL9O+B0RhUHdeRsQ132 +awn6Y7lyG7sQoiy+oaxeA7zTD6YxC0jqsOzI8ec75fPe++VCAJo= +=hyb+ +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.2/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.2/amd64/alpha/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..7ff762ed4347d1599faae9119e5de4e2948d83c1 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.2/amd64/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: alpha +initial-install-version: 4.2 +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.2/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.2/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..d39891b8526529b56f8ca22408e448e46021fe79 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.2/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXf/E+QAKCRCQsrS9eu0j +X3xnAPwIZl3qMLbXwFh+acaogVQuj4DZTQhAdwEO8yYjChuALwEA5a0xLSUGQ7Lb +KRBHrD2/t6e/38VtToOanlhsgA0laAk= +=UJt2 +-----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 new file mode 100644 index 0000000000000000000000000000000000000000..aa97c0f1c7d36565bcb275ae82c46372f10a95bc --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.2/amd64/stable/upgrades.yml @@ -0,0 +1,20 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: '4.2' +product-name: Tails +upgrades: +- details-url: https://tails.boum.org/news/version_4.2.2/ + type: major + upgrade-paths: + - target-files: + - sha256: 307be5c051a10920b9dfe0b3b4447eeabf0037c427081997017b58cdac0ac4a1 + size: 1151539200 + url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-4.2.2/tails-amd64-4.2.2.iso + type: full + - target-files: + - sha256: 00053554d955fe74ddce79b5e53c6e10eff69feb9ea70ffe585f5d714be02186 + size: 119324672 + url: http://dl.amnesia.boum.org/tails/stable/iuk/v2/Tails_amd64_4.2_to_4.2.2.iuk + type: incremental + version: 4.2.2 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 new file mode 100644 index 0000000000000000000000000000000000000000..14f3eb58e191b0a9a69f138ba00bfaef7af82414 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.2/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEEBUafuF6tZYm0PUHT0h2tOK8oHAsFAl4chPAACgkQ0h2tOK8o +HAtSERAAxcpKyWg25FiR2NHYqA3zEWXNPsW6foVoubm8ABtsSsG6dlrBDxR0IFXe +Qa0JlIqpdClYEnS9GnAiXLlx5dQh8l26RyprBdecnkuGRaxDWNIG3QAh8k0qk/AD +vHYyZCBP1WMuq7fTdn+ig6UV0tgMv6LTC5mXBUrxaNAGh47nPB+v2uh5FCAJqFo+ +hr3HumgtmLdWmQnpN1KmUz41oW/SKUcfQPl8HxEKBgLIiItcM2UmfnF5t8Wo7gix +5Z0CclbVYPfbCZilJvn0u37FkDdYXj4uFjWn84Ikln3+ZSPvlXXlmCPBvQNey2zB +0EGdKuWJeCoin90+aWZHcJEieOPtTyZmsKpot5z5Bd8DRHQCFhsCLixEzALixHLq +j0IsSdiM/c6ECxjQ9Gbx+MoOmO0YxFQfewq6n8FD07IJsFN3+YN6hz/QCYCIFRkL +LDJEhVFwriJX6mSlNzceroaJ3H+0GaDRN5z3fRZAKokhh0v3raHYZ3TscsT7lpFC +DpnFg3pc8FLYvvB5vlPtnI+BnmjHTzZq/1ZRIZXF+1ftwCNJJ8F2mEBwiS0Umul/ +LiaVB31vkUGgSPL5WPx2xCPCiyx+p5PK+FHachvZUsU1ubGPjHvuLSgLl6uWzyFt +YVDOFAQeIU8uun85ZnfigQxiyPIuIvbxmUrHKv/9+fciCy5OMfo= +=nOXC +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.3/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.3/amd64/alpha/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..0926c153afe3fff193cb032f9964946bf9647031 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.3/amd64/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: alpha +initial-install-version: '4.3' +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.3/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.3/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..12856a1b7523e9d49c50a5dfc8847408e5223bdc --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.3/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl4YkZQACgkQqLD05Fsb +UOJYDg//c/Ojx6yL9fLq6VC6jGll8e/PSM1SZk76Qq2hW8dvqhExOeshJOO0kTEe +Xi232KobpCR/1k5/eLF+Jbb0CzUUa6ETQyHHvGdJInXCd2yUJq89vFGQjGGAgdzV +kBqY1+FngClHjgaNFbI5URRfXEBJmVM0ZQWjmaILY06BkLquEkLgbhNo2m1U+iDp +mYMkQ/6qjwe7ZOc1O+RxWyu5jP/4JBYV3eVeFulON/MPAspzvWkOyOtMtnb7htK9 +SJXpLAQ1WbHXQ9P+EBgZ+SGAUeWsAK3GyveS2WJSjhqpwLzyQJ7DeEJhb7mSpkSD +2V4UHgdbB/f8GrQE5NjzzUspYphH6YdYMffLbl6k2UWN5OOrkFAzxoG6kPJRwLN2 +jZGoNa886qQE1kjpVhJMtOP8WcNJUeRYseqVVaGfC7nHCsbgk5Cy5UYVCVyk7dKB +P6HWtuF1pHb1MaFvGX+8dpj+ItS1zXVP5scT4Y9Zp/AgNbfJvIOdTd1CeFxP2XJy +nTYL7VoNLUbhjcgQ3xFTSRafb9Dv2pi9+gPQthutwfVbVOOG6QPEaZtU+kjjk/XV +ROYYtZimCw40K+dxOsRIyAcZnH0Fwioz8yYvl5X0dQ+vQu56Gb9+ls2zexCHO30X +IwHw65Ny9gSLUkGwCIx0VfwccByX4Rwd1oul6SoNp160+y/cHDw= +=kvC6 +-----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 new file mode 100644 index 0000000000000000000000000000000000000000..b04fcda35d82942047266d7959c3d05026ddfd6d --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.3/amd64/stable/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: '4.3' +product-name: Tails 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 new file mode 100644 index 0000000000000000000000000000000000000000..92235b2f564b784852d5593457aff76d06942754 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.3/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl4YkZsACgkQqLD05Fsb +UOJqLg/8DyurmuwN7bhze7I7Vf4kojcmS6E83/mDb0HuJzxZ7dXMlgf7wsKBVDPG +w4RHabCsTj097FFHzYhBSah2KLzpHPK6h5FDFJj4H7wP+y24ZtyFrbBnFeqqyC+e +eXm6xgnVHXz/fy1OYlAaPltO5w/kKni2TAPY92RYlTszkigKQf9tpUGLNO0A/Hzp +YZhGKqU8R21Tk/pNyDqfd0s9/7x2fE685r1a6xoyrx9LJEGmnwLKjW1/wcbahify +k3E77Us814hOcWyr0nf8V1iCkMuV1nDzkh1Am7E8/xfs3+DrroVD9XtnluN65gOk +z4S5nfbttfi9OkjT0D+V3wD91EUttCYIuIVEXGgdyDrFUbLRulr35s02TPrvJ721 ++yqKN3/29WuIGV+DAk7bT70+WbT0AIXaCmeDDLNxpx9FkL8t/ruytqkqXwHw5r0C +iqoLsPm6GB8GvWF6R6TeXTUfgIyPDIutueRJkfLBJ/Whyl2x/3wPi/9CXRDin+tR +uAefLIzymP+7TCY/nOnG47aFiozMSVImtAVcOt25KG+BIJa1MfPy4jBIGvBAErYb +rhS6hc8DLSMP/vB3PnIqPB1RwAuGl35gONTrbLNIrhOFPHSf6XZ/IeVwwDsMhJc7 +qJcSJU7Ji6sh6NwI4k3Jn7Z4OcN7/KqOD3ZKp8Ff2oK2AOhOk5A= +=g/3Y +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.4/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.4/amd64/alpha/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..0965fbf5ac8452870e1ba47f87eb17be2d81dea7 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.4/amd64/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: alpha +initial-install-version: 4.4 +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.4/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.4/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..3f243cb3ba6ff63b44610674794d703e26162df2 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.4/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXf/F4QAKCRCQsrS9eu0j +XwlyAP0UZ+GfSWITsAp1+2SrEzlfIGya4a6jzwXpfy+hkRdlgwEAp08bJP4w01Z1 +4NzCBE8Hr54dQFTlmksiiIO/BUfODQc= +=3ydK +-----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 new file mode 100644 index 0000000000000000000000000000000000000000..eec492bc7137c175c4247334a9655aad22ac9de5 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.4/amd64/stable/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: 4.4 +product-name: Tails 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 new file mode 100644 index 0000000000000000000000000000000000000000..c9abf340ae00ae03fb29c86a6a254a6fe5d79ee9 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.4/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXf/F3AAKCRCQsrS9eu0j +XydZAQDrDr/coi5YRaodAW/D67BszRpRbIxm/XNP1dOJcoEMEAD+JFougvnHO6Yo +8Co1FjGt3uc4E9dkql+fVNEyI1yaBAU= +=BJSb +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.5/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.5/amd64/alpha/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..c27abe7447cc5bca6710c1b41ec9e75d5b7ac078 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.5/amd64/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: alpha +initial-install-version: '4.5' +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.5/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.5/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..87990bf16c716ba156aaedf2ef88f2974ec7513a --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.5/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl4YkaEACgkQqLD05Fsb +UOJGnw//XeH2VoOlqfBteDWEZq/oKJ/4/2HXjkmqzkPeJ+J6AzGIjSX1OaRzdXCC +M6QtrpFE9ZhfpGS+HCEiU5nVGeGBBRlS0b/oaoziCCiLinAG5Iz1F67E3t+XdC9N +YRbyzhX9Ilym/7sIsa/Aqsc70AXFoU0p4x5KtREULK2/7Yt2guTHVrDFt4zE9FQG +lY56N+1bXl9eQsMq1VvtZwK/zavj9iCXrNaJdKeNVp1taNpbl8to830KRTPutLY3 +dXuWSI9S7RfXTYgtzx/tRgUDqu+duJUWJf5cMGtraDbcmxm91g4qerXCMVFBa+wC +p3uz4PLXhAjP8wxQvnruhcIlWoSW5CoWZrheSAcKBkeRhkiNsfqsPMvZdKlXBW9w +h7iz+Sd20qxMQfVA1tFmcROcecZACHah/8+Y84N6MpPYbQPTWQ5OV+bhdIQR+qTN +xwvqNkwNN9qD0TcALgzRYYCgtMOq70Bh2jDYNKVL5/fiE6QbnqgiExkCmmlHjj6p +65HAjXhu7sA6SCMc4OhNUbW2DQsf5P4HO/blL3NtIDDIbkWUFN1/sRK1mUiL8xqW +hV2o2jMiIYg1CCbl9Yn+jVVpEW7OIQcN8vZE1a7Lz04UnK45TFESmx6bWdAM9CQW +NCNLt/7J+BLNqQEeFBXa7e9tNu1dFhxzjnLUjgCqI4yETjz1FEY= +=MNcB +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.5/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.5/amd64/stable/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..c012b7661de1f3700398e9e139a55fba415d3f0b --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.5/amd64/stable/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: '4.5' +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.5/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.5/amd64/stable/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..2977165e0e6ee9a6f9b40e71b57c8390405609a1 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.5/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl4YkacACgkQqLD05Fsb +UOK14g/+PWiwUrqT7LwcTLmSLRA/3OV9RaUkxKMVwFBZ43cDrYFTC8O05PiWBJA8 +Qe20ludwJ6Es/vzi/GPkoqSt2BERLr9wT6//EoqYcX3THMCvnzxkShMfF/m18ZEQ +4xCxW1alPLSqQY05ulOGPsnYgVBAo4G/1L6wOdHBH9UhRBnMmrYU6xfhBcVAeF+q +/XD4haCskrHUikEeJiHT2dNKqUejd/Lhm9aogHP4IIPY8bkkc2ZA5B7lQd8lMOSx +PLEx9jp8vrCTd6euOOTqAsXifcGN19YZxXadJzfe9+5C0sKPK4kmxZOY4bitvvPk +Az78DGunUDdMiBvd3L58kSVSflWgbHU8sN6Gj4qPodB+3kCFwX9zvgp9658fW3BL +H//zw8DXKa+YZ+HjhoCz9sFuy6hoRUS0MIay/7lUywf+NBpGr1dAPPK8BfCS0mjy +pKX3tAJlg5KPJuheZyvuBwFE+Q2tl3AtvUDBq0FizSDiEWjpLNv/GFMSYN3RGEBi +1aSb/m7GBmUdPPIW2Km1tOi+1xPT98dnJeL+yRL/SREVm6ofhF+7pOrdwIN49jFR +szbOvQmbxI2hf25bDTdvRVE17hyHEZtgIQC/pIPYee3WfdT4q3n156kC4NYBVCuS +ecBr3fxKGRDyFJanbD4PHSxIp5RGlFuz5Dy7GX3SqhUlfW3mSgs= +=3/ah +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/4.5~rc1/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/4.5~rc1/amd64/alpha/upgrades.yml new file mode 100644 index 0000000000000000000000000000000000000000..ccc116b63e4c444d43a4fba1d8f957b3d8965e5a --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.5~rc1/amd64/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: alpha +initial-install-version: 4.5~rc1 +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/4.5~rc1/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/4.5~rc1/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 0000000000000000000000000000000000000000..6537f21b32a9e7f95bc24db9daceefdc219d9c9e --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.5~rc1/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAl4Yka0ACgkQqLD05Fsb +UOJwUxAAmHX9ao015wsbv05LlBR/W1JVbxD0ViqDKEQGRKzGLG3GLnPzj6ISBPb1 +0wBmN8mLICVYao5P1yuW7DsYP7LTJxhBPddt+hozHB7FiaMMuyyihN4MLRs/80wf +ggjjpgbYrzUJ0Z2hvidkdW25EupZqlI0PBvlr9ZQpeBv8nz1T3dzj5HRh+7MaHh9 +vvrgx1nrpykyMryWtlMHOv1uZo2aPlsguUvLIprz5W3LkVRFVeyxHLrtxqhLaRmO +VAUbo9e9Sq38DBevdK9y5ZR/w7YuwoSzEXyWUYPT3B5takEdZgFEMy5dkMaw0XGF ++vBCe+TF2s/N9/YMkHb0M4FX1gOBVJN3jE0ty1a03llPylqMGiVbZ0fm+StqLGzG +KBrVptcFKOhGlaYhO2wkzBTJTV1F+g4eIPtNE3m8zHrnXrMYlCuKN1aMk45sliyP +ruilzWCY1K9ZefPZbHusp7Hlkxp4vsdFzsihKCOji9jBpec3+LEOhKQ/GLuaNwAD +uQ7yiuCxxVkgEfpUaVLRTIhZq0r8G83XaRTCJGP+TFUv/n1SPe/iz5kT6r+LlDf4 +d7PJIDSEGW72iQ8bekb2X0tMkJMkRvvsTuf861jD783wUus2qaP26NbRqHuUDbA8 +9iD/gGCgGVSeRepaSu+9Utfk2r9tilySn8OFRzRjOu5KjuLtl3Q= +=fAW6 +-----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 new file mode 100644 index 0000000000000000000000000000000000000000..142939aa05241ed2b0128090bb52d58a2969200b --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.5~rc1/amd64/stable/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: 4.5~rc1 +product-name: Tails 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 new file mode 100644 index 0000000000000000000000000000000000000000..acd62d4cef11e25a1a32cf84b3d42e9772d52eaa --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/4.5~rc1/amd64/stable/upgrades.yml.pgp @@ -0,0 +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 +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/win-download.fa.po b/wiki/src/upgrade/win-download.fa.po index 7c3f65f48cd5da5bffd0a1797ac69700a781938d..8774d27c1a4d2fb10507dd8ad739ed3fa09358a2 100644 --- a/wiki/src/upgrade/win-download.fa.po +++ b/wiki/src/upgrade/win-download.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-22 08:51+0000\n" +"PO-Revision-Date: 2020-01-22 15:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fa\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -38,6 +38,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -45,6 +47,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/download\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/download\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -52,6 +56,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -63,7 +69,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!meta script=\"install/inc/js/download\"]]\n" -msgstr "" +msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap @@ -71,3 +77,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/download.inline.fa\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/win-download.it.po b/wiki/src/upgrade/win-download.it.po index 5dbe9d7c937167dbe02aa24f27e80d8b9d5363b1..e37c59fac077ff116360df31acbc2b46ef1ccc90 100644 --- a/wiki/src/upgrade/win-download.it.po +++ b/wiki/src/upgrade/win-download.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-16 12:01+0000\n" +"PO-Revision-Date: 2020-01-22 14:27+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: it\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -47,6 +47,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/download\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/download\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -63,11 +65,13 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/upgrade-windows\" " "rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/upgrade-windows\" rel=\"" +"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta script=\"install/inc/js/download\"]]\n" -msgstr "" +msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap @@ -75,3 +79,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/download.inline.it\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/win-download.pt.po b/wiki/src/upgrade/win-download.pt.po index cf6d3d8bd760b265ee9b1f2207c1de3ac8665c43..4416c7d7f12cac92f778c5660a5706a09bc768d1 100644 --- a/wiki/src/upgrade/win-download.pt.po +++ b/wiki/src/upgrade/win-download.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-22 08:52+0000\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" "Language: pt\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -38,6 +38,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -45,6 +47,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/download\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/download\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -52,6 +56,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -63,7 +69,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!meta script=\"install/inc/js/download\"]]\n" -msgstr "" +msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap @@ -71,3 +77,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/download.inline.pt\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/win-download.tr.po b/wiki/src/upgrade/win-download.tr.po index cbd78903b45fd3b8ebdf3c052af22ffb63d75e03..a01f083a3b7c43114a2748b26e91e92aab9e5a1c 100644 --- a/wiki/src/upgrade/win-download.tr.po +++ b/wiki/src/upgrade/win-download.tr.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-22 14:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -24,12 +25,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!meta robots=\"noindex\"]]\n" -msgstr "" +msgstr "[[!meta robots=\"noindex\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" +msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/win-overview.fr.po b/wiki/src/upgrade/win-overview.fr.po index 8ed6d9e8c1b0fe6b00460cd324ba999c78574246..f56a1b9804c4106dc328a6e7061650e8c720c76e 100644 --- a/wiki/src/upgrade/win-overview.fr.po +++ b/wiki/src/upgrade/win-overview.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-10-31 13:00+0000\n" +"PO-Revision-Date: 2020-01-11 13:26+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr\n" @@ -15,11 +15,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Manually upgrade from Windows\"]]" -msgstr "" +msgstr "[[!meta title=\"Mise à jour manuelle depuis Windows\"]]" #. type: Content of: outside any tag (error?) msgid "" @@ -32,10 +32,16 @@ msgid "" "title=\"\"]] [[!inline pages=\"install/inc/overview\" raw=\"yes\" " "sort=\"age\"]] [[" msgstr "" +"[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"" +"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/stylesheets/" +"assistant\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/" +"stylesheets/overview\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"" +"install/inc/stylesheets/upgrade-windows\" rel=\"stylesheet\" title=\"\"]] [[" +"!inline pages=\"install/inc/overview.fr\" raw=\"yes\" sort=\"age\"]] [[" #. type: Content of: <div><div> msgid "Let's go!" -msgstr "" +msgstr "Allons-y !" #. type: Content of: outside any tag (error?) msgid "|upgrade/win-download]]" diff --git a/wiki/src/upgrade/win-overview.it.po b/wiki/src/upgrade/win-overview.it.po index 47190ec339f1de0d2527810c78b6939b8fe37ecb..1a7236f23836c864a2bd603558448b499aa60593 100644 --- a/wiki/src/upgrade/win-overview.it.po +++ b/wiki/src/upgrade/win-overview.it.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-17 12:26+0000\n" +"Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Manually upgrade from Windows\"]]" @@ -31,6 +32,12 @@ msgid "" "title=\"\"]] [[!inline pages=\"install/inc/overview\" raw=\"yes\" " "sort=\"age\"]] [[" msgstr "" +"[[!meta robots=\"noindex\"]] [[!meta stylesheet=\"bootstrap.min\" rel=\"" +"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/stylesheets/" +"assistant\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"install/inc/" +"stylesheets/overview\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=\"" +"install/inc/stylesheets/upgrade-windows\" rel=\"stylesheet\" title=\"\"]] [[" +"!inline pages=\"install/inc/overview.it\" raw=\"yes\" sort=\"age\"]] [[" #. type: Content of: <div><div> msgid "Let's go!" @@ -38,4 +45,4 @@ msgstr "" #. type: Content of: outside any tag (error?) msgid "|upgrade/win-download]]" -msgstr "" +msgstr "|upgrade/win-download]]" diff --git a/wiki/src/upgrade/win-overview.pt.po b/wiki/src/upgrade/win-overview.pt.po index 47190ec339f1de0d2527810c78b6939b8fe37ecb..3b80384e8a2cfb8dcfbdbfaa481a8667f024aa56 100644 --- a/wiki/src/upgrade/win-overview.pt.po +++ b/wiki/src/upgrade/win-overview.pt.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Content of: <div> msgid "[[!meta title=\"Manually upgrade from Windows\"]]" @@ -34,7 +35,7 @@ msgstr "" #. type: Content of: <div><div> msgid "Let's go!" -msgstr "" +msgstr "Vamos lá!" #. type: Content of: outside any tag (error?) msgid "|upgrade/win-download]]" diff --git a/wiki/src/upgrade/win.de.po b/wiki/src/upgrade/win.de.po index 59ebe90868f2691e4dced1c2a61645662b8af803..eb049a9c80f281751088b5d9de2b888ca2af3957 100644 --- a/wiki/src/upgrade/win.de.po +++ b/wiki/src/upgrade/win.de.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Language: \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -58,6 +59,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/install_etcher_in_windows.inline\" " "raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/install_etcher_in_windows.inline.de\" " +"raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -65,6 +68,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/install_with_etcher.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_etcher.inline.de\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -72,6 +77,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/restart_first_time.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/restart_first_time.inline.de\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -79,3 +86,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/clone.inline.de\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/win.fa.po b/wiki/src/upgrade/win.fa.po index d5a482f7edb3c16255e2dcaff8151b0ff3b00c6d..6e292471a2a95f3c4732420f4ca8bb53b066e34b 100644 --- a/wiki/src/upgrade/win.fa.po +++ b/wiki/src/upgrade/win.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-22 08:51+0000\n" +"PO-Revision-Date: 2020-01-22 15:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fa\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -38,6 +38,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -45,6 +47,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -59,6 +63,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/install_etcher_in_windows.inline\" " "raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/install_etcher_in_windows.inline.fa\" " +"raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -66,6 +72,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/install_with_etcher.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_etcher.inline.fa\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -73,6 +81,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/restart_first_time.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/restart_first_time.inline.fa\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -80,3 +90,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/clone.inline.fa\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/win.it.po b/wiki/src/upgrade/win.it.po index 16ffa337bc44cd214e75a3ee8618b12bcfd2e334..4fb6111b02f3e25f3cd802f2c16542b2f004e55e 100644 --- a/wiki/src/upgrade/win.it.po +++ b/wiki/src/upgrade/win.it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-16 12:01+0000\n" -"Last-Translator: emmapeel <emma.peel@riseup.net>\n" +"PO-Revision-Date: 2020-01-17 12:26+0000\n" +"Last-Translator: gallium69 <gallium69@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -56,6 +56,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/upgrade-windows\" " "rel=\"stylesheet\" title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/upgrade-windows\" rel=\"" +"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -63,6 +65,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/install_etcher_in_windows.inline\" " "raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/install_etcher_in_windows.inline.it\" " +"raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/upgrade/win.pt.po b/wiki/src/upgrade/win.pt.po index 46bf62109e31bc2b449206575e154337c618f308..fb321c26a68a90e0aa2b11c59188a5e50ecccd8d 100644 --- a/wiki/src/upgrade/win.pt.po +++ b/wiki/src/upgrade/win.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: 2019-11-22 08:52+0000\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" "Language: pt\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -38,6 +38,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -45,6 +47,8 @@ msgid "" "[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " "title=\"\"]]\n" msgstr "" +"[[!meta stylesheet=\"install/inc/stylesheets/steps\" rel=\"stylesheet\" " +"title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -59,6 +63,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/install_etcher_in_windows.inline\" " "raw=\"yes\" sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/install_etcher_in_windows.inline.pt\" " +"raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -66,6 +72,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/install_with_etcher.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/install_with_etcher.inline.pt\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -73,6 +81,8 @@ msgid "" "[[!inline pages=\"install/inc/steps/restart_first_time.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/restart_first_time.inline.pt\" raw=\"" +"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap @@ -80,3 +90,5 @@ msgid "" "[[!inline pages=\"install/inc/steps/clone.inline\" raw=\"yes\" " "sort=\"age\"]]\n" msgstr "" +"[[!inline pages=\"install/inc/steps/clone.inline.pt\" raw=\"yes\" sort=\"" +"age\"]]\n" diff --git a/wiki/src/upgrade/win.tr.po b/wiki/src/upgrade/win.tr.po index 8f99da6c202a70c760b3ecb27d59a2dba33706f5..0f72463700142e2ec825011ed25d2e8c9044abf9 100644 --- a/wiki/src/upgrade/win.tr.po +++ b/wiki/src/upgrade/win.tr.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2019-10-18 01:54+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2020-01-22 14:27+0000\n" +"Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. type: Plain text #, no-wrap @@ -24,12 +25,12 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!meta robots=\"noindex\"]]\n" -msgstr "" +msgstr "[[!meta robots=\"noindex\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" +msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap