diff options
author | intrigeri <intrigeri@boum.org> | 2018-11-27 16:20:14 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2018-11-27 16:20:14 +0000 |
commit | b7aa963c6ce44dc92986c5f9796ed6386b2fe565 (patch) | |
tree | 92c0effc67e97ad98a8df0bffbcef5b0ab16d2a7 | |
parent | 8e23583b0b42d87e770e8440c98c88a827659938 (diff) | |
parent | 7f567ade99ed5e15cec3e9db5a488014de4116b1 (diff) |
Merge branch 'stable' into bugfix/15838-asp-fix-non-blocking-issues+14596-automated-tests-for-ASP-gui-on-stablebugfix/15838-asp-fix-non-blocking-issues+14596-automated-tests-for-ASP-gui-on-stable
115 files changed, 2346 insertions, 1232 deletions
@@ -314,7 +314,7 @@ end def list_artifacts user = vagrant_ssh_config('User') stdout = capture_vagrant_ssh("find '/home/#{user}/amnesia/' -maxdepth 1 " + - "-name 'tails-*.iso*'").first + "-name 'tails-amd64-*'").first stdout.split("\n") rescue VagrantCommandError return Array.new @@ -122,8 +122,6 @@ export MKSQUASHFS_OPTIONS case "$LB_BINARY_IMAGES" in iso) - BUILD_FILENAME_EXT=iso - BUILD_FILENAME=binary which isohybrid >/dev/null || fatal 'Cannot find isohybrid in $PATH' installed_syslinux_utils_upstream_version="$(syslinux_utils_upstream_version)" if dpkg --compare-versions \ @@ -135,27 +133,16 @@ case "$LB_BINARY_IMAGES" in "while we need at least '${REQUIRED_SYSLINUX_UTILS_UPSTREAM_VERSION}'." fi ;; - iso-hybrid) - BUILD_FILENAME_EXT=iso - BUILD_FILENAME=binary-hybrid - ;; - tar) - BUILD_FILENAME_EXT=tar.gz - BUILD_FILENAME=binary-tar - ;; - usb-hdd) - BUILD_FILENAME_EXT=img - BUILD_FILENAME=binary - ;; *) fatal "Image type ${LB_BINARY_IMAGES} is not supported." ;; esac -BUILD_DEST_FILENAME="${BUILD_BASENAME}.${BUILD_FILENAME_EXT}" -BUILD_MANIFEST="${BUILD_DEST_FILENAME}.build-manifest" -BUILD_APT_SOURCES="${BUILD_DEST_FILENAME}.apt-sources" -BUILD_PACKAGES="${BUILD_DEST_FILENAME}.packages" -BUILD_LOG="${BUILD_DEST_FILENAME}.buildlog" +BUILD_ISO_FILENAME="${BUILD_BASENAME}.iso" +BUILD_MANIFEST="${BUILD_BASENAME}.build-manifest" +BUILD_APT_SOURCES="${BUILD_BASENAME}.apt-sources" +BUILD_PACKAGES="${BUILD_BASENAME}.packages" +BUILD_LOG="${BUILD_BASENAME}.buildlog" +BUILD_USB_IMAGE_FILENAME="${BUILD_BASENAME}.img" # Clone all output, from this point on, to the log file exec > >(tee -a "$BUILD_LOG") @@ -172,27 +159,25 @@ trap "kill -9 $! 2>/dev/null" EXIT HUP INT QUIT TERM cat config/chroot_sources/*.chroot ) > "$BUILD_APT_SOURCES" -echo "Building $LB_BINARY_IMAGES image ${BUILD_BASENAME}..." -set -o pipefail +echo "Building ISO image ${BUILD_ISO_FILENAME}..." time lb build noauto ${@} -RET=$? -if [ -e "${BUILD_FILENAME}.${BUILD_FILENAME_EXT}" ]; then - echo "Image was successfully created" - [ "$RET" -eq 0 ] || \ - echo "Warning: lb build exited with code $RET" - if [ "$LB_BINARY_IMAGES" = iso ]; then - ISO_FILE="${BUILD_FILENAME}.${BUILD_FILENAME_EXT}" - print_iso_size "$ISO_FILE" - echo "Hybriding it..." - isohybrid $AMNESIA_ISOHYBRID_OPTS "$ISO_FILE" || fatal "isohybrid failed" - print_iso_size "$ISO_FILE" - truncate -s %2048 "$ISO_FILE" - print_iso_size "$ISO_FILE" - fi - echo "Renaming generated files..." - mv -i "${BUILD_FILENAME}.${BUILD_FILENAME_EXT}" "${BUILD_DEST_FILENAME}" - mv -i binary.packages "${BUILD_PACKAGES}" - generate-build-manifest chroot/debootstrap "${BUILD_MANIFEST}" -else - fatal "lb build failed ($?)." -fi +[ -e binary.iso ] || fatal "lb build failed ($?)." + +echo "ISO image was successfully created" +print_iso_size binary.iso + +echo "Hybriding it..." +isohybrid $AMNESIA_ISOHYBRID_OPTS binary.iso || fatal "isohybrid failed" +print_iso_size binary.iso +truncate -s %2048 binary.iso +print_iso_size binary.iso + +echo "Renaming generated files..." +mv -i binary.iso "${BUILD_ISO_FILENAME}" +mv -i binary.packages "${BUILD_PACKAGES}" + +echo "Generating build manifest..." +generate-build-manifest chroot/debootstrap "${BUILD_MANIFEST}" + +echo "Creating USB image ${BUILD_USB_IMAGE_FILENAME}..." +create-usb-image-from-iso "${BUILD_ISO_FILENAME}" diff --git a/auto/scripts/create-usb-image-from-iso b/auto/scripts/create-usb-image-from-iso new file mode 100755 index 0000000..8600ef1 --- /dev/null +++ b/auto/scripts/create-usb-image-from-iso @@ -0,0 +1,388 @@ +#!/usr/bin/env python3 + +import argparse +import os +import logging +from contextlib import contextmanager +import re +import time +import subprocess + +import gi +gi.require_version('UDisks', '2.0') +from gi.repository import UDisks, GLib, Gio + + +logger = logging.getLogger(__name__) + +SYSTEM_PARTITION_FLAGS = ( + 1 << 0 | # system partition + 1 << 2 | # legacy BIOS bootable + 1 << 60 | # read-only + 1 << 62 | # hidden + 1 << 63 # do not automount +) + +# EFI System Partition +ESP_GUID = 'C12A7328-F81F-11D2-BA4B-00A0C93EC93B' + +PARTITION_LABEL = 'Tails' +FILESYSTEM_LABEL = 'Tails' + +GET_UDISKS_OBJECT_TIMEOUT = 2 +WAIT_FOR_PARTITION_TIMEOUT = 2 + +# The size of the system partition (in MiB) will be: +# +# SYSTEM_PARTITION_ADDITIONAL_SIZE + size of the ISO +# +# SYSTEM_PARTITION_ADDITIONAL_SIZE must be large enough to fit +# the partition table, reserved sectors, and filesystem metadata. +SYSTEM_PARTITION_ADDITIONAL_SIZE = 10 + +SYSLINUX_COM32MODULES_DIR = '/usr/lib/syslinux/modules/bios' + + +class ImageCreationError(Exception): + pass + + +class ImageCreator(object): + + def __init__(self, iso: str, image: str, free_space: int): + self.iso = iso + self.image = image + self.free_space = free_space + self._loop_device = None # type: str + self._partition = None # type: str + self._system_partition_size = None # type: int + self.mountpoint = None # type: str + + @property + def loop_device(self) -> UDisks.ObjectProxy: + if not self._loop_device: + raise ImageCreationError("Loop device not set up") + return self.try_getting_udisks_object(self._loop_device) + + @property + def partition(self) -> UDisks.ObjectProxy: + if not self._partition: + raise ImageCreationError("Partition not created") + + return self.try_getting_udisks_object(self._partition) + + @property + def system_partition_size(self) -> int: + if self._system_partition_size is None: + self._system_partition_size = get_file_size(self.iso) + SYSTEM_PARTITION_ADDITIONAL_SIZE + + return self._system_partition_size + + def try_getting_udisks_object(self, object_path: str) -> UDisks.Object: + start_time = time.perf_counter() + while time.perf_counter() - start_time < GET_UDISKS_OBJECT_TIMEOUT: + with self.get_udisks_client() as udisks_client: + udisks_object = udisks_client.get_object(object_path) + if udisks_object: + return udisks_object + time.sleep(0.1) + raise ImageCreationError("Couldn't get UDisksObject for path '%s' (timeout: %s)" % + (object_path, GET_UDISKS_OBJECT_TIMEOUT)) + + @contextmanager + def get_udisks_client(self): + client = UDisks.Client().new_sync() + yield client + client.settle() + + def create_image(self): + self.create_empty_image() + + with self.setup_loop_device(): + self.create_gpt() + self.create_partition() + self.set_partition_flags() + # XXX: Rescan? + self.format_partition() + with self.mount_partition(): + self.extract_iso() + self.set_permissions() + self.update_configs() + self.install_mbr() + self.copy_syslinux_modules() + + # We have to install syslinux after the partition was unmounted. + # This sleep is a workaround for a race condition which causes the + # syslinux installation to return without errors, even though the + # bootloader isn't actually installed + # XXX: Investigate and report this race condition + # Might it be https://bugs.chromium.org/p/chromium/issues/detail?id=508713 ? + time.sleep(1) + self.install_syslinux() + self.set_guids() + self.set_fsuuid() + + with self.mount_partition(): + self.reset_timestamps() + + def extract_iso(self): + logger.info("Extracting ISO contents to the partition") + execute(['7z', 'x', self.iso, '-x![BOOT]', '-y', '-o%s' % self.mountpoint]) + + def create_empty_image(self): + logger.info("Creating empty image %r", self.image) + image_size = self.system_partition_size + self.free_space + execute(["dd", "if=/dev/zero", "of=%s" % self.image, "bs=1M", "count=%s" % image_size]) + + @contextmanager + def setup_loop_device(self): + logger.info("Setting up loop device") + with self.get_udisks_client() as udisks_client: + manager = udisks_client.get_manager() + + image_fd = os.open(self.image, os.O_RDWR) + resulting_device, fd_list = manager.call_loop_setup_sync( + arg_fd=GLib.Variant('h', 0), + arg_options=GLib.Variant('a{sv}', None), + fd_list=Gio.UnixFDList.new_from_array([image_fd]), + cancellable=None, + ) + + if not resulting_device: + raise ImageCreationError("Failed to set up loop device") + + logger.info("Loop device: %r", resulting_device) + self._loop_device = resulting_device + + try: + yield + finally: + logger.info("Tearing down loop device") + self.loop_device.props.loop.call_delete_sync( + arg_options=GLib.Variant('a{sv}', None), + cancellable=None, + ) + + def create_gpt(self): + logger.info("Creating GPT") + self.loop_device.props.block.call_format_sync( + arg_type='gpt', + arg_options=GLib.Variant('a{sv}', None), + cancellable=None + ) + + def create_partition(self): + logger.info("Creating partition") + partition = self.loop_device.props.partition_table.call_create_partition_sync( + arg_offset=0, + arg_size=self.system_partition_size * 2**20, + arg_type=ESP_GUID, + arg_name=PARTITION_LABEL, + arg_options=GLib.Variant('a{sv}', None), + cancellable=None + ) + # XXX: Tails Installer ignores GLib errors here + + logger.info("Partition: %r", partition) + self._partition = partition + + def set_partition_flags(self): + logger.info("Setting partition flags") + + start_time = time.perf_counter() + while time.perf_counter() - start_time < WAIT_FOR_PARTITION_TIMEOUT: + try: + self.partition.props.partition.call_set_flags_sync( + arg_flags=SYSTEM_PARTITION_FLAGS, + arg_options=GLib.Variant('a{sv}', None), + cancellable=None + ) + except GLib.Error as e: + if "GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface" in e.message: + time.sleep(0.1) + continue + raise + return + + def format_partition(self): + logger.info("Formatting partition") + options = GLib.Variant('a{sv}', { + 'label': GLib.Variant('s', FILESYSTEM_LABEL), + 'update-partition-type': GLib.Variant('b', False) + }) + + self.partition.props.block.call_format_sync( + arg_type='vfat', + arg_options=options, + cancellable=None + ) + + @contextmanager + def mount_partition(self): + logger.info("Mounting partition") + try: + self.mountpoint = self.partition.props.filesystem.call_mount_sync( + arg_options=GLib.Variant('a{sv}', None), + cancellable=None + ) + except GLib.Error as e: + if "org.freedesktop.UDisks2.Error.AlreadyMounted" in e.message and \ + self.partition.props.filesystem.props.mount_points: + self.mountpoint = self.partition.props.filesystem.props.mount_points[0] + logger.info("Partition is already mounted at {}".format(self.mountpoint)) + else: + raise + + try: + yield + finally: + logger.info("Unmounting partition") + self.partition.props.filesystem.call_unmount_sync( + arg_options=GLib.Variant('a{sv}', {'force': GLib.Variant('b', True)}), + cancellable=None, + ) + + def set_permissions(self): + logger.info("Setting file access permissions") + for root, dirs, files in os.walk(self.mountpoint): + for d in dirs: + os.chmod(os.path.join(root, d), 0o755) + for f in files: + os.chmod(os.path.join(root, f), 0o644) + + def update_configs(self): + logger.info("Updating config files") + grubconf = os.path.join(self.mountpoint, "EFI", "BOOT", "grub.conf") + bootconf = os.path.join(self.mountpoint, "EFI", "BOOT", "boot.conf") + isolinux_dir = os.path.join(self.mountpoint, "isolinux") + syslinux_dir = os.path.join(self.mountpoint, "syslinux") + isolinux_cfg = os.path.join(syslinux_dir, "isolinux.cfg") + + files_to_update = [ + (os.path.join(self.mountpoint, "isolinux", "isolinux.cfg"), + os.path.join(self.mountpoint, "isolinux", "syslinux.cfg")), + (os.path.join(self.mountpoint, "isolinux", "stdmenu.cfg"), + os.path.join(self.mountpoint, "isolinux", "stdmenu.cfg")), + (os.path.join(self.mountpoint, "isolinux", "exithelp.cfg"), + os.path.join(self.mountpoint, "isolinux", "exithelp.cfg")), + (os.path.join(self.mountpoint, "EFI", "BOOT", "isolinux.cfg"), + os.path.join(self.mountpoint, "EFI", "BOOT", "syslinux.cfg")), + (grubconf, bootconf) + ] + + for (infile, outfile) in files_to_update: + if os.path.exists(infile): + self.update_config(infile, outfile) + + if os.path.exists(isolinux_dir): + execute(["mv", isolinux_dir, syslinux_dir]) + + if os.path.exists(isolinux_cfg): + os.remove(isolinux_cfg) + + def update_config(self, infile, outfile): + with open(infile) as f_in: + lines = [re.sub('/isolinux/', '/syslinux/', line) for line in f_in] + with open(outfile, "w") as f_out: + f_out.writelines(lines) + + def install_mbr(self): + logger.info("Installing MBR") + mbr_path = os.path.join(self.mountpoint, "utils/mbr/mbr.bin") + execute(["dd", "bs=440", "count=1", "conv=notrunc", "if=%s" % mbr_path, "of=%s" % self.image]) + + # Only required if using the running system's syslinux instead of the one on the ISO + def copy_syslinux_modules(self): + logger.info("Copying syslinux modules to device") + + syslinux_dir = os.path.join(self.mountpoint, 'syslinux') + com32modules = [f for f in os.listdir(syslinux_dir) if f.endswith('.c32')] + + for module in com32modules: + src_path = os.path.join(SYSLINUX_COM32MODULES_DIR, module) + if not os.path.isfile(src_path): + raise ImageCreationError("Could not find the '%s' COM32 module" % module) + + logger.debug('Copying %s to the device' % src_path) + execute(["cp", "-a", src_path, os.path.join(syslinux_dir, module)]) + + def install_syslinux(self): + logger.info("Installing bootloader") + # We install syslinux directly on the image. Installing it on the loop + # device would cause this issue: + # https://bugs.chromium.org/p/chromium/issues/detail?id=508713#c8 + execute([ + 'syslinux', + '--offset', str(self.partition.props.partition.props.offset), + '--directory', '/syslinux/', + '--install', self.image + ], + as_root=True # XXX: Why does this only work as root? + ) + + def reset_timestamps(self): + logger.info("Resetting timestamps") + for root, dirs, files in os.walk(self.mountpoint): + os.utime(root, (0, 0), follow_symlinks=False) + for file in files: + os.utime(os.path.join(root, file), (0, 0), follow_symlinks=False) + + def set_guids(self): + logger.info("Setting disk and partition GUID") + execute(["/sbin/sgdisk", "--disk-guid", "17B81DA0-8B1E-4269-9C39-FE5C7B9B58A3", + "--partition-guid", "1:34BF027A-8001-4B93-8243-1F9D3DCE7DE7", self.image]) + + def set_fsuuid(self): + """Set a fixed filesystem UUID aka. FAT Volume ID / serial number""" + logger.info("Setting filesystem UUID") + with set_env("MTOOLS_SKIP_CHECK", "1"): + execute(["mlabel", "-i", self.partition.props.block.props.device, "-N", "a69020d2"]) + + +def execute(cmd: list, as_root=False): + if as_root and os.geteuid() != 0: + cmd = ['pkexec'] + cmd + logger.info("Executing '%s'" % ' '.join(cmd)) + subprocess.check_call(cmd) + + +@contextmanager +def set_env(name: str, value:str): + old_value = os.getenv(name) + os.putenv(name, value) + try: + yield + finally: + if old_value is not None: + os.putenv(name, value) + else: + os.unsetenv(name) + + +def get_file_size(path: str) -> int: + """Returns the size of a file in MiB""" + size_in_bytes = os.path.getsize(path) + return round(size_in_bytes // 1024 ** 2) + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("ISO", help="Path to the ISO") + parser.add_argument("-d", "--directory", default=".", help="Output directory for the resulting image (the current directory by default)") + parser.add_argument("--free-space", type=int, default=0, help="Additional free space (for a persistent volume) in MiB") + args = parser.parse_args() + if not args.ISO.endswith(".iso"): + parser.error("Input file is not an ISO (no .iso extension)") + + logging.basicConfig(level=logging.INFO) + logging.getLogger('sh').setLevel(logging.WARNING) + + iso = args.ISO + image = os.path.realpath(os.path.join(args.directory, os.path.basename(iso).replace(".iso", ".img"))) + + image_creator = ImageCreator(iso, image, args.free_space) + image_creator.create_image() + + +if __name__ == "__main__": + main() diff --git a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh index 123dbe8..e0a1714 100755 --- a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh +++ b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh @@ -74,13 +74,6 @@ EOF # (below) and the user is done configuring it. systemctl restart tor@default.service - # When using a bridge Tor reports TLS cert lifetime errors - # (e.g. when the system clock is way off) with severity "info", but - # when no bridge is used the severity is "warn". tordate/20-time.sh - # depends on grepping these error messages, so we temporarily - # increase Tor's logging severity. - tor_control_setconf "Log=\"info file ${TOR_LOG}\"" - # Enable the transports we support. We cannot do this in general, # when bridge mode is not enabled, since we then use seccomp # sandboxing. diff --git a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh index 0d2075f..aac1168 100755 --- a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh +++ b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh @@ -233,11 +233,6 @@ fi wait_for_working_tor -# Disable "info" logging workaround from 10-tor.sh -if [ "$(tails_netconf)" = "obstacle" ]; then - tor_control_setconf "Log=\"notice file ${TOR_LOG}\"" -fi - touch $TORDATE_DONE_FILE log "Restarting htpdate" diff --git a/features/time_syncing.feature b/features/time_syncing.feature index e553bdf..11772bd 100644 --- a/features/time_syncing.feature +++ b/features/time_syncing.feature @@ -20,6 +20,17 @@ Feature: Time syncing And Tor is ready Then Tails clock is less than 5 minutes incorrect + #11589 + @fragile + Scenario: Clock is one day in the future in bridge mode + Given I have started Tails from DVD without network and logged in with bridge mode enabled + When I bump the system time with "+1 day" + And the network is plugged + And the Tor Launcher autostarts + And I configure some bridge pluggable transports in Tor Launcher + And Tor is ready + Then Tails clock is less than 5 minutes incorrect + Scenario: The system time is not synced to the hardware clock Given I have started Tails from DVD without network and logged in When I bump the system time with "-15 days" diff --git a/refresh-translations b/refresh-translations index 0ef9827..0b015a9 100755 --- a/refresh-translations +++ b/refresh-translations @@ -184,7 +184,11 @@ intltool_update_pot # If left out files are detected, intltool-update --maintain writes # them to po/missing. -no_left_out_files || exit 3 +if ! no_left_out_files; then + echo "E: These files should be listed in POTFILES.in or POTFILES.skip:" >&2 + cat po/missing + exit 3 +fi # Update PO files intltool_update_po $(po_languages) diff --git a/vagrant/definitions/tails-builder/generate-tails-builder-box.sh b/vagrant/definitions/tails-builder/generate-tails-builder-box.sh index 33eff1a..40f8f6f 100755 --- a/vagrant/definitions/tails-builder/generate-tails-builder-box.sh +++ b/vagrant/definitions/tails-builder/generate-tails-builder-box.sh @@ -1,6 +1,7 @@ #!/bin/sh set -e set -u +set -x # Based on ypcs' scripts found at: # https://github.com/ypcs/vmdebootstrap-vagrant/ diff --git a/vagrant/definitions/tails-builder/postinstall.sh b/vagrant/definitions/tails-builder/postinstall.sh index a0ab2e5..76c02f9 100755 --- a/vagrant/definitions/tails-builder/postinstall.sh +++ b/vagrant/definitions/tails-builder/postinstall.sh @@ -72,10 +72,13 @@ sed -i 's,^GRUB_TIMEOUT=5,GRUB_TIMEOUT=1,g' /etc/default/grub echo "I: Installing Tails build dependencies." apt-get -y install \ debootstrap \ + dosfstools \ dpkg-dev \ eatmydata \ faketime \ + gdisk \ gettext \ + gir1.2-udisks-2.0 \ git \ ikiwiki \ intltool \ @@ -93,12 +96,18 @@ apt-get -y install \ libyaml-syck-perl \ live-build \ lsof \ + mtools \ + p7zip-full \ perlmagick \ psmisc \ + python3-gi \ rsync \ ruby \ + syslinux \ + syslinux-common \ syslinux-utils \ time \ + udisks2 \ whois # Ensure we can use timedatectl diff --git a/vagrant/provision/assets/build-tails b/vagrant/provision/assets/build-tails index 87fd478..050416e 100755 --- a/vagrant/provision/assets/build-tails +++ b/vagrant/provision/assets/build-tails @@ -34,7 +34,7 @@ remove_build_dirs() { tries=0 sudo lsof | grep --fixed-strings "${mountpoint}" || true while ! sudo umount -f --verbose "${mountpoint}" && [ $tries -lt 12 ]; do - sudo fuser --ismountpoint --mount "${mountpoint}" --kill + sudo fuser --ismountpoint --mount "${mountpoint}" --kill || true sleep 5 tries=$(expr $tries + 1) done diff --git a/wiki/src/contribute/build.mdwn b/wiki/src/contribute/build.mdwn index 126afca..8692415 100644 --- a/wiki/src/contribute/build.mdwn +++ b/wiki/src/contribute/build.mdwn @@ -73,8 +73,21 @@ 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`, - see [[!tails_ticket 11411]]. + 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) + + … then restart the libvirtd service: + + sudo systemctl restart libvirtd.service + + Finally, try building again. * If Vagrant failed to start the Tails builder VM the first time (e.g. because of permission issues or the `kvm` module not being diff --git a/wiki/src/contribute/design/application_isolation.mdwn b/wiki/src/contribute/design/application_isolation.mdwn index dc4b8d4..5518b99 100644 --- a/wiki/src/contribute/design/application_isolation.mdwn +++ b/wiki/src/contribute/design/application_isolation.mdwn @@ -301,30 +301,34 @@ Alias rules dramatically increase the policy compile time (e.g. 8 seconds with the aforementioned rule change in the `sanitized_helper` profile). -To mitigate that problem, we could: - -- either look at the rules and see if we can optimize it... which kind - of defeats the purpose of using alias rules in the first place to - avoid the need for modifying profiles; -- or ship a cached pre-compiled policy. As long as the parser and - kernel are in sync, the policy can be pulled straight from the - cache, without any compilation. If the parser detects that the - policy is out of date, then the cache will be ignored and - compilation will happen. This is what is done for the Ubuntu phone. - Note that the "exact same kernel" requirement has been relaxed, - either `--match-string` or `--features-file` or both ought to let - a new-enough parser generate "correct" policy for a given target - kernel using any other kernel. This could allow precompiling on the - build hosts. See `apparmor_parser(8)`, `apparmor_parser --help`, - examples in `parser/tst/features_files/*`, and `parser.conf`. - Potential problems: - * missing documentation: see <https://bugs.launchpad.net/bugs/1491147> - * if alias rules need to be added at login time, then the cache must - be invalidated, and the policy entirely recompiled; - * it remains to be researched how well this would work, once - combined with the [[additional software - packages|doc/first_steps/persistence/configure]] persistence - feature. +<a id="pre-compiled-AppArmor-policy"></a> + +To mitigate that problem, we could ship a cached pre-compiled policy, +that the parser will use as long as it considered it valid, and then +no policy compilation happens at boot time; if the parser detects that +the policy is out of date, then it will ignore the cache and compile +the policy. For instance, this is what was done for the Ubuntu phone. +To generate a valid binary policy cache at ISO build time: + + - we need to call the parser with a `--features-file` value that + matches the pinned feature set used at Tails runtime; this comes + for free if we run the parser from the build chroot, where this + variable is set in the same `/etc/apparmor/parser.conf` file that + will be used at runtime; + + - we need to use a similar enough version of the parser to the one + installed in Tails; here again, this comes for free if we run the + parser inside the build chroot; + + - the version of the kernel used during the ISO build process, that + is the one the Vagrant box is running, should not matter: for + example, since 2.13-1, the [[!debpts apparmor]] package maintains + separate caches per feature set and a binary cache built on Linux + 4.18 is still valid and used when booting on Linux 4.19 with the + same `features-file` setting. + +Resources: `apparmor_parser(8)`, `apparmor_parser --help`, +examples in `parser/tst/features_files/*`, and `parser.conf`. <a id="rewrite-rules"></a> diff --git a/wiki/src/contribute/design/verification_extension.mdwn b/wiki/src/contribute/design/verification_extension.mdwn index c35331d..b030ca1 100644 --- a/wiki/src/contribute/design/verification_extension.mdwn +++ b/wiki/src/contribute/design/verification_extension.mdwn @@ -51,6 +51,9 @@ Non goals ISO image then we can rely on it as well to provide a correct BitTorrent file. Then we rely on the BitTorrent client to verify the integrity of the download ([[!tails_ticket 9043]]). + Any current ISO image (downloaded over BitTorrent, copied from a + friend, downloaded from one of our mirrors) can be verified by the + extension though. <a id="verification"></a> @@ -125,6 +128,10 @@ We are not considering an attacker who can: - [I] Provide a malicious extension in the same browser as this would have similar effects to attack [F]. + - [J] Provide a malicious copy of our website on a similar looking URL + that could pretend that verification has succeeded without actually + verifying anything. + <a id="inside_the_browser"></a> Security inside the browser diff --git a/wiki/src/contribute/how/mirror.mdwn b/wiki/src/contribute/how/mirror.mdwn index 784f28b..d597d71 100644 --- a/wiki/src/contribute/how/mirror.mdwn +++ b/wiki/src/contribute/how/mirror.mdwn @@ -206,7 +206,8 @@ Download a snapshot of the current Tails files: Your mirror should sync every hour + a random time (maximum 40 minutes). Use `cron` or equivalent to schedule the same `rsync` command -as above. +as above. For example, you can create a file in `/etc/cron.d/` with +this content: 0 * * * * root sleep $(perl -E 'print int(rand(2400))') && flock -n /var/run/lock/tails-mirror-rsync rsync -rt --delete mirrors.rsync.tails.boum.org::amnesia-archive /var/www/YOUR_PATH/ diff --git a/wiki/src/contribute/release_process/test/setup.mdwn b/wiki/src/contribute/release_process/test/setup.mdwn index a20d0cc..2d9a1e6 100644 --- a/wiki/src/contribute/release_process/test/setup.mdwn +++ b/wiki/src/contribute/release_process/test/setup.mdwn @@ -88,11 +88,14 @@ the content of `features/misc_files/` in the Git checkout. AppArmor tweaks --------------- -If libvirt has the `apparmor` security driver enabled: - -* you may need to add the `/tmp/TailsToaster/TailsToasterStorage/* - rw,` line to `/etc/apparmor.d/libvirt/TEMPLATE.qemu`, in the - `profile LIBVIRT_TEMPLATE` section. +If you have AppArmor enabled: + +* You need to add the `/tmp/TailsToaster/** rwk,` line + to `/etc/apparmor.d/libvirt/TEMPLATE.qemu`, in the + `profile LIBVIRT_TEMPLATE` section; then delete + `/etc/apparmor.d/libvirt/libvirt-*` and retry. + If you use a custom `TMPDIR` to run the test suite, + replace `/tmp/TailsToaster` with the value of that `$TMPDIR`. Special use cases ================= diff --git a/wiki/src/contribute/working_together/roles/debian_maintainer.mdwn b/wiki/src/contribute/working_together/roles/debian_maintainer.mdwn index 7bb10b7..a1d8d38 100644 --- a/wiki/src/contribute/working_together/roles/debian_maintainer.mdwn +++ b/wiki/src/contribute/working_together/roles/debian_maintainer.mdwn @@ -47,6 +47,5 @@ Calendar ======== * [Debian release schedule](https://www.debian.org/releases/) -* [Ubuntu release schedule](https://wiki.ubuntu.com/ReleaseSchedule) - * Upcoming: BionicBeaver, 18.04, April 26th 2018 - +* [Ubuntu release schedule](https://wiki.ubuntu.com/Release), generally + in April and October 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 e6a05da..fc3dfba 100644 --- a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.fr.po +++ b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.fr.po @@ -92,7 +92,7 @@ msgid "" "encryption tool for Windows, macOS, and Linux. [[See our documentation\n" "about <span class=\"application\">VeraCrypt</span>.|veracrypt]]\n" msgstr "" -"Vous pouvez également ouvrer des volumes chiffrés <span class=\"application\">VeraCrypt</span>\n" +"Vous pouvez également ouvrir des volumes chiffrés <span class=\"application\">VeraCrypt</span>\n" "dans Tails. <span class=\"application\">VeraCrypt</span> est un outil\n" "de chiffrement de disque pour Windows, macOS et Linux. [[Voir notre documentation\n" "sur <span class=\"application\">VeraCrypt</span>.|veracrypt]]\n" diff --git a/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.fr.po b/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.fr.po index 1e44d92..7478a3e 100644 --- a/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.fr.po +++ b/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.fr.po @@ -105,7 +105,7 @@ msgid "" "%20Deniability.html)" msgstr "" "[VeraCrypt: Plausible Deniability](https://www.veracrypt.fr/en/Plausible" -"%20Deniability.html)(en anglais)" +"%20Deniability.html) (en anglais)" #. type: Bullet: ' - ' msgid "" diff --git a/wiki/src/donate-banner/accounts.fods b/wiki/src/donate-banner/accounts.fods index c94d262..d253c34 100644 --- a/wiki/src/donate-banner/accounts.fods +++ b/wiki/src/donate-banner/accounts.fods @@ -1,20 +1,20 @@ <?xml version="1.0" encoding="UTF-8"?> <office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.spreadsheet"> - <office:meta><meta:creation-date>2018-11-02T09:05:10.907511867</meta:creation-date><dc:date>2018-11-02T10:02:39.124308122</dc:date><meta:editing-duration>PT28M36S</meta:editing-duration><meta:editing-cycles>15</meta:editing-cycles><meta:generator>LibreOffice/5.2.7.2$Linux_X86_64 LibreOffice_project/20m0$Build-2</meta:generator><meta:document-statistic meta:table-count="2" meta:cell-count="946" meta:object-count="0"/></office:meta> + <office:meta><meta:creation-date>2018-11-02T09:05:10.907511867</meta:creation-date><dc:date>2018-11-15T18:33:18.890340168</dc:date><meta:editing-duration>PT48M58S</meta:editing-duration><meta:editing-cycles>29</meta:editing-cycles><meta:generator>LibreOffice/5.2.7.2$Linux_X86_64 LibreOffice_project/20m0$Build-2</meta:generator><meta:document-statistic meta:table-count="2" meta:cell-count="1221" meta:object-count="0"/></office:meta> <office:settings> <config:config-item-set config:name="ooo:view-settings"> <config:config-item config:name="VisibleAreaTop" config:type="int">0</config:config-item> <config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item> <config:config-item config:name="VisibleAreaWidth" config:type="int">22577</config:config-item> - <config:config-item config:name="VisibleAreaHeight" config:type="int">4064</config:config-item> + <config:config-item config:name="VisibleAreaHeight" config:type="int">4967</config:config-item> <config:config-item-map-indexed config:name="Views"> <config:config-item-map-entry> <config:config-item config:name="ViewId" config:type="string">view1</config:config-item> <config:config-item-map-named config:name="Tables"> <config:config-item-map-entry config:name="BTC"> - <config:config-item config:name="CursorPositionX" config:type="int">3</config:config-item> - <config:config-item config:name="CursorPositionY" config:type="int">181</config:config-item> + <config:config-item config:name="CursorPositionX" config:type="int">0</config:config-item> + <config:config-item config:name="CursorPositionY" config:type="int">232</config:config-item> <config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item> <config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item> <config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item> @@ -23,7 +23,7 @@ <config:config-item config:name="PositionLeft" config:type="int">0</config:config-item> <config:config-item config:name="PositionRight" config:type="int">0</config:config-item> <config:config-item config:name="PositionTop" config:type="int">0</config:config-item> - <config:config-item config:name="PositionBottom" config:type="int">161</config:config-item> + <config:config-item config:name="PositionBottom" config:type="int">217</config:config-item> <config:config-item config:name="ZoomType" config:type="short">0</config:config-item> <config:config-item config:name="ZoomValue" config:type="int">100</config:config-item> <config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item> @@ -31,7 +31,7 @@ </config:config-item-map-entry> <config:config-item-map-entry config:name="Sheet1"> <config:config-item config:name="CursorPositionX" config:type="int">0</config:config-item> - <config:config-item config:name="CursorPositionY" config:type="int">0</config:config-item> + <config:config-item config:name="CursorPositionY" config:type="int">10</config:config-item> <config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item> <config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item> <config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item> @@ -161,18 +161,18 @@ <number:currency-symbol number:language="an" number:country="ES">€</number:currency-symbol> <style:map style:condition="value()>=0" style:apply-style-name="N124P0"/> </number:currency-style> - <number:currency-style style:name="N125P0" style:volatile="true"> + <number:currency-style style:name="N126P0" style:volatile="true"> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/> <number:text> </number:text> <number:currency-symbol number:language="an" number:country="ES">€</number:currency-symbol> </number:currency-style> - <number:currency-style style:name="N125"> + <number:currency-style style:name="N126"> <style:text-properties fo:color="#ff0000"/> <number:text>-</number:text> <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/> <number:text> </number:text> <number:currency-symbol number:language="an" number:country="ES">€</number:currency-symbol> - <style:map style:condition="value()>=0" style:apply-style-name="N125P0"/> + <style:map style:condition="value()>=0" style:apply-style-name="N126P0"/> </number:currency-style> <style:style style:name="Default" style:family="table-cell"> <style:text-properties style:font-name-asian="WenQuanYi Zen Hei" style:font-family-asian="'WenQuanYi Zen Hei'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-name-complex="Lohit Devanagari" style:font-family-complex="'Lohit Devanagari'" style:font-family-generic-complex="system" style:font-pitch-complex="variable"/> @@ -227,19 +227,20 @@ <number:day number:style="long"/> </number:date-style> <style:style style:name="ce1" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N84"/> - <style:style style:name="ce2" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N125"/> - <style:style style:name="ce3" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N1"/> - <style:style style:name="ce4" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N122"/> - <style:style style:name="ce5" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N124"/> - <style:style style:name="ce6" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N124"> + <style:style style:name="ce2" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N126"/> + <style:style style:name="ce3" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0"/> + <style:style style:name="ce4" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N1"/> + <style:style style:name="ce5" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N122"/> + <style:style style:name="ce6" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N124"/> + <style:style style:name="ce7" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N124"> <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="ce7" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N104"/> - <style:style style:name="ce8" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N104"> + <style:style style:name="ce8" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N104"/> + <style:style style:name="ce9" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N104"> <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="ce9" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N10"/> - <style:style style:name="ce10" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N43"/> + <style:style style:name="ce10" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N10"/> + <style:style style:name="ce11" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N43"/> <style:page-layout style:name="pm1"> <style:page-layout-properties style:writing-mode="lr-tb"/> <style:header-style> @@ -280,7 +281,7 @@ <text:p><text:sheet-name>???</text:sheet-name> (<text:title>???</text:title>)</text:p> </style:region-left> <style:region-right> - <text:p><text:date style:data-style-name="N2" text:date-value="2018-11-02">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="09:41:05.240488437">00:00:00</text:time></text:p> + <text:p><text:date style:data-style-name="N2" text:date-value="2018-11-15">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="18:31:43.169740157">00:00:00</text:time></text:p> </style:region-right> </style:header> <style:header-left style:display="false"/> @@ -295,11 +296,11 @@ <table:calculation-settings table:automatic-find-labels="false"/> <table:table table:name="Sheet1" table:style-name="ta1"> <table:table-column table:style-name="co1" table:number-columns-repeated="2" table:default-cell-style-name="Default"/> - <table:table-column table:style-name="co1" table:number-columns-repeated="3" table:default-cell-style-name="ce3"/> + <table:table-column table:style-name="co1" table:number-columns-repeated="3" table:default-cell-style-name="ce4"/> <table:table-column table:style-name="co1" table:default-cell-style-name="Default"/> - <table:table-column table:style-name="co1" table:default-cell-style-name="ce4"/> <table:table-column table:style-name="co1" table:default-cell-style-name="ce5"/> - <table:table-column table:style-name="co1" table:default-cell-style-name="ce7"/> + <table:table-column table:style-name="co1" table:default-cell-style-name="ce6"/> + <table:table-column table:style-name="co1" table:default-cell-style-name="ce8"/> <table:table-column table:style-name="co1" table:number-columns-repeated="3" table:default-cell-style-name="Default"/> <table:table-row table:style-name="ro1"> <table:table-cell office:value-type="string" calcext:value-type="string"> @@ -308,7 +309,19 @@ <table:table-cell table:style-name="ce1" office:value-type="date" office:date-value="2018-10-13" calcext:value-type="date"> <text:p>2018-10-13</text:p> </table:table-cell> - <table:table-cell table:number-columns-repeated="9"/> + <table:table-cell table:style-name="Default"/> + <table:table-cell table:number-columns-repeated="8"/> + <table:table-cell table:style-name="ce1"/> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>Ending</text:p> + </table:table-cell> + <table:table-cell table:style-name="ce1" office:value-type="date" office:date-value="2019-01-15" calcext:value-type="date"> + <text:p>2019-01-15</text:p> + </table:table-cell> + <table:table-cell table:style-name="ce1"/> + <table:table-cell table:number-columns-repeated="8"/> <table:table-cell table:style-name="ce1"/> </table:table-row> <table:table-row table:style-name="ro1"> @@ -321,7 +334,7 @@ <table:table-cell table:number-columns-repeated="9"/> <table:table-cell table:style-name="ce1"/> </table:table-row> - <table:table-row table:style-name="ro1" table:number-rows-repeated="2"> + <table:table-row table:style-name="ro1"> <table:table-cell/> <table:table-cell table:style-name="ce1"/> <table:table-cell table:number-columns-repeated="9"/> @@ -361,95 +374,157 @@ <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>RiseupLabs</text:p> </table:table-cell> - <table:table-cell table:style-name="ce1" office:value-type="date" office:date-value="2018-10-29" calcext:value-type="date"> - <text:p>2018-10-29</text:p> + <table:table-cell table:style-name="ce1" office:value-type="date" office:date-value="2018-11-12" calcext:value-type="date"> + <text:p>2018-11-12</text:p> </table:table-cell> - <table:table-cell table:formula="of:=[.B6]-[.B$1]" office:value-type="float" office:value="16" calcext:value-type="float"> - <text:p>16</text:p> + <table:table-cell table:formula="of:=[.B6]-[.B$1]" office:value-type="float" office:value="30" calcext:value-type="float"> + <text:p>30</text:p> </table:table-cell> <table:table-cell/> - <table:table-cell office:value-type="float" office:value="13356" calcext:value-type="float"> - <text:p>13356</text:p> + <table:table-cell table:formula="of:=12825+4773" office:value-type="float" office:value="17598" calcext:value-type="float"> + <text:p>17598</text:p> </table:table-cell> <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>USD</text:p> </table:table-cell> - <table:table-cell table:formula="of:=1/1.1381" office:value-type="float" office:value="0.878657411475266" calcext:value-type="float"> - <text:p>0.8787</text:p> + <table:table-cell office:value-type="float" office:value="0.88791" calcext:value-type="float"> + <text:p>0.8879</text:p> </table:table-cell> - <table:table-cell table:formula="of:=[.E6]*[.G6]" office:value-type="currency" office:currency="EUR" office:value="11735.3483876636" calcext:value-type="currency"> - <text:p>11,735.35 €</text:p> + <table:table-cell table:formula="of:=[.E6]*[.G6]" office:value-type="currency" office:currency="EUR" office:value="15625.44018" calcext:value-type="currency"> + <text:p>15,625.44 €</text:p> </table:table-cell> - <table:table-cell table:number-columns-repeated="4"/> + <table:table-cell table:formula="of:=[.H6]/[.G$6]" office:value-type="currency" office:currency="USD" office:value="17598" calcext:value-type="currency"> + <text:p>$17,598.00</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>https://www.xe.com/currencycharts/?from=USD&to=EUR</text:p> + </table:table-cell> + <table:table-cell table:number-columns-repeated="2"/> </table:table-row> <table:table-row table:style-name="ro1"> <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>CCT</text:p> </table:table-cell> - <table:table-cell table:style-name="ce1" office:value-type="date" office:date-value="2018-10-29" calcext:value-type="date"> - <text:p>2018-10-29</text:p> + <table:table-cell table:style-name="ce1" office:value-type="date" office:date-value="2018-11-13" calcext:value-type="date"> + <text:p>2018-11-13</text:p> </table:table-cell> - <table:table-cell table:formula="of:=[.B7]-[.B$1]" office:value-type="float" office:value="16" calcext:value-type="float"> - <text:p>16</text:p> + <table:table-cell table:formula="of:=[.B7]-[.B$1]" office:value-type="float" office:value="31" calcext:value-type="float"> + <text:p>31</text:p> </table:table-cell> - <table:table-cell office:value-type="float" office:value="48" calcext:value-type="float"> - <text:p>48</text:p> + <table:table-cell office:value-type="float" office:value="74" calcext:value-type="float"> + <text:p>74</text:p> </table:table-cell> - <table:table-cell office:value-type="float" office:value="2233.53" calcext:value-type="float"> - <text:p>2234</text:p> + <table:table-cell office:value-type="float" office:value="2868.8" calcext:value-type="float"> + <text:p>2869</text:p> </table:table-cell> <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>EUR</text:p> </table:table-cell> - <table:table-cell office:value-type="float" office:value="1" calcext:value-type="float"> - <text:p>1.0000</text:p> + <table:table-cell table:style-name="ce4" office:value-type="float" office:value="1" calcext:value-type="float"> + <text:p>1</text:p> + </table:table-cell> + <table:table-cell table:formula="of:=[.E7]*[.G7]" office:value-type="currency" office:currency="EUR" office:value="2868.8" calcext:value-type="currency"> + <text:p>2,868.80 €</text:p> </table:table-cell> - <table:table-cell table:formula="of:=[.E7]*[.G7]" office:value-type="currency" office:currency="EUR" office:value="2233.53" calcext:value-type="currency"> - <text:p>2,233.53 €</text:p> + <table:table-cell table:formula="of:=[.H7]/[.G$6]" office:value-type="currency" office:currency="USD" office:value="3230.95809259947" calcext:value-type="currency"> + <text:p>$3,230.96</text:p> </table:table-cell> - <table:table-cell table:number-columns-repeated="4"/> + <table:table-cell table:number-columns-repeated="3"/> </table:table-row> <table:table-row table:style-name="ro1"> <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>Bitcoin</text:p> </table:table-cell> - <table:table-cell table:style-name="ce1" office:value-type="date" office:date-value="2018-10-31" calcext:value-type="date"> - <text:p>2018-10-31</text:p> + <table:table-cell table:style-name="ce1" office:value-type="date" office:date-value="2018-11-15" calcext:value-type="date"> + <text:p>2018-11-15</text:p> </table:table-cell> - <table:table-cell table:formula="of:=[.B8]-[.B$1]" office:value-type="float" office:value="18" calcext:value-type="float"> - <text:p>18</text:p> + <table:table-cell table:formula="of:=[.B8]-[.B$1]" office:value-type="float" office:value="33" calcext:value-type="float"> + <text:p>33</text:p> </table:table-cell> - <table:table-cell table:formula="of:=[BTC.E182]" office:value-type="float" office:value="181" calcext:value-type="float"> - <text:p>181</text:p> + <table:table-cell table:formula="of:=[BTC.E233]" office:value-type="float" office:value="232" calcext:value-type="float"> + <text:p>232</text:p> </table:table-cell> - <table:table-cell table:style-name="Default" table:formula="of:=[BTC.D182]" office:value-type="float" office:value="1.39349155" calcext:value-type="float"> - <text:p>1.39349155</text:p> + <table:table-cell table:style-name="Default" table:formula="of:=[BTC.D233]" office:value-type="float" office:value="1.66600174" calcext:value-type="float"> + <text:p>1.66600174</text:p> </table:table-cell> <table:table-cell office:value-type="string" calcext:value-type="string"> <text:p>BTC</text:p> </table:table-cell> - <table:table-cell office:value-type="float" office:value="5553" calcext:value-type="float"> - <text:p>5553.0000</text:p> + <table:table-cell table:style-name="ce4" office:value-type="float" office:value="4839" calcext:value-type="float"> + <text:p>4839</text:p> + </table:table-cell> + <table:table-cell table:formula="of:=[.E8]*[.G8]" office:value-type="currency" office:currency="EUR" office:value="8061.78241986" calcext:value-type="currency"> + <text:p>8,061.78 €</text:p> </table:table-cell> - <table:table-cell table:formula="of:=[.E8]*[.G8]" office:value-type="currency" office:currency="EUR" office:value="7738.05857715" calcext:value-type="currency"> - <text:p>7,738.06 €</text:p> + <table:table-cell table:formula="of:=[.H8]/[.G$6]" office:value-type="currency" office:currency="USD" office:value="9079.5040261513" calcext:value-type="currency"> + <text:p>$9,079.50</text:p> </table:table-cell> - <table:table-cell table:number-columns-repeated="4"/> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>https://bitcoincharts.com/markets/krakenEUR.html</text:p> + </table:table-cell> + <table:table-cell table:number-columns-repeated="2"/> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>Cash</text:p> + </table:table-cell> + <table:table-cell table:style-name="ce1" office:value-type="date" office:date-value="2018-11-13" calcext:value-type="date"> + <text:p>2018-11-13</text:p> + </table:table-cell> + <table:table-cell table:formula="of:=[.B9]-[.B$1]" office:value-type="float" office:value="31" calcext:value-type="float"> + <text:p>31</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="1" calcext:value-type="float"> + <text:p>1</text:p> + </table:table-cell> + <table:table-cell table:style-name="Default" office:value-type="float" office:value="400" calcext:value-type="float"> + <text:p>400</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>EUR</text:p> + </table:table-cell> + <table:table-cell table:style-name="ce4" office:value-type="float" office:value="1" calcext:value-type="float"> + <text:p>1</text:p> + </table:table-cell> + <table:table-cell table:formula="of:=[.E9]*[.G9]" office:value-type="currency" office:currency="EUR" office:value="400" calcext:value-type="currency"> + <text:p>400.00 €</text:p> + </table:table-cell> + <table:table-cell table:formula="of:=[.H9]/[.G$6]" office:value-type="currency" office:currency="USD" office:value="450.49610883986" calcext:value-type="currency"> + <text:p>$450.50</text:p> + </table:table-cell> + <table:table-cell table:number-columns-repeated="3"/> </table:table-row> <table:table-row table:style-name="ro1"> - <table:table-cell table:number-columns-repeated="7"/> - <table:table-cell table:style-name="ce6" table:formula="of:=SUM([.H6:.H8])" office:value-type="currency" office:currency="EUR" office:value="21706.9369648136" calcext:value-type="currency"> - <text:p>21,706.94 €</text:p> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>Last updated</text:p> </table:table-cell> - <table:table-cell table:style-name="ce8" table:formula="of:=[.H9]/[.G6]" office:value-type="currency" office:currency="USD" office:value="24704.6649596543" calcext:value-type="currency"> - <text:p>$24,704.66</text:p> + <table:table-cell table:style-name="ce1" table:formula="of:=MAX([.B6:.B8])" office:value-type="date" office:date-value="2018-11-15" calcext:value-type="date"> + <text:p>2018-11-15</text:p> </table:table-cell> - <table:table-cell table:style-name="ce9" table:formula="of:=[.H9]/[.B2]" office:value-type="percentage" office:value="0.180891141373447" calcext:value-type="percentage"> - <text:p>18%</text:p> + <table:table-cell table:number-columns-repeated="5"/> + <table:table-cell table:style-name="ce7" table:formula="of:=SUM([.H6:.H9])" office:value-type="currency" office:currency="EUR" office:value="26956.02259986" calcext:value-type="currency"> + <text:p>26,956.02 €</text:p> + </table:table-cell> + <table:table-cell table:style-name="ce9" table:formula="of:=SUM([.I6:.I9])" office:value-type="currency" office:currency="USD" office:value="30358.9582275906" calcext:value-type="currency"> + <text:p>$30,358.96</text:p> + </table:table-cell> + <table:table-cell table:style-name="ce10" table:formula="of:=[.H10]/[.B3]" office:value-type="percentage" office:value="0.2246335216655" calcext:value-type="percentage"> + <text:p>22%</text:p> </table:table-cell> <table:table-cell table:number-columns-repeated="2"/> </table:table-row> - <table:table-row table:style-name="ro1" table:number-rows-repeated="1048566"> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>Remaining</text:p> + </table:table-cell> + <table:table-cell table:style-name="ce3" table:formula="of:=[.B2]-[.B10]" office:value-type="float" office:value="61" calcext:value-type="float"> + <text:p>61</text:p> + </table:table-cell> + <table:table-cell table:number-columns-repeated="6"/> + <table:table-cell table:style-name="Default"/> + <table:table-cell table:number-columns-repeated="3"/> + </table:table-row> + <table:table-row table:style-name="ro1" table:number-rows-repeated="1048564"> <table:table-cell table:number-columns-repeated="12"/> </table:table-row> <table:table-row table:style-name="ro1"> @@ -458,7 +533,7 @@ </table:table> <table:table table:name="BTC" table:style-name="ta1"> <table:table-column table:style-name="co1" table:default-cell-style-name="ce1"/> - <table:table-column table:style-name="co1" table:default-cell-style-name="ce10"/> + <table:table-column table:style-name="co1" table:default-cell-style-name="ce11"/> <table:table-column table:style-name="co2" table:default-cell-style-name="Default"/> <table:table-column table:style-name="co1" table:number-columns-repeated="2" table:default-cell-style-name="Default"/> <table:table-row table:style-name="ro1"> @@ -3539,13 +3614,880 @@ </table:table-cell> </table:table-row> <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-01" calcext:value-type="date"> + <text:p>2018-11-01</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT05H16M11S" calcext:value-type="time"> + <text:p>05:16:11 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00158697" calcext:value-type="float"> + <text:p>0.00158697</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-01" calcext:value-type="date"> + <text:p>2018-11-01</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT09H58M05S" calcext:value-type="time"> + <text:p>09:58:05 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.001585" calcext:value-type="float"> + <text:p>0.001585</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-01" calcext:value-type="date"> + <text:p>2018-11-01</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT17H32M48S" calcext:value-type="time"> + <text:p>05:32:48 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00126" calcext:value-type="float"> + <text:p>0.00126</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-01" calcext:value-type="date"> + <text:p>2018-11-01</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT17H55M38S" calcext:value-type="time"> + <text:p>05:55:38 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.0019" calcext:value-type="float"> + <text:p>0.0019</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-02" calcext:value-type="date"> + <text:p>2018-11-02</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT10H55M23S" calcext:value-type="time"> + <text:p>10:55:23 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00226884" calcext:value-type="float"> + <text:p>0.00226884</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-02" calcext:value-type="date"> + <text:p>2018-11-02</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT11H50M19S" calcext:value-type="time"> + <text:p>11:50:19 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00203765" calcext:value-type="float"> + <text:p>0.00203765</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-02" calcext:value-type="date"> + <text:p>2018-11-02</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT12H29M50S" calcext:value-type="time"> + <text:p>12:29:50 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00101833" calcext:value-type="float"> + <text:p>0.00101833</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-02" calcext:value-type="date"> + <text:p>2018-11-02</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT12H37M11S" calcext:value-type="time"> + <text:p>12:37:11 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00180157" calcext:value-type="float"> + <text:p>0.00180157</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-03" calcext:value-type="date"> + <text:p>2018-11-03</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT05H13M45S" calcext:value-type="time"> + <text:p>05:13:45 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.000783" calcext:value-type="float"> + <text:p>0.000783</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-03" calcext:value-type="date"> + <text:p>2018-11-03</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT05H17M26S" calcext:value-type="time"> + <text:p>05:17:26 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00093942" calcext:value-type="float"> + <text:p>0.00093942</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-03" calcext:value-type="date"> + <text:p>2018-11-03</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT12H23M08S" calcext:value-type="time"> + <text:p>12:23:08 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00157971" calcext:value-type="float"> + <text:p>0.00157971</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-03" calcext:value-type="date"> + <text:p>2018-11-03</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT12H39M35S" calcext:value-type="time"> + <text:p>12:39:35 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.01" calcext:value-type="float"> + <text:p>0.01</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-03" calcext:value-type="date"> + <text:p>2018-11-03</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT12H52M46S" calcext:value-type="time"> + <text:p>12:52:46 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.01" calcext:value-type="float"> + <text:p>0.01</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-03" calcext:value-type="date"> + <text:p>2018-11-03</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT16H31M33S" calcext:value-type="time"> + <text:p>04:31:33 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00217775" calcext:value-type="float"> + <text:p>0.00217775</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-03" calcext:value-type="date"> + <text:p>2018-11-03</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT19H19M48S" calcext:value-type="time"> + <text:p>07:19:48 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.003" calcext:value-type="float"> + <text:p>0.003</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-04" calcext:value-type="date"> + <text:p>2018-11-04</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT10H22M00S" calcext:value-type="time"> + <text:p>10:22:00 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00099087" calcext:value-type="float"> + <text:p>0.00099087</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-04" calcext:value-type="date"> + <text:p>2018-11-04</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT13H41M11S" calcext:value-type="time"> + <text:p>01:41:11 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.001" calcext:value-type="float"> + <text:p>0.001</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-04" calcext:value-type="date"> + <text:p>2018-11-04</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT19H11M46S" calcext:value-type="time"> + <text:p>07:11:46 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00313739" calcext:value-type="float"> + <text:p>0.00313739</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-05" calcext:value-type="date"> + <text:p>2018-11-05</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT16H59M50S" calcext:value-type="time"> + <text:p>04:59:50 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.002" calcext:value-type="float"> + <text:p>0.002</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-05" calcext:value-type="date"> + <text:p>2018-11-05</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT20H57M08S" calcext:value-type="time"> + <text:p>08:57:08 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.002348" calcext:value-type="float"> + <text:p>0.002348</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-06" calcext:value-type="date"> + <text:p>2018-11-06</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT08H11M12S" calcext:value-type="time"> + <text:p>08:11:12 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.01" calcext:value-type="float"> + <text:p>0.01</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-06" calcext:value-type="date"> + <text:p>2018-11-06</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT10H07M01S" calcext:value-type="time"> + <text:p>10:07:01 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.0015" calcext:value-type="float"> + <text:p>0.0015</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-06" calcext:value-type="date"> + <text:p>2018-11-06</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT15H38M10S" calcext:value-type="time"> + <text:p>03:38:10 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.0157184" calcext:value-type="float"> + <text:p>0.0157184</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-06" calcext:value-type="date"> + <text:p>2018-11-06</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT19H11M47S" calcext:value-type="time"> + <text:p>07:11:47 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.003" calcext:value-type="float"> + <text:p>0.003</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-07" calcext:value-type="date"> + <text:p>2018-11-07</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT05H52M28S" calcext:value-type="time"> + <text:p>05:52:28 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.001" calcext:value-type="float"> + <text:p>0.001</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-07" calcext:value-type="date"> + <text:p>2018-11-07</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT08H30M05S" calcext:value-type="time"> + <text:p>08:30:05 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.0016" calcext:value-type="float"> + <text:p>0.0016</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-07" calcext:value-type="date"> + <text:p>2018-11-07</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT10H40M38S" calcext:value-type="time"> + <text:p>10:40:38 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00088064" calcext:value-type="float"> + <text:p>0.00088064</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-07" calcext:value-type="date"> + <text:p>2018-11-07</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT17H33M48S" calcext:value-type="time"> + <text:p>05:33:48 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.01752037" calcext:value-type="float"> + <text:p>0.01752037</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-07" calcext:value-type="date"> + <text:p>2018-11-07</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT17H40M19S" calcext:value-type="time"> + <text:p>05:40:19 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.005" calcext:value-type="float"> + <text:p>0.005</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-07" calcext:value-type="date"> + <text:p>2018-11-07</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT20H54M02S" calcext:value-type="time"> + <text:p>08:54:02 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.000849" calcext:value-type="float"> + <text:p>0.000849</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-08" calcext:value-type="date"> + <text:p>2018-11-08</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT14H18M11S" calcext:value-type="time"> + <text:p>02:18:11 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00154431" calcext:value-type="float"> + <text:p>0.00154431</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-08" calcext:value-type="date"> + <text:p>2018-11-08</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT22H28M43S" calcext:value-type="time"> + <text:p>10:28:43 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.0031" calcext:value-type="float"> + <text:p>0.0031</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-09" calcext:value-type="date"> + <text:p>2018-11-09</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT16H31M36S" calcext:value-type="time"> + <text:p>04:31:36 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.0015756" calcext:value-type="float"> + <text:p>0.0015756</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-10" calcext:value-type="date"> + <text:p>2018-11-10</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT07H10M46S" calcext:value-type="time"> + <text:p>07:10:46 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.0015" calcext:value-type="float"> + <text:p>0.0015</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-10" calcext:value-type="date"> + <text:p>2018-11-10</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT08H23M52S" calcext:value-type="time"> + <text:p>08:23:52 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.003" calcext:value-type="float"> + <text:p>0.003</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-10" calcext:value-type="date"> + <text:p>2018-11-10</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT19H08M23S" calcext:value-type="time"> + <text:p>07:08:23 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00157257" calcext:value-type="float"> + <text:p>0.00157257</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-10" calcext:value-type="date"> + <text:p>2018-11-10</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT19H45M17S" calcext:value-type="time"> + <text:p>07:45:17 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00003054" calcext:value-type="float"> + <text:p>3.054E-05</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-10" calcext:value-type="date"> + <text:p>2018-11-10</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT20H13M48S" calcext:value-type="time"> + <text:p>08:13:48 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00176834" calcext:value-type="float"> + <text:p>0.00176834</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-10" calcext:value-type="date"> + <text:p>2018-11-10</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT20H19M46S" calcext:value-type="time"> + <text:p>08:19:46 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00739264" calcext:value-type="float"> + <text:p>0.00739264</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-11" calcext:value-type="date"> + <text:p>2018-11-11</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT07H46M30S" calcext:value-type="time"> + <text:p>07:46:30 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00198944" calcext:value-type="float"> + <text:p>0.00198944</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-11" calcext:value-type="date"> + <text:p>2018-11-11</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT11H03M18S" calcext:value-type="time"> + <text:p>11:03:18 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00321375" calcext:value-type="float"> + <text:p>0.00321375</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-13" calcext:value-type="date"> + <text:p>2018-11-13</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT07H41M34S" calcext:value-type="time"> + <text:p>07:41:34 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00387192" calcext:value-type="float"> + <text:p>0.00387192</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-13" calcext:value-type="date"> + <text:p>2018-11-13</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT15H56M42S" calcext:value-type="time"> + <text:p>03:56:42 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.001" calcext:value-type="float"> + <text:p>0.001</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-13" calcext:value-type="date"> + <text:p>2018-11-13</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT19H17M47S" calcext:value-type="time"> + <text:p>07:17:47 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.01" calcext:value-type="float"> + <text:p>0.01</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-14" calcext:value-type="date"> + <text:p>2018-11-14</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT00H37M44S" calcext:value-type="time"> + <text:p>12:37:44 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.0008" calcext:value-type="float"> + <text:p>0.0008</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-14" calcext:value-type="date"> + <text:p>2018-11-14</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT03H40M41S" calcext:value-type="time"> + <text:p>03:40:41 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.01" calcext:value-type="float"> + <text:p>0.01</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-14" calcext:value-type="date"> + <text:p>2018-11-14</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT10H10M39S" calcext:value-type="time"> + <text:p>10:10:39 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00814" calcext:value-type="float"> + <text:p>0.00814</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-14" calcext:value-type="date"> + <text:p>2018-11-14</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT13H27M46S" calcext:value-type="time"> + <text:p>01:27:46 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00164579" calcext:value-type="float"> + <text:p>0.00164579</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-14" calcext:value-type="date"> + <text:p>2018-11-14</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT14H45M07S" calcext:value-type="time"> + <text:p>02:45:07 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00081134" calcext:value-type="float"> + <text:p>0.00081134</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-14" calcext:value-type="date"> + <text:p>2018-11-14</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT20H19M28S" calcext:value-type="time"> + <text:p>08:19:28 PM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.1" calcext:value-type="float"> + <text:p>0.1</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> + <table:table-cell office:value-type="date" office:date-value="2018-11-15" calcext:value-type="date"> + <text:p>2018-11-15</text:p> + </table:table-cell> + <table:table-cell office:value-type="time" office:time-value="PT02H02M19S" calcext:value-type="time"> + <text:p>02:02:19 AM</text:p> + </table:table-cell> + <table:table-cell office:value-type="string" calcext:value-type="string"> + <text:p>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0.00107104" calcext:value-type="float"> + <text:p>0.00107104</text:p> + </table:table-cell> + <table:table-cell office:value-type="float" office:value="0" calcext:value-type="float"> + <text:p>0</text:p> + </table:table-cell> + </table:table-row> + <table:table-row table:style-name="ro1"> <table:table-cell table:style-name="Default" table:number-columns-repeated="2"/> <table:table-cell/> - <table:table-cell table:formula="of:=SUM([.D1:.D181])" office:value-type="float" office:value="1.39349155" calcext:value-type="float"> - <text:p>1.39349155</text:p> + <table:table-cell table:formula="of:=SUM([.D1:.D232])" office:value-type="float" office:value="1.66600174" calcext:value-type="float"> + <text:p>1.66600174</text:p> </table:table-cell> - <table:table-cell table:formula="of:=COUNT([.E1:.E181])" office:value-type="float" office:value="181" calcext:value-type="float"> - <text:p>181</text:p> + <table:table-cell table:formula="of:=COUNT([.E1:.E232])" office:value-type="float" office:value="232" calcext:value-type="float"> + <text:p>232</text:p> </table:table-cell> </table:table-row> </table:table> diff --git a/wiki/src/install/debian/usb-download.de.po b/wiki/src/install/debian/usb-download.de.po index 8148396..c41054a 100644 --- a/wiki/src/install/debian/usb-download.de.po +++ b/wiki/src/install/debian/usb-download.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-10-03 10:45+0200\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-08-28 03:43+0200\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -58,10 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.de\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/debian/usb-download.es.po b/wiki/src/install/debian/usb-download.es.po index eb8524b..8c46943 100644 --- a/wiki/src/install/debian/usb-download.es.po +++ b/wiki/src/install/debian/usb-download.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: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-26 06:36+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -60,10 +60,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.es\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/debian/usb-download.fa.po b/wiki/src/install/debian/usb-download.fa.po index 398f1b4..b21f7ad 100644 --- a/wiki/src/install/debian/usb-download.fa.po +++ b/wiki/src/install/debian/usb-download.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+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" @@ -58,14 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" -"[[!meta link=\"https://chrome.google.com/webstore/detail/" -"gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.fa\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/debian/usb-download.fr.po b/wiki/src/install/debian/usb-download.fr.po index 8cb4b34..7ca87d7 100644 --- a/wiki/src/install/debian/usb-download.fr.po +++ b/wiki/src/install/debian/usb-download.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-01-04 15:54+0000\n" "Last-Translator: \n" "Language-Team: \n" @@ -58,10 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.fr\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/debian/usb-download.it.po b/wiki/src/install/debian/usb-download.it.po index 2120a37..edbf2ed 100644 --- a/wiki/src/install/debian/usb-download.it.po +++ b/wiki/src/install/debian/usb-download.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 10:48+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -21,9 +21,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Install from Debian, Ubuntu, or Mint\"]]\n" -msgstr "" -"[[!meta title=\"Installare Tails su una chiavetta USB da Debian o Ubuntu o " -"Mint\"]]\n" +msgstr "[[!meta title=\"Installare Tails su una chiavetta USB da Debian o Ubuntu o Mint\"]]\n" #. type: Plain text #, no-wrap @@ -38,30 +36,22 @@ msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\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/download\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/download\" rel=\"stylesheet\" title=\"\"" -"]]\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/download\" 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 msgid "[[!meta stylesheet=\"inc/stylesheets/debian\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/debian\" rel=\"stylesheet\" title=\"\"]]" -"\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/debian\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -70,14 +60,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" -"[[!meta link=\"https://chrome.google.com/webstore/detail/" -"gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.it\" raw=\"yes\" sort=\"" -"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.it\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/debian/usb-download.mdwn b/wiki/src/install/debian/usb-download.mdwn index d600c20..898f29c 100644 --- a/wiki/src/install/debian/usb-download.mdwn +++ b/wiki/src/install/debian/usb-download.mdwn @@ -7,6 +7,5 @@ [[!meta stylesheet="inc/stylesheets/steps" rel="stylesheet" title=""]] [[!meta stylesheet="inc/stylesheets/debian" rel="stylesheet" title=""]] [[!meta script="install/inc/js/download"]] -[[!meta link="https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl" rel="chrome-webstore-item"]] [[!inline pages="install/inc/steps/download.inline" raw="yes" sort="age"]] diff --git a/wiki/src/install/debian/usb-download.pt.po b/wiki/src/install/debian/usb-download.pt.po index e10c1f5..0996fb3 100644 --- a/wiki/src/install/debian/usb-download.pt.po +++ b/wiki/src/install/debian/usb-download.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 10:45+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -60,10 +60,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. type: Plain text -#, no-wrap msgid "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" diff --git a/wiki/src/install/download.de.po b/wiki/src/install/download.de.po index 35dbdec..7e5449f 100644 --- a/wiki/src/install/download.de.po +++ b/wiki/src/install/download.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2016-02-14 23:40+0100\n" "Last-Translator: Tails translators <tails@boum.org>\n" "Language-Team: \n" @@ -39,9 +39,7 @@ msgstr "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"styleshee #. 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" +msgstr "[[!meta stylesheet=\"install/inc/stylesheets/download\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -60,10 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.de\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/download.es.po b/wiki/src/install/download.es.po index fedb487..1b6a67b 100644 --- a/wiki/src/install/download.es.po +++ b/wiki/src/install/download.es.po @@ -6,11 +6,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-26 06:36+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" -"Language-Team: Spanish <http://translate.tails.boum.org/projects/tails" -"/install-download/es/>\n" +"Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" +"install-download/es/>\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,14 +60,12 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.es\" raw=\"yes\" sort=\"age\"]]\n" +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" + #~ msgid "" #~ "[[!meta stylesheet=\"install/inc/stylesheets/dave\" rel=\"stylesheet\" " #~ "title=\"\"]]\n" diff --git a/wiki/src/install/download.fa.po b/wiki/src/install/download.fa.po index 0a35855..32f8ea1 100644 --- a/wiki/src/install/download.fa.po +++ b/wiki/src/install/download.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+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" @@ -58,12 +58,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. 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" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.fa\" raw=\"yes\" sort=\"age\"]]\n" diff --git a/wiki/src/install/download.fr.po b/wiki/src/install/download.fr.po index c6ad55a..649ac11 100644 --- a/wiki/src/install/download.fr.po +++ b/wiki/src/install/download.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2017-12-03 20:04+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -58,10 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.fr\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/download.it.po b/wiki/src/install/download.it.po index 3f05695..e50d770 100644 --- a/wiki/src/install/download.it.po +++ b/wiki/src/install/download.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: transitails\n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2017-06-03 18:04+0200\n" "Last-Translator: transitails <transitails>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -40,9 +40,7 @@ msgstr "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"styleshee #. 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" +msgstr "[[!meta stylesheet=\"install/inc/stylesheets/download\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -61,12 +59,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" -"[[!meta link=\"https://chrome.google.com/webstore/detail/" -"gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.it\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/download.mdwn b/wiki/src/install/download.mdwn index 1acb68d..63fe8b4 100644 --- a/wiki/src/install/download.mdwn +++ b/wiki/src/install/download.mdwn @@ -7,6 +7,5 @@ [[!meta stylesheet="install/inc/stylesheets/steps" rel="stylesheet" title=""]] [[!meta stylesheet="install/inc/stylesheets/download-only" rel="stylesheet" title=""]] [[!meta script="install/inc/js/download"]] -[[!meta link="https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl" rel="chrome-webstore-item"]] [[!inline pages="install/inc/steps/download.inline" raw="yes" sort="age"]] diff --git a/wiki/src/install/download.pt.po b/wiki/src/install/download.pt.po index 099b658..159b1c5 100644 --- a/wiki/src/install/download.pt.po +++ b/wiki/src/install/download.pt.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 10:45+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" -"Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails" -"/install-download/pt/>\n" +"Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" +"install-download/pt/>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,10 +61,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. type: Plain text -#, no-wrap msgid "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" diff --git a/wiki/src/install/dvd-download.de.po b/wiki/src/install/dvd-download.de.po index c7582e0..c0e13f2 100644 --- a/wiki/src/install/dvd-download.de.po +++ b/wiki/src/install/dvd-download.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-10-03 10:45+0200\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-08-27 21:07+0200\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -58,10 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.de\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/dvd-download.es.po b/wiki/src/install/dvd-download.es.po index 989d9e3..d2e8aca 100755 --- a/wiki/src/install/dvd-download.es.po +++ b/wiki/src/install/dvd-download.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-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-26 06:36+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/dvd-" @@ -60,10 +60,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.es\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/dvd-download.fa.po b/wiki/src/install/dvd-download.fa.po index 8687607..7033176 100644 --- a/wiki/src/install/dvd-download.fa.po +++ b/wiki/src/install/dvd-download.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+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" @@ -58,12 +58,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. 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" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.fa\" raw=\"yes\" sort=\"age\"]]\n" diff --git a/wiki/src/install/dvd-download.fr.po b/wiki/src/install/dvd-download.fr.po index 39b3b29..783b3d8 100644 --- a/wiki/src/install/dvd-download.fr.po +++ b/wiki/src/install/dvd-download.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-01-04 15:42+0000\n" "Last-Translator: \n" "Language-Team: \n" @@ -58,10 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.fr\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/dvd-download.it.po b/wiki/src/install/dvd-download.it.po index b378799..380812b 100644 --- a/wiki/src/install/dvd-download.it.po +++ b/wiki/src/install/dvd-download.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 10:48+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -36,29 +36,22 @@ msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\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/download\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/download\" rel=\"stylesheet\" title=\"\"" -"]]\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/download\" 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 msgid "[[!meta stylesheet=\"inc/stylesheets/dvd\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/dvd\" rel=\"stylesheet\" title=\"\"]]\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/dvd\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -67,14 +60,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" -"[[!meta link=\"https://chrome.google.com/webstore/detail/" -"gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.it\" raw=\"yes\" sort=\"" -"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.it\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/dvd-download.mdwn b/wiki/src/install/dvd-download.mdwn index cf3f549..eb78ba3 100644 --- a/wiki/src/install/dvd-download.mdwn +++ b/wiki/src/install/dvd-download.mdwn @@ -7,6 +7,5 @@ [[!meta stylesheet="inc/stylesheets/steps" rel="stylesheet" title=""]] [[!meta stylesheet="inc/stylesheets/dvd" rel="stylesheet" title=""]] [[!meta script="install/inc/js/download"]] -[[!meta link="https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl" rel="chrome-webstore-item"]] [[!inline pages="install/inc/steps/download.inline" raw="yes" sort="age"]] diff --git a/wiki/src/install/dvd-download.pt.po b/wiki/src/install/dvd-download.pt.po index c39cb90..823246b 100644 --- a/wiki/src/install/dvd-download.pt.po +++ b/wiki/src/install/dvd-download.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 10:45+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -60,10 +60,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. type: Plain text -#, no-wrap msgid "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" diff --git a/wiki/src/install/inc/js/download.js b/wiki/src/install/inc/js/download.js index 6559191..dfde4b0 100644 --- a/wiki/src/install/inc/js/download.js +++ b/wiki/src/install/inc/js/download.js @@ -314,15 +314,6 @@ document.addEventListener("DOMContentLoaded", function() { } } - // Install Chrome extension when clicking "chrome" links - // See https://developer.chrome.com/webstore/inline_installation - var chromeInstallationLinks = document.getElementsByClassName("chrome"); - for (let i = 0; i < chromeInstallationLinks.length; i++) { - chromeInstallationLinks[i].onclick = function() { - chrome.webstore.install(); - } - } - // To debug the display of the different states: // showVerificationResult("successful"); // showVerificationResult("failed"); diff --git a/wiki/src/install/inc/steps/download.inline.de.po b/wiki/src/install/inc/steps/download.inline.de.po index 19b5c09..943904c 100644 --- a/wiki/src/install/inc/steps/download.inline.de.po +++ b/wiki/src/install/inc/steps/download.inline.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-10-29 15:07+0100\n" +"POT-Creation-Date: 2018-11-15 12:31+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" @@ -159,9 +159,10 @@ msgid "" "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" "verification/addon-tails-verification-latest.xpi\" class=\"install-extension-" "btn supported-browser firefox btn btn-primary inline-block\">Install " -"<u>Tails Verification</u> extension</a> <a class=\"install-extension-btn " -"supported-browser chrome btn btn-primary inline-block\">Install <u>Tails " -"Verification</u> extension</a>" +"<u>Tails Verification</u> extension</a> <a href=\"https://chrome.google.com/" +"webstore/detail/tails-verification/gaghffbplpialpoeclgjkkbknblfajdl\" class=" +"\"install-extension-btn supported-browser chrome btn btn-primary inline-block" +"\" target=\"_blank\">Install <u>Tails Verification</u> extension</a>" msgstr "" #. type: Content of: <div><div><div><div><div><div><p> @@ -182,9 +183,10 @@ msgstr "" msgid "" "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" "verification/addon-tails-verification-latest.xpi\" class=\"install-extension-" -"btn firefox btn btn-primary inline-block\">Update extension</a> <a class=" -"\"install-extension-btn chrome btn btn-primary inline-block\">Update " -"extension</a>" +"btn firefox btn btn-primary inline-block\">Update extension</a> <a href=" +"\"https://chrome.google.com/webstore/detail/tails-verification/" +"gaghffbplpialpoeclgjkkbknblfajdl\" class=\"install-extension-btn chrome btn " +"btn-primary inline-block\" target=\"_blank\">Update extension</a>" msgstr "" #. type: Content of: <div><div><div><div><div><p> diff --git a/wiki/src/install/inc/steps/download.inline.es.po b/wiki/src/install/inc/steps/download.inline.es.po index 3d6ae5d..185c637 100644 --- a/wiki/src/install/inc/steps/download.inline.es.po +++ b/wiki/src/install/inc/steps/download.inline.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-10-29 15:07+0100\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-09-26 20:48+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -173,13 +173,22 @@ msgid "Our browser extension makes it quick and easy." msgstr "Nuestra extensión de navegador vuelve esto rápido y fácil." #. type: Content of: <div><div><div><div><div> +#, fuzzy +#| msgid "" +#| "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" +#| "verification/addon-tails-verification-latest.xpi\" class=\"install-" +#| "extension-btn supported-browser firefox btn btn-primary inline-block" +#| "\">Install <u>Tails Verification</u> extension</a> <a class=\"install-" +#| "extension-btn supported-browser chrome btn btn-primary inline-block" +#| "\">Install <u>Tails Verification</u> extension</a>" msgid "" "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" "verification/addon-tails-verification-latest.xpi\" class=\"install-extension-" "btn supported-browser firefox btn btn-primary inline-block\">Install " -"<u>Tails Verification</u> extension</a> <a class=\"install-extension-btn " -"supported-browser chrome btn btn-primary inline-block\">Install <u>Tails " -"Verification</u> extension</a>" +"<u>Tails Verification</u> extension</a> <a href=\"https://chrome.google.com/" +"webstore/detail/tails-verification/gaghffbplpialpoeclgjkkbknblfajdl\" class=" +"\"install-extension-btn supported-browser chrome btn btn-primary inline-block" +"\" target=\"_blank\">Install <u>Tails Verification</u> extension</a>" msgstr "" "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" "verification/addon-tails-verification-latest.xpi\" class=\"install-extension-" @@ -205,12 +214,20 @@ msgid "Your extension is an older version." msgstr "Tu extensión es una versión antigua." #. type: Content of: <div><div><div><div><div> +#, fuzzy +#| msgid "" +#| "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" +#| "verification/addon-tails-verification-latest.xpi\" class=\"install-" +#| "extension-btn firefox btn btn-primary inline-block\">Update extension</a> " +#| "<a class=\"install-extension-btn chrome btn btn-primary inline-block" +#| "\">Update extension</a>" msgid "" "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" "verification/addon-tails-verification-latest.xpi\" class=\"install-extension-" -"btn firefox btn btn-primary inline-block\">Update extension</a> <a class=" -"\"install-extension-btn chrome btn btn-primary inline-block\">Update " -"extension</a>" +"btn firefox btn btn-primary inline-block\">Update extension</a> <a href=" +"\"https://chrome.google.com/webstore/detail/tails-verification/" +"gaghffbplpialpoeclgjkkbknblfajdl\" class=\"install-extension-btn chrome btn " +"btn-primary inline-block\" target=\"_blank\">Update extension</a>" msgstr "" "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" "verification/addon-tails-verification-latest.xpi\" class=\"install-extension-" diff --git a/wiki/src/install/inc/steps/download.inline.fa.po b/wiki/src/install/inc/steps/download.inline.fa.po index b25f719..ff93c6d 100644 --- a/wiki/src/install/inc/steps/download.inline.fa.po +++ b/wiki/src/install/inc/steps/download.inline.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-10-29 15:07+0100\n" +"POT-Creation-Date: 2018-11-15 12:31+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" @@ -138,9 +138,10 @@ msgid "" "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" "verification/addon-tails-verification-latest.xpi\" class=\"install-extension-" "btn supported-browser firefox btn btn-primary inline-block\">Install " -"<u>Tails Verification</u> extension</a> <a class=\"install-extension-btn " -"supported-browser chrome btn btn-primary inline-block\">Install <u>Tails " -"Verification</u> extension</a>" +"<u>Tails Verification</u> extension</a> <a href=\"https://chrome.google.com/" +"webstore/detail/tails-verification/gaghffbplpialpoeclgjkkbknblfajdl\" class=" +"\"install-extension-btn supported-browser chrome btn btn-primary inline-block" +"\" target=\"_blank\">Install <u>Tails Verification</u> extension</a>" msgstr "" #. type: Content of: <div><div><div><div><div><div><p> @@ -161,9 +162,10 @@ msgstr "" msgid "" "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" "verification/addon-tails-verification-latest.xpi\" class=\"install-extension-" -"btn firefox btn btn-primary inline-block\">Update extension</a> <a class=" -"\"install-extension-btn chrome btn btn-primary inline-block\">Update " -"extension</a>" +"btn firefox btn btn-primary inline-block\">Update extension</a> <a href=" +"\"https://chrome.google.com/webstore/detail/tails-verification/" +"gaghffbplpialpoeclgjkkbknblfajdl\" class=\"install-extension-btn chrome btn " +"btn-primary inline-block\" target=\"_blank\">Update extension</a>" msgstr "" #. type: Content of: <div><div><div><div><div><p> diff --git a/wiki/src/install/inc/steps/download.inline.fr.po b/wiki/src/install/inc/steps/download.inline.fr.po index ff49e10..edabb8d 100644 --- a/wiki/src/install/inc/steps/download.inline.fr.po +++ b/wiki/src/install/inc/steps/download.inline.fr.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-10-29 15:07+0100\n" -"PO-Revision-Date: 2018-03-29 10:46+0000\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" +"PO-Revision-Date: 2018-11-01 17:41+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: fr\n" @@ -21,12 +21,9 @@ msgid "1.0" msgstr "1.0" #. type: Content of: <div> -#, fuzzy -#| msgid "" -#| "[[!inline pages=\"inc/stable_amd64_gpg_verify\" raw=\"yes\" sort=\"age\"]]" msgid "[[!inline pages=\"inc/stable_amd64_version\" raw=\"yes\" sort=\"age\"]]" msgstr "" -"[[!inline pages=\"inc/stable_amd64_gpg_verify\" raw=\"yes\" sort=\"age\"]]" +"[[!inline pages=\"inc/stable_amd64_version\" raw=\"yes\" sort=\"age\"]]" #. type: Content of: <h1> msgid "" @@ -172,13 +169,22 @@ msgid "Our browser extension makes it quick and easy." msgstr "Notre extension de navigateur fait cela rapidement et facilement." #. type: Content of: <div><div><div><div><div> +#, fuzzy +#| msgid "" +#| "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" +#| "verification/addon-tails-verification-latest.xpi\" class=\"install-" +#| "extension-btn supported-browser firefox btn btn-primary inline-block" +#| "\">Install <u>Tails Verification</u> extension</a> <a class=\"install-" +#| "extension-btn supported-browser chrome btn btn-primary inline-block" +#| "\">Install <u>Tails Verification</u> extension</a>" msgid "" "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" "verification/addon-tails-verification-latest.xpi\" class=\"install-extension-" "btn supported-browser firefox btn btn-primary inline-block\">Install " -"<u>Tails Verification</u> extension</a> <a class=\"install-extension-btn " -"supported-browser chrome btn btn-primary inline-block\">Install <u>Tails " -"Verification</u> extension</a>" +"<u>Tails Verification</u> extension</a> <a href=\"https://chrome.google.com/" +"webstore/detail/tails-verification/gaghffbplpialpoeclgjkkbknblfajdl\" class=" +"\"install-extension-btn supported-browser chrome btn btn-primary inline-block" +"\" target=\"_blank\">Install <u>Tails Verification</u> extension</a>" msgstr "" "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" "verification/addon-tails-verification-latest.xpi\" class=\"install-extension-" @@ -204,12 +210,20 @@ msgid "Your extension is an older version." msgstr "Votre extension est une ancienne version." #. type: Content of: <div><div><div><div><div> +#, fuzzy +#| msgid "" +#| "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" +#| "verification/addon-tails-verification-latest.xpi\" class=\"install-" +#| "extension-btn firefox btn btn-primary inline-block\">Update extension</a> " +#| "<a class=\"install-extension-btn chrome btn btn-primary inline-block" +#| "\">Update extension</a>" msgid "" "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" "verification/addon-tails-verification-latest.xpi\" class=\"install-extension-" -"btn firefox btn btn-primary inline-block\">Update extension</a> <a class=" -"\"install-extension-btn chrome btn btn-primary inline-block\">Update " -"extension</a>" +"btn firefox btn btn-primary inline-block\">Update extension</a> <a href=" +"\"https://chrome.google.com/webstore/detail/tails-verification/" +"gaghffbplpialpoeclgjkkbknblfajdl\" class=\"install-extension-btn chrome btn " +"btn-primary inline-block\" target=\"_blank\">Update extension</a>" msgstr "" "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" "verification/addon-tails-verification-latest.xpi\" class=\"install-extension-" @@ -1333,21 +1347,6 @@ msgstr "" #~ "Vérifiez la date de la signature pour vous assurer que vous avez " #~ "téléchargé la dernière version." -#, fuzzy -#~| msgid "" -#~| " [[!img install/inc/screenshots/verifying_in_tails.png link=\"no\"]]\n" -#~ msgid "" -#~ "The verification of the ISO image starts automatically: [[!img install/" -#~ "inc/screenshots/verifying_in_tails.png link=\"no\"]]" -#~ msgstr "" -#~ " [[!img install/inc/screenshots/verifying_in_tails.png link=\"no\"]]\n" - -#~ msgid "<div class=\"caution\">\n" -#~ msgstr "<div class=\"caution\">\n" - -#~ msgid "</div>\n" -#~ msgstr "</div>\n" - #~ msgid "" #~ " Verify the date of the signature to make sure that you downloaded the " #~ "latest version.\n" @@ -1368,12 +1367,6 @@ msgstr "" #~ "\"#wot\">authentifier\n" #~ " la clé de signature via la Toile de Confiance OpenPGP</a>.\n" -#~ msgid "<div class=\"note\">\n" -#~ msgstr "<div class=\"note\">\n" - -#~ msgid "<div class=\"tip\">\n" -#~ msgstr "<div class=\"tip\">\n" - #~ msgid "" #~ "<p>Tails [[transitioned to a new signing\n" #~ "key|news/signing_key_transition]] in March 2015.\n" diff --git a/wiki/src/install/inc/steps/download.inline.html b/wiki/src/install/inc/steps/download.inline.html index 7e2c2c1..a255e21 100644 --- a/wiki/src/install/inc/steps/download.inline.html +++ b/wiki/src/install/inc/steps/download.inline.html @@ -41,7 +41,7 @@ </div> <div id="install-extension" class="indent"> <a href="https://addons.mozilla.org/firefox/downloads/latest/tails-verification/addon-tails-verification-latest.xpi" class="install-extension-btn supported-browser firefox btn btn-primary inline-block">Install <u>Tails Verification</u> extension</a> - <a class="install-extension-btn supported-browser chrome btn btn-primary inline-block">Install <u>Tails Verification</u> extension</a> + <a href="https://chrome.google.com/webstore/detail/tails-verification/gaghffbplpialpoeclgjkkbknblfajdl" class="install-extension-btn supported-browser chrome btn btn-primary inline-block" target="_blank">Install <u>Tails Verification</u> extension</a> <div class="no-js"> <p>You seem to have JavaScript disabled. To use our browser extension, please allow all this page:</p> @@ -51,7 +51,7 @@ <div id="update-extension" class="indent block"> <p>Your extension is an older version.</p> <a href="https://addons.mozilla.org/firefox/downloads/latest/tails-verification/addon-tails-verification-latest.xpi" class="install-extension-btn firefox btn btn-primary inline-block">Update extension</a> - <a class="install-extension-btn chrome btn btn-primary inline-block">Update extension</a> + <a href="https://chrome.google.com/webstore/detail/tails-verification/gaghffbplpialpoeclgjkkbknblfajdl" class="install-extension-btn chrome btn btn-primary inline-block" target="_blank">Update extension</a> </div> <div id="verification" class="indent block"> <p id="extension-installed" class="block"><u>Tails Verification</u> extension installed!</p> diff --git a/wiki/src/install/inc/steps/download.inline.it.po b/wiki/src/install/inc/steps/download.inline.it.po index fe58115..04cf898 100644 --- a/wiki/src/install/inc/steps/download.inline.it.po +++ b/wiki/src/install/inc/steps/download.inline.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-10-29 15:07+0100\n" +"POT-Creation-Date: 2018-11-15 12:31+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" @@ -22,7 +22,8 @@ msgstr "" #. type: Content of: <div> msgid "[[!inline pages=\"inc/stable_amd64_version\" raw=\"yes\" sort=\"age\"]]" -msgstr "[[!inline pages=\"inc/stable_amd64_version\" raw=\"yes\" sort=\"age\"]]" +msgstr "" +"[[!inline pages=\"inc/stable_amd64_version\" raw=\"yes\" sort=\"age\"]]" #. type: Content of: <h1> msgid "" @@ -154,9 +155,10 @@ msgid "" "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" "verification/addon-tails-verification-latest.xpi\" class=\"install-extension-" "btn supported-browser firefox btn btn-primary inline-block\">Install " -"<u>Tails Verification</u> extension</a> <a class=\"install-extension-btn " -"supported-browser chrome btn btn-primary inline-block\">Install <u>Tails " -"Verification</u> extension</a>" +"<u>Tails Verification</u> extension</a> <a href=\"https://chrome.google.com/" +"webstore/detail/tails-verification/gaghffbplpialpoeclgjkkbknblfajdl\" class=" +"\"install-extension-btn supported-browser chrome btn btn-primary inline-block" +"\" target=\"_blank\">Install <u>Tails Verification</u> extension</a>" msgstr "" #. type: Content of: <div><div><div><div><div><div><p> @@ -177,9 +179,10 @@ msgstr "" msgid "" "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" "verification/addon-tails-verification-latest.xpi\" class=\"install-extension-" -"btn firefox btn btn-primary inline-block\">Update extension</a> <a class=" -"\"install-extension-btn chrome btn btn-primary inline-block\">Update " -"extension</a>" +"btn firefox btn btn-primary inline-block\">Update extension</a> <a href=" +"\"https://chrome.google.com/webstore/detail/tails-verification/" +"gaghffbplpialpoeclgjkkbknblfajdl\" class=\"install-extension-btn chrome btn " +"btn-primary inline-block\" target=\"_blank\">Update extension</a>" msgstr "" #. type: Content of: <div><div><div><div><div><p> diff --git a/wiki/src/install/inc/steps/download.inline.pt.po b/wiki/src/install/inc/steps/download.inline.pt.po index 34bc06c..3d274a7 100644 --- a/wiki/src/install/inc/steps/download.inline.pt.po +++ b/wiki/src/install/inc/steps/download.inline.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-10-29 15:07+0100\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-02-09 11:58+0000\n" "Last-Translator: Tails translators <amnesia@boum.org\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -139,9 +139,10 @@ msgid "" "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" "verification/addon-tails-verification-latest.xpi\" class=\"install-extension-" "btn supported-browser firefox btn btn-primary inline-block\">Install " -"<u>Tails Verification</u> extension</a> <a class=\"install-extension-btn " -"supported-browser chrome btn btn-primary inline-block\">Install <u>Tails " -"Verification</u> extension</a>" +"<u>Tails Verification</u> extension</a> <a href=\"https://chrome.google.com/" +"webstore/detail/tails-verification/gaghffbplpialpoeclgjkkbknblfajdl\" class=" +"\"install-extension-btn supported-browser chrome btn btn-primary inline-block" +"\" target=\"_blank\">Install <u>Tails Verification</u> extension</a>" msgstr "" #. type: Content of: <div><div><div><div><div><div><p> @@ -162,9 +163,10 @@ msgstr "" msgid "" "<a href=\"https://addons.mozilla.org/firefox/downloads/latest/tails-" "verification/addon-tails-verification-latest.xpi\" class=\"install-extension-" -"btn firefox btn btn-primary inline-block\">Update extension</a> <a class=" -"\"install-extension-btn chrome btn btn-primary inline-block\">Update " -"extension</a>" +"btn firefox btn btn-primary inline-block\">Update extension</a> <a href=" +"\"https://chrome.google.com/webstore/detail/tails-verification/" +"gaghffbplpialpoeclgjkkbknblfajdl\" class=\"install-extension-btn chrome btn " +"btn-primary inline-block\" target=\"_blank\">Update extension</a>" msgstr "" #. type: Content of: <div><div><div><div><div><p> diff --git a/wiki/src/install/linux/usb-download.de.po b/wiki/src/install/linux/usb-download.de.po index f21fb1c..a41bfdc 100644 --- a/wiki/src/install/linux/usb-download.de.po +++ b/wiki/src/install/linux/usb-download.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-10-03 10:45+0200\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-08-27 14:29+0200\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -58,10 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.de\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/linux/usb-download.es.po b/wiki/src/install/linux/usb-download.es.po index 5047107..33ddb53 100644 --- a/wiki/src/install/linux/usb-download.es.po +++ b/wiki/src/install/linux/usb-download.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-26 06:36+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -35,30 +35,22 @@ msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\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/download\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/download\" rel=\"stylesheet\" title=\"\"" -"]]\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/download\" 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 msgid "[[!meta stylesheet=\"inc/stylesheets/linux\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/linux\" rel=\"stylesheet\" title=\"\"]]" -"\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/linux\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -67,14 +59,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" -"[[!meta link=\"https://chrome.google.com/webstore/detail/" -"gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.es\" raw=\"yes\" sort=\"" -"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.es\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/linux/usb-download.fa.po b/wiki/src/install/linux/usb-download.fa.po index 3cdd27c..0dce6b9 100644 --- a/wiki/src/install/linux/usb-download.fa.po +++ b/wiki/src/install/linux/usb-download.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+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" @@ -58,12 +58,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. 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" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.fa\" raw=\"yes\" sort=\"age\"]]\n" diff --git a/wiki/src/install/linux/usb-download.fr.po b/wiki/src/install/linux/usb-download.fr.po index f1ffa2b..5cb25bf 100644 --- a/wiki/src/install/linux/usb-download.fr.po +++ b/wiki/src/install/linux/usb-download.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-01-04 15:55+0000\n" "Last-Translator: \n" "Language-Team: \n" @@ -58,10 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.fr\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/linux/usb-download.it.po b/wiki/src/install/linux/usb-download.it.po index 5b9c807..b00d011 100644 --- a/wiki/src/install/linux/usb-download.it.po +++ b/wiki/src/install/linux/usb-download.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 10:48+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -35,30 +35,22 @@ msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\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/download\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/download\" rel=\"stylesheet\" title=\"\"" -"]]\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/download\" 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 msgid "[[!meta stylesheet=\"inc/stylesheets/linux\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/linux\" rel=\"stylesheet\" title=\"\"]]" -"\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/linux\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -67,14 +59,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" -"[[!meta link=\"https://chrome.google.com/webstore/detail/" -"gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.it\" raw=\"yes\" sort=\"" -"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.it\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/linux/usb-download.mdwn b/wiki/src/install/linux/usb-download.mdwn index 05bea6a..34ce613 100644 --- a/wiki/src/install/linux/usb-download.mdwn +++ b/wiki/src/install/linux/usb-download.mdwn @@ -7,6 +7,5 @@ [[!meta stylesheet="inc/stylesheets/steps" rel="stylesheet" title=""]] [[!meta stylesheet="inc/stylesheets/linux" rel="stylesheet" title=""]] [[!meta script="install/inc/js/download"]] -[[!meta link="https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl" rel="chrome-webstore-item"]] [[!inline pages="install/inc/steps/download.inline" raw="yes" sort="age"]] diff --git a/wiki/src/install/linux/usb-download.pt.po b/wiki/src/install/linux/usb-download.pt.po index 19e99a0..da5859e 100644 --- a/wiki/src/install/linux/usb-download.pt.po +++ b/wiki/src/install/linux/usb-download.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 10:45+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -35,9 +35,7 @@ msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\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 @@ -47,9 +45,7 @@ msgstr "" #. 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 @@ -63,10 +59,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. type: Plain text -#, no-wrap msgid "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" diff --git a/wiki/src/install/mac/dvd-download.de.po b/wiki/src/install/mac/dvd-download.de.po index 9f71072..dc2e298 100644 --- a/wiki/src/install/mac/dvd-download.de.po +++ b/wiki/src/install/mac/dvd-download.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-08-26 10:46+0200\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -59,10 +59,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.de\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/mac/dvd-download.es.po b/wiki/src/install/mac/dvd-download.es.po index 623e263..a4153f7 100644 --- a/wiki/src/install/mac/dvd-download.es.po +++ b/wiki/src/install/mac/dvd-download.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: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-26 06:36+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -60,10 +60,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.es\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/mac/dvd-download.fa.po b/wiki/src/install/mac/dvd-download.fa.po index 802efd7..f143d6f 100644 --- a/wiki/src/install/mac/dvd-download.fa.po +++ b/wiki/src/install/mac/dvd-download.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+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" @@ -58,12 +58,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. 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" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.fa\" raw=\"yes\" sort=\"age\"]]\n" diff --git a/wiki/src/install/mac/dvd-download.fr.po b/wiki/src/install/mac/dvd-download.fr.po index f05aa90..6ec0b5d 100644 --- a/wiki/src/install/mac/dvd-download.fr.po +++ b/wiki/src/install/mac/dvd-download.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-01-04 15:57+0000\n" "Last-Translator: \n" "Language-Team: \n" @@ -58,10 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.fr\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/mac/dvd-download.it.po b/wiki/src/install/mac/dvd-download.it.po index 765e6e7..d028b75 100644 --- a/wiki/src/install/mac/dvd-download.it.po +++ b/wiki/src/install/mac/dvd-download.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 10:48+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -36,30 +36,22 @@ msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\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/download\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/download\" rel=\"stylesheet\" title=\"\"" -"]]\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/download\" 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 msgid "[[!meta stylesheet=\"inc/stylesheets/mac-dvd\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/mac-dvd\" rel=\"stylesheet\" title=\"\"" -"]]\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/mac-dvd\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -68,14 +60,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" -"[[!meta link=\"https://chrome.google.com/webstore/detail/" -"gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.it\" raw=\"yes\" sort=\"" -"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.it\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/mac/dvd-download.mdwn b/wiki/src/install/mac/dvd-download.mdwn index 6711d94..852cc37 100644 --- a/wiki/src/install/mac/dvd-download.mdwn +++ b/wiki/src/install/mac/dvd-download.mdwn @@ -7,6 +7,5 @@ [[!meta stylesheet="inc/stylesheets/steps" rel="stylesheet" title=""]] [[!meta stylesheet="inc/stylesheets/mac-dvd" rel="stylesheet" title=""]] [[!meta script="install/inc/js/download"]] -[[!meta link="https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl" rel="chrome-webstore-item"]] [[!inline pages="install/inc/steps/download.inline" raw="yes" sort="age"]] diff --git a/wiki/src/install/mac/dvd-download.pt.po b/wiki/src/install/mac/dvd-download.pt.po index 5fcc2d4..be78f23 100644 --- a/wiki/src/install/mac/dvd-download.pt.po +++ b/wiki/src/install/mac/dvd-download.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 10:45+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -60,10 +60,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. type: Plain text -#, no-wrap msgid "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" diff --git a/wiki/src/install/mac/usb-download.de.po b/wiki/src/install/mac/usb-download.de.po index cf6e64c..4e390b7 100644 --- a/wiki/src/install/mac/usb-download.de.po +++ b/wiki/src/install/mac/usb-download.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-10-03 10:45+0200\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-08-26 11:50+0200\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -58,10 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.de\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/mac/usb-download.es.po b/wiki/src/install/mac/usb-download.es.po index c7e022f..95d4440 100644 --- a/wiki/src/install/mac/usb-download.es.po +++ b/wiki/src/install/mac/usb-download.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 20:07+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -35,30 +35,22 @@ msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\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/download\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/download\" rel=\"stylesheet\" title=\"\"" -"]]\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/download\" 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 msgid "[[!meta stylesheet=\"inc/stylesheets/mac-usb\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/mac-usb\" rel=\"stylesheet\" title=\"\"" -"]]\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/mac-usb\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -67,14 +59,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" -"[[!meta link=\"https://chrome.google.com/webstore/detail/" -"gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.es\" raw=\"yes\" sort=\"" -"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.es\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/mac/usb-download.fa.po b/wiki/src/install/mac/usb-download.fa.po index 88ce014..54b28b2 100644 --- a/wiki/src/install/mac/usb-download.fa.po +++ b/wiki/src/install/mac/usb-download.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+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" @@ -58,12 +58,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. 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" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.fa\" raw=\"yes\" sort=\"age\"]]\n" diff --git a/wiki/src/install/mac/usb-download.fr.po b/wiki/src/install/mac/usb-download.fr.po index 9ba035c..4303af6 100644 --- a/wiki/src/install/mac/usb-download.fr.po +++ b/wiki/src/install/mac/usb-download.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-01-04 15:58+0000\n" "Last-Translator: \n" "Language-Team: \n" @@ -58,10 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.fr\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/mac/usb-download.it.po b/wiki/src/install/mac/usb-download.it.po index 89c662b..6a36ea1 100644 --- a/wiki/src/install/mac/usb-download.it.po +++ b/wiki/src/install/mac/usb-download.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 10:47+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -35,30 +35,22 @@ msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\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/download\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/download\" rel=\"stylesheet\" title=\"\"" -"]]\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/download\" 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 msgid "[[!meta stylesheet=\"inc/stylesheets/mac-usb\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/mac-usb\" rel=\"stylesheet\" title=\"\"" -"]]\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/mac-usb\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -67,14 +59,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" -"[[!meta link=\"https://chrome.google.com/webstore/detail/" -"gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.it\" raw=\"yes\" sort=\"" -"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.it\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/mac/usb-download.mdwn b/wiki/src/install/mac/usb-download.mdwn index 2b149c1..bc465a1 100644 --- a/wiki/src/install/mac/usb-download.mdwn +++ b/wiki/src/install/mac/usb-download.mdwn @@ -7,6 +7,5 @@ [[!meta stylesheet="inc/stylesheets/steps" rel="stylesheet" title=""]] [[!meta stylesheet="inc/stylesheets/mac-usb" rel="stylesheet" title=""]] [[!meta script="install/inc/js/download"]] -[[!meta link="https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl" rel="chrome-webstore-item"]] [[!inline pages="install/inc/steps/download.inline" raw="yes" sort="age"]] diff --git a/wiki/src/install/mac/usb-download.pt.po b/wiki/src/install/mac/usb-download.pt.po index 8cdbcac..3b4868e 100644 --- a/wiki/src/install/mac/usb-download.pt.po +++ b/wiki/src/install/mac/usb-download.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 10:45+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -35,9 +35,7 @@ msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\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 @@ -47,9 +45,7 @@ msgstr "" #. 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 @@ -63,10 +59,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. type: Plain text -#, no-wrap msgid "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" diff --git a/wiki/src/install/vm-download.de.po b/wiki/src/install/vm-download.de.po index dd9acb6..809d9b1 100644 --- a/wiki/src/install/vm-download.de.po +++ b/wiki/src/install/vm-download.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-10-03 10:45+0200\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-08-25 18:05+0200\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -58,10 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.de\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/vm-download.es.po b/wiki/src/install/vm-download.es.po index 0c4934d..572ddad 100755 --- a/wiki/src/install/vm-download.es.po +++ b/wiki/src/install/vm-download.es.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-02-07 02:12+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/vm-" @@ -59,10 +59,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.es\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/vm-download.fa.po b/wiki/src/install/vm-download.fa.po index 1db46cc..1388624 100644 --- a/wiki/src/install/vm-download.fa.po +++ b/wiki/src/install/vm-download.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+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" @@ -58,12 +58,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. 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" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.fa\" raw=\"yes\" sort=\"age\"]]\n" diff --git a/wiki/src/install/vm-download.fr.po b/wiki/src/install/vm-download.fr.po index 5104092..53de2e3 100644 --- a/wiki/src/install/vm-download.fr.po +++ b/wiki/src/install/vm-download.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-02-05 21:25+0000\n" "Last-Translator: Tails translators <amnesia@boum.org\n" "Language-Team: French <http://translate.tails.boum.org/projects/tails/vm-" @@ -60,10 +60,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.fr\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/vm-download.it.po b/wiki/src/install/vm-download.it.po index 149b921..34c06fa 100644 --- a/wiki/src/install/vm-download.it.po +++ b/wiki/src/install/vm-download.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+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" @@ -34,23 +34,17 @@ msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\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/download\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/download\" rel=\"stylesheet\" title=\"\"" -"]]\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/download\" 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 @@ -64,14 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" -"[[!meta link=\"https://chrome.google.com/webstore/detail/" -"gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.it\" raw=\"yes\" sort=\"" -"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.it\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/vm-download.mdwn b/wiki/src/install/vm-download.mdwn index 9b2dd08..6461241 100644 --- a/wiki/src/install/vm-download.mdwn +++ b/wiki/src/install/vm-download.mdwn @@ -7,6 +7,5 @@ [[!meta stylesheet="inc/stylesheets/steps" rel="stylesheet" title=""]] [[!meta stylesheet="inc/stylesheets/vm" rel="stylesheet" title=""]] [[!meta script="install/inc/js/download"]] -[[!meta link="https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl" rel="chrome-webstore-item"]] [[!inline pages="install/inc/steps/download.inline" raw="yes" sort="age"]] diff --git a/wiki/src/install/vm-download.pt.po b/wiki/src/install/vm-download.pt.po index be4b593..e6273f6 100644 --- a/wiki/src/install/vm-download.pt.po +++ b/wiki/src/install/vm-download.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 10:45+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -60,10 +60,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. type: Plain text -#, no-wrap msgid "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" diff --git a/wiki/src/install/win/usb-download.de.po b/wiki/src/install/win/usb-download.de.po index 1ba00f1..f2d6562 100644 --- a/wiki/src/install/win/usb-download.de.po +++ b/wiki/src/install/win/usb-download.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-10-03 10:45+0200\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-08-25 17:22+0200\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -58,10 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.de\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/win/usb-download.es.po b/wiki/src/install/win/usb-download.es.po index 0cc4b84..465195d 100755 --- a/wiki/src/install/win/usb-download.es.po +++ b/wiki/src/install/win/usb-download.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: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-26 06:36+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/usb-" @@ -61,10 +61,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.es\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/win/usb-download.fa.po b/wiki/src/install/win/usb-download.fa.po index cb849fd..2a2716a 100644 --- a/wiki/src/install/win/usb-download.fa.po +++ b/wiki/src/install/win/usb-download.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+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" @@ -58,12 +58,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. 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" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.fa\" raw=\"yes\" sort=\"age\"]]\n" diff --git a/wiki/src/install/win/usb-download.fr.po b/wiki/src/install/win/usb-download.fr.po index eb7570c..9798600 100644 --- a/wiki/src/install/win/usb-download.fr.po +++ b/wiki/src/install/win/usb-download.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-01-04 15:59+0000\n" "Last-Translator: \n" "Language-Team: \n" @@ -58,10 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.fr\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/win/usb-download.it.po b/wiki/src/install/win/usb-download.it.po index 2255d9a..02e1090 100644 --- a/wiki/src/install/win/usb-download.it.po +++ b/wiki/src/install/win/usb-download.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 10:48+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -36,30 +36,22 @@ msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\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/download\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/download\" rel=\"stylesheet\" title=\"\"" -"]]\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/download\" 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 msgid "[[!meta stylesheet=\"inc/stylesheets/windows\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"inc/stylesheets/windows\" rel=\"stylesheet\" title=\"\"" -"]]\n" +msgstr "[[!meta stylesheet=\"inc/stylesheets/windows\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -68,14 +60,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" -"[[!meta link=\"https://chrome.google.com/webstore/detail/" -"gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.it\" raw=\"yes\" sort=\"" -"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.it\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/install/win/usb-download.mdwn b/wiki/src/install/win/usb-download.mdwn index 8ae7fb0..2ae8968 100644 --- a/wiki/src/install/win/usb-download.mdwn +++ b/wiki/src/install/win/usb-download.mdwn @@ -7,6 +7,5 @@ [[!meta stylesheet="inc/stylesheets/steps" rel="stylesheet" title=""]] [[!meta stylesheet="inc/stylesheets/windows" rel="stylesheet" title=""]] [[!meta script="install/inc/js/download"]] -[[!meta link="https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl" rel="chrome-webstore-item"]] [[!inline pages="install/inc/steps/download.inline" raw="yes" sort="age"]] diff --git a/wiki/src/install/win/usb-download.pt.po b/wiki/src/install/win/usb-download.pt.po index 1a9eb35..6701ce4 100644 --- a/wiki/src/install/win/usb-download.pt.po +++ b/wiki/src/install/win/usb-download.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-04-24 16:41+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 10:45+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -60,10 +60,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. type: Plain text -#, no-wrap msgid "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" diff --git a/wiki/src/news/2018-fundraiser.de.po b/wiki/src/news/2018-fundraiser.de.po index 3a899a6..48763c7 100644 --- a/wiki/src/news/2018-fundraiser.de.po +++ b/wiki/src/news/2018-fundraiser.de.po @@ -5,25 +5,26 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "POT-Creation-Date: 2018-10-23 23:25+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"PO-Revision-Date: 2018-10-28 08:37+0100\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.2\n" +"Last-Translator: \n" +"Language-Team: \n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Our donation campaign for 2019 begins today\"]]\n" -msgstr "" +msgstr "[[!meta title=\"Unsere Spendenaktion für 2019 beginnt heute\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta date=\"Fri, 12 Oct 2018 14:36:53 +0000\"]]\n" -msgstr "" +msgstr "[[!meta date=\"Fri, 12 Oct 2018 14:36:53 +0000\"]]\n" #. type: Plain text #, no-wrap @@ -40,18 +41,24 @@ msgid "" "Every day, Tails helps thousands of people to safely use their computers " "online and offline." msgstr "" +"Jeden Tag hilft Tails tausenden von Leuten ihren Computer online und offline " +"sicher zu nutzen." #. type: Plain text msgid "" "Tails is available for free because we believe that nobody should have to " "pay to be protected from surveillance and censorship." msgstr "" +"Tails ist kostenlos, weil wir denken, dass niemand dafür bezahlen sollte, um " +"vor Überwachung und Zensur geschützt zu sein." #. type: Plain text msgid "" "Tails is free software because if our source code was closed, there would be " "no way of verifying that it is secure." msgstr "" +"Tails ist freie Software, denn wenn unser Sourcecode geheim wäre, gäbe es " +"keinen Weg zu bestätigen, dass dieser sicher ist." #. type: Plain text msgid "" @@ -60,6 +67,10 @@ msgid "" "protect you against targeted advertisement, and we obviously don't want to " "rely on these sources of revenue." msgstr "" +"Heutzutage ist es die wirtschaftlichste Strategie im Internet sich auf " +"Werbung und Tracking zu verlassen. Aber eines unserer Ziele ist es auch Euch " +"vor gezielter Werbung zu schützen und wir wollen uns klarerweise nicht auf " +"solche Einnahmequellen verlassen." #. type: Plain text msgid "" @@ -68,6 +79,11 @@ msgid "" "want Tails to be smoother to install, upgrade, use and to include even more " "security protection." msgstr "" +"Die Zahl der Menschen die Tails nutzen wächst konstant genauso wie auch " +"unsere Verantwortung ein so einfaches und sicheres Werkzeug wie möglich " +"bereit zu stellen. In 2019 wollen wir die Installation, Aktualisierung und " +"Nutzung von Tails reibungsloser gestalten und noch mehr Sicherheitsschutz " +"einarbeiten." #. type: Plain text msgid "" @@ -75,10 +91,13 @@ msgid "" "small number given all the work done, and many of us still do a lot of work " "for free in addition to paid hours." msgstr "" +"Tails bereit zu stellen kostet uns jährlich rund 200 000€. Das nicht " +"viel angesichts all der geleisteten Arbeit und viele von uns machen " +"zusätzlich zu bezahlten Stunden noch Arbeit für umsonst." #. type: Plain text msgid "Our money comes from:" -msgstr "" +msgstr "Unser Geld kommt von:" #. type: Plain text msgid "" @@ -86,6 +105,10 @@ msgid "" "or Lush - Foundations and NGOs like The Handshake Foundation or The ISC " "Project - Funds from the US government like the Open Technology Fund" msgstr "" +"- Leidenschaftliche Leuten wie Sie - Private Unternehmen wie Mozilla, " +"DuckDuckGo oder Lush - Stiftungen und Nichtregierungsorganisationen wie die " +"Handshake Foundation oder das ISC Project - Gelder von der US-Regierung wie " +"der Open Technology Fund" #. type: Plain text #, no-wrap @@ -100,6 +123,8 @@ msgid "" "[[!img income.png link=\"no\" class=\"margin center\" alt=\"Individuals: 35%,\n" "Foundations & NGOs: 34%, Related to US government: 24%, Companies: 7%\"]]\n" msgstr "" +"[[!img income.png link=\"no\" class=\"margin center\" alt=\"Einzelpersonen: 35%,\n" +"Stiftungen & Nichtregierungsorganisation: 34%, Der US-Regierung nahestehend: 24%, Unternehmen: 7%\"]]\n" #. type: Plain text msgid "" @@ -108,6 +133,10 @@ msgid "" "share this concern and we will never be at ease as long as the well-being of " "our project depends on such funding." msgstr "" +"Wir hören oft Beschwerden über Software-Projekte, die gegen Überwachung " +"ankämpfen, wie Tor und Tails, und Gelder von der US-Regierung bekommen. Wir " +"teilen diese Sorge, und wir werden niemals beruhigt sein, solange das " +"Wohlergehen unseres Projekts von einer solchen Finanzierung abhängt." #. type: Plain text #, no-wrap @@ -115,6 +144,8 @@ msgid "" "This is why it's so <b>important to be sustained\n" "by users like you, and our independence protected by your donations.</b>\n" msgstr "" +"Das ist warum es so <b>wichtig ist\n" +"von Nutzern und Nutzerinnen wie Ihnen finanziert zu werden und unsere Unabhängigkeit durch Ihre Spenden zu schützen.</b>\n" #. type: Plain text #, no-wrap @@ -124,6 +155,10 @@ msgid "" "day. <b>If each user gave $6, our\n" "fundraiser would be done in one day.</b> The price of a USB stick is all we need.\n" msgstr "" +"Von [[anonymized statistics|support/faq#boot_statistics]],\n" +"wir wissen, dass Tails mehr als 20 000 Mal pro Tag verwendet wird.\n" +"<b> Wenn jeder unserer Nutzer und jede Nutzerin $6\n" +"spenden würde, wäre die Spendenaktion in einem Tag vorbei.</b> Der Preis eines USB-Sticks ist alles was wir brauchen.\n" #. type: Plain text msgid "" @@ -132,6 +167,10 @@ msgid "" "giving to an anti-surveillance tool like Tails, or simply because they don't " "have the money." msgstr "" +"Aber wir wissen, dass die [[Leute, die Tails am meisten brauchen|news/" +"who_are_you_helping]] nicht spenden können, weil sie für die Unterstützung " +"von einem Anti-Überwachungswerkzeug wie Tails Probleme bekommen würden, oder " +"einfach, weil sie nicht das Geld dazu haben." #. type: Plain text #, no-wrap @@ -140,12 +179,17 @@ msgid "" "donations for a total of 101 644€. <b>This year, we aim for 120 000€\n" "and a larger number of donors.</b>\n" msgstr "" +"Letztes Jahr haben wir 1 167 Spenden\n" +"erhalten, was insgesamt 101 644€ entspricht. <b>Dieses Jahr streben wir 120 000€ an\n" +"und eine größere Anzahl an Spendern und Spenderinnen.</b>\n" #. type: Plain text msgid "Please consider taking a minute to donate to Tails today." msgstr "" +"Bitte überlegen Sie sich eine Minute Zeit zu nehmen, um heute noch an Tails " +"zu spenden." #. type: Plain text #, no-wrap msgid "<div id=\"donate-button\"><a href=\"https://tails.boum.org/donate?r=2018\">Donate</a></div>\n" -msgstr "" +msgstr "<div id=\"donate-button\"><a href=\"https://tails.boum.org/donate?r=2018\">Spenden</a></div>\n" diff --git a/wiki/src/news/achievements_in_2018.de.po b/wiki/src/news/achievements_in_2018.de.po index 08b86f7..512e3af 100644 --- a/wiki/src/news/achievements_in_2018.de.po +++ b/wiki/src/news/achievements_in_2018.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-11-11 07:42+0000\n" +"POT-Creation-Date: 2018-11-22 14: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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Fri, 11 Nov 2018 08:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Fri, 14 Nov 2018 08:00:00 +0000\"]]\n" msgstr "" #. type: Plain text @@ -38,9 +38,9 @@ msgstr "" #. type: Plain text msgid "" -"On October 12, we started our [[yearly donation " -"campaign|news/2018-fundraiser]]. Today, we summarize what we achieved with " -"your help in 2018 and renew our call for donations." +"On October 12, we started our [[yearly donation campaign|news/2018-" +"fundraiser]]. Today, we summarize what we achieved with your help in 2018 " +"and renew our call for donations." msgstr "" #. type: Title = @@ -56,10 +56,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img " -"doc/encryption_and_privacy/veracrypt/unlock-veracrypt-volumes-with-partition.png " -"link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/encryption_and_privacy/veracrypt/unlock-veracrypt-volumes-with-partition.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Plain text @@ -77,33 +74,24 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/additional_software/add-additional-software.png " -"link=\"no\" alt=\"Add vlc to your additional software? 'Install Only Once' " -"or 'Install Every Time'\"]]\n" +msgid " [[!img doc/first_steps/additional_software/add-additional-software.png link=\"no\" alt=\"Add vlc to your additional software? 'Install Only Once' or 'Install Every Time'\"]]\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/additional_software/additional-software.png " -"link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/additional_software/additional-software.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' msgid "" -"We added a [[screen " -"locker|doc/first_steps/introduction_to_gnome_and_the_tails_desktop#screen-locker]] " -"to give you some protection if you leave your Tails unattended, willingly or " -"not." +"We added a [[screen locker|doc/first_steps/" +"introduction_to_gnome_and_the_tails_desktop#screen-locker]] to give you some " +"protection if you leave your Tails unattended, willingly or not." msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/screen-locker.png " -"alt=\"\" link=\"no\"]]\n" +msgid " [[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/screen-locker.png alt=\"\" link=\"no\"]]\n" msgstr "" #. type: Bullet: '- ' @@ -149,17 +137,16 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"We made the build of Tails completely " -"[[reproducible|news/reproducible_Tails]], which brings even more trust in " -"the ISO images that we are distributing, a faster release process, and " -"slightly smaller upgrades." +"We made the build of Tails completely [[reproducible|news/" +"reproducible_Tails]], which brings even more trust in the ISO images that we " +"are distributing, a faster release process, and slightly smaller upgrades." msgstr "" #. type: Bullet: '- ' msgid "" "We greatly diversified our sources of income. Thanks to all of you, the " -"share of donations that we got from individuals increased from 17% to " -"34%. This made our organization more robust and independent." +"share of donations that we got from individuals increased from 17% to 34%. " +"This made our organization more robust and independent." msgstr "" #. type: Title = @@ -204,7 +191,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div id=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate?r=2018-achievements\">Donate</a></div>\n" +msgid "<div id=\"donate-button\"><a href=\"https://tails.boum.org/donate?r=2018-achievements\">Donate</a></div>\n" msgstr "" diff --git a/wiki/src/news/achievements_in_2018.es.po b/wiki/src/news/achievements_in_2018.es.po index 08b86f7..512e3af 100644 --- a/wiki/src/news/achievements_in_2018.es.po +++ b/wiki/src/news/achievements_in_2018.es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-11-11 07:42+0000\n" +"POT-Creation-Date: 2018-11-22 14: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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Fri, 11 Nov 2018 08:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Fri, 14 Nov 2018 08:00:00 +0000\"]]\n" msgstr "" #. type: Plain text @@ -38,9 +38,9 @@ msgstr "" #. type: Plain text msgid "" -"On October 12, we started our [[yearly donation " -"campaign|news/2018-fundraiser]]. Today, we summarize what we achieved with " -"your help in 2018 and renew our call for donations." +"On October 12, we started our [[yearly donation campaign|news/2018-" +"fundraiser]]. Today, we summarize what we achieved with your help in 2018 " +"and renew our call for donations." msgstr "" #. type: Title = @@ -56,10 +56,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img " -"doc/encryption_and_privacy/veracrypt/unlock-veracrypt-volumes-with-partition.png " -"link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/encryption_and_privacy/veracrypt/unlock-veracrypt-volumes-with-partition.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Plain text @@ -77,33 +74,24 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/additional_software/add-additional-software.png " -"link=\"no\" alt=\"Add vlc to your additional software? 'Install Only Once' " -"or 'Install Every Time'\"]]\n" +msgid " [[!img doc/first_steps/additional_software/add-additional-software.png link=\"no\" alt=\"Add vlc to your additional software? 'Install Only Once' or 'Install Every Time'\"]]\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/additional_software/additional-software.png " -"link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/additional_software/additional-software.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' msgid "" -"We added a [[screen " -"locker|doc/first_steps/introduction_to_gnome_and_the_tails_desktop#screen-locker]] " -"to give you some protection if you leave your Tails unattended, willingly or " -"not." +"We added a [[screen locker|doc/first_steps/" +"introduction_to_gnome_and_the_tails_desktop#screen-locker]] to give you some " +"protection if you leave your Tails unattended, willingly or not." msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/screen-locker.png " -"alt=\"\" link=\"no\"]]\n" +msgid " [[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/screen-locker.png alt=\"\" link=\"no\"]]\n" msgstr "" #. type: Bullet: '- ' @@ -149,17 +137,16 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"We made the build of Tails completely " -"[[reproducible|news/reproducible_Tails]], which brings even more trust in " -"the ISO images that we are distributing, a faster release process, and " -"slightly smaller upgrades." +"We made the build of Tails completely [[reproducible|news/" +"reproducible_Tails]], which brings even more trust in the ISO images that we " +"are distributing, a faster release process, and slightly smaller upgrades." msgstr "" #. type: Bullet: '- ' msgid "" "We greatly diversified our sources of income. Thanks to all of you, the " -"share of donations that we got from individuals increased from 17% to " -"34%. This made our organization more robust and independent." +"share of donations that we got from individuals increased from 17% to 34%. " +"This made our organization more robust and independent." msgstr "" #. type: Title = @@ -204,7 +191,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div id=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate?r=2018-achievements\">Donate</a></div>\n" +msgid "<div id=\"donate-button\"><a href=\"https://tails.boum.org/donate?r=2018-achievements\">Donate</a></div>\n" msgstr "" diff --git a/wiki/src/news/achievements_in_2018.fa.po b/wiki/src/news/achievements_in_2018.fa.po index 08b86f7..512e3af 100644 --- a/wiki/src/news/achievements_in_2018.fa.po +++ b/wiki/src/news/achievements_in_2018.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-11-11 07:42+0000\n" +"POT-Creation-Date: 2018-11-22 14: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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Fri, 11 Nov 2018 08:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Fri, 14 Nov 2018 08:00:00 +0000\"]]\n" msgstr "" #. type: Plain text @@ -38,9 +38,9 @@ msgstr "" #. type: Plain text msgid "" -"On October 12, we started our [[yearly donation " -"campaign|news/2018-fundraiser]]. Today, we summarize what we achieved with " -"your help in 2018 and renew our call for donations." +"On October 12, we started our [[yearly donation campaign|news/2018-" +"fundraiser]]. Today, we summarize what we achieved with your help in 2018 " +"and renew our call for donations." msgstr "" #. type: Title = @@ -56,10 +56,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img " -"doc/encryption_and_privacy/veracrypt/unlock-veracrypt-volumes-with-partition.png " -"link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/encryption_and_privacy/veracrypt/unlock-veracrypt-volumes-with-partition.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Plain text @@ -77,33 +74,24 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/additional_software/add-additional-software.png " -"link=\"no\" alt=\"Add vlc to your additional software? 'Install Only Once' " -"or 'Install Every Time'\"]]\n" +msgid " [[!img doc/first_steps/additional_software/add-additional-software.png link=\"no\" alt=\"Add vlc to your additional software? 'Install Only Once' or 'Install Every Time'\"]]\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/additional_software/additional-software.png " -"link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/additional_software/additional-software.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' msgid "" -"We added a [[screen " -"locker|doc/first_steps/introduction_to_gnome_and_the_tails_desktop#screen-locker]] " -"to give you some protection if you leave your Tails unattended, willingly or " -"not." +"We added a [[screen locker|doc/first_steps/" +"introduction_to_gnome_and_the_tails_desktop#screen-locker]] to give you some " +"protection if you leave your Tails unattended, willingly or not." msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/screen-locker.png " -"alt=\"\" link=\"no\"]]\n" +msgid " [[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/screen-locker.png alt=\"\" link=\"no\"]]\n" msgstr "" #. type: Bullet: '- ' @@ -149,17 +137,16 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"We made the build of Tails completely " -"[[reproducible|news/reproducible_Tails]], which brings even more trust in " -"the ISO images that we are distributing, a faster release process, and " -"slightly smaller upgrades." +"We made the build of Tails completely [[reproducible|news/" +"reproducible_Tails]], which brings even more trust in the ISO images that we " +"are distributing, a faster release process, and slightly smaller upgrades." msgstr "" #. type: Bullet: '- ' msgid "" "We greatly diversified our sources of income. Thanks to all of you, the " -"share of donations that we got from individuals increased from 17% to " -"34%. This made our organization more robust and independent." +"share of donations that we got from individuals increased from 17% to 34%. " +"This made our organization more robust and independent." msgstr "" #. type: Title = @@ -204,7 +191,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div id=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate?r=2018-achievements\">Donate</a></div>\n" +msgid "<div id=\"donate-button\"><a href=\"https://tails.boum.org/donate?r=2018-achievements\">Donate</a></div>\n" msgstr "" diff --git a/wiki/src/news/achievements_in_2018.fr.po b/wiki/src/news/achievements_in_2018.fr.po index 08b86f7..74bb58e 100644 --- a/wiki/src/news/achievements_in_2018.fr.po +++ b/wiki/src/news/achievements_in_2018.fr.po @@ -3,64 +3,68 @@ # 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: 2018-11-11 07: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" +"Project-Id-Version: \n" +"POT-Creation-Date: 2018-11-22 14:52+0000\n" +"PO-Revision-Date: 2018-11-13 22:36+0000\n" +"Last-Translator: \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" #. type: Plain text -#, no-wrap -msgid "[[!meta date=\"Fri, 11 Nov 2018 08:00:00 +0000\"]]\n" -msgstr "" +#, fuzzy, no-wrap +#| msgid "[[!meta date=\"Fri, 11 Nov 2018 08:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Fri, 14 Nov 2018 08:00:00 +0000\"]]\n" +msgstr "[[!meta date=\"Fri, 11 Nov 2018 08:00:00 +0000\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Our achievements in 2018\"]]\n" -msgstr "" +msgstr "[[!meta title=\"Nos réalisations en 2018\"]]\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 "" -"On October 12, we started our [[yearly donation " -"campaign|news/2018-fundraiser]]. Today, we summarize what we achieved with " -"your help in 2018 and renew our call for donations." +"On October 12, we started our [[yearly donation campaign|news/2018-" +"fundraiser]]. Today, we summarize what we achieved with your help in 2018 " +"and renew our call for donations." msgstr "" +"Le 12 octobre, nous avons commencé notre [[campagne de dons annuelle|" +"news/2018-fundraiser]]. Aujourd'hui, nous résumons ce que nous avons " +"accompli avec votre aide en 2018 et renouvelons notre appel à dons." #. type: Title = #, no-wrap msgid "New features\n" -msgstr "" +msgstr "Nouvelles fonctionnalités\n" #. type: Bullet: '- ' msgid "" "We integrated *VeraCrypt* in the desktop to allow you to work with encrypted " "files across different operating systems (Windows, Linux, and macOS)." msgstr "" +"Nous avons intégré *VeraCrypt* dans le bureau pour vous permettre de " +"travailler avec des fichiers chiffrés issus de différents systèmes " +"d'exploitation (Windows, Linux et macOS)." #. type: Plain text #, no-wrap -msgid "" -" [[!img " -"doc/encryption_and_privacy/veracrypt/unlock-veracrypt-volumes-with-partition.png " -"link=\"no\" alt=\"\"]]\n" -msgstr "" +msgid " [[!img doc/encryption_and_privacy/veracrypt/unlock-veracrypt-volumes-with-partition.png link=\"no\" alt=\"\"]]\n" +msgstr " [[!img doc/encryption_and_privacy/veracrypt/unlock-veracrypt-volumes-with-partition.png link=\"no\" alt=\"\"]]\n" #. type: Plain text #, no-wrap @@ -68,43 +72,43 @@ msgid "" " This work was done upstream in GNOME and will be available outside of\n" " Tails in Debian 10 (Buster) and Ubuntu 18.10 (Cosmic Cuttlefish).\n" msgstr "" +" Ce travail a été fait directement dans GNOME et sera disponible en dehors de\n" +" Tails dans Debian 10 (Buster) et Ubuntu 18.10 (Cosmic Cuttlefish).\n" #. type: Bullet: '- ' msgid "" "*[[Additional Software|doc/first_steps/additional_software]]* allows you to " "install additional software automatically when starting Tails." msgstr "" +"*[[Logiciels additionnels|doc/first_steps/additional_software]]* vous permet " +"d'installer automatiquement des logiciels supplémentaires au démarrage de " +"Tails." #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/additional_software/add-additional-software.png " -"link=\"no\" alt=\"Add vlc to your additional software? 'Install Only Once' " -"or 'Install Every Time'\"]]\n" -msgstr "" +msgid " [[!img doc/first_steps/additional_software/add-additional-software.png link=\"no\" alt=\"Add vlc to your additional software? 'Install Only Once' or 'Install Every Time'\"]]\n" +msgstr " [[!img doc/first_steps/additional_software/add-additional-software.png link=\"no\" alt=\"Ajouter vlc à vos logiciels additionnels ? 'Installer une seule fois' ou 'Installer à chaque fois'\"]]\n" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/additional_software/additional-software.png " -"link=\"no\" alt=\"\"]]\n" -msgstr "" +msgid " [[!img doc/first_steps/additional_software/additional-software.png link=\"no\" alt=\"\"]]\n" +msgstr " [[!img doc/first_steps/additional_software/additional-software.png link=\"no\" alt=\"\"]]\n" #. type: Bullet: '- ' msgid "" -"We added a [[screen " -"locker|doc/first_steps/introduction_to_gnome_and_the_tails_desktop#screen-locker]] " -"to give you some protection if you leave your Tails unattended, willingly or " -"not." +"We added a [[screen locker|doc/first_steps/" +"introduction_to_gnome_and_the_tails_desktop#screen-locker]] to give you some " +"protection if you leave your Tails unattended, willingly or not." msgstr "" +"Nous avons ajouté un [[verrouillage d'écran|doc/first_steps/" +"introduction_to_gnome_and_the_tails_desktop#screen-locker]] pour vous donner " +"une protection si vous quittez votre Tails de façon inattendue, " +"volontairement ou non." #. type: Plain text #, no-wrap -msgid "" -" [[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/screen-locker.png " -"alt=\"\" link=\"no\"]]\n" -msgstr "" +msgid " [[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/screen-locker.png alt=\"\" link=\"no\"]]\n" +msgstr " [[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/screen-locker.png alt=\"\" link=\"no\"]]\n" #. type: Bullet: '- ' msgid "" @@ -112,32 +116,41 @@ msgid "" "verification extension to make it easier to get and verify Tails. It is also " "now possible to verify Tails from Chrome." msgstr "" +"Nous avons complètement repensé notre [[page de téléchargement|install/" +"download]] et l'extension de vérification pour rendre plus facile " +"l'obtention et la vérification de Tails. Il est également maintenant " +"possible de vérifier Tails depuis Chrome." #. type: Title = #, no-wrap msgid "Adoption\n" -msgstr "" +msgstr "Adoption\n" #. type: Plain text msgid "- Tails was used approximately 22 000 times a day." -msgstr "" +msgstr "- Tails est utilisé approximativement 22 000 fois par jour." #. type: Bullet: '- ' msgid "" "We did more usability work than ever before. Every new feature was tested " "with actual users to make sure Tails becomes easier to use." msgstr "" +"Nous avons fait plus de travail d'ergonomie que jamais auparavant. Chaque " +"nouvelle fonctionnalité a été testée avec des vraies personnes pour avoir " +"l'assurance de rendre Tails plus facile à utiliser." #. type: Bullet: '- ' msgid "" "We answered 1123 bug reports through our help desk and helped all these " "people to be safer online." msgstr "" +"Nous avons répondu à 1123 rapports d'erreurs avec notre équipe d'assistance " +"et avons aidé toutes ces personnes à être plus en sûreté en ligne." #. type: Title = #, no-wrap msgid "Under the hood\n" -msgstr "" +msgstr "Sous le capot\n" #. type: Bullet: '- ' msgid "" @@ -146,32 +159,47 @@ msgid "" "year we've faced critical security issues like Spectre, Meltdown, EFAIL, and " "issues in Firefox and are working hard to always have your back covered!" msgstr "" +"Nous avons publié 11 nouvelles versions de Tails pour continuer d'offrir des " +"améliorations et des correctifs de sécurité dès que possible, incluant 4 " +"versions d'urgence. Cette année nous avons été confronté à des failles de " +"sécurité comme Spectre, Meltdown, EFAIL et des failles dans Firefox et nous " +"avons travaillé dur pour toujours assurer vos arrières !" #. type: Bullet: '- ' msgid "" -"We made the build of Tails completely " -"[[reproducible|news/reproducible_Tails]], which brings even more trust in " -"the ISO images that we are distributing, a faster release process, and " -"slightly smaller upgrades." +"We made the build of Tails completely [[reproducible|news/" +"reproducible_Tails]], which brings even more trust in the ISO images that we " +"are distributing, a faster release process, and slightly smaller upgrades." msgstr "" +"Nous avons rendu l'assemblage de Tails entièrement [[reproductible|news/" +"reproducible_Tails]], ce qui permet d'avoir encore plus confiance dans les " +"images ISO que nous distribuons, un processus de publication plus rapide et " +"des mises à jour légèrement plus petites." #. type: Bullet: '- ' msgid "" "We greatly diversified our sources of income. Thanks to all of you, the " -"share of donations that we got from individuals increased from 17% to " -"34%. This made our organization more robust and independent." +"share of donations that we got from individuals increased from 17% to 34%. " +"This made our organization more robust and independent." msgstr "" +"Nous avons sensiblement diversifié nos sources de revenus. Merci à toutes " +"les personnes qui ont permis à la part des dons reçus d'individus " +"d'augmenter de 17% à 34%. Cela rend notre organisation plus robuste et " +"indépendante." #. type: Title = #, no-wrap msgid "Community\n" -msgstr "" +msgstr "Communauté\n" #. type: Bullet: '- ' msgid "" "We published a [[social contract|news/social_contract]] to clarify the " "social commitments that we stand by as Tails contributors." msgstr "" +"Nous avons publié un [[contrat social|news/social_contract]] pour clarifier " +"les engagements sociaux que nous prenons en tant que personnes contribuant à " +"Tails." #. type: Bullet: '- ' msgid "" @@ -181,6 +209,11 @@ msgid "" "Meeting (Italy and Mexico), Debian Conference (Taiwan), and CryptoRave " "(Brazil)." msgstr "" +"Nous avons participé à 12 conférences et rencontré des communautés des " +"logiciels libres et des libertés sur Internet dans 8 pays différents, " +"incluant Chaos Computer Congress (Allemagne), FOSDEM (Belgique), Internet " +"Freedom Festival (Espagne), Tor Meeting (Italie et Mexique), Debian " +"Conference (Taïwan), et CryptoRave (Brésil)." #. type: Bullet: '- ' msgid "" @@ -188,6 +221,10 @@ msgid "" "on our core code and infrastructure. These include several very skilled " "Debian developers." msgstr "" +"Nous avons augmenté le nombre de nos contrats réguliers avec 4 nouvelles " +"personnes, majoritairement pour travailler sur notre code principal et sur " +"l'infrastructure. Elles incluent plusieurs personnes très expérimentées dans " +"le développement de Debian." #. type: Plain text msgid "" @@ -195,16 +232,20 @@ msgid "" "they help us to plan our work, we particularly appreciate monthly and yearly " "donations, even the smallest ones." msgstr "" +"Tout cela a été rendu possible par des dons de personnes comme vous. Et " +"parce que cela nous aide à planifier notre travail, nous apprécions " +"particulièrement les dons mensuels et annuels, même les plus petits d'entre " +"eux." #. type: Plain text msgid "" "If you liked our work in 2018, please take a minute to donate and make us " "thrive in 2019!" msgstr "" +"Si vous avez apprécié notre travail en 2018, merci de prendre une minute " +"pour faire un don et faites-nous prospérer en 2019 !" #. type: Plain text #, no-wrap -msgid "" -"<div id=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate?r=2018-achievements\">Donate</a></div>\n" -msgstr "" +msgid "<div id=\"donate-button\"><a href=\"https://tails.boum.org/donate?r=2018-achievements\">Donate</a></div>\n" +msgstr "<div id=\"donate-button\"><a href=\"https://tails.boum.org/donate?r=2018-achievements\">Faire un don</a></div>\n" diff --git a/wiki/src/news/achievements_in_2018.it.po b/wiki/src/news/achievements_in_2018.it.po index 08b86f7..512e3af 100644 --- a/wiki/src/news/achievements_in_2018.it.po +++ b/wiki/src/news/achievements_in_2018.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-11-11 07:42+0000\n" +"POT-Creation-Date: 2018-11-22 14: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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Fri, 11 Nov 2018 08:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Fri, 14 Nov 2018 08:00:00 +0000\"]]\n" msgstr "" #. type: Plain text @@ -38,9 +38,9 @@ msgstr "" #. type: Plain text msgid "" -"On October 12, we started our [[yearly donation " -"campaign|news/2018-fundraiser]]. Today, we summarize what we achieved with " -"your help in 2018 and renew our call for donations." +"On October 12, we started our [[yearly donation campaign|news/2018-" +"fundraiser]]. Today, we summarize what we achieved with your help in 2018 " +"and renew our call for donations." msgstr "" #. type: Title = @@ -56,10 +56,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img " -"doc/encryption_and_privacy/veracrypt/unlock-veracrypt-volumes-with-partition.png " -"link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/encryption_and_privacy/veracrypt/unlock-veracrypt-volumes-with-partition.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Plain text @@ -77,33 +74,24 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/additional_software/add-additional-software.png " -"link=\"no\" alt=\"Add vlc to your additional software? 'Install Only Once' " -"or 'Install Every Time'\"]]\n" +msgid " [[!img doc/first_steps/additional_software/add-additional-software.png link=\"no\" alt=\"Add vlc to your additional software? 'Install Only Once' or 'Install Every Time'\"]]\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/additional_software/additional-software.png " -"link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/additional_software/additional-software.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' msgid "" -"We added a [[screen " -"locker|doc/first_steps/introduction_to_gnome_and_the_tails_desktop#screen-locker]] " -"to give you some protection if you leave your Tails unattended, willingly or " -"not." +"We added a [[screen locker|doc/first_steps/" +"introduction_to_gnome_and_the_tails_desktop#screen-locker]] to give you some " +"protection if you leave your Tails unattended, willingly or not." msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/screen-locker.png " -"alt=\"\" link=\"no\"]]\n" +msgid " [[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/screen-locker.png alt=\"\" link=\"no\"]]\n" msgstr "" #. type: Bullet: '- ' @@ -149,17 +137,16 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"We made the build of Tails completely " -"[[reproducible|news/reproducible_Tails]], which brings even more trust in " -"the ISO images that we are distributing, a faster release process, and " -"slightly smaller upgrades." +"We made the build of Tails completely [[reproducible|news/" +"reproducible_Tails]], which brings even more trust in the ISO images that we " +"are distributing, a faster release process, and slightly smaller upgrades." msgstr "" #. type: Bullet: '- ' msgid "" "We greatly diversified our sources of income. Thanks to all of you, the " -"share of donations that we got from individuals increased from 17% to " -"34%. This made our organization more robust and independent." +"share of donations that we got from individuals increased from 17% to 34%. " +"This made our organization more robust and independent." msgstr "" #. type: Title = @@ -204,7 +191,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div id=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate?r=2018-achievements\">Donate</a></div>\n" +msgid "<div id=\"donate-button\"><a href=\"https://tails.boum.org/donate?r=2018-achievements\">Donate</a></div>\n" msgstr "" diff --git a/wiki/src/news/achievements_in_2018.mdwn b/wiki/src/news/achievements_in_2018.mdwn index e425556..a970624 100644 --- a/wiki/src/news/achievements_in_2018.mdwn +++ b/wiki/src/news/achievements_in_2018.mdwn @@ -1,4 +1,4 @@ -[[!meta date="Fri, 11 Nov 2018 08:00:00 +0000"]] +[[!meta date="Fri, 14 Nov 2018 08:00:00 +0000"]] [[!meta title="Our achievements in 2018"]] [[!pagetemplate template="news.tmpl"]] [[!tag announce]] diff --git a/wiki/src/news/achievements_in_2018.pt.po b/wiki/src/news/achievements_in_2018.pt.po index 08b86f7..512e3af 100644 --- a/wiki/src/news/achievements_in_2018.pt.po +++ b/wiki/src/news/achievements_in_2018.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-11-11 07:42+0000\n" +"POT-Creation-Date: 2018-11-22 14: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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta date=\"Fri, 11 Nov 2018 08:00:00 +0000\"]]\n" +msgid "[[!meta date=\"Fri, 14 Nov 2018 08:00:00 +0000\"]]\n" msgstr "" #. type: Plain text @@ -38,9 +38,9 @@ msgstr "" #. type: Plain text msgid "" -"On October 12, we started our [[yearly donation " -"campaign|news/2018-fundraiser]]. Today, we summarize what we achieved with " -"your help in 2018 and renew our call for donations." +"On October 12, we started our [[yearly donation campaign|news/2018-" +"fundraiser]]. Today, we summarize what we achieved with your help in 2018 " +"and renew our call for donations." msgstr "" #. type: Title = @@ -56,10 +56,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img " -"doc/encryption_and_privacy/veracrypt/unlock-veracrypt-volumes-with-partition.png " -"link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/encryption_and_privacy/veracrypt/unlock-veracrypt-volumes-with-partition.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Plain text @@ -77,33 +74,24 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/additional_software/add-additional-software.png " -"link=\"no\" alt=\"Add vlc to your additional software? 'Install Only Once' " -"or 'Install Every Time'\"]]\n" +msgid " [[!img doc/first_steps/additional_software/add-additional-software.png link=\"no\" alt=\"Add vlc to your additional software? 'Install Only Once' or 'Install Every Time'\"]]\n" msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img doc/first_steps/additional_software/additional-software.png " -"link=\"no\" alt=\"\"]]\n" +msgid " [[!img doc/first_steps/additional_software/additional-software.png link=\"no\" alt=\"\"]]\n" msgstr "" #. type: Bullet: '- ' msgid "" -"We added a [[screen " -"locker|doc/first_steps/introduction_to_gnome_and_the_tails_desktop#screen-locker]] " -"to give you some protection if you leave your Tails unattended, willingly or " -"not." +"We added a [[screen locker|doc/first_steps/" +"introduction_to_gnome_and_the_tails_desktop#screen-locker]] to give you some " +"protection if you leave your Tails unattended, willingly or not." msgstr "" #. type: Plain text #, no-wrap -msgid "" -" [[!img " -"doc/first_steps/introduction_to_gnome_and_the_tails_desktop/screen-locker.png " -"alt=\"\" link=\"no\"]]\n" +msgid " [[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/screen-locker.png alt=\"\" link=\"no\"]]\n" msgstr "" #. type: Bullet: '- ' @@ -149,17 +137,16 @@ msgstr "" #. type: Bullet: '- ' msgid "" -"We made the build of Tails completely " -"[[reproducible|news/reproducible_Tails]], which brings even more trust in " -"the ISO images that we are distributing, a faster release process, and " -"slightly smaller upgrades." +"We made the build of Tails completely [[reproducible|news/" +"reproducible_Tails]], which brings even more trust in the ISO images that we " +"are distributing, a faster release process, and slightly smaller upgrades." msgstr "" #. type: Bullet: '- ' msgid "" "We greatly diversified our sources of income. Thanks to all of you, the " -"share of donations that we got from individuals increased from 17% to " -"34%. This made our organization more robust and independent." +"share of donations that we got from individuals increased from 17% to 34%. " +"This made our organization more robust and independent." msgstr "" #. type: Title = @@ -204,7 +191,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "" -"<div id=\"donate-button\"><a " -"href=\"https://tails.boum.org/donate?r=2018-achievements\">Donate</a></div>\n" +msgid "<div id=\"donate-button\"><a href=\"https://tails.boum.org/donate?r=2018-achievements\">Donate</a></div>\n" msgstr "" diff --git a/wiki/src/blueprint/monthly_report/report_2018_10.mdwn b/wiki/src/news/report_2018_10.mdwn index f3ed1ff..b850ad6 100644 --- a/wiki/src/blueprint/monthly_report/report_2018_10.mdwn +++ b/wiki/src/news/report_2018_10.mdwn @@ -1,5 +1,5 @@ [[!meta title="Tails report for October, 2018"]] -[[!meta date="Sat, 10 Nov 2018 01:23:45 +0000"]] +[[!meta date="Tue, 13 Nov 2018 01:23:45 +0000"]] [[!pagetemplate template="news.tmpl"]] [[!toc]] @@ -7,7 +7,7 @@ Releases ======== -* [[Tails 3.10.1 was released on October 23rd|news/version_3.10.1]] ([bugfix] release). +* [[Tails 3.10.1 was released on October 23rd|news/version_3.10.1]] (bugfix release). * Tails 3.11 is [[scheduled for December 11th|contribute/calendar]]. @@ -24,11 +24,6 @@ The following changes were introduced in Tails 3.10.1: Code ==== -XXX: If you feel like it and developers 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). - We finalized our work on the Additional Software feature. Small bugfixes will be shipped in the next release. @@ -41,7 +36,7 @@ Distributing USB images ----------------------- We started working on [[distributing USB -images|usb_install_and_upgrade/usb_bootable_disk_image]] which will make +images|blueprint/usb_install_and_upgrade/usb_bootable_disk_image]] which will make installing Tails much easier on Windows and macOS: - We have a first version of the code to transform ISO images into USB @@ -61,11 +56,10 @@ Documentation and website Hot topics on our help desk =========================== -1. Several users reported [[!tails_ticket 15978]], Keyboard and mouse do - not work after upgrading to tails 3.2, but that was fixed in Tails - 3.10.1. +1. Several users reported [[!tails_ticket 14754]], Keyboard and mouse do + not work after upgrading, but that was fixed in Tails 3.10.1. -1. Many users are suffering from [[!tails_ticket 14754]] and are unable +1. Many users are suffering from [[!tails_ticket 15978]] and are unable to automatically install software on their persistence, sometimes after interrupting the upgrade process. @@ -104,20 +98,30 @@ Past events * sajolida attended the OTF Summit in Taipei, Taiwan. -On-going discussions -==================== - -XXX: Link to the thread on <https://mailman.boum.org/pipermail/tails-XXX/>. - Translation =========== -XXX: Add the output of `contribute/l10n_tricks/language_statistics.sh` -XXX: Add the output of (adjust month!): +## All the website + + - de: 51% (3148) strings translated, 6% strings fuzzy, 45% words translated + - es: 58% (3593) strings translated, 1% strings fuzzy, 48% words translated + - fa: 32% (1993) strings translated, 9% strings fuzzy, 34% words translated + - fr: 88% (5412) strings translated, 1% strings fuzzy, 87% words translated + - it: 33% (2063) strings translated, 4% strings fuzzy, 29% words translated + - pt: 26% (1622) strings translated, 7% strings fuzzy, 22% words translated + +Total original words: 64357 + +## [[Core pages of the website|contribute/l10n_tricks/core_po_files.txt]] + + - de: 83% (1580) strings translated, 8% strings fuzzy, 83% words translated + - es: 97% (1851) strings translated, 1% strings fuzzy, 96% words translated + - fa: 32% (615) strings translated, 12% strings fuzzy, 31% words translated + - fr: 98% (1872) strings translated, 1% strings fuzzy, 98% words translated + - it: 70% (1337) strings translated, 13% strings fuzzy, 69% words translated + - pt: 45% (859) strings translated, 12% strings fuzzy, 48% words translated - git checkout $(git rev-list -n 1 --before="September 1" origin/master) && \ - git submodule update --init && \ - ./wiki/src/contribute/l10n_tricks/language_statistics.sh +Total original words: 17343 Metrics ======= diff --git a/wiki/src/support/faq.de.po b/wiki/src/support/faq.de.po index 60a30e8..82b0578 100644 --- a/wiki/src/support/faq.de.po +++ b/wiki/src/support/faq.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-09-05 18:37+0200\n" +"POT-Creation-Date: 2018-11-18 16:30+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" @@ -700,8 +700,8 @@ msgstr "" msgid "" "We are frequently requested to add new persistent features but we are " "usually busy working on other priorities. See our [open tickets](https://" -"redmine.tails.boum.org/code/projects/tails/issues?query_id=122) about persistence. " -"Any bit of help [[is welcome|contribute/how/code]]." +"redmine.tails.boum.org/code/projects/tails/issues?query_id=122) about " +"persistence. Any bit of help [[is welcome|contribute/how/code]]." msgstr "" #. type: Plain text @@ -1088,19 +1088,9 @@ msgid "**bitmessage**: not in Debian" msgstr "" #. type: Bullet: ' - ' -msgid "**torchat**: see [[!tails_ticket 5554]]" -msgstr "" - -#. type: Bullet: ' - ' msgid "**retroshare**: not in Debian" msgstr "" -#. type: Bullet: ' - ' -msgid "" -"**veracrypt**: can not be in Debian because of license issues, see [[!debbug " -"814352]]" -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/support/faq.es.po b/wiki/src/support/faq.es.po index cb66e33..ec69b0b 100644 --- a/wiki/src/support/faq.es.po +++ b/wiki/src/support/faq.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-09-05 18:37+0200\n" +"POT-Creation-Date: 2018-11-18 16:30+0000\n" "PO-Revision-Date: 2018-04-23 13:53+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/faq/" @@ -453,8 +453,7 @@ msgstr "<a id=\"checksum\"></a>\n" #. type: Title - #, 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 "" @@ -863,8 +862,8 @@ msgstr "" msgid "" "We are frequently requested to add new persistent features but we are " "usually busy working on other priorities. See our [open tickets](https://" -"redmine.tails.boum.org/code/projects/tails/issues?query_id=122) about persistence. " -"Any bit of help [[is welcome|contribute/how/code]]." +"redmine.tails.boum.org/code/projects/tails/issues?query_id=122) about " +"persistence. Any bit of help [[is welcome|contribute/how/code]]." msgstr "" "Muchas personas nos piden que agreguemos nuevas funcionalidades " "persistentes, pero estamos ocupados con otras prioridades. Mira nuestros " @@ -1353,21 +1352,9 @@ msgid "**bitmessage**: not in Debian" msgstr "**bitmessage**: no está en Debian" #. type: Bullet: ' - ' -msgid "**torchat**: see [[!tails_ticket 5554]]" -msgstr "**torchat**: ver [[!tails_ticket 5554]]" - -#. type: Bullet: ' - ' msgid "**retroshare**: not in Debian" msgstr "**retroshare**: no está en Debian" -#. type: Bullet: ' - ' -msgid "" -"**veracrypt**: can not be in Debian because of license issues, see [[!debbug " -"814352]]" -msgstr "" -"**veracrypt**: no puede estar en Debian debido a problemas de licencia, ver " -"[[!debbug 814352]]" - #. type: Plain text #, no-wrap msgid "" @@ -1807,6 +1794,16 @@ msgstr "" "Ver la [[!wikipedia Linux_malware desc=\"página de Wikipedia sobre malware " "en Linux\"]] para más detalles." +#~ msgid "**torchat**: see [[!tails_ticket 5554]]" +#~ msgstr "**torchat**: ver [[!tails_ticket 5554]]" + +#~ msgid "" +#~ "**veracrypt**: can not be in Debian because of license issues, see [[!" +#~ "debbug 814352]]" +#~ msgstr "" +#~ "**veracrypt**: no puede estar en Debian debido a problemas de licencia, " +#~ "ver [[!debbug 814352]]" + #~ msgid "<a id=\"truecrypt\"></a>\n" #~ msgstr "<a id=\"truecrypt\"></a>\n" diff --git a/wiki/src/support/faq.fa.po b/wiki/src/support/faq.fa.po index e0faeeae..c6e8b63 100644 --- a/wiki/src/support/faq.fa.po +++ b/wiki/src/support/faq.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: 2018-09-05 18:37+0200\n" +"POT-Creation-Date: 2018-11-18 16:30+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/" @@ -872,8 +872,8 @@ msgstr "" msgid "" "We are frequently requested to add new persistent features but we are " "usually busy working on other priorities. See our [open tickets](https://" -"redmine.tails.boum.org/code/projects/tails/issues?query_id=122) about persistence. " -"Any bit of help [[is welcome|contribute/how/code]]." +"redmine.tails.boum.org/code/projects/tails/issues?query_id=122) about " +"persistence. Any bit of help [[is welcome|contribute/how/code]]." msgstr "" "از ما مدام خواسته میشود که ویژگیهای مانای جدید اضافه کنیم، اما معمولاً مشغول " "کار روی اولویتهای دیگر هستیم. رجوع کنید به [درخواستهای باز](https://labs." @@ -1378,19 +1378,9 @@ msgid "**bitmessage**: not in Debian" msgstr "**bitmessage**: در دبیان موجود نیست" #. type: Bullet: ' - ' -msgid "**torchat**: see [[!tails_ticket 5554]]" -msgstr "**torchat**: رجوع کنید به [[!tails_ticket 5554]]" - -#. type: Bullet: ' - ' msgid "**retroshare**: not in Debian" msgstr "**retroshare**: در دبیان نیست" -#. type: Bullet: ' - ' -msgid "" -"**veracrypt**: can not be in Debian because of license issues, see [[!debbug " -"814352]]" -msgstr "" - #. type: Plain text #, no-wrap msgid "" @@ -1829,6 +1819,9 @@ msgstr "" "برای جزییات بیشتر رجوع کنید به [[!wikipedia Linux_malware desc=\"صفحهٔ " "ویکیپدیا در مورد بدافزارهای لینوکس\"]]." +#~ msgid "**torchat**: see [[!tails_ticket 5554]]" +#~ msgstr "**torchat**: رجوع کنید به [[!tails_ticket 5554]]" + #~ msgid "<a id=\"truecrypt\"></a>\n" #~ msgstr "<a id=\"truecrypt\"></a>\n" diff --git a/wiki/src/support/faq.fr.po b/wiki/src/support/faq.fr.po index fe5054f..cd57de5 100644 --- a/wiki/src/support/faq.fr.po +++ b/wiki/src/support/faq.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2018-09-05 18:37+0200\n" +"POT-Creation-Date: 2018-11-18 16:30+0000\n" "PO-Revision-Date: 2018-06-25 09:04+0000\n" "Last-Translator: AtomiKe <tails@atomike.ninja>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -889,14 +889,14 @@ msgstr "" msgid "" "We are frequently requested to add new persistent features but we are " "usually busy working on other priorities. See our [open tickets](https://" -"redmine.tails.boum.org/code/projects/tails/issues?query_id=122) about persistence. " -"Any bit of help [[is welcome|contribute/how/code]]." +"redmine.tails.boum.org/code/projects/tails/issues?query_id=122) about " +"persistence. Any bit of help [[is welcome|contribute/how/code]]." msgstr "" "On nous demande régulièrement d'ajouter de nouvelles options de persistance " "mais nous sommes souvent occupés par d'autres priorités. Voir nos [tickets " -"ouverts](https://redmine.tails.boum.org/code/projects/tails/issues?query_id=122) à " -"propos de la persistance. Tout coup de main est [[le bienvenue|contribute/" -"how/code]]." +"ouverts](https://redmine.tails.boum.org/code/projects/tails/issues?" +"query_id=122) à propos de la persistance. Tout coup de main est [[le " +"bienvenue|contribute/how/code]]." #. type: Plain text #, no-wrap @@ -1377,21 +1377,9 @@ msgid "**bitmessage**: not in Debian" msgstr "**bitmessage** : pas dans Debian" #. type: Bullet: ' - ' -msgid "**torchat**: see [[!tails_ticket 5554]]" -msgstr "**torchat** : voir [[!tails_ticket 5554]]" - -#. type: Bullet: ' - ' msgid "**retroshare**: not in Debian" msgstr "**retroshare** : pas dans Debian" -#. type: Bullet: ' - ' -msgid "" -"**veracrypt**: can not be in Debian because of license issues, see [[!debbug " -"814352]]" -msgstr "" -"**veracrypt** : ne peut être ajouté dans Debian à cause d'un problème de " -"licence, voir [[!debbug 814352]]" - #. type: Plain text #, no-wrap msgid "" @@ -1838,6 +1826,16 @@ msgstr "" "Voir la [[!wikipedia_fr Liste des malwares Linux desc=\"page Wikipédia sur " "les malwares Linux\"]] pour plus de détails." +#~ msgid "**torchat**: see [[!tails_ticket 5554]]" +#~ msgstr "**torchat** : voir [[!tails_ticket 5554]]" + +#~ msgid "" +#~ "**veracrypt**: can not be in Debian because of license issues, see [[!" +#~ "debbug 814352]]" +#~ msgstr "" +#~ "**veracrypt** : ne peut être ajouté dans Debian à cause d'un problème de " +#~ "licence, voir [[!debbug 814352]]" + #~ msgid "<a id=\"truecrypt\"></a>\n" #~ msgstr "<a id=\"truecrypt\"></a>\n" diff --git a/wiki/src/support/faq.it.po b/wiki/src/support/faq.it.po index 96af610..9c459e0 100644 --- a/wiki/src/support/faq.it.po +++ b/wiki/src/support/faq.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-09-05 18:37+0200\n" +"POT-Creation-Date: 2018-11-18 16:30+0000\n" "PO-Revision-Date: 2018-02-26 09:59+0100\n" "Last-Translator: \n" "Language-Team: ita <transitails@inventati.org>\n" @@ -826,13 +826,14 @@ msgstr "" msgid "" "We are frequently requested to add new persistent features but we are " "usually busy working on other priorities. See our [open tickets](https://" -"redmine.tails.boum.org/code/projects/tails/issues?query_id=122) about persistence. " -"Any bit of help [[is welcome|contribute/how/code]]." +"redmine.tails.boum.org/code/projects/tails/issues?query_id=122) about " +"persistence. Any bit of help [[is welcome|contribute/how/code]]." msgstr "" "Siamo spesso esortati ad aggiungere nuove funzionalità persistenti, ma di " "solito siamo impegnati a lavorare su altre priorità. Vedi i nostri [tickets " -"aperti](https://redmine.tails.boum.org/code/projects/tails/issues?query_id=122) " -"sulla persistenza. Un po' d'aiuto [[è benvenuto|contribute/how/code]]." +"aperti](https://redmine.tails.boum.org/code/projects/tails/issues?" +"query_id=122) sulla persistenza. Un po' d'aiuto [[è benvenuto|contribute/" +"how/code]]." #. type: Plain text #, no-wrap @@ -1329,21 +1330,9 @@ msgid "**bitmessage**: not in Debian" msgstr "**bitmessage**: non disponibile su Debian" #. type: Bullet: ' - ' -msgid "**torchat**: see [[!tails_ticket 5554]]" -msgstr "**torchat**: vedi [[!tails_ticket 5554]]" - -#. type: Bullet: ' - ' msgid "**retroshare**: not in Debian" msgstr "**retroshare**: non disponibile su Debian" -#. type: Bullet: ' - ' -msgid "" -"**veracrypt**: can not be in Debian because of license issues, see [[!debbug " -"814352]]" -msgstr "" -"**veracrypt**: non può essere incluso in Debian a causa di problemi di " -"licenza, vedi [[!debbug 814352]]" - #. type: Plain text #, no-wrap msgid "" @@ -1796,6 +1785,16 @@ msgstr "" "Vedere la [[!wikipedia Linux_malware desc=\"Wikipedia page on Linux malware" "\"]] per ulteriori dettagli." +#~ msgid "**torchat**: see [[!tails_ticket 5554]]" +#~ msgstr "**torchat**: vedi [[!tails_ticket 5554]]" + +#~ msgid "" +#~ "**veracrypt**: can not be in Debian because of license issues, see [[!" +#~ "debbug 814352]]" +#~ msgstr "" +#~ "**veracrypt**: non può essere incluso in Debian a causa di problemi di " +#~ "licenza, vedi [[!debbug 814352]]" + #~ msgid "<a id=\"truecrypt\"></a>\n" #~ msgstr "<a id=\"truecrypt\"></a>\n" diff --git a/wiki/src/support/faq.mdwn b/wiki/src/support/faq.mdwn index baafbeb..01b79a8 100644 --- a/wiki/src/support/faq.mdwn +++ b/wiki/src/support/faq.mdwn @@ -534,9 +534,7 @@ working session. Here is some of the software we are often asked to include in Tails: - **bitmessage**: not in Debian - - **torchat**: see [[!tails_ticket 5554]] - **retroshare**: not in Debian - - **veracrypt**: can not be in Debian because of license issues, see [[!debbug 814352]] - **rar/unrar**: is not [[free software|doc/about/license]], but you can use the [[additional software|doc/first_steps/additional_software]] feature to install it diff --git a/wiki/src/support/faq.pt.po b/wiki/src/support/faq.pt.po index fa91bcb..1628a54 100644 --- a/wiki/src/support/faq.pt.po +++ b/wiki/src/support/faq.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-09-05 18:37+0200\n" +"POT-Creation-Date: 2018-11-18 16:30+0000\n" "PO-Revision-Date: 2018-04-29 20:24+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -862,14 +862,14 @@ msgstr "" msgid "" "We are frequently requested to add new persistent features but we are " "usually busy working on other priorities. See our [open tickets](https://" -"redmine.tails.boum.org/code/projects/tails/issues?query_id=122) about persistence. " -"Any bit of help [[is welcome|contribute/how/code]]." +"redmine.tails.boum.org/code/projects/tails/issues?query_id=122) about " +"persistence. Any bit of help [[is welcome|contribute/how/code]]." msgstr "" "Frequentemente recebemos pedidos de inclusão de novas funcionalidades de " "persistência, mas em geral estamos ocupados trabalhando em outras " -"prioridades. Veja nossos [tíquetes abertos](https://redmine.tails.boum.org/code/" -"projects/tails/issues?query_id=122) sobre persistência. Qualquer ajuda [[é " -"bem vinda|contribute/how/code]]." +"prioridades. Veja nossos [tíquetes abertos](https://redmine.tails.boum.org/" +"code/projects/tails/issues?query_id=122) sobre persistência. Qualquer ajuda " +"[[é bem vinda|contribute/how/code]]." #. type: Plain text #, no-wrap @@ -1367,21 +1367,11 @@ msgid "**bitmessage**: not in Debian" msgstr "**bitmessage**: não está no Debian" #. type: Bullet: ' - ' -msgid "**torchat**: see [[!tails_ticket 5554]]" -msgstr "**torchat**: veja [[!tails_ticket 5554]]" - -#. type: Bullet: ' - ' #, fuzzy #| msgid "**bitmessage**: not in Debian" msgid "**retroshare**: not in Debian" msgstr "**bitmessage**: não está no Debian" -#. type: Bullet: ' - ' -msgid "" -"**veracrypt**: can not be in Debian because of license issues, see [[!debbug " -"814352]]" -msgstr "" - #. type: Plain text #, no-wrap msgid "" @@ -1833,6 +1823,9 @@ msgid "" "\"]] for further details." msgstr "" +#~ msgid "**torchat**: see [[!tails_ticket 5554]]" +#~ msgstr "**torchat**: veja [[!tails_ticket 5554]]" + #~ msgid "<a id=\"truecrypt\"></a>\n" #~ msgstr "<a id=\"truecrypt\"></a>\n" diff --git a/wiki/src/support/known_issues.de.po b/wiki/src/support/known_issues.de.po index 9d0b342..4a7015b 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: 2018-11-01 09:10+0100\n" +"POT-Creation-Date: 2018-11-18 16:33+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" @@ -1594,3 +1594,15 @@ msgid "" "To fix this problem, add `intel_idle.max_cstate=1` to the [[startup options|/" "doc/first_steps/startup_options/#boot_loader_menu]]." msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Acer Aspire One" +msgstr "" + +#. type: Plain text +msgid "" +"If the sound output does not work on an Acer Aspire One laptop, add `snd-hda-" +"intel.model=acer-aspire` to the [[startup options|/doc/first_steps/" +"startup_options/#boot_loader_menu]]." +msgstr "" diff --git a/wiki/src/support/known_issues.es.po b/wiki/src/support/known_issues.es.po index d5db5c5..7a6a034 100644 --- a/wiki/src/support/known_issues.es.po +++ b/wiki/src/support/known_issues.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-11-01 09:10+0100\n" +"POT-Creation-Date: 2018-11-18 16:33+0000\n" "PO-Revision-Date: 2018-11-01 09:11+0100\n" "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -1737,5 +1737,23 @@ msgstr "" "Para corregir este problema añade `intel_idle.max_cstate=1` a las [[opciones " "de arranque|/doc/first_steps/startup_options/#boot_loader_menu]]." +#. type: Title ## +#, no-wrap +msgid "Acer Aspire One" +msgstr "" + +#. type: Plain text +#, fuzzy +#| msgid "" +#| "To fix this problem, add `intel_idle.max_cstate=1` to the [[startup " +#| "options|/doc/first_steps/startup_options/#boot_loader_menu]]." +msgid "" +"If the sound output does not work on an Acer Aspire One laptop, add `snd-hda-" +"intel.model=acer-aspire` to the [[startup options|/doc/first_steps/" +"startup_options/#boot_loader_menu]]." +msgstr "" +"Para corregir este problema añade `intel_idle.max_cstate=1` a las [[opciones " +"de arranque|/doc/first_steps/startup_options/#boot_loader_menu]]." + #~ msgid "SanDisk Cruzer Glide 4GB, 8GB and 16GB" #~ msgstr "SanDisk Cruzer Glide 4GB, 8GB y 16GB" diff --git a/wiki/src/support/known_issues.fa.po b/wiki/src/support/known_issues.fa.po index d84d8e4..20ea94f 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: 2018-11-01 09:10+0100\n" +"POT-Creation-Date: 2018-11-18 16:33+0000\n" "PO-Revision-Date: 2015-10-25 10:05+0000\n" "Last-Translator: sprint5 <translation5@451f.org>\n" "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/" @@ -1880,5 +1880,23 @@ msgstr "" "گزینهٔ `i915.modeset=0 rootpw=pass` را در [[فهرست راهاندازی|doc/first_steps/" "startup_options#boot_menu]] اضافه کنید." +#. type: Title ## +#, no-wrap +msgid "Acer Aspire One" +msgstr "" + +#. type: Plain text +#, fuzzy +#| msgid "" +#| "Add the `i915.modeset=0 rootpw=pass` option in the [[boot menu|doc/" +#| "first_steps/startup_options#boot_menu]]." +msgid "" +"If the sound output does not work on an Acer Aspire One laptop, add `snd-hda-" +"intel.model=acer-aspire` to the [[startup options|/doc/first_steps/" +"startup_options/#boot_loader_menu]]." +msgstr "" +"گزینهٔ `i915.modeset=0 rootpw=pass` را در [[فهرست راهاندازی|doc/first_steps/" +"startup_options#boot_menu]] اضافه کنید." + #~ msgid "SanDisk Cruzer Glide 4GB, 8GB and 16GB" #~ msgstr "SanDisk Cruzer Glide 4GB، 8GB و 16GB" diff --git a/wiki/src/support/known_issues.fr.po b/wiki/src/support/known_issues.fr.po index e37f10c..1cbe529 100644 --- a/wiki/src/support/known_issues.fr.po +++ b/wiki/src/support/known_issues.fr.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2018-11-01 09:10+0100\n" -"PO-Revision-Date: 2018-11-01 09:12+0100\n" +"POT-Creation-Date: 2018-11-18 16:33+0000\n" +"PO-Revision-Date: 2018-11-01 18:23+0000\n" "Last-Translator: \n" "Language-Team: Tails translators <tails@boum.org>\n" "Language: fr\n" @@ -93,41 +93,35 @@ msgstr "" #. type: Bullet: '* ' msgid "SanDisk Cruzer Edge 8GB" -msgstr "SanDisk Cruzer Edge 8GB" +msgstr "SanDisk Cruzer Edge 8Go" #. type: Bullet: '* ' -#, fuzzy -#| msgid "SanDisk Cruzer Extreme USB 3.0 16GB, 32GB and 64GB" msgid "SanDisk Cruzer Extreme USB 3.0 16GB, 32GB, and 64GB" msgstr "SanDisk Cruzer Extreme USB 3.0 16Go, 32Go et 64Go" #. type: Bullet: '* ' msgid "SanDisk Cruzer Fit USB 2.0 8GB, 16GB, and 32G" -msgstr "SanDisk Cruzer Fit USB 2.0 8GB, 16GB, et 32G" +msgstr "SanDisk Cruzer Fit USB 2.0 8Go, 16Go et 32G" #. type: Bullet: '* ' msgid "SanDisk Cruzer Force 8GB" -msgstr "SanDisk Cruzer Force 8GB" +msgstr "SanDisk Cruzer Force 8Go" #. type: Bullet: '* ' -#, fuzzy -#| msgid "SanDisk Cruzer Blade 4GB, 8GB, and 32GB" msgid "SanDisk Cruzer Glide 4GB, 8GB, 16GB, and 32GB" -msgstr "SanDisk Cruzer Blade 4GB, 8GB, et 32GB" +msgstr "SanDisk Cruzer Glide 4Go, 8Go, 16Go et 32Go" #. type: Bullet: '* ' -#, fuzzy -#| msgid "SanDisk Cruzer Switch USB 2.0 8GB and 32GB" msgid "SanDisk Cruzer Switch USB 2.0 8GB, and 32GB" -msgstr "SanDisk Cruzer Switch USB 2.0 8GB et 32GB" +msgstr "SanDisk Cruzer Switch USB 2.0 8Go et 32Go" #. type: Bullet: '* ' msgid "SanDisk Cruzer USB 3.0 64GB" -msgstr "SanDisk Cruzer USB 3.0 64GB" +msgstr "SanDisk Cruzer USB 3.0 64Go" #. type: Bullet: '* ' msgid "SanDisk Cruzer Blade 4GB, 8GB, and 32GB" -msgstr "SanDisk Cruzer Blade 4GB, 8GB, et 32GB" +msgstr "SanDisk Cruzer Blade 4Go, 8Go et 32Go" #. type: Bullet: '* ' msgid "SanDisk Cruzer Facet" @@ -138,12 +132,12 @@ msgid "" "SanDisk Cruzer Orbiter 32GB (hangs at installation time but boots fine " "afterwards)" msgstr "" -"SanDisk Cruzer Orbiter 32GB (bloque à l'installation mais démarre " +"SanDisk Cruzer Orbiter 32Go (bloque à l'installation mais démarre " "normalement après coup)" #. type: Bullet: '* ' msgid "SanDisk Ultra 16GB, 32GB" -msgstr "SanDisk Ultra 16GB, 32GB" +msgstr "SanDisk Ultra 16Go, 32Go" #. type: Plain text msgid "" @@ -220,28 +214,26 @@ msgstr "" "2.0 ne fonctionne pas pour ce matériel." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"datatraveler-2000\"></a>\n" +#, no-wrap msgid "" "<a id=\"datatraveler-2000\"></a>\n" "<a id=\"datatraveler-100-g3\"></a>\n" -msgstr "<a id=\"datatraveler-2000\"></a>\n" +msgstr "" +"<a id=\"datatraveler-2000\"></a>\n" +"<a id=\"datatraveler-100-g3\"></a>\n" #. type: Title ### -#, fuzzy, no-wrap -#| msgid "Kingston DataTraveler 2000" +#, no-wrap msgid "Kingston DataTraveler 2000, Kingston DataTraveler 100 G3" -msgstr "Kingston DataTraveler 2000" +msgstr "Kingston DataTraveler 2000, Kingston DataTraveler 100 G3" #. type: Plain text -#, fuzzy -#| msgid "Starting Tails from a Kingston DataTraveler 2000 doesn't work." msgid "" "Starting Tails from a Kingston DataTraveler 2000 or DataTraveler 100G3 " "doesn't work." msgstr "" -"Le démarrage de Tails depuis une clé Kingston DataTraveler 2000 ne marche " -"pas." +"Le démarrage de Tails depuis une clé Kingston DataTraveler 2000 ou " +"DataTraveler 100G3 ne marche pas." #. type: Title ### #, no-wrap @@ -510,7 +502,8 @@ msgstr "HP Pavilion 15-ab277ca" #. type: Plain text msgid "Tails 3.3 restarts during startup and never starts successfully." -msgstr "Tails 3.3 redémarre durant le démarrage et ne réussit jamais à se lancer." +msgstr "" +"Tails 3.3 redémarre durant le démarrage et ne réussit jamais à se lancer." #. type: Title ### #, no-wrap @@ -996,10 +989,9 @@ msgstr "" "manager*." #. type: Title - -#, fuzzy, no-wrap -#| msgid "Virtual machines with *virt-manager*, *libvirt* and *QEMU*\n" +#, no-wrap msgid "Virtual machines with *VMware*\n" -msgstr "Machines virtuelles avec *virt-manager*, *libvirt* et *QEMU*\n" +msgstr "Machines virtuelles avec *VMware*\n" #. type: Plain text msgid "" @@ -1007,6 +999,9 @@ msgid "" "[[install|doc/advanced_topics/additional_software]] the `open-vm-tools-" "desktop` software package in Tails." msgstr "" +"Pour améliorer le support de Tails tournant dans une machine virtuelle avec " +"*VMware*, [[installez|doc/advanced_topics/additional_software]] le paquet " +"`open-vm-tools-desktop` dans Tails." #. type: Plain text #, no-wrap @@ -1521,12 +1516,6 @@ msgid "Playing WebM videos in the Tor Browser fails on old hardware\n" msgstr "Échec de la lecture des vidéos WebM dans le Navigateur Tor sur du vieux matériel\n" #. type: Plain text -#, fuzzy -#| msgid "" -#| "On systems that only have one CPU code, WebM videos may fail to play in " -#| "the Tor Browser, and show the error message: \"Video can't be played " -#| "because the file is corrupt\". You can work around this by downloading " -#| "the video and watching it in the Totem video player." msgid "" "On systems that only have one CPU core, WebM videos may fail to play in the " "Tor Browser, and show the error message: \"Video can't be played because the " @@ -1651,10 +1640,9 @@ msgstr "" "persistance devraient être restaurés.\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "<a id=\"automatic_upgrade_fails\"></a>\n" +#, no-wrap msgid "<a id=\"partial-upgrade\"></a>\n" -msgstr "<a id=\"automatic_upgrade_fails\"></a>\n" +msgstr "<a id=\"partial-upgrade\"></a>\n" #. type: Title ## #, no-wrap @@ -1956,5 +1944,23 @@ msgstr "" "Pour corriger le problème, ajoutez `intel_idle.max_cstate=1` dans les " "[[options de démarrage|/doc/first_steps/startup_options/#boot_loader_menu]]." +#. type: Title ## +#, no-wrap +msgid "Acer Aspire One" +msgstr "" + +#. type: Plain text +#, fuzzy +#| msgid "" +#| "To fix this problem, add `intel_idle.max_cstate=1` to the [[startup " +#| "options|/doc/first_steps/startup_options/#boot_loader_menu]]." +msgid "" +"If the sound output does not work on an Acer Aspire One laptop, add `snd-hda-" +"intel.model=acer-aspire` to the [[startup options|/doc/first_steps/" +"startup_options/#boot_loader_menu]]." +msgstr "" +"Pour corriger le problème, ajoutez `intel_idle.max_cstate=1` dans les " +"[[options de démarrage|/doc/first_steps/startup_options/#boot_loader_menu]]." + #~ msgid "SanDisk Cruzer Glide 4GB, 8GB and 16GB" #~ msgstr "SanDisk Cruzer Glide 4GB, 8GB et 16GB" diff --git a/wiki/src/support/known_issues.it.po b/wiki/src/support/known_issues.it.po index 46449e8..ba7c33b 100644 --- a/wiki/src/support/known_issues.it.po +++ b/wiki/src/support/known_issues.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-11-01 09:10+0100\n" +"POT-Creation-Date: 2018-11-18 16:33+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" @@ -1598,3 +1598,15 @@ msgid "" "To fix this problem, add `intel_idle.max_cstate=1` to the [[startup options|/" "doc/first_steps/startup_options/#boot_loader_menu]]." msgstr "" + +#. type: Title ## +#, no-wrap +msgid "Acer Aspire One" +msgstr "" + +#. type: Plain text +msgid "" +"If the sound output does not work on an Acer Aspire One laptop, add `snd-hda-" +"intel.model=acer-aspire` to the [[startup options|/doc/first_steps/" +"startup_options/#boot_loader_menu]]." +msgstr "" diff --git a/wiki/src/support/known_issues.mdwn b/wiki/src/support/known_issues.mdwn index 0e96991..0b3f638 100644 --- a/wiki/src/support/known_issues.mdwn +++ b/wiki/src/support/known_issues.mdwn @@ -822,3 +822,9 @@ ThinkPad 11e laptops, such as the 2015 model. To fix this problem, add `intel_idle.max_cstate=1` to the [[startup options|/doc/first_steps/startup_options/#boot_loader_menu]]. + +## Acer Aspire One + +If the sound output does not work on an Acer Aspire One laptop, add +`snd-hda-intel.model=acer-aspire` to the [[startup +options|/doc/first_steps/startup_options/#boot_loader_menu]]. diff --git a/wiki/src/support/known_issues.pt.po b/wiki/src/support/known_issues.pt.po index ed3c57f..b3f8810 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: 2018-11-01 09:10+0100\n" +"POT-Creation-Date: 2018-11-18 16:33+0000\n" "PO-Revision-Date: 2018-11-01 09:13+0100\n" "Last-Translator: Tails Developers <amnesia@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -501,7 +501,9 @@ msgstr "HP Pavilion 15-ab277ca" #. type: Plain text msgid "Tails 3.3 restarts during startup and never starts successfully." -msgstr "Tails 3.3 reinicia durante a inicialização e nunca termina de inicializar com sucesso." +msgstr "" +"Tails 3.3 reinicia durante a inicialização e nunca termina de inicializar " +"com sucesso." #. type: Title ### #, no-wrap @@ -1865,5 +1867,26 @@ msgstr "" "contornado adicionando a [[opção de boot|/doc/first_steps/startup_options/" "#boot_menu]] `mem=1500m`." +#. type: Title ## +#, no-wrap +msgid "Acer Aspire One" +msgstr "" + +#. type: Plain text +#, fuzzy +#| msgid "" +#| "Booting fails with `Not enough memory to load specified image`. Work " +#| "around by adding the `mem=1500m` [[boot option|/doc/first_steps/" +#| "startup_options/#boot_menu]]." +msgid "" +"If the sound output does not work on an Acer Aspire One laptop, add `snd-hda-" +"intel.model=acer-aspire` to the [[startup options|/doc/first_steps/" +"startup_options/#boot_loader_menu]]." +msgstr "" +"A inicialização falha com `Não há memória suficiente para carregar a imagem " +"especificada` (`Not enough memory to load specified image`). Pode ser " +"contornado adicionando a [[opção de boot|/doc/first_steps/startup_options/" +"#boot_menu]] `mem=1500m`." + #~ msgid "SanDisk Cruzer Glide 4GB, 8GB and 16GB" #~ msgstr "SanDisk Cruzer Glide 4GB, 8GB e 16GB" diff --git a/wiki/src/support/known_issues/graphics.fr.po b/wiki/src/support/known_issues/graphics.fr.po index 7775d05..5ba4d90 100644 --- a/wiki/src/support/known_issues/graphics.fr.po +++ b/wiki/src/support/known_issues/graphics.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2018-10-31 11:23+0100\n" -"PO-Revision-Date: 2018-10-16 15:34+0000\n" +"PO-Revision-Date: 2018-11-01 17:42+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: fr\n" @@ -299,17 +299,7 @@ msgstr "" "-->\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<table>\n" -#| "<tr><th>Name</th><th>ID</th><th>Revision number</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" -#| "</table>\n" +#, no-wrap msgid "" "<table>\n" "<tr><th>Name</th><th>ID</th><th>Revision number</th></tr>\n" @@ -330,6 +320,7 @@ msgstr "" "<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" "</table>\n" #. type: Plain text diff --git a/wiki/src/templates/page.tmpl b/wiki/src/templates/page.tmpl index c41933e..124a06b 100644 --- a/wiki/src/templates/page.tmpl +++ b/wiki/src/templates/page.tmpl @@ -69,7 +69,7 @@ <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 to stay safe online every day and it's free.</span> + <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> @@ -84,7 +84,7 @@ </div> <div class="donate-fa"> - <span class="first">Tails helps thousands of people to stay safe online every day and it's free.</span> + <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> @@ -94,7 +94,7 @@ </div> <div class="donate-it"> - <span class="first">Tails helps thousands of people to stay safe online every day and it's free.</span> + <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> @@ -105,33 +105,33 @@ </div> <div class="counter"> - <div class="counter-amount donate-en">$24 705 out of $140 000</div> - <div class="counter-amount donate-es">21 706€ de 120 000€</div> - <div class="counter-amount donate-de">21 706€ von 120 000€</div> - <div class="counter-amount donate-fa">$24 705 out of $140 000</div> - <div class="counter-amount donate-fr">21 706€ sur 120 000€</div> - <div class="counter-amount donate-it">21 706€ out of 120 000€</div> - <div class="counter-amount donate-pt">21 706€ out of 120 000€</div> + <div class="counter-amount donate-en">$30 359 out of $140 000</div> + <div class="counter-amount donate-es">26 956€ de 120 000€</div> + <div class="counter-amount donate-de">26 956€ von 120 000€</div> + <div class="counter-amount donate-fa">$30 359 out of $140 000</div> + <div class="counter-amount donate-fr">26 956€ sur 120 000€</div> + <div class="counter-amount donate-it">26 956€ out of 120 000€</div> + <div class="counter-amount donate-pt">26 956€ out of 120 000€</div> <div id="counter-last-updated-info"><img src="<TMPL_VAR BASEURL>lib/info.png" alt="Info"></div> <div id="counter-last-updated"> - <span class="donate-en">Last updated on 2018-10-31.</span> - <span class="donate-es">Última actualización el 2018-10-31.</span> - <span class="donate-de">Last updated on 2018-10-31.</span> - <span class="donate-fa">Last updated on 2018-10-31.</span> - <span class="donate-fr">Dernière mise à jour le 2018-10-31.</span> - <span class="donate-it">Last updated on 2018-10-31.</span> - <span class="donate-pt">Last updated on 2018-10-31.</span> + <span class="donate-en">Last updated on 2018-11-15.</span> + <span class="donate-es">Última actualización el 2018-11-15.</span> + <span class="donate-de">Last updated on 2018-11-15.</span> + <span class="donate-fa">Last updated on 2018-11-15.</span> + <span class="donate-fr">Dernière mise à jour le 2018-11-15.</span> + <span class="donate-it">Last updated on 2018-11-15.</span> + <span class="donate-pt">Last updated on 2018-11-15.</span> </div> <div class="counter-progress"> - <div class="counter-progress-bar" role="progressbar" style="width: 18%" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100"></div> + <div class="counter-progress-bar" role="progressbar" style="width: 22%" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100"></div> </div> - <div class="donate-en"><div class="counter-days"><span class="counter-number-of-days">78</span> days remaining</div></div> - <div class="donate-es"><div class="counter-days">Quedan <span class="counter-number-of-days">78</span> días</div></div> - <div class="donate-de"><div class="counter-days">Noch <span class="counter-number-of-days">78</span> Tage übrig</div></div> - <div class="donate-fa"><div class="counter-days"><span class="counter-number-of-days">78</span> days remaining</div></div> - <div class="donate-fr"><div class="counter-days"><span class="counter-number-of-days">78</span> jours restants</div></div> - <div class="donate-it"><div class="counter-days"><span class="counter-number-of-days">78</span> days remaining</div></div> - <div class="donate-pt"><div class="counter-days"><span class="counter-number-of-days">78</span> days remaining</div></div> + <div class="donate-en"><div class="counter-days"><span class="counter-number-of-days">61</span> days remaining</div></div> + <div class="donate-es"><div class="counter-days">Quedan <span class="counter-number-of-days">61</span> días</div></div> + <div class="donate-de"><div class="counter-days">Noch <span class="counter-number-of-days">61</span> Tage übrig</div></div> + <div class="donate-fa"><div class="counter-days"><span class="counter-number-of-days">61</span> days remaining</div></div> + <div class="donate-fr"><div class="counter-days"><span class="counter-number-of-days">61</span> jours restants</div></div> + <div class="donate-it"><div class="counter-days"><span class="counter-number-of-days">61</span> days remaining</div></div> + <div class="donate-pt"><div class="counter-days"><span class="counter-number-of-days">61</span> days remaining</div></div> </div> </a> diff --git a/wiki/src/upgrade/tails-download.de.po b/wiki/src/upgrade/tails-download.de.po index 56ba62d..76cc8f9 100644 --- a/wiki/src/upgrade/tails-download.de.po +++ b/wiki/src/upgrade/tails-download.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-08-25 08:34+0200\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -58,10 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.de\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/upgrade/tails-download.es.po b/wiki/src/upgrade/tails-download.es.po index 81cec93..1f497ca 100755 --- a/wiki/src/upgrade/tails-download.es.po +++ b/wiki/src/upgrade/tails-download.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-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-26 06:36+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/tails-" @@ -60,10 +60,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.es\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/upgrade/tails-download.fa.po b/wiki/src/upgrade/tails-download.fa.po index 4e73c7d..fa8b5a7 100644 --- a/wiki/src/upgrade/tails-download.fa.po +++ b/wiki/src/upgrade/tails-download.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+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" @@ -58,10 +58,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. type: Plain text -#, no-wrap msgid "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" diff --git a/wiki/src/upgrade/tails-download.fr.po b/wiki/src/upgrade/tails-download.fr.po index 10f05e2..f0b7ed1 100644 --- a/wiki/src/upgrade/tails-download.fr.po +++ b/wiki/src/upgrade/tails-download.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-01-04 16:00+0000\n" "Last-Translator: \n" "Language-Team: \n" @@ -58,10 +58,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.fr\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/upgrade/tails-download.it.po b/wiki/src/upgrade/tails-download.it.po index 8b46230..911ff2c 100644 --- a/wiki/src/upgrade/tails-download.it.po +++ b/wiki/src/upgrade/tails-download.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 10:48+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -36,30 +36,22 @@ msgstr "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap msgid "[[!meta stylesheet=\"install/inc/stylesheets/assistant\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!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" +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" +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" +msgstr "[[!meta stylesheet=\"install/inc/stylesheets/upgrade-tails\" rel=\"stylesheet\" title=\"\"]]\n" #. type: Plain text #, no-wrap @@ -68,14 +60,8 @@ msgstr "[[!meta script=\"install/inc/js/download\"]]\n" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" -"[[!meta link=\"https://chrome.google.com/webstore/detail/" -"gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\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.it\" raw=\"yes\" sort=\"" -"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.it\" raw=\"yes\" sort=\"age\"]]\n" + +#~ msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" +#~ msgstr "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" diff --git a/wiki/src/upgrade/tails-download.mdwn b/wiki/src/upgrade/tails-download.mdwn index 4fa2270..557ea74 100644 --- a/wiki/src/upgrade/tails-download.mdwn +++ b/wiki/src/upgrade/tails-download.mdwn @@ -7,6 +7,5 @@ [[!meta stylesheet="install/inc/stylesheets/steps" rel="stylesheet" title=""]] [[!meta stylesheet="install/inc/stylesheets/upgrade-tails" rel="stylesheet" title=""]] [[!meta script="install/inc/js/download"]] -[[!meta link="https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl" rel="chrome-webstore-item"]] [[!inline pages="install/inc/steps/download.inline" raw="yes" sort="age"]] diff --git a/wiki/src/upgrade/tails-download.pt.po b/wiki/src/upgrade/tails-download.pt.po index dcf1aa2..ad5cbba 100644 --- a/wiki/src/upgrade/tails-download.pt.po +++ b/wiki/src/upgrade/tails-download.pt.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2018-04-24 16:42+0300\n" +"POT-Creation-Date: 2018-11-15 12:31+0000\n" "PO-Revision-Date: 2018-04-27 10:45+0000\n" "Last-Translator: Tails translators <tails-l10n@boum.org>\n" -"Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails" -"/tails-download/pt/>\n" +"Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" +"tails-download/pt/>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,10 +61,5 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta link=\"https://chrome.google.com/webstore/detail/gaghffbplpialpoeclgjkkbknblfajdl\" rel=\"chrome-webstore-item\"]]\n" -msgstr "" - -#. type: Plain text -#, no-wrap msgid "[[!inline pages=\"install/inc/steps/download.inline\" raw=\"yes\" sort=\"age\"]]\n" msgstr "" |